From e4d670a40117950b07e76bdff1afb82a2b19c786 Mon Sep 17 00:00:00 2001 From: Anthony Martin Date: Tue, 2 Feb 2021 10:36:29 -0500 Subject: [PATCH] Allow referencing existing resources with the 'existing' keyword (#1339) --- .../resource-with-lock-existing/main.bicep | 13 + .../101/resource-with-lock-existing/main.json | 22 + .../main.bicep | 2 + .../main.json | 8 +- docs/examples/index.json | 4 + docs/grammar.md | 2 +- docs/spec/resources.md | 26 + .../Emit/TemplateEmitterTests.cs | 137 - .../ScenarioTests.cs | 222 +- src/Bicep.Core.IntegrationTests/ScopeTests.cs | 270 + .../Semantics/NamespaceTests.cs | 2 +- .../Files/Completions/resourceTypes.json | 11745 ++++++++++------ .../Files/Functions/az.json | 19 + .../Completions/azFunctions.json | 17 + .../Completions/symbols.json | 17 + .../main.diagnostics.bicep | Bin 7396 -> 7174 bytes .../InvalidModules_LF/main.diagnostics.bicep | Bin 43626 -> 38368 bytes .../Completions/symbols.json | 17 + .../Completions/justSymbols.json | 17 + .../Completions/oneTwoThreePlusSymbols.json | 17 + .../symbolsPlusParamDefaultFunctions.json | 17 + .../Completions/arrayPlusSymbols.json | Bin 58666 -> 114758 bytes .../cleanupPreferencesPlusSymbols.json | Bin 59344 -> 116058 bytes .../cliPropertyAccessIndexesPlusSymbols.json | Bin 65228 -> 127370 bytes .../createModeIndexPlusSymbols.json | Bin 58724 -> 114866 bytes .../Completions/defaultCreateModeIndexes.json | Bin 71316 -> 139078 bytes .../deploymentScriptKindsPlusSymbols.json | Bin 59016 -> 115430 bytes ...DiscriminatorPropertyIndexPlusSymbols.json | Bin 58729 -> 114876 bytes .../Completions/objectPlusSymbols.json | Bin 58666 -> 114758 bytes .../Completions/symbols.json | Bin 58736 -> 114898 bytes .../Files/InvalidResources_CRLF/main.bicep | 10 + .../main.diagnostics.bicep | Bin 46270 -> 92140 bytes .../main.formatted.bicep | Bin 17146 -> 34808 bytes .../InvalidResources_CRLF/main.symbols.bicep | 11 + .../InvalidResources_CRLF/main.syntax.bicep | Bin 130518 -> 265124 bytes .../InvalidResources_CRLF/main.tokens.bicep | Bin 79074 -> 160710 bytes .../Completions/objectVarTopLevelIndexes.json | Bin 66334 -> 64352 bytes .../Completions/symbols.json | Bin 66542 -> 64560 bytes .../Completions/twoIndexPlusSymbols.json | Bin 67234 -> 65216 bytes .../Files/Resources_CRLF/main.bicep | 15 + .../Resources_CRLF/main.diagnostics.bicep | Bin 6276 -> 13274 bytes .../Files/Resources_CRLF/main.formatted.bicep | Bin 6266 -> 13258 bytes .../Files/Resources_CRLF/main.json | Bin 10523 -> 21744 bytes .../Files/Resources_CRLF/main.symbols.bicep | 17 + .../Files/Resources_CRLF/main.syntax.bicep | Bin 61553 -> 129196 bytes .../Files/Resources_CRLF/main.tokens.bicep | Bin 34117 -> 72034 bytes .../Completions/symbolsPlusTypes.json | 17 + .../Assertions/JTokenAssertionsExtensions.cs | 2 +- .../Diagnostics/ErrorBuilderTests.cs | 5 + .../Az/AzResourceTypeProviderTests.cs | 34 +- .../TypeValidatorAssignabilityTests.cs | 3 +- .../Utils/CompilationHelper.cs | 80 +- .../Utils/ResourceTypeProviderHelper.cs | 35 +- .../Utils/TestResourceTypeProvider.cs | 14 +- .../Diagnostics/DiagnosticBuilder.cs | 12 + .../Emit/EmitLimitationCalculator.cs | 96 +- src/Bicep.Core/Emit/EmitLimitationInfo.cs | 6 +- src/Bicep.Core/Emit/EmitterContext.cs | 2 +- src/Bicep.Core/Emit/ExpressionConverter.cs | 9 +- src/Bicep.Core/Emit/ScopeHelper.cs | 288 +- src/Bicep.Core/Emit/TemplateWriter.cs | 12 +- src/Bicep.Core/LanguageConstants.cs | 57 +- src/Bicep.Core/Parsing/Parser.cs | 9 +- .../PrettyPrint/DocumentBuildVisitor.cs | 1 + .../Semantics/NameBindingVisitor.cs | 1 + .../Semantics/Namespaces/AzNamespaceSymbol.cs | 8 +- src/Bicep.Core/Semantics/SymbolExtensions.cs | 14 +- .../Syntax/ResourceDeclarationSyntax.cs | 174 +- src/Bicep.Core/Syntax/SyntaxRewriteVisitor.cs | 1163 +- src/Bicep.Core/Syntax/SyntaxVisitor.cs | 7 +- .../TypeSystem/Az/AzResourceTypeFactory.cs | 56 +- .../TypeSystem/Az/AzResourceTypeProvider.cs | 167 +- .../TypeSystem/Az/ManagementGroupScopeType.cs | 4 +- .../TypeSystem/Az/ResourceGroupScopeType.cs | 4 +- .../TypeSystem/Az/SubscriptionScopeType.cs | 4 +- .../TypeSystem/Az/TenantScopeType.cs | 4 +- .../TypeSystem/DeclaredTypeManager.cs | 2 +- .../TypeSystem/IResourceTypeProvider.cs | 6 +- ...esourceScopeType.cs => IScopeReference.cs} | 6 +- src/Bicep.Core/TypeSystem/ModuleType.cs | 9 +- ...eReferenceType.cs => ResourceScopeType.cs} | 8 +- src/Bicep.Core/TypeSystem/ResourceType.cs | 9 +- .../TypeSystem/TypeAssignmentVisitor.cs | 4 +- src/Bicep.Core/TypeSystem/TypeValidator.cs | 9 +- .../Working/modules/main.bicep | 136 +- .../DependsOnRemovalRewriterTests.cs | 10 +- .../ParentChildResourceNameRewriterTests.cs | 8 +- .../Rewriters/TypeCasingFixerRewriterTests.cs | 8 +- .../Rewriters/DependsOnRemovalRewriter.cs | 1 + .../ParentChildResourceNameRewriter.cs | 1 + src/Bicep.Decompiler/TemplateConverter.cs | 1 + .../Completions/BicepCompletionProvider.cs | 2 +- src/Bicep.LangServer/SemanticTokenVisitor.cs | 16 +- .../LanguageHelpers/SemanticTokenVisitor.cs | 8 +- 94 files changed, 9232 insertions(+), 5927 deletions(-) create mode 100644 docs/examples/101/resource-with-lock-existing/main.bicep create mode 100644 docs/examples/101/resource-with-lock-existing/main.json create mode 100644 src/Bicep.Core.IntegrationTests/ScopeTests.cs rename src/Bicep.Core/TypeSystem/{IResourceScopeType.cs => IScopeReference.cs} (50%) rename src/Bicep.Core/TypeSystem/{ResourceReferenceType.cs => ResourceScopeType.cs} (50%) diff --git a/docs/examples/101/resource-with-lock-existing/main.bicep b/docs/examples/101/resource-with-lock-existing/main.bicep new file mode 100644 index 00000000000..42f4cb02a67 --- /dev/null +++ b/docs/examples/101/resource-with-lock-existing/main.bicep @@ -0,0 +1,13 @@ +param accountName string + +resource storageAcc 'Microsoft.Storage/storageAccounts@2019-06-01' existing = { + name: accountName +} + +resource lockResource 'Microsoft.Authorization/locks@2016-09-01' = { + name: 'DontDelete' + scope: storageAcc + properties: { + level: 'CanNotDelete' + } +} diff --git a/docs/examples/101/resource-with-lock-existing/main.json b/docs/examples/101/resource-with-lock-existing/main.json new file mode 100644 index 00000000000..65e7f19cdeb --- /dev/null +++ b/docs/examples/101/resource-with-lock-existing/main.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "accountName": { + "type": "string" + } + }, + "functions": [], + "resources": [ + { + "type": "Microsoft.Authorization/locks", + "apiVersion": "2016-09-01", + "scope": "[format('Microsoft.Storage/storageAccounts/{0}', parameters('accountName'))]", + "name": "DontDelete", + "properties": { + "level": "CanNotDelete" + }, + "dependsOn": [] + } + ] +} \ No newline at end of file diff --git a/docs/examples/201/policy-definition-with-assignment/main.bicep b/docs/examples/201/policy-definition-with-assignment/main.bicep index a521f415a20..688a0533e70 100644 --- a/docs/examples/201/policy-definition-with-assignment/main.bicep +++ b/docs/examples/201/policy-definition-with-assignment/main.bicep @@ -1,3 +1,5 @@ +targetScope = 'subscription' + param listOfAllowedLocations array = [ 'norwayeast' 'westeurope' diff --git a/docs/examples/201/policy-definition-with-assignment/main.json b/docs/examples/201/policy-definition-with-assignment/main.json index 46e505b5811..c7eed055206 100644 --- a/docs/examples/201/policy-definition-with-assignment/main.json +++ b/docs/examples/201/policy-definition-with-assignment/main.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "listOfAllowedLocations": { @@ -66,7 +66,7 @@ "apiVersion": "2020-09-01", "name": "Resource-location-restriction", "properties": { - "policyDefinitionId": "[resourceId('Microsoft.Authorization/policyDefinitions', 'custom-allowed-location')]", + "policyDefinitionId": "[subscriptionResourceId('Microsoft.Authorization/policyDefinitions', 'custom-allowed-location')]", "displayName": "Restrict location for Azure resources", "description": "Policy will either Audit or Deny resources being deployed in other locations", "parameters": { @@ -79,8 +79,8 @@ } }, "dependsOn": [ - "[resourceId('Microsoft.Authorization/policyDefinitions', 'custom-allowed-location')]" + "[subscriptionResourceId('Microsoft.Authorization/policyDefinitions', 'custom-allowed-location')]" ] } ] -} +} \ No newline at end of file diff --git a/docs/examples/index.json b/docs/examples/index.json index a18ab0aa50b..cdb90bc4e6a 100644 --- a/docs/examples/index.json +++ b/docs/examples/index.json @@ -215,6 +215,10 @@ "filePath": "101/resource-with-lock/main.bicep", "description": "101/resource-with-lock" }, + { + "filePath": "101/resource-with-lock-existing/main.bicep", + "description": "101/resource-with-lock-existing" + }, { "filePath": "101/sql-database/main.bicep", "description": "101/sql-database" diff --git a/docs/grammar.md b/docs/grammar.md index 393ac4ba4ea..712d3f6a826 100644 --- a/docs/grammar.md +++ b/docs/grammar.md @@ -18,7 +18,7 @@ parameterDefaultValue -> "=" expression variableDecl -> decorator* "variable" IDENTIFIER(name) "=" expression NL -resourceDecl -> decorator* "resource" IDENTIFIER(name) interpString(type) "=" (ifCondition | object) NL +resourceDecl -> decorator* "resource" IDENTIFIER(name) interpString(type) "existing"? "=" (ifCondition | object) NL moduleDecl -> decorator* "module" IDENTIFIER(name) interpString(type) "=" (ifCondition | object) NL diff --git a/docs/spec/resources.md b/docs/spec/resources.md index e39fa32a83d..109bf6a2b35 100644 --- a/docs/spec/resources.md +++ b/docs/spec/resources.md @@ -94,6 +94,32 @@ resource dnsZone 'Microsoft.Network/dnszones@2018-05-01' = if (deployZone) { Conditions may be used with dependency declarations. If the identifier of conditional resource is specified in `dependsOn` of another resource (explicit dependency), the dependency will be ignored if the condition evaluates to `false` at template deployment time. If the condition evaluates to `true`, the dependency will be respected. Referencing a property of a conditional resource (implicit dependency) is allowed but may produce a runtime error in some cases. +## Referencing existing resources + +> Requires Bicep CLI v0.3 or later + +You may add references and access runtime properties from resources outside of the current file by using the `existing` keyword in a resource declaration. This is equivalent to using the ARM Template `reference()` function. + +When using the `existing` keyword, you must provide the `name` of the resource, and may optionally also set the `scope` property to access a resource in a different scope. See [Resource Scopes](./resource-scopes.md) for more information on using the `scope` property. + +```bicep +// this resource will not be deployed by this file, but the declaration provides access to properties on the existing resource. +resource stg 'Microsoft.Storage/storageAccounts@2019-06-01' existing = { + name: 'myacc' +} + +// the 'stg' symbolic name may now be used to access properties on the storage account. +output blobEndpoint string = stg.properties.primaryEndpoints.blob +``` + +```bicep +// example of referencing a resource at a different scope (resource group myRg under subscription mySub) +resource stg 'Microsoft.Storage/storageAccounts@2019-06-01' existing = { + name: 'myacc' + scope: resourceGroup(mySub, myRg) +} +``` + ## Other Examples ### Storage Account diff --git a/src/Bicep.Core.IntegrationTests/Emit/TemplateEmitterTests.cs b/src/Bicep.Core.IntegrationTests/Emit/TemplateEmitterTests.cs index d905a5878b0..7bea0d54547 100644 --- a/src/Bicep.Core.IntegrationTests/Emit/TemplateEmitterTests.cs +++ b/src/Bicep.Core.IntegrationTests/Emit/TemplateEmitterTests.cs @@ -106,143 +106,6 @@ public void InvalidBicep_TemplateEmiterShouldNotProduceAnyTemplate(DataSet dataS result.Diagnostics.Should().NotBeEmpty(); } - private const string ExpectedTenantSchema = "https://schema.management.azure.com/schemas/2019-08-01/tenantDeploymentTemplate.json#"; - private const string ExpectedMgSchema = "https://schema.management.azure.com/schemas/2019-08-01/managementGroupDeploymentTemplate.json#"; - private const string ExpectedSubSchema = "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#"; - private const string ExpectedRgSchema = "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#"; - - [DataRow("tenant", "tenant()", "tenant", ExpectedTenantSchema, "[reference(tenantResourceId('Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[tenantResourceId('Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("tenant", "managementGroup('abc')", "managementGroup", ExpectedTenantSchema, "[reference(extensionResourceId(tenantResourceId('Microsoft.Management/managementGroups', 'abc'), 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(tenantResourceId('Microsoft.Management/managementGroups', 'abc'), 'Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("tenant", "subscription('abc')", "subscription", ExpectedTenantSchema, "[reference(subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("tenant", "resourceGroup('abc', 'def')", "resourceGroup", ExpectedTenantSchema, "[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', 'abc', 'def'), 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', 'abc', 'def'), 'Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("managementGroup", "managementGroup()", "managementGroup", ExpectedMgSchema, "[reference(format('Microsoft.Resources/deployments/{0}', 'myMod'), '2019-10-01').outputs.hello.value]", "[format('Microsoft.Resources/deployments/{0}', 'myMod')]")] - [DataRow("managementGroup", "subscription('abc')", "subscription", ExpectedMgSchema, "[reference(subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("managementGroup", "resourceGroup('abc', 'def')", "resourceGroup", ExpectedMgSchema, "[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', 'abc', 'def'), 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', 'abc', 'def'), 'Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("subscription", "subscription()", "subscription", ExpectedSubSchema, "[reference(subscriptionResourceId('Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[subscriptionResourceId('Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("subscription", "subscription('abc')", "subscription", ExpectedSubSchema, "[reference(subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("subscription", "resourceGroup('abc')", "resourceGroup", ExpectedSubSchema, "[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'abc'), 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'abc'), 'Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("subscription", "tenant()", "tenant", ExpectedSubSchema, "[reference(tenantResourceId('Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[tenantResourceId('Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("resourceGroup", "subscription()", "subscription", ExpectedRgSchema, "[reference(subscriptionResourceId('Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[subscriptionResourceId('Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("resourceGroup", "subscription('abc')", "subscription", ExpectedRgSchema, "[reference(subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("resourceGroup", "resourceGroup()", "resourceGroup", ExpectedRgSchema, "[reference(extensionResourceId(resourceGroup().id, 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(resourceGroup().id, 'Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("resourceGroup", "resourceGroup('abc')", "resourceGroup", ExpectedRgSchema, "[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'abc'), 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'abc'), 'Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("resourceGroup", "resourceGroup('abc', 'def')", "resourceGroup", ExpectedRgSchema, "[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', 'abc', 'def'), 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', 'abc', 'def'), 'Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("resourceGroup", "tenant()", "tenant", ExpectedRgSchema, "[reference(tenantResourceId('Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[tenantResourceId('Microsoft.Resources/deployments', 'myMod')]")] - [DataTestMethod] - public void Emitter_should_generate_correct_module_output_scope_strings(string targetScope, string moduleScope, string moduleTargetScope, string expectedSchema, string expectedOutput, string expectedResourceDependsOn) - { - var (json, diags) = CompilationHelper.Compile( - ("main.bicep", @" -targetScope = '$targetScope' - -module myMod './module.bicep' = { - name: 'myMod' - scope: $moduleScope -} - -resource resourceB 'My.Rp/myResource@2020-01-01' = { - name: 'resourceB' - dependsOn: [ - myMod - ] -} - -output hello string = myMod.outputs.hello -".Replace("$targetScope", targetScope).Replace("$moduleScope", moduleScope)), - ("module.bicep", @" -targetScope = '$moduleTargetScope' - -output hello string = 'hello!' -".Replace("$moduleTargetScope", moduleTargetScope))); - - json.Should().NotBeNull(); - var template = JObject.Parse(json!); - - using (new AssertionScope()) - { - template.SelectToken("$.['$schema']")!.ToString().Should().Be(expectedSchema); - template.SelectToken("$.outputs.hello.value")!.ToString().Should().Be(expectedOutput); - template.SelectToken("$.resources[?(@.name == 'resourceB')].dependsOn[0]")!.ToString().Should().Be(expectedResourceDependsOn); - } - } - - [DataRow("tenant", "[tenantResourceId('My.Rp/myResource', 'resourceA')]", "[tenantResourceId('Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("managementGroup", "[format('My.Rp/myResource/{0}', 'resourceA')]", "[format('Microsoft.Resources/deployments/{0}', 'myMod')]")] - [DataRow("subscription", "[subscriptionResourceId('My.Rp/myResource', 'resourceA')]", "[subscriptionResourceId('Microsoft.Resources/deployments', 'myMod')]")] - [DataRow("resourceGroup", "[resourceId('My.Rp/myResource', 'resourceA')]", "[extensionResourceId(resourceGroup().id, 'Microsoft.Resources/deployments', 'myMod')]")] - [DataTestMethod] - public void Emitter_should_generate_correct_dependsOn_resourceIds(string targetScope, string expectedModuleDependsOn, string expectedResourceDependsOn) - { - var (json, diags) = CompilationHelper.Compile( - ("main.bicep", @" -targetScope = '$targetScope' - -resource resourceA 'My.Rp/myResource@2020-01-01' = { - name: 'resourceA' -} - -module myMod './module.bicep' = { - name: 'myMod' - params: { - dependency: resourceA.id - } -} - -resource resourceB 'My.Rp/myResource@2020-01-01' = { - name: 'resourceB' - dependsOn: [ - myMod - ] -} -".Replace("$targetScope", targetScope)), - ("module.bicep", @" -targetScope = '$targetScope' - -param dependency string -".Replace("$targetScope", targetScope)) - ); - - json.Should().NotBeNull(); - var template = JObject.Parse(json!); - - using (new AssertionScope()) - { - template.SelectToken("$.resources[?(@.name == 'resourceB')].dependsOn[0]")!.ToString().Should().Be(expectedResourceDependsOn); - template.SelectToken("$.resources[?(@.name == 'myMod')].dependsOn[0]")!.ToString().Should().Be(expectedModuleDependsOn); - } - } - - [TestMethod] - public void Emitter_should_generate_correct_extension_scope_property_and_correct_dependsOn() - { - var (json, diags) = CompilationHelper.Compile(@" -resource resourceA 'My.Rp/myResource@2020-01-01' = { - name: 'resourceA' -} - -resource resourceB 'My.Rp/myResource@2020-01-01' = { - scope: resourceA - name: 'resourceB' -} - -resource resourceC 'My.Rp/myResource@2020-01-01' = { - scope: resourceB - name: 'resourceC' -}"); - - json.Should().NotBeNull(); - var template = JObject.Parse(json!); - - using (new AssertionScope()) - { - template.SelectToken("$.resources[?(@.name == 'resourceB')].scope")!.ToString().Should().Be("[format('My.Rp/myResource/{0}', 'resourceA')]"); - template.SelectToken("$.resources[?(@.name == 'resourceB')].dependsOn[0]")!.ToString().Should().Be("[resourceId('My.Rp/myResource', 'resourceA')]"); - - template.SelectToken("$.resources[?(@.name == 'resourceC')].scope")!.ToString().Should().Be("[extensionResourceId(format('My.Rp/myResource/{0}', 'resourceA'), 'My.Rp/myResource', 'resourceB')]"); - template.SelectToken("$.resources[?(@.name == 'resourceC')].dependsOn[0]")!.ToString().Should().Be("[extensionResourceId(format('My.Rp/myResource/{0}', 'resourceA'), 'My.Rp/myResource', 'resourceB')]"); - } - } - private EmitResult EmitTemplate(SyntaxTreeGrouping syntaxTreeGrouping, string filePath) { var compilation = new Compilation(TestResourceTypeProvider.Create(), syntaxTreeGrouping); diff --git a/src/Bicep.Core.IntegrationTests/ScenarioTests.cs b/src/Bicep.Core.IntegrationTests/ScenarioTests.cs index f82d1f0ff29..9df7b9f0ac7 100644 --- a/src/Bicep.Core.IntegrationTests/ScenarioTests.cs +++ b/src/Bicep.Core.IntegrationTests/ScenarioTests.cs @@ -8,6 +8,7 @@ using System; using Bicep.Core.UnitTests.Utils; using Newtonsoft.Json.Linq; +using FluentAssertions.Execution; namespace Bicep.Core.IntegrationTests { @@ -17,27 +18,27 @@ public class ScenarioTests [TestMethod] public void Test_Issue746() { - var bicepContents = @" + var (template, diags, _) = CompilationHelper.Compile(@" var l = l param l -"; - - CompilationHelper.AssertFailureWithDiagnostics( - bicepContents, - new[] { +"); + using (new AssertionScope()) + { + template!.Should().BeNull(); + diags.Should().HaveDiagnostics(new[] { ("BCP028", DiagnosticLevel.Error, "Identifier \"l\" is declared multiple times. Remove or rename the duplicates."), ("BCP079", DiagnosticLevel.Error, "This expression is referencing its own declaration, which is not allowed."), ("BCP028", DiagnosticLevel.Error, "Identifier \"l\" is declared multiple times. Remove or rename the duplicates."), ("BCP014", DiagnosticLevel.Error, "Expected a parameter type at this location. Please specify one of the following types: \"array\", \"bool\", \"int\", \"object\", \"string\"."), }); + } } [TestMethod] public void Test_Issue801() { - var files = new Dictionary - { - [new Uri("file:///path/to/main.bicep")] = @" + var (template, diags, _) = CompilationHelper.Compile( + ("main.bicep", @" targetScope = 'subscription' resource rg 'Microsoft.Resources/resourceGroups@2020-06-01' = { @@ -53,14 +54,14 @@ [new Uri("file:///path/to/main.bicep")] = @" name: 'myVnet' } dependsOn: [ - rg - ] + rg + ] } output vnetid string = vnet.outputs.vnetId output vnetstate string = vnet.outputs.vnetstate -", - [new Uri("file:///path/to/vnet.bicep")] = @" +"), + ("vnet.bicep", @" param location string param name string @@ -86,20 +87,23 @@ param name string output vnetId string = vnet.id output vnetstate string = vnet.properties.provisioningState -", - }; +")); - var jsonOutput = CompilationHelper.AssertSuccessWithTemplateOutput(files, new Uri("file:///path/to/main.bicep")); + using (new AssertionScope()) + { + template!.Should().NotBeNull(); + diags.Should().BeEmpty(); - // ensure we're generating the correct expression with 'subscriptionResourceId', and using the correct name for the module - jsonOutput.Should().Contain("[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'vnet-rg'), 'Microsoft.Resources/deployments', 'network-module'), '2019-10-01').outputs.vnetId.value]"); - jsonOutput.Should().Contain("[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'vnet-rg'), 'Microsoft.Resources/deployments', 'network-module'), '2019-10-01').outputs.vnetstate.value]"); + // ensure we're generating the correct expression with 'subscriptionResourceId', and using the correct name for the module + template!.SelectToken("$.outputs['vnetid'].value")!.Should().DeepEqual("[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'vnet-rg'), 'Microsoft.Resources/deployments', 'network-module'), '2019-10-01').outputs.vnetId.value]"); + template.SelectToken("$.outputs['vnetstate'].value")!.Should().DeepEqual("[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'vnet-rg'), 'Microsoft.Resources/deployments', 'network-module'), '2019-10-01').outputs.vnetstate.value]"); + } } [TestMethod] public void Test_Issue982() { - var bicepContents = @" + var (template, diags, _) = CompilationHelper.Compile(@" param functionApp object param serverFarmId string @@ -114,25 +118,29 @@ param serverFarmId string serverFarmId: serverFarmId } } -"; +"); - var jsonOutput = CompilationHelper.AssertSuccessWithTemplateOutput(bicepContents); - jsonOutput.Should().Contain("[list(format('{0}/config/appsettings', resourceId('Microsoft.Web/sites', parameters('functionApp').name)), '2020-06-01')]"); + using (new AssertionScope()) + { + template!.Should().NotBeNull(); + diags.Should().BeEmpty(); + + template!.SelectToken("$.outputs['config'].value")!.Should().DeepEqual("[list(format('{0}/config/appsettings', resourceId('Microsoft.Web/sites', parameters('functionApp').name)), '2020-06-01')]"); + } } [TestMethod] public void Test_Issue1093() { - var files = new Dictionary - { - [new Uri("file:///path/to/main.bicep")] = @" + var (template, diags, _) = CompilationHelper.Compile( + ("main.bicep", @" targetScope = 'managementGroup' module bicep3rg 'resourceGroup.bicep' = { name: 'rg30' params: { rgName: 'bicep3-rg' - } + } scope: subscription('DEV1') } module bicep4rg 'resourceGroup.bicep' = { @@ -142,8 +150,8 @@ [new Uri("file:///path/to/main.bicep")] = @" } scope: subscription('DEV2') } -", - [new Uri("file:///path/to/resourceGroup.bicep")] = @" +"), + ("resourceGroup.bicep", @" param rgName string param location string = 'westeurope' @@ -152,20 +160,23 @@ param rgName string resource rg 'Microsoft.Resources/resourceGroups@2020-06-01' = { name: rgName location: location -}", - }; +} +")); - var jsonOutput = CompilationHelper.AssertSuccessWithTemplateOutput(files, new Uri("file:///path/to/main.bicep")); + using (new AssertionScope()) + { + template!.Should().NotBeNull(); + diags.Should().BeEmpty(); - var template = JToken.Parse(jsonOutput); - template.SelectToken("$.resources[?(@.name == 'rg30')].location")!.Should().DeepEqual("[deployment().location]"); - template.SelectToken("$.resources[?(@.name == 'rg31')].location")!.Should().DeepEqual("[deployment().location]"); + template!.SelectToken("$.resources[?(@.name == 'rg30')].location")!.Should().DeepEqual("[deployment().location]"); + template.SelectToken("$.resources[?(@.name == 'rg31')].location")!.Should().DeepEqual("[deployment().location]"); + } } [TestMethod] public void Test_Issue1173() { - var (json, _) = CompilationHelper.Compile( + var (template, _, _) = CompilationHelper.Compile( ("main.bicep", @" targetScope = 'subscription' @@ -309,11 +320,10 @@ param rtName string output id string = routetable.id ")); - json.Should().NotBeNull(); - var template = JToken.Parse(json!); + template!.Should().NotBeNull(); // variable 'subnets' should have been inlined - template.SelectToken("$.resources[?(@.name == '[variables(\\'vnetName\\')]')].properties.parameters.subnets.value")!.Type.Should().Be(JTokenType.Array); + template!.SelectToken("$.resources[?(@.name == '[variables(\\'vnetName\\')]')].properties.parameters.subnets.value")!.Type.Should().Be(JTokenType.Array); template.SelectToken("$.resources[?(@.name == '[variables(\\'vnetName\\')]')].properties.parameters.subnets.value[0].name")!.Should().DeepEqual("GatewaySubnet"); template.SelectToken("$.resources[?(@.name == '[variables(\\'vnetName\\')]')].properties.parameters.subnets.value[1].name")!.Should().DeepEqual("appsn01"); // there should be no definition in the variables list for 'subnets' @@ -323,9 +333,8 @@ param rtName string [TestMethod] public void Test_Issue1185() { - var files = new Dictionary - { - [new Uri("file:///main.bicep")] = @" + var (template, diags, _) = CompilationHelper.Compile( + ("main.bicep", @" targetScope = 'tenant' param allUpMgName string @@ -336,131 +345,134 @@ param allUpMgName string params: { mgName: allUpMgName } -}", - [new Uri("file:///modules/rblab-allup-mg-policies.bicep")] = @" +} +"), + ("modules/rblab-allup-mg-policies.bicep", @" targetScope = 'managementGroup' param mgName string -", - }; +")); - var jsonOutput = CompilationHelper.AssertSuccessWithTemplateOutput(files, new Uri("file:///main.bicep")); - var template = JToken.Parse(jsonOutput); + using (new AssertionScope()) + { + template!.Should().NotBeNull(); + diags.Should().BeEmpty(); - // deploying a management group module at tenant scope requires an unqualified resource id - template.SelectToken("$.resources[?(@.name == 'allupmgdeploy')].scope")!.Should().DeepEqual("[format('Microsoft.Management/managementGroups/{0}', parameters('allUpMgName'))]"); + // deploying a management group module at tenant scope requires an unqualified resource id + template!.SelectToken("$.resources[?(@.name == 'allupmgdeploy')].scope")!.Should().DeepEqual("[format('Microsoft.Management/managementGroups/{0}', parameters('allUpMgName'))]"); + } } [TestMethod] public void Test_Issue1332() { - var files = new Dictionary - { - [new Uri("file:///main.bicep")] = @" + var (template, diags, _) = CompilationHelper.Compile(@" var propname = 'ptest' var issue = true ? { prop1: { '${propname}': {} } } : {} -", - }; +"); - var jsonOutput = CompilationHelper.AssertSuccessWithTemplateOutput(files, new Uri("file:///main.bicep")); - var template = JToken.Parse(jsonOutput); - template.SelectToken("$.variables.issue")!.Should().DeepEqual("[if(true(), createObject('prop1', createObject(variables('propname'), createObject())), createObject())]"); + using (new AssertionScope()) + { + template!.Should().NotBeNull(); + diags.Should().BeEmpty(); + + template!.SelectToken("$.variables.issue")!.Should().DeepEqual("[if(true(), createObject('prop1', createObject(variables('propname'), createObject())), createObject())]"); + } } [TestMethod] public void Test_Issue486() { - var files = new Dictionary - { - [new Uri("file:///main.bicep")] = @" + var (template, _, _) = CompilationHelper.Compile(@" var myInt = 5 var myBigInt = 2199023255552 var myIntExpression = 5 * 5 var myBigIntExpression = 2199023255552 * 2 var myBigIntExpression2 = 2199023255552 * 2199023255552 -", - }; - - var jsonOutput = CompilationHelper.AssertSuccessWithTemplateOutput(files, new Uri("file:///main.bicep")); - var template = JToken.Parse(jsonOutput); - template.SelectToken("$.variables.myInt")!.Should().DeepEqual(5); - template.SelectToken("$.variables.myBigInt")!.Should().DeepEqual(2199023255552); - template.SelectToken("$.variables.myIntExpression")!.Should().DeepEqual("[mul(5, 5)]"); - template.SelectToken("$.variables.myBigIntExpression2")!.Should().DeepEqual("[mul(json('2199023255552'), json('2199023255552'))]"); +"); + + template!.Should().NotBeNull(); + using (new AssertionScope()) + { + template!.SelectToken("$.variables.myInt")!.Should().DeepEqual(5); + template.SelectToken("$.variables.myBigInt")!.Should().DeepEqual(2199023255552); + template.SelectToken("$.variables.myIntExpression")!.Should().DeepEqual("[mul(5, 5)]"); + template.SelectToken("$.variables.myBigIntExpression2")!.Should().DeepEqual("[mul(json('2199023255552'), json('2199023255552'))]"); + } } [TestMethod] public void Test_Issue1362_1() { - var files = new Dictionary - { - [new Uri("file:///main.bicep")] = @" + var (template, _, _) = CompilationHelper.Compile( + ("main.bicep", @" targetScope = 'resourceGroup' module sub './modules/subscription.bicep' = { name: 'subDeploy' scope: subscription() -}", - [new Uri("file:///modules/subscription.bicep")] = @" +}"), + ("modules/subscription.bicep", @" targetScope = 'subscription' -", - }; +")); - var jsonOutput = CompilationHelper.AssertSuccessWithTemplateOutput(files, new Uri("file:///main.bicep")); - var template = JToken.Parse(jsonOutput); - template.SelectToken("$.resources[?(@.name == 'subDeploy')].subscriptionId")!.Should().DeepEqual("[subscription().subscriptionId]"); - template.SelectToken("$.resources[?(@.name == 'subDeploy')].location")!.Should().DeepEqual("[resourceGroup().location]"); + template!.Should().NotBeNull(); + using (new AssertionScope()) + { + template!.SelectToken("$.resources[?(@.name == 'subDeploy')].subscriptionId")!.Should().DeepEqual("[subscription().subscriptionId]"); + template.SelectToken("$.resources[?(@.name == 'subDeploy')].location")!.Should().DeepEqual("[resourceGroup().location]"); + } } [TestMethod] public void Test_Issue1362_2() { - var files = new Dictionary - { - [new Uri("file:///main.bicep")] = @" + var (template, _, _) = CompilationHelper.Compile( + ("main.bicep", @" targetScope = 'resourceGroup' module sub './modules/subscription.bicep' = { name: 'subDeploy' scope: subscription('abcd-efgh') -}", - [new Uri("file:///modules/subscription.bicep")] = @" +}"), + ("modules/subscription.bicep", @" targetScope = 'subscription' -", - }; +")); - var jsonOutput = CompilationHelper.AssertSuccessWithTemplateOutput(files, new Uri("file:///main.bicep")); - var template = JToken.Parse(jsonOutput); - template.SelectToken("$.resources[?(@.name == 'subDeploy')].subscriptionId")!.Should().DeepEqual("abcd-efgh"); - template.SelectToken("$.resources[?(@.name == 'subDeploy')].location")!.Should().DeepEqual("[resourceGroup().location]"); + template!.Should().NotBeNull(); + using (new AssertionScope()) + { + template!.SelectToken("$.resources[?(@.name == 'subDeploy')].subscriptionId")!.Should().DeepEqual("abcd-efgh"); + template.SelectToken("$.resources[?(@.name == 'subDeploy')].location")!.Should().DeepEqual("[resourceGroup().location]"); + } } [TestMethod] public void Test_Issue1402() { - var files = new Dictionary - { - [new Uri("file:///main.bicep")] = @" + var (template, _, _) = CompilationHelper.Compile( + ("main.bicep", @" targetScope = 'subscription' module sub './modules/resourceGroup.bicep' = { name: 'subDeploy' scope: resourceGroup('abcd-efgh','bicep-rg') -}", - [new Uri("file:///modules/resourceGroup.bicep")] = @" +}"), + ("modules/resourceGroup.bicep", @" targetScope = 'resourceGroup' -", - }; - - var jsonOutput = CompilationHelper.AssertSuccessWithTemplateOutput(files, new Uri("file:///main.bicep")); - var template = JToken.Parse(jsonOutput); - template.SelectToken("$.resources[?(@.name == 'subDeploy')].subscriptionId")!.Should().DeepEqual("abcd-efgh"); - template.SelectToken("$.resources[?(@.name == 'subDeploy')].resourceGroup")!.Should().DeepEqual("bicep-rg"); - template.SelectToken("$.resources[?(@.name == 'subDeploy')].location")!.Should().BeNull(); +")); + + template!.Should().NotBeNull(); + using (new AssertionScope()) + { + template!.SelectToken("$.resources[?(@.name == 'subDeploy')].subscriptionId")!.Should().DeepEqual("abcd-efgh"); + template.SelectToken("$.resources[?(@.name == 'subDeploy')].resourceGroup")!.Should().DeepEqual("bicep-rg"); + template.SelectToken("$.resources[?(@.name == 'subDeploy')].location")!.Should().BeNull(); + } } } } \ No newline at end of file diff --git a/src/Bicep.Core.IntegrationTests/ScopeTests.cs b/src/Bicep.Core.IntegrationTests/ScopeTests.cs new file mode 100644 index 00000000000..d114392adcb --- /dev/null +++ b/src/Bicep.Core.IntegrationTests/ScopeTests.cs @@ -0,0 +1,270 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +using System.Collections.Generic; +using Bicep.Core.UnitTests.Assertions; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using FluentAssertions; +using Bicep.Core.UnitTests.Utils; +using Newtonsoft.Json.Linq; +using FluentAssertions.Execution; +using Azure.Bicep.Types.Concrete; +using Bicep.Core.Diagnostics; + +namespace Bicep.Core.IntegrationTests +{ + [TestClass] + public class ScopeTests + { + private const string ExpectedTenantSchema = "https://schema.management.azure.com/schemas/2019-08-01/tenantDeploymentTemplate.json#"; + private const string ExpectedMgSchema = "https://schema.management.azure.com/schemas/2019-08-01/managementGroupDeploymentTemplate.json#"; + private const string ExpectedSubSchema = "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#"; + private const string ExpectedRgSchema = "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#"; + + [DataRow("tenant", "tenant()", "tenant", ExpectedTenantSchema, "[reference(tenantResourceId('Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[tenantResourceId('Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("tenant", "managementGroup('abc')", "managementGroup", ExpectedTenantSchema, "[reference(extensionResourceId(tenantResourceId('Microsoft.Management/managementGroups', 'abc'), 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(tenantResourceId('Microsoft.Management/managementGroups', 'abc'), 'Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("tenant", "subscription('abc')", "subscription", ExpectedTenantSchema, "[reference(subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("tenant", "resourceGroup('abc', 'def')", "resourceGroup", ExpectedTenantSchema, "[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', 'abc', 'def'), 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', 'abc', 'def'), 'Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("managementGroup", "managementGroup()", "managementGroup", ExpectedMgSchema, "[reference(format('Microsoft.Resources/deployments/{0}', 'myMod'), '2019-10-01').outputs.hello.value]", "[format('Microsoft.Resources/deployments/{0}', 'myMod')]")] + [DataRow("managementGroup", "subscription('abc')", "subscription", ExpectedMgSchema, "[reference(subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("managementGroup", "resourceGroup('abc', 'def')", "resourceGroup", ExpectedMgSchema, "[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', 'abc', 'def'), 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', 'abc', 'def'), 'Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("subscription", "subscription()", "subscription", ExpectedSubSchema, "[reference(subscriptionResourceId('Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[subscriptionResourceId('Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("subscription", "subscription('abc')", "subscription", ExpectedSubSchema, "[reference(subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("subscription", "resourceGroup('abc')", "resourceGroup", ExpectedSubSchema, "[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'abc'), 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'abc'), 'Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("subscription", "tenant()", "tenant", ExpectedSubSchema, "[reference(tenantResourceId('Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[tenantResourceId('Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("resourceGroup", "subscription()", "subscription", ExpectedRgSchema, "[reference(subscriptionResourceId('Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[subscriptionResourceId('Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("resourceGroup", "subscription('abc')", "subscription", ExpectedRgSchema, "[reference(subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[subscriptionResourceId('abc', 'Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("resourceGroup", "resourceGroup()", "resourceGroup", ExpectedRgSchema, "[reference(extensionResourceId(resourceGroup().id, 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(resourceGroup().id, 'Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("resourceGroup", "resourceGroup('abc')", "resourceGroup", ExpectedRgSchema, "[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'abc'), 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'abc'), 'Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("resourceGroup", "resourceGroup('abc', 'def')", "resourceGroup", ExpectedRgSchema, "[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', 'abc', 'def'), 'Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', 'abc', 'def'), 'Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("resourceGroup", "tenant()", "tenant", ExpectedRgSchema, "[reference(tenantResourceId('Microsoft.Resources/deployments', 'myMod'), '2019-10-01').outputs.hello.value]", "[tenantResourceId('Microsoft.Resources/deployments', 'myMod')]")] + [DataTestMethod] + public void Emitter_should_generate_correct_module_output_scope_strings(string targetScope, string moduleScope, string moduleTargetScope, string expectedSchema, string expectedOutput, string expectedResourceDependsOn) + { + var (template, diags, _) = CompilationHelper.Compile( + ("main.bicep", @" +targetScope = '$targetScope' + +module myMod './module.bicep' = { + name: 'myMod' + scope: $moduleScope +} + +resource resourceB 'My.Rp/myResource@2020-01-01' = { + name: 'resourceB' + dependsOn: [ + myMod + ] +} + +output hello string = myMod.outputs.hello +".Replace("$targetScope", targetScope).Replace("$moduleScope", moduleScope)), + ("module.bicep", @" +targetScope = '$moduleTargetScope' + +output hello string = 'hello!' +".Replace("$moduleTargetScope", moduleTargetScope))); + + template!.Should().NotBeNull(); + + using (new AssertionScope()) + { + template!.SelectToken("$.['$schema']")!.Should().DeepEqual(expectedSchema); + template.SelectToken("$.outputs.hello.value")!.Should().DeepEqual(expectedOutput); + template.SelectToken("$.resources[?(@.name == 'resourceB')].dependsOn[0]")!.Should().DeepEqual(expectedResourceDependsOn); + } + } + + [DataRow("tenant", "[tenantResourceId('My.Rp/myResource', 'resourceA')]", "[tenantResourceId('Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("managementGroup", "[format('My.Rp/myResource/{0}', 'resourceA')]", "[format('Microsoft.Resources/deployments/{0}', 'myMod')]")] + [DataRow("subscription", "[subscriptionResourceId('My.Rp/myResource', 'resourceA')]", "[subscriptionResourceId('Microsoft.Resources/deployments', 'myMod')]")] + [DataRow("resourceGroup", "[resourceId('My.Rp/myResource', 'resourceA')]", "[extensionResourceId(resourceGroup().id, 'Microsoft.Resources/deployments', 'myMod')]")] + [DataTestMethod] + public void Emitter_should_generate_correct_dependsOn_resourceIds(string targetScope, string expectedModuleDependsOn, string expectedResourceDependsOn) + { + var (template, diags, _) = CompilationHelper.Compile( + ("main.bicep", @" +targetScope = '$targetScope' + +resource resourceA 'My.Rp/myResource@2020-01-01' = { + name: 'resourceA' +} + +module myMod './module.bicep' = { + name: 'myMod' + params: { + dependency: resourceA.id + } +} + +resource resourceB 'My.Rp/myResource@2020-01-01' = { + name: 'resourceB' + dependsOn: [ + myMod + ] +} +".Replace("$targetScope", targetScope)), + ("module.bicep", @" +targetScope = '$targetScope' + +param dependency string +".Replace("$targetScope", targetScope)) + ); + + template!.Should().NotBeNull(); + + using (new AssertionScope()) + { + template!.SelectToken("$.resources[?(@.name == 'resourceB')].dependsOn[0]")!.Should().DeepEqual(expectedResourceDependsOn); + template.SelectToken("$.resources[?(@.name == 'myMod')].dependsOn[0]")!.Should().DeepEqual(expectedModuleDependsOn); + } + } + + [TestMethod] + public void Emitter_should_generate_correct_extension_scope_property_and_correct_dependsOn() + { + var (template, diags, _) = CompilationHelper.Compile(@" +resource resourceA 'My.Rp/myResource@2020-01-01' = { + name: 'resourceA' +} + +resource resourceB 'My.Rp/myResource@2020-01-01' = { + scope: resourceA + name: 'resourceB' +} + +resource resourceC 'My.Rp/myResource@2020-01-01' = { + scope: resourceB + name: 'resourceC' +}"); + + template!.Should().NotBeNull(); + + using (new AssertionScope()) + { + template!.SelectToken("$.resources[?(@.name == 'resourceB')].scope")!.Should().DeepEqual("[format('My.Rp/myResource/{0}', 'resourceA')]"); + template.SelectToken("$.resources[?(@.name == 'resourceB')].dependsOn[0]")!.Should().DeepEqual("[resourceId('My.Rp/myResource', 'resourceA')]"); + + template.SelectToken("$.resources[?(@.name == 'resourceC')].scope")!.Should().DeepEqual("[extensionResourceId(resourceId('My.Rp/myResource', 'resourceA'), 'My.Rp/myResource', 'resourceB')]"); + template.SelectToken("$.resources[?(@.name == 'resourceC')].dependsOn[0]")!.Should().DeepEqual("[extensionResourceId(resourceId('My.Rp/myResource', 'resourceA'), 'My.Rp/myResource', 'resourceB')]"); + } + } + + [DataRow("tenant", "[format('My.Rp/myResource/{0}', 'resourceA')]", "[reference(tenantResourceId('My.Rp/myResource', 'resourceA')).myProp]")] + [DataRow("managementGroup", "[format('My.Rp/myResource/{0}', 'resourceA')]", "[reference(format('My.Rp/myResource/{0}', 'resourceA')).myProp]")] + [DataRow("subscription", "[format('My.Rp/myResource/{0}', 'resourceA')]", "[reference(subscriptionResourceId('My.Rp/myResource', 'resourceA')).myProp]")] + [DataRow("resourceGroup", "[format('My.Rp/myResource/{0}', 'resourceA')]", "[reference(resourceId('My.Rp/myResource', 'resourceA')).myProp]")] + [DataTestMethod] + public void Emitter_should_generate_correct_references_for_existing_resources(string targetScope, string expectedScopeExpression, string expectedReferenceExpression) + { + var (template, diags, _) = CompilationHelper.Compile(@" +targetScope = '$targetScope' + +resource resourceA 'My.Rp/myResource@2020-01-01' existing = { + name: 'resourceA' +} + +resource resourceB 'My.Rp/myResource@2020-01-01' = { + scope: resourceA + name: 'resourceB' +} + +output resourceARef string = resourceA.properties.myProp +".Replace("$targetScope", targetScope)); + + template!.Should().NotBeNull(); + + using (new AssertionScope()) + { + template!.SelectToken("$.resources[?(@.name == 'resourceB')].scope")!.Should().DeepEqual(expectedScopeExpression); + (template.SelectToken("$.resources[?(@.name == 'resourceB')].dependsOn") as IEnumerable)!.Should().BeEmpty(); + + template.SelectToken("$.outputs['resourceARef'].value")!.Should().DeepEqual(expectedReferenceExpression); + } + } + + [TestMethod] + public void Existing_resources_can_be_referenced_at_other_scopes() + { + var typeName = "My.Rp/myResource@2020-01-01"; + var typeProvider = ResourceTypeProviderHelper.CreateAzResourceTypeProvider(factory => { + var stringType = factory.Create(() => new Azure.Bicep.Types.Concrete.BuiltInType(BuiltInTypeKind.String)); + var objectType = factory.Create(() => new Azure.Bicep.Types.Concrete.ObjectType(typeName, new Dictionary { + ["name"] = new ObjectProperty(factory.GetReference(stringType), ObjectPropertyFlags.DeployTimeConstant), + ["kind"] = new ObjectProperty(factory.GetReference(stringType), ObjectPropertyFlags.ReadOnly), + }, null)); + var resourceType = factory.Create(() => new Azure.Bicep.Types.Concrete.ResourceType(typeName, ScopeType.ResourceGroup, factory.GetReference(objectType))); + }); + + // explicitly pass a valid scope + var (template, _, _) = CompilationHelper.Compile(typeProvider, ("main.bicep", @" +resource resourceA 'My.Rp/myResource@2020-01-01' existing = { + name: 'resourceA' + scope: resourceGroup() +} + +output resourceARef string = resourceA.kind +")); + + template!.Should().NotBeNull(); + using (new AssertionScope()) + { + template!.SelectToken("$.outputs['resourceARef'].value")!.Should().DeepEqual("[reference(extensionResourceId(resourceGroup().id, 'My.Rp/myResource', 'resourceA'), '2020-01-01', 'full').kind]"); + } + + // use a valid targetScope without setting the scope property + (template, _, _) = CompilationHelper.Compile(typeProvider, ("main.bicep", @" +targetScope = 'resourceGroup' + +resource resourceA 'My.Rp/myResource@2020-01-01' existing = { + name: 'resourceA' +} + +output resourceARef string = resourceA.kind +")); + + template!.Should().NotBeNull(); + using (new AssertionScope()) + { + template!.SelectToken("$.outputs['resourceARef'].value")!.Should().DeepEqual("[reference(resourceId('My.Rp/myResource', 'resourceA'), '2020-01-01', 'full').kind]"); + } + } + + [TestMethod] + public void Errors_are_raised_for_existing_resources_at_invalid_scopes() + { + var typeName = "My.Rp/myResource@2020-01-01"; + var typeProvider = ResourceTypeProviderHelper.CreateAzResourceTypeProvider(factory => { + var stringType = factory.Create(() => new Azure.Bicep.Types.Concrete.BuiltInType(BuiltInTypeKind.String)); + var objectType = factory.Create(() => new Azure.Bicep.Types.Concrete.ObjectType(typeName, new Dictionary { + ["name"] = new ObjectProperty(factory.GetReference(stringType), ObjectPropertyFlags.DeployTimeConstant), + }, null)); + var resourceType = factory.Create(() => new Azure.Bicep.Types.Concrete.ResourceType(typeName, ScopeType.ResourceGroup, factory.GetReference(objectType))); + }); + + // explicitly pass an invalid scope + var (_, diags, _) = CompilationHelper.Compile(typeProvider, ("main.bicep", @" +resource resourceA 'My.Rp/myResource@2020-01-01' existing = { + name: 'resourceA' + scope: subscription() +} +")); + + diags.Should().HaveDiagnostics(new[] { + ("BCP135", DiagnosticLevel.Error, "Scope \"subscription\" is not valid for this resource type. Permitted scopes: \"resourceGroup\"."), + }); + + // use an invalid targetScope without setting the scope property + (_, diags, _) = CompilationHelper.Compile(typeProvider, ("main.bicep", @" +targetScope = 'subscription' + +resource resourceA 'My.Rp/myResource@2020-01-01' existing = { + name: 'resourceA' +} +")); + + diags.Should().HaveDiagnostics(new[] { + ("BCP135", DiagnosticLevel.Error, "Scope \"subscription\" is not valid for this resource type. Permitted scopes: \"resourceGroup\"."), + }); + } + } +} \ No newline at end of file diff --git a/src/Bicep.Core.IntegrationTests/Semantics/NamespaceTests.cs b/src/Bicep.Core.IntegrationTests/Semantics/NamespaceTests.cs index dfef98bb912..23a19d3a7de 100644 --- a/src/Bicep.Core.IntegrationTests/Semantics/NamespaceTests.cs +++ b/src/Bicep.Core.IntegrationTests/Semantics/NamespaceTests.cs @@ -56,7 +56,7 @@ private static IEnumerable GetNamespaces() // local function static object[] CreateRow(NamespaceSymbol @namespace) => new object[] {@namespace}; - var compilation = CompilationHelper.CreateCompilation(new TestResourceTypeProvider(), ("main.bicep", string.Empty)); + var (_, _, compilation) = CompilationHelper.Compile(new TestResourceTypeProvider(), ("main.bicep", string.Empty)); return compilation.GetEntrypointSemanticModel().Root.ImportedNamespaces.Values.Select(CreateRow); } diff --git a/src/Bicep.Core.Samples/Files/Completions/resourceTypes.json b/src/Bicep.Core.Samples/Files/Completions/resourceTypes.json index a295e9b3d2e..e9a499bba50 100644 --- a/src/Bicep.Core.Samples/Files/Completions/resourceTypes.json +++ b/src/Bicep.Core.Samples/Files/Completions/resourceTypes.json @@ -59,7 +59,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000015c", + "sortText": "00000173", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -76,7 +76,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000015e", + "sortText": "00000175", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -93,7 +93,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000015d", + "sortText": "00000174", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -110,7 +110,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000160", + "sortText": "00000177", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -127,7 +127,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000015f", + "sortText": "00000176", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -144,7 +144,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000161", + "sortText": "00000178", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -161,7 +161,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000163", + "sortText": "0000017a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -178,7 +178,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000162", + "sortText": "00000179", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -195,7 +195,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000164", + "sortText": "0000017b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -212,7 +212,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000165", + "sortText": "0000017c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -229,7 +229,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000166", + "sortText": "0000017d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -246,7 +246,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000167", + "sortText": "0000017e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -263,7 +263,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000168", + "sortText": "0000017f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -280,7 +280,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000169", + "sortText": "00000180", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -297,7 +297,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000015b", + "sortText": "00000172", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -314,7 +314,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000015a", + "sortText": "00000171", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -365,7 +365,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000007", + "sortText": "00000008", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -382,7 +382,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000000b", + "sortText": "0000000c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -399,7 +399,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000000a", + "sortText": "0000000b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -416,7 +416,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000009", + "sortText": "0000000a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -433,7 +433,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000008", + "sortText": "00000009", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -450,7 +450,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000000c", + "sortText": "0000000d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -467,7 +467,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000011", + "sortText": "00000012", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -484,7 +484,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000010", + "sortText": "00000011", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -501,7 +501,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000000f", + "sortText": "00000010", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -518,7 +518,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000001d", + "sortText": "0000001e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -535,7 +535,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000001c", + "sortText": "0000001d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -552,7 +552,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000001b", + "sortText": "0000001c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -569,7 +569,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000072", + "sortText": "00000073", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -586,7 +586,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000071", + "sortText": "00000072", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -603,7 +603,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000070", + "sortText": "00000071", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -620,7 +620,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000006f", + "sortText": "00000070", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -637,7 +637,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000002d", + "sortText": "0000002e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -654,7 +654,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000002c", + "sortText": "0000002d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -671,7 +671,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000002b", + "sortText": "0000002c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -688,7 +688,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000002a", + "sortText": "0000002b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -705,7 +705,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000029", + "sortText": "0000002a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -722,7 +722,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000028", + "sortText": "00000029", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -739,7 +739,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000027", + "sortText": "00000028", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -756,7 +756,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000003b", + "sortText": "0000003c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -773,7 +773,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000003a", + "sortText": "0000003b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -790,7 +790,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000039", + "sortText": "0000003a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -807,7 +807,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000038", + "sortText": "00000039", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -824,7 +824,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000037", + "sortText": "00000038", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -841,7 +841,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000036", + "sortText": "00000037", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -858,7 +858,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000035", + "sortText": "00000036", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -875,7 +875,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000042", + "sortText": "00000043", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -892,7 +892,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000041", + "sortText": "00000042", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -909,7 +909,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000040", + "sortText": "00000041", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -926,7 +926,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000003f", + "sortText": "00000040", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -943,7 +943,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000003e", + "sortText": "0000003f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -960,7 +960,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000003d", + "sortText": "0000003e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -977,7 +977,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000003c", + "sortText": "0000003d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -994,7 +994,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000034", + "sortText": "00000035", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1011,7 +1011,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000033", + "sortText": "00000034", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1028,7 +1028,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000032", + "sortText": "00000033", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1045,7 +1045,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000031", + "sortText": "00000032", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1062,7 +1062,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000030", + "sortText": "00000031", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1079,7 +1079,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000002f", + "sortText": "00000030", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1096,7 +1096,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000002e", + "sortText": "0000002f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1113,7 +1113,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000052", + "sortText": "00000053", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1130,7 +1130,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000051", + "sortText": "00000052", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1147,7 +1147,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000050", + "sortText": "00000051", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1164,7 +1164,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000004f", + "sortText": "00000050", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1181,7 +1181,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000004e", + "sortText": "0000004f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1198,7 +1198,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000004d", + "sortText": "0000004e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1215,7 +1215,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000004c", + "sortText": "0000004d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1232,7 +1232,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000004b", + "sortText": "0000004c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1249,7 +1249,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000004a", + "sortText": "0000004b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1266,7 +1266,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000049", + "sortText": "0000004a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1283,7 +1283,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000048", + "sortText": "00000049", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1300,7 +1300,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000047", + "sortText": "00000048", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1317,7 +1317,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000046", + "sortText": "00000047", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1334,7 +1334,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000045", + "sortText": "00000046", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1351,7 +1351,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000044", + "sortText": "00000045", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1368,7 +1368,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000043", + "sortText": "00000044", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1385,7 +1385,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000059", + "sortText": "0000005a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1402,7 +1402,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000058", + "sortText": "00000059", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1419,7 +1419,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000057", + "sortText": "00000058", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1436,7 +1436,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000056", + "sortText": "00000057", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1453,7 +1453,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000055", + "sortText": "00000056", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1470,7 +1470,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000054", + "sortText": "00000055", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1487,7 +1487,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000053", + "sortText": "00000054", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1504,7 +1504,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000060", + "sortText": "00000061", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1521,7 +1521,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000005f", + "sortText": "00000060", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1538,7 +1538,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000005e", + "sortText": "0000005f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1555,7 +1555,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000005d", + "sortText": "0000005e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1572,7 +1572,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000005c", + "sortText": "0000005d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1589,7 +1589,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000005b", + "sortText": "0000005c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1606,7 +1606,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000005a", + "sortText": "0000005b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1623,7 +1623,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000067", + "sortText": "00000068", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1640,7 +1640,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000066", + "sortText": "00000067", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1657,7 +1657,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000065", + "sortText": "00000066", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1674,7 +1674,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000064", + "sortText": "00000065", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1691,7 +1691,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000063", + "sortText": "00000064", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1708,7 +1708,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000062", + "sortText": "00000063", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1725,7 +1725,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000061", + "sortText": "00000062", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1742,7 +1742,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000006e", + "sortText": "0000006f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1759,7 +1759,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000006d", + "sortText": "0000006e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1776,7 +1776,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000006c", + "sortText": "0000006d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1793,7 +1793,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000006b", + "sortText": "0000006c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1810,7 +1810,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000006a", + "sortText": "0000006b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1827,7 +1827,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000069", + "sortText": "0000006a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1844,7 +1844,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000068", + "sortText": "00000069", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1861,7 +1861,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000026", + "sortText": "00000027", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1878,7 +1878,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000025", + "sortText": "00000026", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1895,7 +1895,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000024", + "sortText": "00000025", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1912,7 +1912,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000023", + "sortText": "00000024", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1929,7 +1929,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000022", + "sortText": "00000023", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1946,7 +1946,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000021", + "sortText": "00000022", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1963,7 +1963,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000020", + "sortText": "00000021", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1980,7 +1980,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000001f", + "sortText": "00000020", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1997,7 +1997,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000001e", + "sortText": "0000001f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2014,7 +2014,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000007b", + "sortText": "0000007c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2031,7 +2031,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000007a", + "sortText": "0000007b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2048,7 +2048,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000079", + "sortText": "0000007a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2065,7 +2065,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000078", + "sortText": "00000079", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2082,7 +2082,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000077", + "sortText": "00000078", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2099,7 +2099,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000076", + "sortText": "00000077", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2116,7 +2116,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000075", + "sortText": "00000076", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2133,7 +2133,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000074", + "sortText": "00000075", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2150,7 +2150,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000073", + "sortText": "00000074", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2167,7 +2167,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000084", + "sortText": "00000085", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2184,7 +2184,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000083", + "sortText": "00000084", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2201,7 +2201,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000082", + "sortText": "00000083", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2218,7 +2218,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000081", + "sortText": "00000082", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2235,7 +2235,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000080", + "sortText": "00000081", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2252,7 +2252,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000007f", + "sortText": "00000080", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2269,7 +2269,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000007e", + "sortText": "0000007f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2286,7 +2286,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000007d", + "sortText": "0000007e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2303,7 +2303,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000007c", + "sortText": "0000007d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2320,7 +2320,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000089", + "sortText": "0000008a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2337,7 +2337,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000088", + "sortText": "00000089", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2354,7 +2354,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000087", + "sortText": "00000088", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2371,7 +2371,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000086", + "sortText": "00000087", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2388,7 +2388,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000085", + "sortText": "00000086", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2405,7 +2405,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000092", + "sortText": "00000093", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2422,7 +2422,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000091", + "sortText": "00000092", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2439,7 +2439,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000090", + "sortText": "00000091", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2456,7 +2456,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000008f", + "sortText": "00000090", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2473,7 +2473,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000008e", + "sortText": "0000008f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2490,7 +2490,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000008d", + "sortText": "0000008e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2507,7 +2507,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000008c", + "sortText": "0000008d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2524,7 +2524,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000008b", + "sortText": "0000008c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2541,7 +2541,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000008a", + "sortText": "0000008b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2558,7 +2558,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000099", + "sortText": "0000009a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2575,7 +2575,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000098", + "sortText": "00000099", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2592,7 +2592,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000097", + "sortText": "00000098", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2609,7 +2609,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000096", + "sortText": "00000097", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2626,7 +2626,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000095", + "sortText": "00000096", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2643,7 +2643,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000094", + "sortText": "00000095", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2660,7 +2660,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000093", + "sortText": "00000094", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2677,7 +2677,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000009f", + "sortText": "000000a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2694,7 +2694,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000009e", + "sortText": "0000009f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2711,7 +2711,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000009d", + "sortText": "0000009e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2728,7 +2728,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a2", + "sortText": "000000a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2745,7 +2745,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a1", + "sortText": "000000a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2762,7 +2762,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a0", + "sortText": "000000a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2779,7 +2779,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000009c", + "sortText": "0000009d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2796,7 +2796,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000009b", + "sortText": "0000009c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2813,7 +2813,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000009a", + "sortText": "0000009b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2830,7 +2830,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ab", + "sortText": "000000ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2847,7 +2847,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000aa", + "sortText": "000000ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2864,7 +2864,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a9", + "sortText": "000000aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2881,7 +2881,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a8", + "sortText": "000000a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2898,7 +2898,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a7", + "sortText": "000000a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2915,7 +2915,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a6", + "sortText": "000000a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2932,7 +2932,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a5", + "sortText": "000000a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2949,7 +2949,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a4", + "sortText": "000000a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2966,7 +2966,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a3", + "sortText": "000000a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2983,7 +2983,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b4", + "sortText": "000000b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3000,7 +3000,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b3", + "sortText": "000000b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3017,7 +3017,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b2", + "sortText": "000000b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3034,7 +3034,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b1", + "sortText": "000000b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3051,7 +3051,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b0", + "sortText": "000000b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3068,7 +3068,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000af", + "sortText": "000000b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3085,7 +3085,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ae", + "sortText": "000000af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3102,7 +3102,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ad", + "sortText": "000000ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3119,7 +3119,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ac", + "sortText": "000000ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3136,7 +3136,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000bd", + "sortText": "000000be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3153,7 +3153,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000bc", + "sortText": "000000bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3170,7 +3170,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000bb", + "sortText": "000000bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3187,7 +3187,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ba", + "sortText": "000000bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3204,7 +3204,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b9", + "sortText": "000000ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3221,7 +3221,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b8", + "sortText": "000000b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3238,7 +3238,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b7", + "sortText": "000000b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3255,7 +3255,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b6", + "sortText": "000000b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3272,7 +3272,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b5", + "sortText": "000000b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3289,7 +3289,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c0", + "sortText": "000000c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3306,7 +3306,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000bf", + "sortText": "000000c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3323,7 +3323,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000be", + "sortText": "000000bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3340,7 +3340,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c9", + "sortText": "000000ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3357,7 +3357,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c8", + "sortText": "000000c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3374,7 +3374,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c7", + "sortText": "000000c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3391,7 +3391,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c6", + "sortText": "000000c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3408,7 +3408,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c5", + "sortText": "000000c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3425,7 +3425,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c4", + "sortText": "000000c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3442,7 +3442,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c3", + "sortText": "000000c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3459,7 +3459,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c2", + "sortText": "000000c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3476,7 +3476,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c1", + "sortText": "000000c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3493,7 +3493,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d0", + "sortText": "000000d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3510,7 +3510,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000cf", + "sortText": "000000d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3527,7 +3527,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ce", + "sortText": "000000cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3544,7 +3544,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000cd", + "sortText": "000000ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3561,7 +3561,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000cc", + "sortText": "000000cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3578,7 +3578,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000cb", + "sortText": "000000cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3595,7 +3595,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ca", + "sortText": "000000cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3612,7 +3612,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e0", + "sortText": "000000e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3629,7 +3629,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000df", + "sortText": "000000e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3646,7 +3646,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000de", + "sortText": "000000df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3663,7 +3663,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000dd", + "sortText": "000000de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3680,7 +3680,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000dc", + "sortText": "000000dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3697,7 +3697,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000db", + "sortText": "000000dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3714,7 +3714,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000da", + "sortText": "000000db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3731,7 +3731,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d9", + "sortText": "000000da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3748,7 +3748,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d8", + "sortText": "000000d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3765,7 +3765,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d7", + "sortText": "000000d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3782,7 +3782,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d6", + "sortText": "000000d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3799,7 +3799,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d5", + "sortText": "000000d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3816,7 +3816,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d4", + "sortText": "000000d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3833,7 +3833,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d3", + "sortText": "000000d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3850,7 +3850,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d2", + "sortText": "000000d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3867,7 +3867,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d1", + "sortText": "000000d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3884,7 +3884,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e6", + "sortText": "000000e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3901,7 +3901,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e5", + "sortText": "000000e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3918,7 +3918,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e4", + "sortText": "000000e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3935,7 +3935,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e3", + "sortText": "000000e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3952,7 +3952,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e2", + "sortText": "000000e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3969,7 +3969,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e1", + "sortText": "000000e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3986,7 +3986,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ef", + "sortText": "000000f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4003,7 +4003,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ee", + "sortText": "000000ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4020,7 +4020,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ed", + "sortText": "000000ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4037,7 +4037,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ec", + "sortText": "000000ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4054,7 +4054,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000eb", + "sortText": "000000ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4071,7 +4071,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ea", + "sortText": "000000eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4088,7 +4088,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e9", + "sortText": "000000ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4105,7 +4105,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e8", + "sortText": "000000e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4122,7 +4122,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e7", + "sortText": "000000e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4139,7 +4139,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f6", + "sortText": "000000f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4156,7 +4156,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f5", + "sortText": "000000f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4173,7 +4173,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f4", + "sortText": "000000f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4190,7 +4190,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f3", + "sortText": "000000f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4207,7 +4207,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f2", + "sortText": "000000f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4224,7 +4224,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f1", + "sortText": "000000f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4241,7 +4241,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f0", + "sortText": "000000f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4258,7 +4258,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000fd", + "sortText": "000000fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4275,7 +4275,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000fc", + "sortText": "000000fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4292,7 +4292,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000fb", + "sortText": "000000fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4309,7 +4309,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000fa", + "sortText": "000000fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4326,7 +4326,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f9", + "sortText": "000000fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4343,7 +4343,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f8", + "sortText": "000000f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4360,7 +4360,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f7", + "sortText": "000000f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4377,7 +4377,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000fe", + "sortText": "000000ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4394,7 +4394,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000107", + "sortText": "00000108", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4411,7 +4411,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000106", + "sortText": "00000107", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4428,7 +4428,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000105", + "sortText": "00000106", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4445,7 +4445,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000104", + "sortText": "00000105", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4462,7 +4462,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000103", + "sortText": "00000104", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4479,7 +4479,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000102", + "sortText": "00000103", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4496,7 +4496,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000101", + "sortText": "00000102", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4513,7 +4513,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000100", + "sortText": "00000101", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4530,7 +4530,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ff", + "sortText": "00000100", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4547,7 +4547,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000001a", + "sortText": "0000001b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4564,7 +4564,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000019", + "sortText": "0000001a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4581,7 +4581,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000018", + "sortText": "00000019", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4598,7 +4598,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000017", + "sortText": "00000018", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4615,7 +4615,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000016", + "sortText": "00000017", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4632,7 +4632,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000015", + "sortText": "00000016", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4649,7 +4649,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000014", + "sortText": "00000015", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4666,7 +4666,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000013", + "sortText": "00000014", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4683,7 +4683,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000012", + "sortText": "00000013", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4700,7 +4700,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000010d", + "sortText": "0000010e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4717,7 +4717,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000010c", + "sortText": "0000010d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4734,7 +4734,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000010b", + "sortText": "0000010c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4751,7 +4751,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000010a", + "sortText": "0000010b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4768,7 +4768,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000109", + "sortText": "0000010a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4785,7 +4785,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000108", + "sortText": "00000109", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4802,7 +4802,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000116", + "sortText": "00000117", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4819,7 +4819,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000115", + "sortText": "00000116", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4836,7 +4836,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000114", + "sortText": "00000115", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4853,7 +4853,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000119", + "sortText": "0000011a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4870,7 +4870,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000118", + "sortText": "00000119", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4887,7 +4887,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000117", + "sortText": "00000118", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4904,7 +4904,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000011c", + "sortText": "0000011d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4921,7 +4921,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000011b", + "sortText": "0000011c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4938,7 +4938,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000011a", + "sortText": "0000011b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4955,7 +4955,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000113", + "sortText": "00000114", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4972,7 +4972,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000112", + "sortText": "00000113", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4989,7 +4989,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000111", + "sortText": "00000112", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5006,7 +5006,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000011f", + "sortText": "00000120", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5023,7 +5023,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000011e", + "sortText": "0000011f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5040,7 +5040,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000011d", + "sortText": "0000011e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5057,7 +5057,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000121", + "sortText": "00000122", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5074,7 +5074,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000120", + "sortText": "00000121", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5091,7 +5091,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000123", + "sortText": "00000124", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5108,7 +5108,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000122", + "sortText": "00000123", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5125,7 +5125,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000110", + "sortText": "00000111", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5142,7 +5142,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000010f", + "sortText": "00000110", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5159,7 +5159,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000010e", + "sortText": "0000010f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5176,7 +5176,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000126", + "sortText": "00000127", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5193,7 +5193,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000125", + "sortText": "00000126", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5210,7 +5210,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000124", + "sortText": "00000125", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5218,6 +5218,40 @@ "newText": "'Microsoft.Attestation/attestationProviders@2020-10-01'" } }, + { + "label": "'Microsoft.Authorization/accessReviewScheduleDefinitions@2018-05-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `accessReviewScheduleDefinitions` \nAPI Version: `2018-05-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000128", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/accessReviewScheduleDefinitions@2018-05-01-preview'" + } + }, + { + "label": "'Microsoft.Authorization/accessReviewScheduleSettings@2018-05-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `accessReviewScheduleSettings` \nAPI Version: `2018-05-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000129", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/accessReviewScheduleSettings@2018-05-01-preview'" + } + }, { "label": "'Microsoft.Authorization/locks@2015-01-01'", "kind": "class", @@ -5227,7 +5261,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000128", + "sortText": "0000012b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5244,7 +5278,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000127", + "sortText": "0000012a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5261,7 +5295,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000133", + "sortText": "00000136", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5278,7 +5312,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000131", + "sortText": "00000134", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5295,7 +5329,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000130", + "sortText": "00000133", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5312,7 +5346,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000012f", + "sortText": "00000132", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5329,7 +5363,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000012e", + "sortText": "00000131", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5346,7 +5380,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000012d", + "sortText": "00000130", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5363,7 +5397,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000012c", + "sortText": "0000012f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5380,7 +5414,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000012b", + "sortText": "0000012e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5397,7 +5431,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000012a", + "sortText": "0000012d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5414,7 +5448,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000129", + "sortText": "0000012c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5422,6 +5456,142 @@ "newText": "'Microsoft.Authorization/policyAssignments@2020-09-01'" } }, + { + "label": "'Microsoft.Authorization/policyDefinitions@2016-12-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2016-12-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000013f", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policyDefinitions@2016-12-01'" + } + }, + { + "label": "'Microsoft.Authorization/policyDefinitions@2018-03-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2018-03-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000013e", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policyDefinitions@2018-03-01'" + } + }, + { + "label": "'Microsoft.Authorization/policyDefinitions@2018-05-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2018-05-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000013d", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policyDefinitions@2018-05-01'" + } + }, + { + "label": "'Microsoft.Authorization/policyDefinitions@2019-01-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2019-01-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000013c", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policyDefinitions@2019-01-01'" + } + }, + { + "label": "'Microsoft.Authorization/policyDefinitions@2019-06-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2019-06-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000013b", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policyDefinitions@2019-06-01'" + } + }, + { + "label": "'Microsoft.Authorization/policyDefinitions@2019-09-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2019-09-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000013a", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policyDefinitions@2019-09-01'" + } + }, + { + "label": "'Microsoft.Authorization/policyDefinitions@2020-03-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2020-03-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000139", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policyDefinitions@2020-03-01'" + } + }, + { + "label": "'Microsoft.Authorization/policyDefinitions@2020-09-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2020-09-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000138", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policyDefinitions@2020-09-01'" + } + }, { "label": "'Microsoft.Authorization/policyExemptions@2020-07-01-preview'", "kind": "class", @@ -5431,7 +5601,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000135", + "sortText": "00000143", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5439,6 +5609,142 @@ "newText": "'Microsoft.Authorization/policyExemptions@2020-07-01-preview'" } }, + { + "label": "'Microsoft.Authorization/policySetDefinitions@2017-06-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2017-06-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000014b", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policySetDefinitions@2017-06-01-preview'" + } + }, + { + "label": "'Microsoft.Authorization/policySetDefinitions@2018-03-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2018-03-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000014a", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policySetDefinitions@2018-03-01'" + } + }, + { + "label": "'Microsoft.Authorization/policySetDefinitions@2018-05-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2018-05-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000149", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policySetDefinitions@2018-05-01'" + } + }, + { + "label": "'Microsoft.Authorization/policySetDefinitions@2019-01-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2019-01-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000148", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policySetDefinitions@2019-01-01'" + } + }, + { + "label": "'Microsoft.Authorization/policySetDefinitions@2019-06-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2019-06-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000147", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policySetDefinitions@2019-06-01'" + } + }, + { + "label": "'Microsoft.Authorization/policySetDefinitions@2019-09-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2019-09-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000146", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policySetDefinitions@2019-09-01'" + } + }, + { + "label": "'Microsoft.Authorization/policySetDefinitions@2020-03-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2020-03-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000145", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policySetDefinitions@2020-03-01'" + } + }, + { + "label": "'Microsoft.Authorization/policySetDefinitions@2020-09-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2020-09-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000144", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policySetDefinitions@2020-09-01'" + } + }, { "label": "'Microsoft.Authorization/policyassignments@2015-10-01-preview'", "kind": "class", @@ -5448,7 +5754,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000134", + "sortText": "00000137", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5465,7 +5771,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000132", + "sortText": "00000135", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5473,6 +5779,57 @@ "newText": "'Microsoft.Authorization/policyassignments@2016-04-01'" } }, + { + "label": "'Microsoft.Authorization/policydefinitions@2015-10-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policydefinitions` \nAPI Version: `2015-10-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000142", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policydefinitions@2015-10-01-preview'" + } + }, + { + "label": "'Microsoft.Authorization/policydefinitions@2015-11-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policydefinitions` \nAPI Version: `2015-11-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000141", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policydefinitions@2015-11-01'" + } + }, + { + "label": "'Microsoft.Authorization/policydefinitions@2016-04-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Authorization` \nType: `policydefinitions` \nAPI Version: `2016-04-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000140", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Authorization/policydefinitions@2016-04-01'" + } + }, { "label": "'Microsoft.Authorization/roleAssignments@2015-07-01'", "kind": "class", @@ -5482,7 +5839,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000013a", + "sortText": "00000150", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5499,7 +5856,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000139", + "sortText": "0000014f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5516,7 +5873,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000138", + "sortText": "0000014e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5533,7 +5890,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000137", + "sortText": "0000014d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5550,7 +5907,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000136", + "sortText": "0000014c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5567,7 +5924,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000013c", + "sortText": "00000152", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5584,7 +5941,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000013b", + "sortText": "00000151", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5601,7 +5958,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000013d", + "sortText": "00000153", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5609,6 +5966,23 @@ "newText": "'Microsoft.Automanage/accounts@2020-06-30-preview'" } }, + { + "label": "'Microsoft.Automanage/configurationProfileAssignments@2020-06-30-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Automanage` \nType: `configurationProfileAssignments` \nAPI Version: `2020-06-30-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000154", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Automanage/configurationProfileAssignments@2020-06-30-preview'" + } + }, { "label": "'Microsoft.Automanage/configurationProfilePreferences@2020-06-30-preview'", "kind": "class", @@ -5618,7 +5992,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000013e", + "sortText": "00000155", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5635,7 +6009,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000140", + "sortText": "00000157", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5652,7 +6026,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000142", + "sortText": "00000159", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5669,7 +6043,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000141", + "sortText": "00000158", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5686,7 +6060,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000143", + "sortText": "0000015a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5703,7 +6077,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000145", + "sortText": "0000015c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5720,7 +6094,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000144", + "sortText": "0000015b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5737,7 +6111,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000146", + "sortText": "0000015d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5754,7 +6128,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000149", + "sortText": "00000160", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5771,7 +6145,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000148", + "sortText": "0000015f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5788,7 +6162,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000147", + "sortText": "0000015e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5805,7 +6179,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000014a", + "sortText": "00000161", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5822,7 +6196,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000014c", + "sortText": "00000163", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5839,7 +6213,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000014b", + "sortText": "00000162", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5856,7 +6230,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000014d", + "sortText": "00000164", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5873,7 +6247,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000014e", + "sortText": "00000165", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5890,7 +6264,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000150", + "sortText": "00000167", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5907,7 +6281,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000014f", + "sortText": "00000166", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5924,7 +6298,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000151", + "sortText": "00000168", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5941,7 +6315,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000152", + "sortText": "00000169", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5958,7 +6332,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000154", + "sortText": "0000016b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5975,7 +6349,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000153", + "sortText": "0000016a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5992,7 +6366,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000155", + "sortText": "0000016c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6009,7 +6383,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000156", + "sortText": "0000016d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6026,7 +6400,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000157", + "sortText": "0000016e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6043,7 +6417,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000013f", + "sortText": "00000156", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6060,7 +6434,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000159", + "sortText": "00000170", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6077,7 +6451,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000158", + "sortText": "0000016f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6094,7 +6468,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000016a", + "sortText": "00000181", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6111,7 +6485,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000016c", + "sortText": "00000183", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6128,7 +6502,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000016b", + "sortText": "00000182", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6145,7 +6519,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000016d", + "sortText": "00000184", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6162,7 +6536,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000016f", + "sortText": "00000186", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6179,7 +6553,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000016e", + "sortText": "00000185", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6196,7 +6570,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000171", + "sortText": "00000188", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6213,7 +6587,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000170", + "sortText": "00000187", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6230,7 +6604,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000173", + "sortText": "0000018a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6247,7 +6621,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000172", + "sortText": "00000189", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6264,7 +6638,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000175", + "sortText": "0000018c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6281,7 +6655,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000174", + "sortText": "0000018b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6298,7 +6672,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000176", + "sortText": "0000018d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6315,7 +6689,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000190", + "sortText": "000001a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6332,7 +6706,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000018f", + "sortText": "000001a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6349,7 +6723,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000018e", + "sortText": "000001a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6366,7 +6740,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000018d", + "sortText": "000001a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6383,7 +6757,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000018c", + "sortText": "000001a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6400,7 +6774,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000018b", + "sortText": "000001a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6417,7 +6791,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000018a", + "sortText": "000001a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6434,7 +6808,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000189", + "sortText": "000001a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6451,7 +6825,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000188", + "sortText": "0000019f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6468,7 +6842,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000187", + "sortText": "0000019e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6485,7 +6859,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000186", + "sortText": "0000019d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6502,7 +6876,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000185", + "sortText": "0000019c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6519,7 +6893,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000184", + "sortText": "0000019b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6536,7 +6910,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000183", + "sortText": "0000019a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6553,7 +6927,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000182", + "sortText": "00000199", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6570,7 +6944,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000181", + "sortText": "00000198", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6587,7 +6961,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000197", + "sortText": "000001ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6604,7 +6978,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000196", + "sortText": "000001ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6621,7 +6995,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000195", + "sortText": "000001ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6638,7 +7012,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000194", + "sortText": "000001ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6655,7 +7029,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000193", + "sortText": "000001aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6672,7 +7046,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000192", + "sortText": "000001a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6689,7 +7063,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000191", + "sortText": "000001a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6706,7 +7080,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000019e", + "sortText": "000001b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6723,7 +7097,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000019d", + "sortText": "000001b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6740,7 +7114,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000019c", + "sortText": "000001b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6757,7 +7131,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000019b", + "sortText": "000001b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6774,7 +7148,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000019a", + "sortText": "000001b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6791,7 +7165,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000199", + "sortText": "000001b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6808,7 +7182,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000198", + "sortText": "000001af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6825,7 +7199,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000180", + "sortText": "00000197", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6842,7 +7216,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000017f", + "sortText": "00000196", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6859,7 +7233,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000017e", + "sortText": "00000195", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6876,7 +7250,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000017d", + "sortText": "00000194", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6893,7 +7267,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000017c", + "sortText": "00000193", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6910,7 +7284,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000017b", + "sortText": "00000192", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6927,7 +7301,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000017a", + "sortText": "00000191", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6944,7 +7318,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000179", + "sortText": "00000190", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6961,7 +7335,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000178", + "sortText": "0000018f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6978,7 +7352,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000177", + "sortText": "0000018e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6995,7 +7369,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a0", + "sortText": "000001b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7012,7 +7386,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000019f", + "sortText": "000001b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7029,7 +7403,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a2", + "sortText": "000001b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7046,7 +7420,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a1", + "sortText": "000001b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7063,7 +7437,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a4", + "sortText": "000001bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7080,7 +7454,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a3", + "sortText": "000001ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7097,7 +7471,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a6", + "sortText": "000001bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7114,7 +7488,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a7", + "sortText": "000001be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7131,7 +7505,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a8", + "sortText": "000001bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7148,7 +7522,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a5", + "sortText": "000001bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7157,972 +7531,1363 @@ } }, { - "label": "'Microsoft.Blockchain/blockchainMembers/transactionNodes@2018-06-01-preview'", + "label": "'Microsoft.Billing/billingAccounts/billingProfiles/instructions@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blockchain` \nType: `blockchainMembers/transactionNodes` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/instructions` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001aa", + "sortText": "000001c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blockchain/blockchainMembers/transactionNodes@2018-06-01-preview'" + "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/instructions@2019-10-01-preview'" } }, { - "label": "'Microsoft.Blockchain/blockchainMembers@2018-06-01-preview'", + "label": "'Microsoft.Billing/billingAccounts/billingProfiles/instructions@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blockchain` \nType: `blockchainMembers` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/instructions` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001a9", + "sortText": "000001c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blockchain/blockchainMembers@2018-06-01-preview'" + "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/instructions@2020-05-01'" } }, { - "label": "'Microsoft.Blueprint/blueprintAssignments@2018-11-01-preview'", + "label": "'Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprintAssignments` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/invoiceSections` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001ab", + "sortText": "000001c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blueprint/blueprintAssignments@2018-11-01-preview'" + "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections@2019-10-01-preview'" } }, { - "label": "'Microsoft.Blueprint/blueprints/artifacts@2018-11-01-preview'", + "label": "'Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints/artifacts` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/invoiceSections` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001ad", + "sortText": "000001c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blueprint/blueprints/artifacts@2018-11-01-preview'" + "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections@2020-05-01'" } }, { - "label": "'Microsoft.Blueprint/blueprints/versions@2018-11-01-preview'", + "label": "'Microsoft.Billing/billingAccounts/billingProfiles/policies@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints/versions` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/policies` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001ae", + "sortText": "000001c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blueprint/blueprints/versions@2018-11-01-preview'" + "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/policies@2018-11-01-preview'" } }, { - "label": "'Microsoft.Blueprint/blueprints@2018-11-01-preview'", + "label": "'Microsoft.Billing/billingAccounts/billingProfiles/policies@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/policies` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001ac", + "sortText": "000001c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blueprint/blueprints@2018-11-01-preview'" + "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/policies@2019-10-01-preview'" } }, { - "label": "'Microsoft.BotService/botServices/Connections@2017-12-01'", + "label": "'Microsoft.Billing/billingAccounts/billingProfiles/policies@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices/Connections` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/policies` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001b7", + "sortText": "000001c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices/Connections@2017-12-01'" + "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/policies@2020-05-01'" } }, { - "label": "'Microsoft.BotService/botServices/Connections@2018-07-12'", + "label": "'Microsoft.Billing/billingAccounts/billingProfiles@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices/Connections` \nAPI Version: `2018-07-12`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001b6", + "sortText": "000001c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices/Connections@2018-07-12'" + "newText": "'Microsoft.Billing/billingAccounts/billingProfiles@2018-11-01-preview'" } }, { - "label": "'Microsoft.BotService/botServices/Connections@2020-06-02'", + "label": "'Microsoft.Billing/billingAccounts/billingProfiles@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices/Connections` \nAPI Version: `2020-06-02`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001b5", + "sortText": "000001c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices/Connections@2020-06-02'" + "newText": "'Microsoft.Billing/billingAccounts/billingProfiles@2019-10-01-preview'" } }, { - "label": "'Microsoft.BotService/botServices/channels@2017-12-01'", + "label": "'Microsoft.Billing/billingAccounts/billingProfiles@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices/channels` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001b4", + "sortText": "000001c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices/channels@2017-12-01'" + "newText": "'Microsoft.Billing/billingAccounts/billingProfiles@2020-05-01'" } }, { - "label": "'Microsoft.BotService/botServices/channels@2018-07-12'", + "label": "'Microsoft.Billing/billingAccounts/billingRoleAssignments@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices/channels` \nAPI Version: `2018-07-12`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingRoleAssignments` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001b3", + "sortText": "000001ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices/channels@2018-07-12'" + "newText": "'Microsoft.Billing/billingAccounts/billingRoleAssignments@2019-10-01-preview'" } }, { - "label": "'Microsoft.BotService/botServices/channels@2020-06-02'", + "label": "'Microsoft.Billing/billingAccounts/customers/policies@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices/channels` \nAPI Version: `2020-06-02`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/customers/policies` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001b2", + "sortText": "000001cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices/channels@2020-06-02'" + "newText": "'Microsoft.Billing/billingAccounts/customers/policies@2019-10-01-preview'" } }, { - "label": "'Microsoft.BotService/botServices@2017-12-01'", + "label": "'Microsoft.Billing/billingAccounts/customers/policies@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/customers/policies` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001b1", + "sortText": "000001cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices@2017-12-01'" + "newText": "'Microsoft.Billing/billingAccounts/customers/policies@2020-05-01'" } }, { - "label": "'Microsoft.BotService/botServices@2018-07-12'", + "label": "'Microsoft.Billing/billingAccounts/departments/billingRoleAssignments@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices` \nAPI Version: `2018-07-12`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/departments/billingRoleAssignments` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001b0", + "sortText": "000001cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices@2018-07-12'" + "newText": "'Microsoft.Billing/billingAccounts/departments/billingRoleAssignments@2019-10-01-preview'" } }, { - "label": "'Microsoft.BotService/botServices@2020-06-02'", + "label": "'Microsoft.Billing/billingAccounts/enrollmentAccounts/billingRoleAssignments@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices` \nAPI Version: `2020-06-02`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/enrollmentAccounts/billingRoleAssignments` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001af", + "sortText": "000001ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices@2020-06-02'" + "newText": "'Microsoft.Billing/billingAccounts/enrollmentAccounts/billingRoleAssignments@2019-10-01-preview'" } }, { - "label": "'Microsoft.BotService/enterpriseChannels@2018-07-12'", + "label": "'Microsoft.Billing/billingAccounts/invoiceSections@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `enterpriseChannels` \nAPI Version: `2018-07-12`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/invoiceSections` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001b8", + "sortText": "000001cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/enterpriseChannels@2018-07-12'" + "newText": "'Microsoft.Billing/billingAccounts/invoiceSections@2018-11-01-preview'" } }, { - "label": "'Microsoft.Cache/Redis/firewallRules@2016-04-01'", + "label": "'Microsoft.Billing/billingAccounts/lineOfCredit@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/lineOfCredit` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001c3", + "sortText": "000001d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/firewallRules@2016-04-01'" + "newText": "'Microsoft.Billing/billingAccounts/lineOfCredit@2018-11-01-preview'" } }, { - "label": "'Microsoft.Cache/Redis/firewallRules@2017-02-01'", + "label": "'Microsoft.Blockchain/blockchainMembers/transactionNodes@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2017-02-01`" + "value": "Namespace: `Microsoft.Blockchain` \nType: `blockchainMembers/transactionNodes` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001c2", + "sortText": "000001d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/firewallRules@2017-02-01'" + "newText": "'Microsoft.Blockchain/blockchainMembers/transactionNodes@2018-06-01-preview'" } }, { - "label": "'Microsoft.Cache/Redis/firewallRules@2017-10-01'", + "label": "'Microsoft.Blockchain/blockchainMembers@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Blockchain` \nType: `blockchainMembers` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001c1", + "sortText": "000001d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/firewallRules@2017-10-01'" + "newText": "'Microsoft.Blockchain/blockchainMembers@2018-06-01-preview'" } }, { - "label": "'Microsoft.Cache/Redis/firewallRules@2018-03-01'", + "label": "'Microsoft.Blueprint/blueprintAssignments@2017-11-11-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2018-03-01`" + "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprintAssignments` \nAPI Version: `2017-11-11-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001c0", + "sortText": "000001d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/firewallRules@2018-03-01'" + "newText": "'Microsoft.Blueprint/blueprintAssignments@2017-11-11-preview'" } }, { - "label": "'Microsoft.Cache/Redis/firewallRules@2019-07-01'", + "label": "'Microsoft.Blueprint/blueprintAssignments@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprintAssignments` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001bf", + "sortText": "000001d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/firewallRules@2019-07-01'" + "newText": "'Microsoft.Blueprint/blueprintAssignments@2018-11-01-preview'" } }, { - "label": "'Microsoft.Cache/Redis/linkedServers@2017-02-01'", + "label": "'Microsoft.Blueprint/blueprints/artifacts@2017-11-11-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2017-02-01`" + "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints/artifacts` \nAPI Version: `2017-11-11-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001c7", + "sortText": "000001d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/linkedServers@2017-02-01'" + "newText": "'Microsoft.Blueprint/blueprints/artifacts@2017-11-11-preview'" } }, { - "label": "'Microsoft.Cache/Redis/linkedServers@2017-10-01'", + "label": "'Microsoft.Blueprint/blueprints/artifacts@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints/artifacts` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001c6", + "sortText": "000001d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/linkedServers@2017-10-01'" + "newText": "'Microsoft.Blueprint/blueprints/artifacts@2018-11-01-preview'" } }, { - "label": "'Microsoft.Cache/Redis/linkedServers@2018-03-01'", + "label": "'Microsoft.Blueprint/blueprints/versions@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2018-03-01`" + "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints/versions` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001c5", + "sortText": "000001d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/linkedServers@2018-03-01'" + "newText": "'Microsoft.Blueprint/blueprints/versions@2018-11-01-preview'" } }, { - "label": "'Microsoft.Cache/Redis/linkedServers@2019-07-01'", + "label": "'Microsoft.Blueprint/blueprints@2017-11-11-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints` \nAPI Version: `2017-11-11-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001c4", + "sortText": "000001d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/linkedServers@2019-07-01'" + "newText": "'Microsoft.Blueprint/blueprints@2017-11-11-preview'" } }, { - "label": "'Microsoft.Cache/Redis/patchSchedules@2016-04-01'", + "label": "'Microsoft.Blueprint/blueprints@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001cc", + "sortText": "000001d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/patchSchedules@2016-04-01'" + "newText": "'Microsoft.Blueprint/blueprints@2018-11-01-preview'" } }, { - "label": "'Microsoft.Cache/Redis/patchSchedules@2017-02-01'", + "label": "'Microsoft.BotService/botServices/Connections@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2017-02-01`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices/Connections` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001cb", + "sortText": "000001e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/patchSchedules@2017-02-01'" + "newText": "'Microsoft.BotService/botServices/Connections@2017-12-01'" } }, { - "label": "'Microsoft.Cache/Redis/patchSchedules@2017-10-01'", + "label": "'Microsoft.BotService/botServices/Connections@2018-07-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices/Connections` \nAPI Version: `2018-07-12`" }, "deprecated": false, "preselect": false, - "sortText": "000001ca", + "sortText": "000001e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/patchSchedules@2017-10-01'" + "newText": "'Microsoft.BotService/botServices/Connections@2018-07-12'" } }, { - "label": "'Microsoft.Cache/Redis/patchSchedules@2018-03-01'", + "label": "'Microsoft.BotService/botServices/Connections@2020-06-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2018-03-01`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices/Connections` \nAPI Version: `2020-06-02`" }, "deprecated": false, "preselect": false, - "sortText": "000001c9", + "sortText": "000001e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/patchSchedules@2018-03-01'" + "newText": "'Microsoft.BotService/botServices/Connections@2020-06-02'" } }, { - "label": "'Microsoft.Cache/Redis/patchSchedules@2019-07-01'", + "label": "'Microsoft.BotService/botServices/channels@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices/channels` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001c8", + "sortText": "000001df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/patchSchedules@2019-07-01'" + "newText": "'Microsoft.BotService/botServices/channels@2017-12-01'" } }, { - "label": "'Microsoft.Cache/Redis@2015-08-01'", + "label": "'Microsoft.BotService/botServices/channels@2018-07-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices/channels` \nAPI Version: `2018-07-12`" }, "deprecated": false, "preselect": false, - "sortText": "000001be", + "sortText": "000001de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis@2015-08-01'" + "newText": "'Microsoft.BotService/botServices/channels@2018-07-12'" } }, { - "label": "'Microsoft.Cache/Redis@2016-04-01'", + "label": "'Microsoft.BotService/botServices/channels@2020-06-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices/channels` \nAPI Version: `2020-06-02`" }, "deprecated": false, "preselect": false, - "sortText": "000001bd", + "sortText": "000001dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis@2016-04-01'" + "newText": "'Microsoft.BotService/botServices/channels@2020-06-02'" } }, { - "label": "'Microsoft.Cache/Redis@2017-02-01'", + "label": "'Microsoft.BotService/botServices@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2017-02-01`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001bc", + "sortText": "000001dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis@2017-02-01'" + "newText": "'Microsoft.BotService/botServices@2017-12-01'" } }, { - "label": "'Microsoft.Cache/Redis@2017-10-01'", + "label": "'Microsoft.BotService/botServices@2018-07-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices` \nAPI Version: `2018-07-12`" }, "deprecated": false, "preselect": false, - "sortText": "000001bb", + "sortText": "000001db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis@2017-10-01'" + "newText": "'Microsoft.BotService/botServices@2018-07-12'" } }, { - "label": "'Microsoft.Cache/Redis@2018-03-01'", + "label": "'Microsoft.BotService/botServices@2020-06-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2018-03-01`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices` \nAPI Version: `2020-06-02`" }, "deprecated": false, "preselect": false, - "sortText": "000001ba", + "sortText": "000001da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis@2018-03-01'" + "newText": "'Microsoft.BotService/botServices@2020-06-02'" } }, { - "label": "'Microsoft.Cache/Redis@2019-07-01'", + "label": "'Microsoft.BotService/enterpriseChannels@2018-07-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.BotService` \nType: `enterpriseChannels` \nAPI Version: `2018-07-12`" }, "deprecated": false, "preselect": false, - "sortText": "000001b9", + "sortText": "000001e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis@2019-07-01'" + "newText": "'Microsoft.BotService/enterpriseChannels@2018-07-12'" } }, { - "label": "'Microsoft.Cache/redisEnterprise/databases@2020-10-01-preview'", + "label": "'Microsoft.Cache/Redis/firewallRules@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `redisEnterprise/databases` \nAPI Version: `2020-10-01-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001ce", + "sortText": "000001ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/redisEnterprise/databases@2020-10-01-preview'" + "newText": "'Microsoft.Cache/Redis/firewallRules@2016-04-01'" } }, { - "label": "'Microsoft.Cache/redisEnterprise/privateEndpointConnections@2020-10-01-preview'", + "label": "'Microsoft.Cache/Redis/firewallRules@2017-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `redisEnterprise/privateEndpointConnections` \nAPI Version: `2020-10-01-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2017-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001cf", + "sortText": "000001ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/redisEnterprise/privateEndpointConnections@2020-10-01-preview'" + "newText": "'Microsoft.Cache/Redis/firewallRules@2017-02-01'" } }, { - "label": "'Microsoft.Cache/redisEnterprise@2020-10-01-preview'", + "label": "'Microsoft.Cache/Redis/firewallRules@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `redisEnterprise` \nAPI Version: `2020-10-01-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001cd", + "sortText": "000001ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/redisEnterprise@2020-10-01-preview'" + "newText": "'Microsoft.Cache/Redis/firewallRules@2017-10-01'" } }, { - "label": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15'", + "label": "'Microsoft.Cache/Redis/firewallRules@2018-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `CdnWebApplicationFirewallPolicies` \nAPI Version: `2019-06-15`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2018-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001d2", + "sortText": "000001eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15'" + "newText": "'Microsoft.Cache/Redis/firewallRules@2018-03-01'" } }, { - "label": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15-preview'", + "label": "'Microsoft.Cache/Redis/firewallRules@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `CdnWebApplicationFirewallPolicies` \nAPI Version: `2019-06-15-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001d1", + "sortText": "000001ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15-preview'" + "newText": "'Microsoft.Cache/Redis/firewallRules@2019-07-01'" } }, { - "label": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2020-04-15'", + "label": "'Microsoft.Cache/Redis/linkedServers@2017-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `CdnWebApplicationFirewallPolicies` \nAPI Version: `2020-04-15`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2017-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001d0", + "sortText": "000001f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2020-04-15'" + "newText": "'Microsoft.Cache/Redis/linkedServers@2017-02-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2015-06-01'", + "label": "'Microsoft.Cache/Redis/linkedServers@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2015-06-01`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001f0", + "sortText": "000001f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2015-06-01'" + "newText": "'Microsoft.Cache/Redis/linkedServers@2017-10-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-04-02'", + "label": "'Microsoft.Cache/Redis/linkedServers@2018-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2016-04-02`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2018-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001ef", + "sortText": "000001f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-04-02'" + "newText": "'Microsoft.Cache/Redis/linkedServers@2018-03-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-10-02'", + "label": "'Microsoft.Cache/Redis/linkedServers@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2016-10-02`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001ee", + "sortText": "000001ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-10-02'" + "newText": "'Microsoft.Cache/Redis/linkedServers@2019-07-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-04-02'", + "label": "'Microsoft.Cache/Redis/patchSchedules@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2017-04-02`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001ed", + "sortText": "000001f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-04-02'" + "newText": "'Microsoft.Cache/Redis/patchSchedules@2016-04-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-10-12'", + "label": "'Microsoft.Cache/Redis/patchSchedules@2017-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2017-10-12`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2017-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001ec", + "sortText": "000001f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-10-12'" + "newText": "'Microsoft.Cache/Redis/patchSchedules@2017-02-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-04-15'", + "label": "'Microsoft.Cache/Redis/patchSchedules@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-04-15`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001eb", + "sortText": "000001f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-04-15'" + "newText": "'Microsoft.Cache/Redis/patchSchedules@2017-10-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15'", + "label": "'Microsoft.Cache/Redis/patchSchedules@2018-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-06-15`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2018-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001ea", + "sortText": "000001f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15'" + "newText": "'Microsoft.Cache/Redis/patchSchedules@2018-03-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15-preview'", + "label": "'Microsoft.Cache/Redis/patchSchedules@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-06-15-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001e9", + "sortText": "000001f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15-preview'" + "newText": "'Microsoft.Cache/Redis/patchSchedules@2019-07-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-12-31'", + "label": "'Microsoft.Cache/Redis@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-12-31`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001e8", + "sortText": "000001e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-12-31'" + "newText": "'Microsoft.Cache/Redis@2015-08-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2020-04-15'", + "label": "'Microsoft.Cache/Redis@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2020-04-15`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001e7", + "sortText": "000001e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2020-04-15'" + "newText": "'Microsoft.Cache/Redis@2016-04-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/originGroups@2019-12-31'", + "label": "'Microsoft.Cache/Redis@2017-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/originGroups` \nAPI Version: `2019-12-31`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2017-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001f2", + "sortText": "000001e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/originGroups@2019-12-31'" + "newText": "'Microsoft.Cache/Redis@2017-02-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/originGroups@2020-04-15'", + "label": "'Microsoft.Cache/Redis@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/originGroups` \nAPI Version: `2020-04-15`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001f1", + "sortText": "000001e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/originGroups@2020-04-15'" + "newText": "'Microsoft.Cache/Redis@2017-10-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/origins@2015-06-01'", + "label": "'Microsoft.Cache/Redis@2018-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2015-06-01`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2018-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001f6", + "sortText": "000001e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2015-06-01'" + "newText": "'Microsoft.Cache/Redis@2018-03-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/origins@2016-04-02'", + "label": "'Microsoft.Cache/Redis@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2016-04-02`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001f5", + "sortText": "000001e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2016-04-02'" + "newText": "'Microsoft.Cache/Redis@2019-07-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/origins@2019-12-31'", + "label": "'Microsoft.Cache/redisEnterprise/databases@2020-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2019-12-31`" + "value": "Namespace: `Microsoft.Cache` \nType: `redisEnterprise/databases` \nAPI Version: `2020-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001f4", + "sortText": "000001f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2019-12-31'" + "newText": "'Microsoft.Cache/redisEnterprise/databases@2020-10-01-preview'" + } + }, + { + "label": "'Microsoft.Cache/redisEnterprise/privateEndpointConnections@2020-10-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cache` \nType: `redisEnterprise/privateEndpointConnections` \nAPI Version: `2020-10-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000001fa", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cache/redisEnterprise/privateEndpointConnections@2020-10-01-preview'" + } + }, + { + "label": "'Microsoft.Cache/redisEnterprise@2020-10-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cache` \nType: `redisEnterprise` \nAPI Version: `2020-10-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000001f8", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cache/redisEnterprise@2020-10-01-preview'" + } + }, + { + "label": "'Microsoft.Capacity/reservationOrders@2019-04-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Capacity` \nType: `reservationOrders` \nAPI Version: `2019-04-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000001fb", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Capacity/reservationOrders@2019-04-01'" + } + }, + { + "label": "'Microsoft.Capacity/resourceProviders/locations/serviceLimits@2019-07-19-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Capacity` \nType: `resourceProviders/locations/serviceLimits` \nAPI Version: `2019-07-19-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000001fd", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Capacity/resourceProviders/locations/serviceLimits@2019-07-19-preview'" + } + }, + { + "label": "'Microsoft.Capacity/resourceProviders/locations/serviceLimits@2020-10-25'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Capacity` \nType: `resourceProviders/locations/serviceLimits` \nAPI Version: `2020-10-25`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000001fc", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Capacity/resourceProviders/locations/serviceLimits@2020-10-25'" + } + }, + { + "label": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `CdnWebApplicationFirewallPolicies` \nAPI Version: `2019-06-15`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000200", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15'" + } + }, + { + "label": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `CdnWebApplicationFirewallPolicies` \nAPI Version: `2019-06-15-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000001ff", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15-preview'" + } + }, + { + "label": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2020-04-15'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `CdnWebApplicationFirewallPolicies` \nAPI Version: `2020-04-15`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000001fe", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2020-04-15'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2015-06-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2015-06-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000021e", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2015-06-01'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-04-02'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2016-04-02`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000021d", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-04-02'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-10-02'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2016-10-02`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000021c", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-10-02'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-04-02'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2017-04-02`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000021b", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-04-02'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-10-12'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2017-10-12`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000021a", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-10-12'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-04-15'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-04-15`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000219", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-04-15'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-06-15`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000218", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-06-15-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000217", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15-preview'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-12-31'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-12-31`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000216", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-12-31'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2020-04-15'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2020-04-15`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000215", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2020-04-15'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/originGroups@2019-12-31'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/originGroups` \nAPI Version: `2019-12-31`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000220", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/originGroups@2019-12-31'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/originGroups@2020-04-15'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/originGroups` \nAPI Version: `2020-04-15`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000021f", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/originGroups@2020-04-15'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/origins@2015-06-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2015-06-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000224", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2015-06-01'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/origins@2016-04-02'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2016-04-02`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000223", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2016-04-02'" + } + }, + { + "label": "'Microsoft.Cdn/profiles/endpoints/origins@2019-12-31'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2019-12-31`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000222", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2019-12-31'" } }, { @@ -8134,7 +8899,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001f3", + "sortText": "00000221", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8151,7 +8916,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001e6", + "sortText": "00000214", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8168,7 +8933,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001e5", + "sortText": "00000213", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8185,7 +8950,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001e4", + "sortText": "00000212", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8202,7 +8967,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001e3", + "sortText": "00000211", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8219,7 +8984,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001e2", + "sortText": "00000210", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8236,7 +9001,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001e1", + "sortText": "0000020f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8253,7 +9018,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001e0", + "sortText": "0000020e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8270,7 +9035,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001df", + "sortText": "0000020d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8287,7 +9052,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001de", + "sortText": "0000020c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8304,7 +9069,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001dd", + "sortText": "0000020b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8321,7 +9086,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001dc", + "sortText": "0000020a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8338,7 +9103,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001db", + "sortText": "00000209", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8355,7 +9120,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001da", + "sortText": "00000208", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8372,7 +9137,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001d9", + "sortText": "00000207", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8389,7 +9154,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001d8", + "sortText": "00000206", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8406,7 +9171,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001d7", + "sortText": "00000205", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8423,7 +9188,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001d6", + "sortText": "00000204", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8440,7 +9205,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001d5", + "sortText": "00000203", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8457,7 +9222,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001d4", + "sortText": "00000202", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8474,7 +9239,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001d3", + "sortText": "00000201", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8491,7 +9256,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001fe", + "sortText": "0000022c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8508,7 +9273,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001fd", + "sortText": "0000022b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8525,7 +9290,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001fc", + "sortText": "0000022a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8542,7 +9307,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001fb", + "sortText": "00000229", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8559,7 +9324,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001fa", + "sortText": "00000228", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8576,7 +9341,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001f9", + "sortText": "00000227", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8593,7 +9358,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001f8", + "sortText": "00000226", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8610,7 +9375,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001f7", + "sortText": "00000225", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8618,6 +9383,23 @@ "newText": "'Microsoft.CertificateRegistration/certificateOrders@2020-06-01'" } }, + { + "label": "'Microsoft.ChangeAnalysis/profile@2020-04-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.ChangeAnalysis` \nType: `profile` \nAPI Version: `2020-04-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000022d", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.ChangeAnalysis/profile@2020-04-01-preview'" + } + }, { "label": "'Microsoft.CognitiveServices/accounts/privateEndpointConnections@2017-04-18'", "kind": "class", @@ -8627,7 +9409,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000201", + "sortText": "00000230", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8644,7 +9426,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000200", + "sortText": "0000022f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8661,7 +9443,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001ff", + "sortText": "0000022e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8678,7 +9460,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000202", + "sortText": "00000231", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8695,7 +9477,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000020e", + "sortText": "0000023d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8712,7 +9494,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000020d", + "sortText": "0000023c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8729,7 +9511,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000020c", + "sortText": "0000023b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8746,7 +9528,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000020b", + "sortText": "0000023a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8763,7 +9545,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000020a", + "sortText": "00000239", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8780,7 +9562,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000209", + "sortText": "00000238", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8797,7 +9579,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000208", + "sortText": "00000237", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8814,7 +9596,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000207", + "sortText": "00000236", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8831,7 +9613,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000206", + "sortText": "00000235", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8848,7 +9630,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000205", + "sortText": "00000234", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8865,7 +9647,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000204", + "sortText": "00000233", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8882,7 +9664,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000203", + "sortText": "00000232", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8899,7 +9681,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000210", + "sortText": "0000023f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8916,7 +9698,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000020f", + "sortText": "0000023e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8933,7 +9715,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000212", + "sortText": "00000241", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8950,7 +9732,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000211", + "sortText": "00000240", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8967,7 +9749,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000216", + "sortText": "00000245", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -8984,7 +9766,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000215", + "sortText": "00000244", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9001,7 +9783,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000214", + "sortText": "00000243", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9018,7 +9800,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000213", + "sortText": "00000242", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9035,7 +9817,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000220", + "sortText": "0000024f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9052,7 +9834,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000021f", + "sortText": "0000024e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9069,7 +9851,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000021e", + "sortText": "0000024d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9086,7 +9868,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000021d", + "sortText": "0000024c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9103,7 +9885,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000021c", + "sortText": "0000024b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9120,7 +9902,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000021b", + "sortText": "0000024a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9137,7 +9919,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000021a", + "sortText": "00000249", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9154,7 +9936,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000219", + "sortText": "00000248", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9171,7 +9953,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000218", + "sortText": "00000247", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9188,7 +9970,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000217", + "sortText": "00000246", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9205,7 +9987,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000022d", + "sortText": "0000025c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9222,7 +10004,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000022c", + "sortText": "0000025b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9239,7 +10021,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000022b", + "sortText": "0000025a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9256,7 +10038,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000022a", + "sortText": "00000259", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9273,7 +10055,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000229", + "sortText": "00000258", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9290,7 +10072,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000228", + "sortText": "00000257", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9307,7 +10089,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000227", + "sortText": "00000256", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9324,7 +10106,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000226", + "sortText": "00000255", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9341,7 +10123,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000237", + "sortText": "00000266", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9358,7 +10140,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000236", + "sortText": "00000265", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9375,7 +10157,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000235", + "sortText": "00000264", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9392,7 +10174,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000234", + "sortText": "00000263", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9409,7 +10191,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000233", + "sortText": "00000262", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9426,7 +10208,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000232", + "sortText": "00000261", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9443,7 +10225,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000231", + "sortText": "00000260", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9460,7 +10242,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000230", + "sortText": "0000025f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9477,7 +10259,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000022f", + "sortText": "0000025e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9494,7 +10276,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000022e", + "sortText": "0000025d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9511,7 +10293,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000225", + "sortText": "00000254", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9528,7 +10310,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000224", + "sortText": "00000253", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9545,7 +10327,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000223", + "sortText": "00000252", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9562,7 +10344,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000222", + "sortText": "00000251", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9579,7 +10361,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000221", + "sortText": "00000250", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9596,7 +10378,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000023f", + "sortText": "0000026e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9613,7 +10395,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000023e", + "sortText": "0000026d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9630,7 +10412,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000023d", + "sortText": "0000026c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9647,7 +10429,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000023c", + "sortText": "0000026b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9664,7 +10446,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000023b", + "sortText": "0000026a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9681,7 +10463,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000023a", + "sortText": "00000269", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9698,7 +10480,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000239", + "sortText": "00000268", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9715,7 +10497,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000238", + "sortText": "00000267", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9732,7 +10514,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000249", + "sortText": "00000278", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9749,7 +10531,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000248", + "sortText": "00000277", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9766,7 +10548,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000247", + "sortText": "00000276", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9783,7 +10565,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000246", + "sortText": "00000275", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9800,7 +10582,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000245", + "sortText": "00000274", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9817,7 +10599,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000244", + "sortText": "00000273", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9834,7 +10616,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000243", + "sortText": "00000272", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9851,7 +10633,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000242", + "sortText": "00000271", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9868,7 +10650,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000241", + "sortText": "00000270", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9885,7 +10667,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000240", + "sortText": "0000026f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9902,7 +10684,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000250", + "sortText": "0000027f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9919,7 +10701,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000024f", + "sortText": "0000027e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9936,7 +10718,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000024e", + "sortText": "0000027d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9953,7 +10735,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000024d", + "sortText": "0000027c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9970,7 +10752,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000024c", + "sortText": "0000027b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -9987,7 +10769,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000024b", + "sortText": "0000027a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10004,7 +10786,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000024a", + "sortText": "00000279", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10021,7 +10803,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000025a", + "sortText": "00000289", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10038,7 +10820,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000259", + "sortText": "00000288", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10055,7 +10837,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000258", + "sortText": "00000287", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10072,7 +10854,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000257", + "sortText": "00000286", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10089,7 +10871,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000256", + "sortText": "00000285", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10106,7 +10888,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000255", + "sortText": "00000284", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10123,7 +10905,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000254", + "sortText": "00000283", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10140,7 +10922,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000253", + "sortText": "00000282", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10157,7 +10939,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000252", + "sortText": "00000281", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10174,7 +10956,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000251", + "sortText": "00000280", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10191,7 +10973,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000025c", + "sortText": "0000028b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10208,7 +10990,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000025b", + "sortText": "0000028a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10225,7 +11007,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000028a", + "sortText": "000002b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10242,7 +11024,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000289", + "sortText": "000002b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10259,7 +11041,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000288", + "sortText": "000002b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10276,7 +11058,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000287", + "sortText": "000002b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10293,7 +11075,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000286", + "sortText": "000002b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10310,7 +11092,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000285", + "sortText": "000002b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10327,7 +11109,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000284", + "sortText": "000002b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10344,7 +11126,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000283", + "sortText": "000002b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10361,7 +11143,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000282", + "sortText": "000002b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10378,7 +11160,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000295", + "sortText": "000002c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10395,7 +11177,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000294", + "sortText": "000002c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10412,7 +11194,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000293", + "sortText": "000002c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10429,7 +11211,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000296", + "sortText": "000002c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10446,7 +11228,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000292", + "sortText": "000002c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10463,7 +11245,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000291", + "sortText": "000002c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10480,7 +11262,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000290", + "sortText": "000002bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10497,7 +11279,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000028f", + "sortText": "000002be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10514,7 +11296,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000028e", + "sortText": "000002bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10531,7 +11313,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000028d", + "sortText": "000002bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10548,7 +11330,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000028c", + "sortText": "000002bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10565,7 +11347,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000028b", + "sortText": "000002ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10582,7 +11364,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000281", + "sortText": "000002b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10599,7 +11381,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000280", + "sortText": "000002af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10616,7 +11398,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000027f", + "sortText": "000002ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10633,7 +11415,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000027e", + "sortText": "000002ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10650,7 +11432,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000027d", + "sortText": "000002ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10667,7 +11449,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000027c", + "sortText": "000002ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10684,7 +11466,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000027b", + "sortText": "000002aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10701,7 +11483,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000027a", + "sortText": "000002a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10718,7 +11500,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000279", + "sortText": "000002a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10735,7 +11517,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000278", + "sortText": "000002a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10752,7 +11534,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000277", + "sortText": "000002a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10769,7 +11551,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000276", + "sortText": "000002a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10786,7 +11568,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000274", + "sortText": "000002a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10803,7 +11585,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000273", + "sortText": "000002a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10820,7 +11602,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000272", + "sortText": "000002a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10837,7 +11619,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000271", + "sortText": "000002a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10854,7 +11636,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000270", + "sortText": "0000029f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10871,7 +11653,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000026f", + "sortText": "0000029e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10888,7 +11670,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000026e", + "sortText": "0000029d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10905,7 +11687,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000026d", + "sortText": "0000029c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10922,7 +11704,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000026c", + "sortText": "0000029b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10939,7 +11721,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000026b", + "sortText": "0000029a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10956,7 +11738,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000026a", + "sortText": "00000299", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10973,7 +11755,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000269", + "sortText": "00000298", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -10990,7 +11772,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000275", + "sortText": "000002a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11007,7 +11789,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000268", + "sortText": "00000297", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11024,7 +11806,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000267", + "sortText": "00000296", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11041,7 +11823,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000266", + "sortText": "00000295", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11058,7 +11840,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000265", + "sortText": "00000294", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11075,7 +11857,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000264", + "sortText": "00000293", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11092,7 +11874,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000263", + "sortText": "00000292", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11109,7 +11891,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000262", + "sortText": "00000291", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11126,7 +11908,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000261", + "sortText": "00000290", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11143,7 +11925,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000260", + "sortText": "0000028f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11160,7 +11942,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000025f", + "sortText": "0000028e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11177,7 +11959,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000025e", + "sortText": "0000028d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11194,7 +11976,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000025d", + "sortText": "0000028c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11202,6 +11984,23 @@ "newText": "'Microsoft.Compute/virtualMachines@2020-06-01'" } }, + { + "label": "'Microsoft.Confluent/agreements@2020-03-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Confluent` \nType: `agreements` \nAPI Version: `2020-03-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000002c6", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Confluent/agreements@2020-03-01-preview'" + } + }, { "label": "'Microsoft.Confluent/organizations@2020-03-01-preview'", "kind": "class", @@ -11211,7 +12010,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000297", + "sortText": "000002c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11219,6 +12018,23 @@ "newText": "'Microsoft.Confluent/organizations@2020-03-01-preview'" } }, + { + "label": "'Microsoft.Consumption/budgets@2017-12-30-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2017-12-30-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000002d3", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Consumption/budgets@2017-12-30-preview'" + } + }, { "label": "'Microsoft.Consumption/budgets@2018-01-31'", "kind": "class", @@ -11228,7 +12044,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002a2", + "sortText": "000002d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11245,7 +12061,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002a1", + "sortText": "000002d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11262,7 +12078,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002a0", + "sortText": "000002d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11279,7 +12095,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000029f", + "sortText": "000002cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11296,7 +12112,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000029e", + "sortText": "000002ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11313,7 +12129,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000029d", + "sortText": "000002cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11330,7 +12146,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000029c", + "sortText": "000002cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11347,7 +12163,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000029b", + "sortText": "000002cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11364,7 +12180,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000029a", + "sortText": "000002ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11381,7 +12197,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000299", + "sortText": "000002c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11398,7 +12214,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000298", + "sortText": "000002c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11415,7 +12231,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002ab", + "sortText": "000002dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11432,7 +12248,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002aa", + "sortText": "000002db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11449,7 +12265,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002a9", + "sortText": "000002da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11466,7 +12282,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002a8", + "sortText": "000002d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11483,7 +12299,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002a7", + "sortText": "000002d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11500,7 +12316,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002a6", + "sortText": "000002d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11517,7 +12333,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002a5", + "sortText": "000002d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11534,7 +12350,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002a4", + "sortText": "000002d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11551,7 +12367,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002a3", + "sortText": "000002d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11568,7 +12384,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002b3", + "sortText": "000002e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11585,7 +12401,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002b5", + "sortText": "000002e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11602,7 +12418,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002b4", + "sortText": "000002e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11619,7 +12435,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002b6", + "sortText": "000002e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11636,7 +12452,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002b8", + "sortText": "000002e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11653,7 +12469,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002b7", + "sortText": "000002e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11670,7 +12486,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002ba", + "sortText": "000002eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11687,7 +12503,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002b9", + "sortText": "000002ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11704,7 +12520,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002bc", + "sortText": "000002ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11721,7 +12537,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002bb", + "sortText": "000002ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11738,7 +12554,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002be", + "sortText": "000002ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11755,7 +12571,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002bd", + "sortText": "000002ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11772,7 +12588,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002c3", + "sortText": "000002f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11789,7 +12605,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002c2", + "sortText": "000002f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11806,7 +12622,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002c1", + "sortText": "000002f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11823,7 +12639,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002c0", + "sortText": "000002f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11840,7 +12656,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002bf", + "sortText": "000002f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11857,7 +12673,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002c5", + "sortText": "000002f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11874,7 +12690,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002c4", + "sortText": "000002f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11891,7 +12707,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002c6", + "sortText": "000002f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11908,7 +12724,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002c9", + "sortText": "000002fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11925,7 +12741,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002c8", + "sortText": "000002f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11942,7 +12758,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002c7", + "sortText": "000002f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11959,7 +12775,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002cb", + "sortText": "000002fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11976,7 +12792,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002ca", + "sortText": "000002fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -11993,7 +12809,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002d0", + "sortText": "00000301", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12010,7 +12826,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002cf", + "sortText": "00000300", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12027,7 +12843,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002ce", + "sortText": "000002ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12044,7 +12860,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002cd", + "sortText": "000002fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12061,7 +12877,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002cc", + "sortText": "000002fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12078,7 +12894,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002b2", + "sortText": "000002e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12095,7 +12911,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002b1", + "sortText": "000002e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12112,7 +12928,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002b0", + "sortText": "000002e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12129,7 +12945,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002af", + "sortText": "000002e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12146,7 +12962,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002ae", + "sortText": "000002df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12163,7 +12979,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002ad", + "sortText": "000002de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12180,7 +12996,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002ac", + "sortText": "000002dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12197,7 +13013,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002d5", + "sortText": "00000306", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12214,7 +13030,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002d4", + "sortText": "00000305", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12231,7 +13047,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002d3", + "sortText": "00000304", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12248,7 +13064,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002d2", + "sortText": "00000303", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12265,7 +13081,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002d1", + "sortText": "00000302", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12282,7 +13098,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002f6", + "sortText": "00000327", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12299,7 +13115,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002f5", + "sortText": "00000326", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12316,7 +13132,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002f4", + "sortText": "00000325", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12333,7 +13149,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002f3", + "sortText": "00000324", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12350,7 +13166,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002f2", + "sortText": "00000323", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12367,7 +13183,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002f1", + "sortText": "00000322", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12384,7 +13200,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002f0", + "sortText": "00000321", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12401,7 +13217,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002ef", + "sortText": "00000320", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12418,7 +13234,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002ee", + "sortText": "0000031f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12435,7 +13251,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002ed", + "sortText": "0000031e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12452,7 +13268,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002ec", + "sortText": "0000031d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12469,7 +13285,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002eb", + "sortText": "0000031c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12486,7 +13302,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002ea", + "sortText": "0000031b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12503,7 +13319,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002e9", + "sortText": "0000031a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12520,7 +13336,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002e8", + "sortText": "00000319", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12537,7 +13353,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002f7", + "sortText": "00000328", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12554,7 +13370,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002fc", + "sortText": "0000032d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12571,7 +13387,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002fb", + "sortText": "0000032c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12588,7 +13404,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002fa", + "sortText": "0000032b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12605,7 +13421,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002f9", + "sortText": "0000032a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12622,7 +13438,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002f8", + "sortText": "00000329", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12639,7 +13455,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002e7", + "sortText": "00000318", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12656,7 +13472,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002e6", + "sortText": "00000317", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12673,7 +13489,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002e5", + "sortText": "00000316", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12690,7 +13506,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002e4", + "sortText": "00000315", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12707,7 +13523,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002e3", + "sortText": "00000314", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12724,7 +13540,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002e2", + "sortText": "00000313", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12741,7 +13557,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002e1", + "sortText": "00000312", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12758,7 +13574,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002e0", + "sortText": "00000311", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12775,7 +13591,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002df", + "sortText": "00000310", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12792,7 +13608,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002de", + "sortText": "0000030f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12809,7 +13625,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002dd", + "sortText": "0000030e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12826,7 +13642,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002dc", + "sortText": "0000030d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12843,7 +13659,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002db", + "sortText": "0000030c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12860,7 +13676,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002da", + "sortText": "0000030b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12877,7 +13693,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002d9", + "sortText": "0000030a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12894,7 +13710,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002d8", + "sortText": "00000309", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12911,7 +13727,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002d7", + "sortText": "00000308", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12928,7 +13744,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002d6", + "sortText": "00000307", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12945,7 +13761,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000300", + "sortText": "00000331", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12962,7 +13778,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002ff", + "sortText": "00000330", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12979,7 +13795,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002fe", + "sortText": "0000032f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -12996,7 +13812,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000002fd", + "sortText": "0000032e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13013,7 +13829,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000301", + "sortText": "00000332", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13022,66 +13838,100 @@ } }, { - "label": "'Microsoft.CostManagement/connectors@2018-08-01-preview'", + "label": "'Microsoft.CostManagement/cloudConnectors@2019-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `connectors` \nAPI Version: `2018-08-01-preview`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `cloudConnectors` \nAPI Version: `2019-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000302", + "sortText": "00000333", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/connectors@2018-08-01-preview'" + "newText": "'Microsoft.CostManagement/cloudConnectors@2019-03-01-preview'" } }, { - "label": "'Microsoft.CostManagement/exports@2019-01-01'", + "label": "'Microsoft.CostManagement/connectors@2018-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-01-01`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `connectors` \nAPI Version: `2018-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000306", + "sortText": "00000334", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/exports@2019-01-01'" + "newText": "'Microsoft.CostManagement/connectors@2018-08-01-preview'" } }, { - "label": "'Microsoft.CostManagement/exports@2019-09-01'", + "label": "'Microsoft.CostManagement/costAllocationRules@2020-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `costAllocationRules` \nAPI Version: `2020-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000305", + "sortText": "00000335", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/exports@2019-09-01'" + "newText": "'Microsoft.CostManagement/costAllocationRules@2020-03-01-preview'" } }, { - "label": "'Microsoft.CostManagement/exports@2019-10-01'", + "label": "'Microsoft.CostManagement/exports@2019-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000304", + "sortText": "00000339", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.CostManagement/exports@2019-01-01'" + } + }, + { + "label": "'Microsoft.CostManagement/exports@2019-09-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-09-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000338", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.CostManagement/exports@2019-09-01'" + } + }, + { + "label": "'Microsoft.CostManagement/exports@2019-10-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-10-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000337", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13098,7 +13948,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000303", + "sortText": "00000336", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13115,7 +13965,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000307", + "sortText": "0000033a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13132,7 +13982,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000308", + "sortText": "0000033b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13140,6 +13990,23 @@ "newText": "'Microsoft.CostManagement/reports@2018-08-01-preview'" } }, + { + "label": "'Microsoft.CostManagement/showbackRules@2019-03-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.CostManagement` \nType: `showbackRules` \nAPI Version: `2019-03-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000033c", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.CostManagement/showbackRules@2019-03-01-preview'" + } + }, { "label": "'Microsoft.CostManagement/views@2019-04-01-preview'", "kind": "class", @@ -13149,7 +14016,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000030b", + "sortText": "0000033f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13166,7 +14033,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000030a", + "sortText": "0000033e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13183,7 +14050,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000309", + "sortText": "0000033d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13200,7 +14067,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000325", + "sortText": "00000359", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13217,7 +14084,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000326", + "sortText": "0000035a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13234,7 +14101,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000030f", + "sortText": "00000343", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13251,7 +14118,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000030e", + "sortText": "00000342", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13268,7 +14135,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000313", + "sortText": "00000347", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13285,7 +14152,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000312", + "sortText": "00000346", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13302,7 +14169,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000311", + "sortText": "00000345", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13319,7 +14186,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000310", + "sortText": "00000344", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13336,7 +14203,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000315", + "sortText": "00000349", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13353,7 +14220,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000314", + "sortText": "00000348", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13370,7 +14237,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000317", + "sortText": "0000034b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13387,7 +14254,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000316", + "sortText": "0000034a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13404,7 +14271,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000319", + "sortText": "0000034d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13421,7 +14288,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000318", + "sortText": "0000034c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13438,7 +14305,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000031a", + "sortText": "0000034e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13455,7 +14322,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000031c", + "sortText": "00000350", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13472,7 +14339,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000031b", + "sortText": "0000034f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13489,7 +14356,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000031e", + "sortText": "00000352", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13506,7 +14373,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000031d", + "sortText": "00000351", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13523,7 +14390,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000320", + "sortText": "00000354", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13540,7 +14407,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000031f", + "sortText": "00000353", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13557,7 +14424,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000322", + "sortText": "00000356", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13574,7 +14441,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000321", + "sortText": "00000355", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13591,7 +14458,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000324", + "sortText": "00000358", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13608,7 +14475,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000323", + "sortText": "00000357", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13625,7 +14492,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000030d", + "sortText": "00000341", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13642,7 +14509,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000030c", + "sortText": "00000340", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13659,7 +14526,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000398", + "sortText": "000003cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13676,7 +14543,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000397", + "sortText": "000003cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13693,7 +14560,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000039a", + "sortText": "000003cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13710,7 +14577,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000399", + "sortText": "000003ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13727,7 +14594,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000039c", + "sortText": "000003d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13744,7 +14611,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000039b", + "sortText": "000003d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13761,7 +14628,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000039e", + "sortText": "000003d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13778,7 +14645,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003a1", + "sortText": "000003d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13795,7 +14662,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003a0", + "sortText": "000003d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13812,7 +14679,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000396", + "sortText": "000003cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13829,7 +14696,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000395", + "sortText": "000003ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13846,7 +14713,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003a5", + "sortText": "000003da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13863,7 +14730,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003a4", + "sortText": "000003d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13880,7 +14747,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003a7", + "sortText": "000003dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13897,7 +14764,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003a6", + "sortText": "000003db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13914,7 +14781,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003a9", + "sortText": "000003de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13931,7 +14798,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003a8", + "sortText": "000003dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13948,7 +14815,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003ab", + "sortText": "000003e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13965,7 +14832,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003aa", + "sortText": "000003df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13982,7 +14849,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003ae", + "sortText": "000003e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -13999,7 +14866,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003b1", + "sortText": "000003e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14016,7 +14883,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003b0", + "sortText": "000003e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14033,7 +14900,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003a3", + "sortText": "000003d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14050,7 +14917,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003a2", + "sortText": "000003d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14067,7 +14934,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003b8", + "sortText": "000003ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14084,7 +14951,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003b7", + "sortText": "000003ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14101,7 +14968,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003ba", + "sortText": "000003ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14118,7 +14985,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003b9", + "sortText": "000003ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14135,7 +15002,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003bc", + "sortText": "000003f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14152,7 +15019,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003bb", + "sortText": "000003f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14169,7 +15036,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003be", + "sortText": "000003f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14186,7 +15053,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003bd", + "sortText": "000003f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14203,7 +15070,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003c1", + "sortText": "000003f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14220,7 +15087,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003c4", + "sortText": "000003f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14237,7 +15104,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003c3", + "sortText": "000003f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14254,7 +15121,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003b6", + "sortText": "000003eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14271,7 +15138,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003b5", + "sortText": "000003ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14288,7 +15155,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003b3", + "sortText": "000003e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14305,7 +15172,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003b4", + "sortText": "000003e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14322,7 +15189,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003b2", + "sortText": "000003e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14339,7 +15206,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000039d", + "sortText": "000003d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14356,7 +15223,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000039f", + "sortText": "000003d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14373,7 +15240,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003ac", + "sortText": "000003e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14390,7 +15257,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003ad", + "sortText": "000003e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14407,7 +15274,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003af", + "sortText": "000003e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14424,7 +15291,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003bf", + "sortText": "000003f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14441,7 +15308,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003c0", + "sortText": "000003f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14458,7 +15325,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003c2", + "sortText": "000003f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14475,7 +15342,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000032a", + "sortText": "0000035e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14492,7 +15359,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000329", + "sortText": "0000035d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14509,7 +15376,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000328", + "sortText": "0000035c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14526,7 +15393,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000327", + "sortText": "0000035b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14543,7 +15410,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000332", + "sortText": "00000366", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14560,7 +15427,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000331", + "sortText": "00000365", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14577,7 +15444,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000330", + "sortText": "00000364", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14594,7 +15461,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000032f", + "sortText": "00000363", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14611,7 +15478,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000336", + "sortText": "0000036a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14628,7 +15495,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000335", + "sortText": "00000369", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14645,7 +15512,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000334", + "sortText": "00000368", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14662,7 +15529,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000333", + "sortText": "00000367", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14679,7 +15546,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000033a", + "sortText": "0000036e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14696,7 +15563,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000339", + "sortText": "0000036d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14713,7 +15580,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000338", + "sortText": "0000036c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14730,7 +15597,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000337", + "sortText": "0000036b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14747,7 +15614,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000033e", + "sortText": "00000372", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14764,7 +15631,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000033d", + "sortText": "00000371", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14781,7 +15648,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000033c", + "sortText": "00000370", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14798,7 +15665,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000033b", + "sortText": "0000036f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14815,7 +15682,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000342", + "sortText": "00000376", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14832,7 +15699,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000341", + "sortText": "00000375", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14849,7 +15716,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000340", + "sortText": "00000374", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14866,7 +15733,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000033f", + "sortText": "00000373", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14883,7 +15750,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000346", + "sortText": "0000037a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14900,7 +15767,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000345", + "sortText": "00000379", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14917,7 +15784,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000344", + "sortText": "00000378", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14934,7 +15801,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000343", + "sortText": "00000377", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14951,7 +15818,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000034a", + "sortText": "0000037e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14968,7 +15835,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000349", + "sortText": "0000037d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -14985,7 +15852,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000348", + "sortText": "0000037c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15002,7 +15869,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000347", + "sortText": "0000037b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15019,7 +15886,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000034e", + "sortText": "00000382", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15036,7 +15903,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000034d", + "sortText": "00000381", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15053,7 +15920,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000034c", + "sortText": "00000380", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15070,7 +15937,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000034b", + "sortText": "0000037f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15087,7 +15954,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000032e", + "sortText": "00000362", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15104,7 +15971,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000032d", + "sortText": "00000361", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15121,7 +15988,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000032c", + "sortText": "00000360", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15138,7 +16005,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000032b", + "sortText": "0000035f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15155,7 +16022,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000351", + "sortText": "00000385", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15172,7 +16039,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000357", + "sortText": "0000038c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15189,7 +16056,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000359", + "sortText": "0000038e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15206,7 +16073,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000358", + "sortText": "0000038d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15223,7 +16090,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000035b", + "sortText": "00000390", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15240,7 +16107,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000035a", + "sortText": "0000038f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15257,7 +16124,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000035d", + "sortText": "00000392", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15274,7 +16141,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000035c", + "sortText": "00000391", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15291,7 +16158,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000035f", + "sortText": "00000394", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15308,7 +16175,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000035e", + "sortText": "00000393", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15325,7 +16192,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000361", + "sortText": "00000396", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15342,7 +16209,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000360", + "sortText": "00000395", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15359,7 +16226,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000363", + "sortText": "00000398", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15376,7 +16243,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000362", + "sortText": "00000397", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15393,7 +16260,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000356", + "sortText": "0000038b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15410,7 +16277,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000355", + "sortText": "0000038a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15427,7 +16294,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000369", + "sortText": "0000039e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15444,7 +16311,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000036d", + "sortText": "000003a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15461,7 +16328,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000367", + "sortText": "0000039c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15478,7 +16345,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000366", + "sortText": "0000039b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15495,7 +16362,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000368", + "sortText": "0000039d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15512,7 +16379,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000036b", + "sortText": "000003a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15529,7 +16396,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000036a", + "sortText": "0000039f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15546,7 +16413,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000036c", + "sortText": "000003a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15563,7 +16430,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000365", + "sortText": "0000039a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15580,7 +16447,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000364", + "sortText": "00000399", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15597,7 +16464,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000371", + "sortText": "000003a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15614,7 +16481,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000370", + "sortText": "000003a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15631,7 +16498,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000372", + "sortText": "000003a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15648,7 +16515,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000373", + "sortText": "000003a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15665,7 +16532,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000036f", + "sortText": "000003a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15682,7 +16549,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000036e", + "sortText": "000003a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15699,7 +16566,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000037e", + "sortText": "000003b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15716,7 +16583,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000383", + "sortText": "000003b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15733,7 +16600,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000382", + "sortText": "000003b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15750,7 +16617,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000381", + "sortText": "000003b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15767,7 +16634,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000380", + "sortText": "000003b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15784,7 +16651,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000037f", + "sortText": "000003b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15801,7 +16668,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000037d", + "sortText": "000003b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15818,7 +16685,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000037c", + "sortText": "000003b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15835,7 +16702,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000037b", + "sortText": "000003b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15852,7 +16719,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000037a", + "sortText": "000003af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15869,7 +16736,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000379", + "sortText": "000003ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15886,7 +16753,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000384", + "sortText": "000003b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15903,7 +16770,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000378", + "sortText": "000003ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15920,7 +16787,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000377", + "sortText": "000003ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15937,7 +16804,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000376", + "sortText": "000003ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15954,7 +16821,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000375", + "sortText": "000003aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15971,7 +16838,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000374", + "sortText": "000003a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -15988,7 +16855,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000392", + "sortText": "000003c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16005,7 +16872,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000391", + "sortText": "000003c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16022,7 +16889,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000394", + "sortText": "000003c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16039,7 +16906,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000393", + "sortText": "000003c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16056,7 +16923,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000390", + "sortText": "000003c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16073,7 +16940,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000038f", + "sortText": "000003c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16090,7 +16957,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000038a", + "sortText": "000003bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16107,7 +16974,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000389", + "sortText": "000003be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16124,7 +16991,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000038c", + "sortText": "000003c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16141,7 +17008,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000038b", + "sortText": "000003c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16158,7 +17025,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000038e", + "sortText": "000003c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16175,7 +17042,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000038d", + "sortText": "000003c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16192,7 +17059,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000388", + "sortText": "000003bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16209,7 +17076,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000387", + "sortText": "000003bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16226,7 +17093,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000386", + "sortText": "000003bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16243,7 +17110,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000385", + "sortText": "000003ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16260,7 +17127,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000350", + "sortText": "00000384", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16277,7 +17144,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000034f", + "sortText": "00000383", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16285,6 +17152,23 @@ "newText": "'Microsoft.Databricks/workspaces@2018-04-01'" } }, + { + "label": "'Microsoft.Datadog/agreements@2020-02-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Datadog` \nType: `agreements` \nAPI Version: `2020-02-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000386", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Datadog/agreements@2020-02-01-preview'" + } + }, { "label": "'Microsoft.Datadog/monitors/singleSignOnConfigurations@2020-02-01-preview'", "kind": "class", @@ -16294,7 +17178,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000353", + "sortText": "00000388", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16311,7 +17195,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000354", + "sortText": "00000389", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16328,7 +17212,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000352", + "sortText": "00000387", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16345,7 +17229,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003c6", + "sortText": "000003fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16362,7 +17246,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003c5", + "sortText": "000003fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16379,7 +17263,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003c8", + "sortText": "000003fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16396,7 +17280,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003c7", + "sortText": "000003fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16413,7 +17297,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003ce", + "sortText": "00000403", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16430,7 +17314,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003cd", + "sortText": "00000402", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16447,7 +17331,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003cc", + "sortText": "00000401", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16464,7 +17348,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003cb", + "sortText": "00000400", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16481,7 +17365,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003ca", + "sortText": "000003ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16498,7 +17382,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003c9", + "sortText": "000003fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16515,7 +17399,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003d0", + "sortText": "00000405", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16532,7 +17416,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003cf", + "sortText": "00000404", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16549,7 +17433,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003dc", + "sortText": "00000411", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16566,7 +17450,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003db", + "sortText": "00000410", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16583,7 +17467,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003da", + "sortText": "0000040f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16600,7 +17484,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003d9", + "sortText": "0000040e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16617,7 +17501,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003d8", + "sortText": "0000040d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16634,7 +17518,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003d7", + "sortText": "0000040c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16651,7 +17535,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003d6", + "sortText": "0000040b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16668,7 +17552,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003d5", + "sortText": "0000040a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16685,7 +17569,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003d4", + "sortText": "00000409", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16702,7 +17586,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003d3", + "sortText": "00000408", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16719,7 +17603,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003d2", + "sortText": "00000407", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16736,7 +17620,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003d1", + "sortText": "00000406", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16753,7 +17637,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003e5", + "sortText": "0000041a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16770,7 +17654,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003e4", + "sortText": "00000419", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16787,7 +17671,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003e3", + "sortText": "00000418", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16804,7 +17688,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003e2", + "sortText": "00000417", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16821,7 +17705,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003e1", + "sortText": "00000416", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16838,7 +17722,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003e0", + "sortText": "00000415", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16855,7 +17739,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003df", + "sortText": "00000414", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16872,7 +17756,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003de", + "sortText": "00000413", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16889,7 +17773,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003dd", + "sortText": "00000412", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16906,7 +17790,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003eb", + "sortText": "00000420", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16923,7 +17807,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003ea", + "sortText": "0000041f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16940,7 +17824,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003e9", + "sortText": "0000041e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16957,7 +17841,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003e8", + "sortText": "0000041d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16974,7 +17858,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003e7", + "sortText": "0000041c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -16991,7 +17875,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003e6", + "sortText": "0000041b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17008,7 +17892,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000041f", + "sortText": "00000454", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17025,7 +17909,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000041e", + "sortText": "00000453", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17042,7 +17926,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000420", + "sortText": "00000455", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17059,7 +17943,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000426", + "sortText": "0000045b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17076,7 +17960,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000425", + "sortText": "0000045a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17093,7 +17977,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000424", + "sortText": "00000459", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17110,7 +17994,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000428", + "sortText": "0000045d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17127,7 +18011,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000427", + "sortText": "0000045c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17144,7 +18028,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000042b", + "sortText": "00000460", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17161,7 +18045,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000042a", + "sortText": "0000045f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17178,7 +18062,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000429", + "sortText": "0000045e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17195,7 +18079,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000042e", + "sortText": "00000463", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17212,7 +18096,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000042d", + "sortText": "00000462", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17229,7 +18113,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000042c", + "sortText": "00000461", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17246,7 +18130,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000430", + "sortText": "00000465", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17263,7 +18147,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000042f", + "sortText": "00000464", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17280,7 +18164,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000433", + "sortText": "00000468", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17297,7 +18181,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000432", + "sortText": "00000467", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17314,7 +18198,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000431", + "sortText": "00000466", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17331,7 +18215,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000436", + "sortText": "0000046b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17348,7 +18232,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000435", + "sortText": "0000046a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17365,7 +18249,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000434", + "sortText": "00000469", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17382,7 +18266,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000438", + "sortText": "0000046d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17399,7 +18283,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000437", + "sortText": "0000046c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17416,7 +18300,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000043c", + "sortText": "00000471", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17433,7 +18317,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000043b", + "sortText": "00000470", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17450,7 +18334,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000043e", + "sortText": "00000473", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17467,7 +18351,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000043d", + "sortText": "00000472", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17484,7 +18368,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000440", + "sortText": "00000475", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17501,7 +18385,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000043f", + "sortText": "00000474", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17518,7 +18402,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000442", + "sortText": "00000477", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17535,7 +18419,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000441", + "sortText": "00000476", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17552,7 +18436,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000043a", + "sortText": "0000046f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17569,7 +18453,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000439", + "sortText": "0000046e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17586,7 +18470,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000447", + "sortText": "0000047c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17603,7 +18487,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000446", + "sortText": "0000047b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17620,7 +18504,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000445", + "sortText": "0000047a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17637,7 +18521,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000444", + "sortText": "00000479", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17654,7 +18538,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000443", + "sortText": "00000478", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17671,7 +18555,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000044a", + "sortText": "0000047f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17688,7 +18572,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000449", + "sortText": "0000047e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17705,7 +18589,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000448", + "sortText": "0000047d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17722,7 +18606,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000423", + "sortText": "00000458", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17739,7 +18623,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000422", + "sortText": "00000457", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17756,7 +18640,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000421", + "sortText": "00000456", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17773,7 +18657,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000044c", + "sortText": "00000481", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17790,7 +18674,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000044b", + "sortText": "00000480", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17807,7 +18691,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000407", + "sortText": "0000043c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17824,7 +18708,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000406", + "sortText": "0000043b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17841,7 +18725,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000405", + "sortText": "0000043a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17858,7 +18742,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000404", + "sortText": "00000439", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17875,7 +18759,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000403", + "sortText": "00000438", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17892,7 +18776,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000402", + "sortText": "00000437", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17909,7 +18793,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000401", + "sortText": "00000436", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17926,7 +18810,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000400", + "sortText": "00000435", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17943,7 +18827,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003ff", + "sortText": "00000434", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17960,7 +18844,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003fe", + "sortText": "00000433", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17977,7 +18861,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003fd", + "sortText": "00000432", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -17994,7 +18878,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003fc", + "sortText": "00000431", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18011,7 +18895,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003fb", + "sortText": "00000430", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18028,7 +18912,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000040a", + "sortText": "0000043f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18045,7 +18929,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000409", + "sortText": "0000043e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18062,7 +18946,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000408", + "sortText": "0000043d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18079,7 +18963,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003fa", + "sortText": "0000042f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18096,7 +18980,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003f9", + "sortText": "0000042e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18113,7 +18997,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003f8", + "sortText": "0000042d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18130,7 +19014,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003f7", + "sortText": "0000042c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18147,7 +19031,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003f6", + "sortText": "0000042b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18164,7 +19048,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003f5", + "sortText": "0000042a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18181,7 +19065,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003f4", + "sortText": "00000429", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18198,7 +19082,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003f3", + "sortText": "00000428", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18215,7 +19099,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003f2", + "sortText": "00000427", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18232,7 +19116,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003f1", + "sortText": "00000426", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18249,7 +19133,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003f0", + "sortText": "00000425", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18266,7 +19150,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003ef", + "sortText": "00000424", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18283,7 +19167,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003ee", + "sortText": "00000423", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18300,7 +19184,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003ed", + "sortText": "00000422", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18317,7 +19201,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000003ec", + "sortText": "00000421", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18334,7 +19218,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000040f", + "sortText": "00000444", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18351,7 +19235,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000040e", + "sortText": "00000443", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18368,7 +19252,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000040d", + "sortText": "00000442", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18385,7 +19269,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000040c", + "sortText": "00000441", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18402,7 +19286,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000040b", + "sortText": "00000440", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18419,7 +19303,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000041b", + "sortText": "00000450", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18436,7 +19320,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000041a", + "sortText": "0000044f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18453,7 +19337,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000419", + "sortText": "0000044e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18470,7 +19354,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000418", + "sortText": "0000044d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18487,7 +19371,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000417", + "sortText": "0000044c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18504,7 +19388,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000416", + "sortText": "0000044b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18521,7 +19405,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000041d", + "sortText": "00000452", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18538,7 +19422,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000041c", + "sortText": "00000451", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18555,7 +19439,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000415", + "sortText": "0000044a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18572,7 +19456,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000414", + "sortText": "00000449", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18589,7 +19473,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000413", + "sortText": "00000448", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18606,7 +19490,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000412", + "sortText": "00000447", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18623,7 +19507,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000411", + "sortText": "00000446", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18640,7 +19524,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000410", + "sortText": "00000445", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18657,7 +19541,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000452", + "sortText": "00000487", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18674,7 +19558,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000451", + "sortText": "00000486", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18691,7 +19575,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000450", + "sortText": "00000485", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18708,7 +19592,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000453", + "sortText": "00000488", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18725,7 +19609,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000044f", + "sortText": "00000484", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18742,7 +19626,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000044e", + "sortText": "00000483", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18759,7 +19643,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000044d", + "sortText": "00000482", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18776,7 +19660,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000046c", + "sortText": "000004a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18793,7 +19677,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000046b", + "sortText": "000004a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18810,7 +19694,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000046a", + "sortText": "0000049f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18827,7 +19711,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000469", + "sortText": "0000049e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18844,7 +19728,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000468", + "sortText": "0000049d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18861,7 +19745,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000467", + "sortText": "0000049c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18878,7 +19762,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000466", + "sortText": "0000049b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18895,7 +19779,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000465", + "sortText": "0000049a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18912,7 +19796,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000464", + "sortText": "00000499", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18929,7 +19813,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000463", + "sortText": "00000498", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18946,7 +19830,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000476", + "sortText": "000004ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18963,7 +19847,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000475", + "sortText": "000004aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18980,7 +19864,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000474", + "sortText": "000004a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -18997,7 +19881,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000473", + "sortText": "000004a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19014,7 +19898,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000472", + "sortText": "000004a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19031,7 +19915,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000471", + "sortText": "000004a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19048,7 +19932,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000470", + "sortText": "000004a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19065,7 +19949,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000046f", + "sortText": "000004a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19082,7 +19966,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000046e", + "sortText": "000004a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19099,7 +19983,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000046d", + "sortText": "000004a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19116,7 +20000,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000480", + "sortText": "000004b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19133,7 +20017,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000047f", + "sortText": "000004b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19150,7 +20034,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000047e", + "sortText": "000004b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19167,7 +20051,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000047d", + "sortText": "000004b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19184,7 +20068,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000047c", + "sortText": "000004b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19201,7 +20085,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000047b", + "sortText": "000004b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19218,7 +20102,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000047a", + "sortText": "000004af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19235,7 +20119,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000479", + "sortText": "000004ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19252,7 +20136,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000478", + "sortText": "000004ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19269,7 +20153,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000477", + "sortText": "000004ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19286,7 +20170,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000485", + "sortText": "000004ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19303,7 +20187,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000484", + "sortText": "000004b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19320,7 +20204,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000483", + "sortText": "000004b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19337,7 +20221,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000482", + "sortText": "000004b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19354,7 +20238,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000481", + "sortText": "000004b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19371,7 +20255,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000462", + "sortText": "00000497", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19388,7 +20272,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000461", + "sortText": "00000496", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19405,7 +20289,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000460", + "sortText": "00000495", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19422,7 +20306,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000045f", + "sortText": "00000494", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19439,7 +20323,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000045e", + "sortText": "00000493", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19456,7 +20340,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000048f", + "sortText": "000004c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19473,7 +20357,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000048e", + "sortText": "000004c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19490,7 +20374,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000048d", + "sortText": "000004c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19507,7 +20391,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000048c", + "sortText": "000004c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19524,7 +20408,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000048b", + "sortText": "000004c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19541,7 +20425,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000499", + "sortText": "000004ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19558,7 +20442,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000498", + "sortText": "000004cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19575,7 +20459,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000497", + "sortText": "000004cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19592,7 +20476,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000496", + "sortText": "000004cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19609,7 +20493,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000495", + "sortText": "000004ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19626,7 +20510,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000494", + "sortText": "000004c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19643,7 +20527,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000493", + "sortText": "000004c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19660,7 +20544,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000492", + "sortText": "000004c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19677,7 +20561,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000491", + "sortText": "000004c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19694,7 +20578,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000490", + "sortText": "000004c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19711,7 +20595,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000048a", + "sortText": "000004bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19728,7 +20612,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000489", + "sortText": "000004be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19745,7 +20629,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000488", + "sortText": "000004bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19762,7 +20646,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000487", + "sortText": "000004bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19779,7 +20663,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000486", + "sortText": "000004bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19796,7 +20680,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004a3", + "sortText": "000004d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19813,7 +20697,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004a2", + "sortText": "000004d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19830,7 +20714,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004a1", + "sortText": "000004d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19847,7 +20731,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004a0", + "sortText": "000004d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19864,7 +20748,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000049f", + "sortText": "000004d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19881,7 +20765,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000049e", + "sortText": "000004d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19898,7 +20782,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000049d", + "sortText": "000004d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19915,7 +20799,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000049c", + "sortText": "000004d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19932,7 +20816,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000049b", + "sortText": "000004d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19949,7 +20833,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000049a", + "sortText": "000004cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19966,7 +20850,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004b2", + "sortText": "000004e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -19983,7 +20867,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004b1", + "sortText": "000004e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20000,7 +20884,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004b0", + "sortText": "000004e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20017,7 +20901,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004af", + "sortText": "000004e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20034,7 +20918,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004ae", + "sortText": "000004e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20051,7 +20935,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004ad", + "sortText": "000004e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20068,7 +20952,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004ac", + "sortText": "000004e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20085,7 +20969,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004ab", + "sortText": "000004e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20102,7 +20986,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004aa", + "sortText": "000004df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20119,7 +21003,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004a9", + "sortText": "000004de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20136,7 +21020,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004b7", + "sortText": "000004ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20153,7 +21037,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004b6", + "sortText": "000004eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20170,7 +21054,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004b5", + "sortText": "000004ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20187,7 +21071,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004b4", + "sortText": "000004e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20204,7 +21088,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004b3", + "sortText": "000004e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20221,7 +21105,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004a8", + "sortText": "000004dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20238,7 +21122,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004a7", + "sortText": "000004dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20255,7 +21139,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004a6", + "sortText": "000004db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20272,7 +21156,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004a5", + "sortText": "000004da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20289,7 +21173,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004a4", + "sortText": "000004d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20306,7 +21190,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004c6", + "sortText": "000004fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20323,7 +21207,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004c5", + "sortText": "000004fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20340,7 +21224,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004c4", + "sortText": "000004f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20357,7 +21241,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004c3", + "sortText": "000004f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20374,7 +21258,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004c2", + "sortText": "000004f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20391,7 +21275,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004c1", + "sortText": "000004f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20408,7 +21292,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004c0", + "sortText": "000004f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20425,7 +21309,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004bf", + "sortText": "000004f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20442,7 +21326,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004be", + "sortText": "000004f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20459,7 +21343,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004bd", + "sortText": "000004f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20476,7 +21360,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004cb", + "sortText": "00000500", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20493,7 +21377,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004ca", + "sortText": "000004ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20510,7 +21394,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004c9", + "sortText": "000004fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20527,7 +21411,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004c8", + "sortText": "000004fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20544,7 +21428,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004c7", + "sortText": "000004fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20561,7 +21445,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004bc", + "sortText": "000004f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20578,7 +21462,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004bb", + "sortText": "000004f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20595,7 +21479,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004ba", + "sortText": "000004ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20612,7 +21496,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004b9", + "sortText": "000004ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20629,7 +21513,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004b8", + "sortText": "000004ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20646,7 +21530,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004da", + "sortText": "0000050f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20663,7 +21547,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004d9", + "sortText": "0000050e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20680,7 +21564,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004d8", + "sortText": "0000050d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20697,7 +21581,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004d7", + "sortText": "0000050c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20714,7 +21598,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004d6", + "sortText": "0000050b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20731,7 +21615,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004d5", + "sortText": "0000050a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20748,7 +21632,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004d4", + "sortText": "00000509", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20765,7 +21649,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004d3", + "sortText": "00000508", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20782,7 +21666,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004d2", + "sortText": "00000507", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20799,7 +21683,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004d1", + "sortText": "00000506", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20816,7 +21700,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004df", + "sortText": "00000514", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20833,7 +21717,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004de", + "sortText": "00000513", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20850,7 +21734,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004dd", + "sortText": "00000512", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20867,7 +21751,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004dc", + "sortText": "00000511", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20884,7 +21768,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004db", + "sortText": "00000510", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20901,7 +21785,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004d0", + "sortText": "00000505", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20918,7 +21802,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004cf", + "sortText": "00000504", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20935,7 +21819,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004ce", + "sortText": "00000503", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20952,7 +21836,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004cd", + "sortText": "00000502", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20969,7 +21853,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004cc", + "sortText": "00000501", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -20986,7 +21870,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004e4", + "sortText": "00000519", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21003,7 +21887,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004e3", + "sortText": "00000518", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21020,7 +21904,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004e2", + "sortText": "00000517", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21037,7 +21921,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004e1", + "sortText": "00000516", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21054,7 +21938,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004e0", + "sortText": "00000515", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21071,7 +21955,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004e5", + "sortText": "0000051a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21088,7 +21972,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004f4", + "sortText": "00000529", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21105,7 +21989,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004f3", + "sortText": "00000528", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21122,7 +22006,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004f2", + "sortText": "00000527", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21139,7 +22023,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004f1", + "sortText": "00000526", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21156,7 +22040,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004f0", + "sortText": "00000525", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21173,7 +22057,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004f9", + "sortText": "0000052e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21190,7 +22074,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004f8", + "sortText": "0000052d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21207,7 +22091,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004f7", + "sortText": "0000052c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21224,7 +22108,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004f6", + "sortText": "0000052b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21241,7 +22125,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004f5", + "sortText": "0000052a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21258,7 +22142,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004fe", + "sortText": "00000533", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21275,7 +22159,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004fd", + "sortText": "00000532", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21292,7 +22176,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004fc", + "sortText": "00000531", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21309,7 +22193,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004fb", + "sortText": "00000530", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21326,7 +22210,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004fa", + "sortText": "0000052f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21343,7 +22227,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000503", + "sortText": "00000538", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21360,7 +22244,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000502", + "sortText": "00000537", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21377,7 +22261,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000501", + "sortText": "00000536", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21394,7 +22278,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000500", + "sortText": "00000535", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21411,7 +22295,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004ff", + "sortText": "00000534", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21428,7 +22312,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004ef", + "sortText": "00000524", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21445,7 +22329,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004ee", + "sortText": "00000523", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21462,7 +22346,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004ed", + "sortText": "00000522", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21479,7 +22363,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004ec", + "sortText": "00000521", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21496,7 +22380,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004eb", + "sortText": "00000520", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21513,7 +22397,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000508", + "sortText": "0000053d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21530,7 +22414,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000507", + "sortText": "0000053c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21547,7 +22431,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000506", + "sortText": "0000053b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21564,7 +22448,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000505", + "sortText": "0000053a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21581,7 +22465,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000504", + "sortText": "00000539", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21598,7 +22482,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004ea", + "sortText": "0000051f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21615,7 +22499,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004e9", + "sortText": "0000051e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21632,7 +22516,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004e8", + "sortText": "0000051d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21649,7 +22533,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004e7", + "sortText": "0000051c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21666,7 +22550,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000004e6", + "sortText": "0000051b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21683,7 +22567,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000512", + "sortText": "00000547", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21700,7 +22584,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000511", + "sortText": "00000546", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21717,7 +22601,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000510", + "sortText": "00000545", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21734,7 +22618,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000050f", + "sortText": "00000544", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21751,7 +22635,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000050e", + "sortText": "00000543", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21768,7 +22652,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000050d", + "sortText": "00000542", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21785,7 +22669,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000050c", + "sortText": "00000541", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21802,7 +22686,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000050b", + "sortText": "00000540", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21819,7 +22703,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000050a", + "sortText": "0000053f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21836,7 +22720,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000509", + "sortText": "0000053e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21853,7 +22737,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000045d", + "sortText": "00000492", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21870,7 +22754,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000045c", + "sortText": "00000491", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21887,7 +22771,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000045b", + "sortText": "00000490", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21904,7 +22788,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000045a", + "sortText": "0000048f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21921,7 +22805,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000459", + "sortText": "0000048e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21938,7 +22822,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000458", + "sortText": "0000048d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21955,7 +22839,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000457", + "sortText": "0000048c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21972,7 +22856,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000456", + "sortText": "0000048b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -21989,7 +22873,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000455", + "sortText": "0000048a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22006,7 +22890,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000454", + "sortText": "00000489", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22023,7 +22907,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000051b", + "sortText": "00000550", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22040,7 +22924,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000051a", + "sortText": "0000054f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22057,7 +22941,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000519", + "sortText": "0000054e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22074,7 +22958,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000518", + "sortText": "0000054d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22091,7 +22975,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000517", + "sortText": "0000054c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22108,7 +22992,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000516", + "sortText": "0000054b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22125,7 +23009,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000515", + "sortText": "0000054a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22142,7 +23026,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000514", + "sortText": "00000549", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22159,7 +23043,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000513", + "sortText": "00000548", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22176,7 +23060,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000051d", + "sortText": "00000552", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22193,7 +23077,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000051c", + "sortText": "00000551", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22210,7 +23094,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000051e", + "sortText": "00000553", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22227,7 +23111,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000526", + "sortText": "0000055b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22244,7 +23128,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000525", + "sortText": "0000055a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22261,7 +23145,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000524", + "sortText": "00000559", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22278,7 +23162,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000523", + "sortText": "00000558", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22295,7 +23179,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000522", + "sortText": "00000557", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22312,7 +23196,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000521", + "sortText": "00000556", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22329,7 +23213,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000520", + "sortText": "00000555", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22346,7 +23230,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000051f", + "sortText": "00000554", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22363,7 +23247,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000531", + "sortText": "00000566", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22380,7 +23264,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000530", + "sortText": "00000565", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22397,7 +23281,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000052f", + "sortText": "00000564", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22414,7 +23298,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000052e", + "sortText": "00000563", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22431,7 +23315,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000052d", + "sortText": "00000562", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22448,7 +23332,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000052c", + "sortText": "00000561", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22465,7 +23349,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000052b", + "sortText": "00000560", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22482,7 +23366,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000052a", + "sortText": "0000055f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22499,7 +23383,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000529", + "sortText": "0000055e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22516,7 +23400,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000528", + "sortText": "0000055d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22533,7 +23417,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000527", + "sortText": "0000055c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22550,7 +23434,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000533", + "sortText": "00000568", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22567,7 +23451,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000532", + "sortText": "00000567", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22584,7 +23468,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000534", + "sortText": "00000569", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22601,7 +23485,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000535", + "sortText": "0000056a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22618,7 +23502,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000537", + "sortText": "0000056c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22635,7 +23519,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000536", + "sortText": "0000056b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22652,7 +23536,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000544", + "sortText": "00000579", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22669,7 +23553,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000543", + "sortText": "00000578", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22686,7 +23570,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000542", + "sortText": "00000577", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22703,7 +23587,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000541", + "sortText": "00000576", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22720,7 +23604,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000540", + "sortText": "00000575", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22737,7 +23621,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000053f", + "sortText": "00000574", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22754,7 +23638,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000053e", + "sortText": "00000573", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22771,7 +23655,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000053d", + "sortText": "00000572", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22788,7 +23672,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000053c", + "sortText": "00000571", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22805,7 +23689,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000053b", + "sortText": "00000570", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22822,7 +23706,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000053a", + "sortText": "0000056f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22839,7 +23723,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000539", + "sortText": "0000056e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22856,7 +23740,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000538", + "sortText": "0000056d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22873,7 +23757,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000545", + "sortText": "0000057a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22890,7 +23774,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000054c", + "sortText": "00000581", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22907,7 +23791,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000054b", + "sortText": "00000580", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22924,7 +23808,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000054a", + "sortText": "0000057f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22941,7 +23825,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000054d", + "sortText": "00000582", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22958,7 +23842,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000553", + "sortText": "00000588", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22975,7 +23859,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000552", + "sortText": "00000587", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -22992,7 +23876,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000551", + "sortText": "00000586", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23009,7 +23893,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000556", + "sortText": "0000058b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23026,7 +23910,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000555", + "sortText": "0000058a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23043,7 +23927,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000554", + "sortText": "00000589", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23060,7 +23944,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000550", + "sortText": "00000585", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23077,7 +23961,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000054f", + "sortText": "00000584", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23094,7 +23978,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000054e", + "sortText": "00000583", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23111,7 +23995,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000557", + "sortText": "0000058c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23128,7 +24012,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000559", + "sortText": "0000058e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23145,7 +24029,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000558", + "sortText": "0000058d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23162,7 +24046,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000055a", + "sortText": "0000058f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23179,7 +24063,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000055b", + "sortText": "00000590", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23196,7 +24080,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000549", + "sortText": "0000057e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23213,7 +24097,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000548", + "sortText": "0000057d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23230,7 +24114,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000547", + "sortText": "0000057c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23247,7 +24131,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000546", + "sortText": "0000057b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23255,6 +24139,74 @@ "newText": "'Microsoft.EventHub/namespaces@2018-01-01-preview'" } }, + { + "label": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-01-20-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.GuestConfiguration` \nType: `guestConfigurationAssignments` \nAPI Version: `2018-01-20-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000594", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-01-20-preview'" + } + }, + { + "label": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-06-30-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.GuestConfiguration` \nType: `guestConfigurationAssignments` \nAPI Version: `2018-06-30-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000593", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-06-30-preview'" + } + }, + { + "label": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-11-20'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.GuestConfiguration` \nType: `guestConfigurationAssignments` \nAPI Version: `2018-11-20`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000592", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-11-20'" + } + }, + { + "label": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2020-06-25'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.GuestConfiguration` \nType: `guestConfigurationAssignments` \nAPI Version: `2020-06-25`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000591", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2020-06-25'" + } + }, { "label": "'Microsoft.HDInsight/clusters/applications@2015-03-01-preview'", "kind": "class", @@ -23264,7 +24216,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000564", + "sortText": "0000059d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23281,7 +24233,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000563", + "sortText": "0000059c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23298,7 +24250,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000562", + "sortText": "0000059b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23315,7 +24267,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000561", + "sortText": "0000059a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23332,7 +24284,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000055c", + "sortText": "00000595", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23349,7 +24301,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000055f", + "sortText": "00000598", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23366,7 +24318,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000055e", + "sortText": "00000597", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23383,7 +24335,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000055d", + "sortText": "00000596", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23400,7 +24352,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000560", + "sortText": "00000599", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23417,7 +24369,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000565", + "sortText": "0000059e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23434,7 +24386,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000056a", + "sortText": "000005a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23451,7 +24403,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000569", + "sortText": "000005a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23468,7 +24420,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000568", + "sortText": "000005a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23485,7 +24437,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000567", + "sortText": "000005a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23502,7 +24454,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000566", + "sortText": "0000059f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23519,7 +24471,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000575", + "sortText": "000005ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23536,7 +24488,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000574", + "sortText": "000005ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23553,7 +24505,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000573", + "sortText": "000005ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23570,7 +24522,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000572", + "sortText": "000005ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23587,7 +24539,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000571", + "sortText": "000005aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23604,7 +24556,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000570", + "sortText": "000005a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23621,7 +24573,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000056f", + "sortText": "000005a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23638,7 +24590,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000056e", + "sortText": "000005a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23655,7 +24607,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000056d", + "sortText": "000005a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23672,7 +24624,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000056c", + "sortText": "000005a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23689,7 +24641,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000056b", + "sortText": "000005a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23706,7 +24658,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000577", + "sortText": "000005b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23723,7 +24675,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000578", + "sortText": "000005b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23740,7 +24692,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000576", + "sortText": "000005af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23757,7 +24709,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000057c", + "sortText": "000005b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23774,7 +24726,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000057b", + "sortText": "000005b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23791,7 +24743,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000057e", + "sortText": "000005b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23808,7 +24760,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000057d", + "sortText": "000005b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23825,7 +24777,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000057a", + "sortText": "000005b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23842,7 +24794,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000579", + "sortText": "000005b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23859,7 +24811,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000057f", + "sortText": "000005b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23867,6 +24819,23 @@ "newText": "'Microsoft.HybridNetwork/devices@2020-01-01-preview'" } }, + { + "label": "'Microsoft.HybridNetwork/locations/vendors/networkFunctions@2020-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.HybridNetwork` \nType: `locations/vendors/networkFunctions` \nAPI Version: `2020-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000005b9", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.HybridNetwork/locations/vendors/networkFunctions@2020-01-01-preview'" + } + }, { "label": "'Microsoft.HybridNetwork/networkFunctions@2020-01-01-preview'", "kind": "class", @@ -23876,7 +24845,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000580", + "sortText": "000005ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23884,6 +24853,57 @@ "newText": "'Microsoft.HybridNetwork/networkFunctions@2020-01-01-preview'" } }, + { + "label": "'Microsoft.HybridNetwork/vendors/vendorSkus/previewSubscriptions@2020-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.HybridNetwork` \nType: `vendors/vendorSkus/previewSubscriptions` \nAPI Version: `2020-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000005bd", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.HybridNetwork/vendors/vendorSkus/previewSubscriptions@2020-01-01-preview'" + } + }, + { + "label": "'Microsoft.HybridNetwork/vendors/vendorSkus@2020-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.HybridNetwork` \nType: `vendors/vendorSkus` \nAPI Version: `2020-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000005bc", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.HybridNetwork/vendors/vendorSkus@2020-01-01-preview'" + } + }, + { + "label": "'Microsoft.HybridNetwork/vendors@2020-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.HybridNetwork` \nType: `vendors` \nAPI Version: `2020-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000005bb", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.HybridNetwork/vendors@2020-01-01-preview'" + } + }, { "label": "'Microsoft.ImportExport/jobs@2016-11-01'", "kind": "class", @@ -23893,7 +24913,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000582", + "sortText": "000005bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23910,7 +24930,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000581", + "sortText": "000005be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23927,7 +24947,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000596", + "sortText": "000005d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23944,7 +24964,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000595", + "sortText": "000005d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23961,7 +24981,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000590", + "sortText": "000005cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23978,7 +24998,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000591", + "sortText": "000005ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -23995,7 +25015,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000058e", + "sortText": "000005cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24012,7 +25032,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000058d", + "sortText": "000005ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24029,7 +25049,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000058c", + "sortText": "000005c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24046,7 +25066,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000597", + "sortText": "000005d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24063,7 +25083,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000598", + "sortText": "000005d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24080,7 +25100,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000059e", + "sortText": "000005dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24097,7 +25117,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000059f", + "sortText": "000005de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24114,7 +25134,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005a1", + "sortText": "000005e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24131,7 +25151,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005a2", + "sortText": "000005e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24148,7 +25168,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005a3", + "sortText": "000005e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24165,7 +25185,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005a5", + "sortText": "000005e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24174,168 +25194,270 @@ } }, { - "label": "'Microsoft.IoTCentral/iotApps@2018-09-01'", + "label": "'Microsoft.Intune/locations/androidPolicies/apps@2015-01-14-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.IoTCentral` \nType: `iotApps` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.Intune` \nType: `locations/androidPolicies/apps` \nAPI Version: `2015-01-14-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005a9", + "sortText": "000005e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.IoTCentral/iotApps@2018-09-01'" + "newText": "'Microsoft.Intune/locations/androidPolicies/apps@2015-01-14-preview'" } }, { - "label": "'Microsoft.IoTSpaces/Graph@2017-10-01-preview'", + "label": "'Microsoft.Intune/locations/androidPolicies/groups@2015-01-14-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.IoTSpaces` \nType: `Graph` \nAPI Version: `2017-10-01-preview`" + "value": "Namespace: `Microsoft.Intune` \nType: `locations/androidPolicies/groups` \nAPI Version: `2015-01-14-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005aa", + "sortText": "000005ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.IoTSpaces/Graph@2017-10-01-preview'" + "newText": "'Microsoft.Intune/locations/androidPolicies/groups@2015-01-14-preview'" } }, { - "label": "'Microsoft.KeyVault/managedHSMs@2020-04-01-preview'", + "label": "'Microsoft.Intune/locations/androidPolicies@2015-01-14-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `managedHSMs` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.Intune` \nType: `locations/androidPolicies` \nAPI Version: `2015-01-14-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005ab", + "sortText": "000005e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/managedHSMs@2020-04-01-preview'" + "newText": "'Microsoft.Intune/locations/androidPolicies@2015-01-14-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults/accessPolicies@2016-10-01'", + "label": "'Microsoft.Intune/locations/iosPolicies/apps@2015-01-14-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2016-10-01`" + "value": "Namespace: `Microsoft.Intune` \nType: `locations/iosPolicies/apps` \nAPI Version: `2015-01-14-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005b6", + "sortText": "000005ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2016-10-01'" + "newText": "'Microsoft.Intune/locations/iosPolicies/apps@2015-01-14-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14'", + "label": "'Microsoft.Intune/locations/iosPolicies/groups@2015-01-14-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2018-02-14`" + "value": "Namespace: `Microsoft.Intune` \nType: `locations/iosPolicies/groups` \nAPI Version: `2015-01-14-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005b5", + "sortText": "000005ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14'" + "newText": "'Microsoft.Intune/locations/iosPolicies/groups@2015-01-14-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14-preview'", + "label": "'Microsoft.Intune/locations/iosPolicies@2015-01-14-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2018-02-14-preview`" + "value": "Namespace: `Microsoft.Intune` \nType: `locations/iosPolicies` \nAPI Version: `2015-01-14-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005b4", + "sortText": "000005eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14-preview'" + "newText": "'Microsoft.Intune/locations/iosPolicies@2015-01-14-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults/accessPolicies@2019-09-01'", + "label": "'Microsoft.IoTCentral/iotApps@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.IoTCentral` \nType: `iotApps` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005b3", + "sortText": "000005ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2019-09-01'" + "newText": "'Microsoft.IoTCentral/iotApps@2018-09-01'" } }, { - "label": "'Microsoft.KeyVault/vaults/accessPolicies@2020-04-01-preview'", + "label": "'Microsoft.IoTSpaces/Graph@2017-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.IoTSpaces` \nType: `Graph` \nAPI Version: `2017-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005b2", + "sortText": "000005ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2020-04-01-preview'" + "newText": "'Microsoft.IoTSpaces/Graph@2017-10-01-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults/keys@2019-09-01'", + "label": "'Microsoft.KeyVault/managedHSMs@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/keys` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `managedHSMs` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005b7", + "sortText": "000005f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/keys@2019-09-01'" + "newText": "'Microsoft.KeyVault/managedHSMs@2020-04-01-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2018-02-14'", + "label": "'Microsoft.KeyVault/vaults/accessPolicies@2016-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/privateEndpointConnections` \nAPI Version: `2018-02-14`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2016-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005ba", + "sortText": "000005fb", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2016-10-01'" + } + }, + { + "label": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2018-02-14`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000005fa", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14'" + } + }, + { + "label": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2018-02-14-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000005f9", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14-preview'" + } + }, + { + "label": "'Microsoft.KeyVault/vaults/accessPolicies@2019-09-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2019-09-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000005f8", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2019-09-01'" + } + }, + { + "label": "'Microsoft.KeyVault/vaults/accessPolicies@2020-04-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2020-04-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000005f7", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2020-04-01-preview'" + } + }, + { + "label": "'Microsoft.KeyVault/vaults/keys@2019-09-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/keys` \nAPI Version: `2019-09-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000005fc", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.KeyVault/vaults/keys@2019-09-01'" + } + }, + { + "label": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2018-02-14'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/privateEndpointConnections` \nAPI Version: `2018-02-14`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000005ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24352,7 +25474,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005b9", + "sortText": "000005fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24369,7 +25491,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005b8", + "sortText": "000005fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24386,7 +25508,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005bf", + "sortText": "00000604", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24403,7 +25525,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005be", + "sortText": "00000603", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24420,7 +25542,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005bd", + "sortText": "00000602", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24437,7 +25559,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005bc", + "sortText": "00000601", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24454,7 +25576,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005bb", + "sortText": "00000600", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24471,7 +25593,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005b1", + "sortText": "000005f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24488,7 +25610,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005b0", + "sortText": "000005f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24505,7 +25627,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005af", + "sortText": "000005f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24522,7 +25644,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005ae", + "sortText": "000005f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24539,7 +25661,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005ad", + "sortText": "000005f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24556,7 +25678,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005ac", + "sortText": "000005f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24573,7 +25695,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c0", + "sortText": "00000605", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24581,6 +25703,23 @@ "newText": "'Microsoft.Kubernetes/connectedClusters@2020-01-01-preview'" } }, + { + "label": "'Microsoft.KubernetesConfiguration/sourceControlConfigurations@2019-11-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.KubernetesConfiguration` \nType: `sourceControlConfigurations` \nAPI Version: `2019-11-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000606", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.KubernetesConfiguration/sourceControlConfigurations@2019-11-01-preview'" + } + }, { "label": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2019-09-07'", "kind": "class", @@ -24590,7 +25729,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005cb", + "sortText": "00000611", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24607,7 +25746,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005ca", + "sortText": "00000610", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24624,7 +25763,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c9", + "sortText": "0000060f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24641,7 +25780,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c8", + "sortText": "0000060e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24658,7 +25797,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005d8", + "sortText": "0000061e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24675,7 +25814,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005d7", + "sortText": "0000061d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24692,7 +25831,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005d6", + "sortText": "0000061c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24709,7 +25848,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005d5", + "sortText": "0000061b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24726,7 +25865,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005d4", + "sortText": "0000061a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24743,7 +25882,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005d3", + "sortText": "00000619", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24760,7 +25899,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005d9", + "sortText": "0000061f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24777,7 +25916,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005dc", + "sortText": "00000622", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24794,7 +25933,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005db", + "sortText": "00000621", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24811,7 +25950,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005da", + "sortText": "00000620", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24828,7 +25967,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005d2", + "sortText": "00000618", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24845,7 +25984,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005d1", + "sortText": "00000617", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24862,7 +26001,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005d0", + "sortText": "00000616", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24879,7 +26018,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005cf", + "sortText": "00000615", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24896,7 +26035,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005ce", + "sortText": "00000614", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24913,7 +26052,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005cd", + "sortText": "00000613", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24930,7 +26069,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005cc", + "sortText": "00000612", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24947,7 +26086,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005df", + "sortText": "00000625", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24964,7 +26103,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005de", + "sortText": "00000624", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24981,7 +26120,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005dd", + "sortText": "00000623", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -24998,7 +26137,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c7", + "sortText": "0000060d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25015,7 +26154,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c6", + "sortText": "0000060c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25032,7 +26171,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c5", + "sortText": "0000060b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25049,7 +26188,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c4", + "sortText": "0000060a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25066,7 +26205,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c3", + "sortText": "00000609", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25083,7 +26222,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c2", + "sortText": "00000608", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25100,7 +26239,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c1", + "sortText": "00000607", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25117,7 +26256,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005e1", + "sortText": "00000627", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25134,7 +26273,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005e4", + "sortText": "0000062a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25151,7 +26290,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005e3", + "sortText": "00000629", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25168,7 +26307,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005e5", + "sortText": "0000062b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25185,7 +26324,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005e2", + "sortText": "00000628", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25202,7 +26341,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005e0", + "sortText": "00000626", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25219,7 +26358,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005ed", + "sortText": "00000633", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25236,7 +26375,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005ec", + "sortText": "00000632", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25253,7 +26392,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005eb", + "sortText": "00000631", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25270,7 +26409,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005ea", + "sortText": "00000630", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25287,7 +26426,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005f0", + "sortText": "00000636", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25304,7 +26443,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005ef", + "sortText": "00000635", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25321,7 +26460,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005ee", + "sortText": "00000634", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25338,7 +26477,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005f3", + "sortText": "00000639", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25355,7 +26494,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005f2", + "sortText": "00000638", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25372,7 +26511,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005f1", + "sortText": "00000637", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25389,7 +26528,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005f7", + "sortText": "0000063d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25406,7 +26545,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005f6", + "sortText": "0000063c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25423,7 +26562,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005f5", + "sortText": "0000063b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25440,7 +26579,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005f4", + "sortText": "0000063a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25457,7 +26596,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005fb", + "sortText": "00000641", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25474,7 +26613,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005fa", + "sortText": "00000640", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25491,7 +26630,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005f9", + "sortText": "0000063f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25508,7 +26647,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005f8", + "sortText": "0000063e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25525,7 +26664,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005ff", + "sortText": "00000645", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25542,7 +26681,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005fe", + "sortText": "00000644", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25559,7 +26698,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005fd", + "sortText": "00000643", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25576,7 +26715,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005fc", + "sortText": "00000642", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25593,7 +26732,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000600", + "sortText": "00000646", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25610,7 +26749,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000604", + "sortText": "0000064a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25627,7 +26766,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000603", + "sortText": "00000649", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25644,7 +26783,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000602", + "sortText": "00000648", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25661,7 +26800,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000601", + "sortText": "00000647", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25678,7 +26817,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000607", + "sortText": "0000064d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25695,7 +26834,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000606", + "sortText": "0000064c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25712,7 +26851,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000605", + "sortText": "0000064b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25729,7 +26868,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005e9", + "sortText": "0000062f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25746,7 +26885,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005e8", + "sortText": "0000062e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25763,7 +26902,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005e7", + "sortText": "0000062d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25780,7 +26919,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005e6", + "sortText": "0000062c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25797,7 +26936,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000608", + "sortText": "0000064e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25814,7 +26953,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000060d", + "sortText": "00000653", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25831,7 +26970,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000060c", + "sortText": "00000652", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25848,7 +26987,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000060b", + "sortText": "00000651", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25865,7 +27004,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000060a", + "sortText": "00000650", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25882,7 +27021,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000609", + "sortText": "0000064f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25899,7 +27038,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000060e", + "sortText": "00000654", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25916,7 +27055,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000610", + "sortText": "00000656", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25933,7 +27072,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000060f", + "sortText": "00000655", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25950,7 +27089,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000612", + "sortText": "00000658", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25967,7 +27106,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000611", + "sortText": "00000657", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -25984,7 +27123,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000614", + "sortText": "0000065a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26001,7 +27140,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000613", + "sortText": "00000659", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26018,7 +27157,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000617", + "sortText": "0000065d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26035,7 +27174,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000616", + "sortText": "0000065c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26052,7 +27191,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000615", + "sortText": "0000065b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26069,7 +27208,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000631", + "sortText": "00000677", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26086,7 +27225,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000630", + "sortText": "00000676", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26103,7 +27242,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000062f", + "sortText": "00000675", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26120,7 +27259,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000062e", + "sortText": "00000674", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26137,7 +27276,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000062d", + "sortText": "00000673", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26154,7 +27293,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000062c", + "sortText": "00000672", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26171,7 +27310,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000062b", + "sortText": "00000671", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26188,7 +27327,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000062a", + "sortText": "00000670", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26205,7 +27344,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000629", + "sortText": "0000066f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26222,7 +27361,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000628", + "sortText": "0000066e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26239,7 +27378,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000627", + "sortText": "0000066d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26256,7 +27395,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000626", + "sortText": "0000066c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26273,7 +27412,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000625", + "sortText": "0000066b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26290,7 +27429,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000633", + "sortText": "00000679", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26307,7 +27446,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000632", + "sortText": "00000678", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26324,7 +27463,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000634", + "sortText": "0000067a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26341,7 +27480,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000635", + "sortText": "0000067b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26358,7 +27497,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000636", + "sortText": "0000067c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26375,7 +27514,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000638", + "sortText": "0000067e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26392,7 +27531,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000637", + "sortText": "0000067d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26409,7 +27548,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000640", + "sortText": "00000686", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26426,7 +27565,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000063f", + "sortText": "00000685", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26443,7 +27582,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000063e", + "sortText": "00000684", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26460,7 +27599,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000063d", + "sortText": "00000683", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26477,7 +27616,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000063c", + "sortText": "00000682", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26494,7 +27633,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000063b", + "sortText": "00000681", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26511,7 +27650,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000063a", + "sortText": "00000680", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26528,7 +27667,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000639", + "sortText": "0000067f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26545,7 +27684,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000643", + "sortText": "00000689", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26562,7 +27701,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000642", + "sortText": "00000688", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26579,7 +27718,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000641", + "sortText": "00000687", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26596,7 +27735,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000624", + "sortText": "0000066a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26613,7 +27752,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000623", + "sortText": "00000669", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26630,7 +27769,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000622", + "sortText": "00000668", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26647,7 +27786,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000621", + "sortText": "00000667", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26664,7 +27803,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000620", + "sortText": "00000666", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26681,7 +27820,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000061f", + "sortText": "00000665", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26698,7 +27837,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000061e", + "sortText": "00000664", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26715,7 +27854,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000061d", + "sortText": "00000663", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26732,7 +27871,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000061c", + "sortText": "00000662", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26749,7 +27888,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000061b", + "sortText": "00000661", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26766,7 +27905,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000061a", + "sortText": "00000660", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26783,7 +27922,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000619", + "sortText": "0000065f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26800,7 +27939,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000618", + "sortText": "0000065e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26808,6 +27947,57 @@ "newText": "'Microsoft.MachineLearningServices/workspaces@2020-09-01-preview'" } }, + { + "label": "'Microsoft.Maintenance/configurationAssignments@2018-06-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Maintenance` \nType: `configurationAssignments` \nAPI Version: `2018-06-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000068c", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Maintenance/configurationAssignments@2018-06-01-preview'" + } + }, + { + "label": "'Microsoft.Maintenance/configurationAssignments@2020-04-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Maintenance` \nType: `configurationAssignments` \nAPI Version: `2020-04-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000068b", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Maintenance/configurationAssignments@2020-04-01'" + } + }, + { + "label": "'Microsoft.Maintenance/configurationAssignments@2020-07-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Maintenance` \nType: `configurationAssignments` \nAPI Version: `2020-07-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000068a", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Maintenance/configurationAssignments@2020-07-01-preview'" + } + }, { "label": "'Microsoft.Maintenance/maintenanceConfigurations@2018-06-01-preview'", "kind": "class", @@ -26817,7 +28007,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000646", + "sortText": "0000068f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26834,7 +28024,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000645", + "sortText": "0000068e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26851,7 +28041,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000644", + "sortText": "0000068d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26868,7 +28058,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000648", + "sortText": "00000691", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26885,7 +28075,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000647", + "sortText": "00000690", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26902,7 +28092,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000064a", + "sortText": "00000693", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26919,7 +28109,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000064b", + "sortText": "00000694", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26936,7 +28126,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000649", + "sortText": "00000692", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26953,7 +28143,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000064c", + "sortText": "00000695", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26970,7 +28160,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000651", + "sortText": "0000069a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -26987,7 +28177,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000650", + "sortText": "00000699", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27004,7 +28194,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000064f", + "sortText": "00000698", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27021,7 +28211,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000064e", + "sortText": "00000697", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27038,7 +28228,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000064d", + "sortText": "00000696", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27055,7 +28245,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000656", + "sortText": "0000069f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27072,7 +28262,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000655", + "sortText": "0000069e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27089,7 +28279,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000654", + "sortText": "0000069d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27106,7 +28296,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000653", + "sortText": "0000069c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27123,7 +28313,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000652", + "sortText": "0000069b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27132,83 +28322,219 @@ } }, { - "label": "'Microsoft.Maps/accounts/creators@2020-02-01-preview'", + "label": "'Microsoft.Management/managementGroups/settings@2020-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maps` \nType: `accounts/creators` \nAPI Version: `2020-02-01-preview`" + "value": "Namespace: `Microsoft.Management` \nType: `managementGroups/settings` \nAPI Version: `2020-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000065a", + "sortText": "000006a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maps/accounts/creators@2020-02-01-preview'" + "newText": "'Microsoft.Management/managementGroups/settings@2020-02-01'" } }, { - "label": "'Microsoft.Maps/accounts/privateAtlases@2020-02-01-preview'", + "label": "'Microsoft.Management/managementGroups/settings@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maps` \nType: `accounts/privateAtlases` \nAPI Version: `2020-02-01-preview`" + "value": "Namespace: `Microsoft.Management` \nType: `managementGroups/settings` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000065b", + "sortText": "000006a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maps/accounts/privateAtlases@2020-02-01-preview'" + "newText": "'Microsoft.Management/managementGroups/settings@2020-05-01'" } }, { - "label": "'Microsoft.Maps/accounts@2017-01-01-preview'", + "label": "'Microsoft.Management/managementGroups@2017-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maps` \nType: `accounts` \nAPI Version: `2017-01-01-preview`" + "value": "Namespace: `Microsoft.Management` \nType: `managementGroups` \nAPI Version: `2017-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000659", + "sortText": "000006a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maps/accounts@2017-01-01-preview'" + "newText": "'Microsoft.Management/managementGroups@2017-11-01-preview'" } }, { - "label": "'Microsoft.Maps/accounts@2018-05-01'", + "label": "'Microsoft.Management/managementGroups@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maps` \nType: `accounts` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Management` \nType: `managementGroups` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000658", + "sortText": "000006a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maps/accounts@2018-05-01'" + "newText": "'Microsoft.Management/managementGroups@2018-01-01-preview'" } }, { - "label": "'Microsoft.Maps/accounts@2020-02-01-preview'", + "label": "'Microsoft.Management/managementGroups@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maps` \nType: `accounts` \nAPI Version: `2020-02-01-preview`" + "value": "Namespace: `Microsoft.Management` \nType: `managementGroups` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000657", + "sortText": "000006a3", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Management/managementGroups@2018-03-01-preview'" + } + }, + { + "label": "'Microsoft.Management/managementGroups@2019-11-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Management` \nType: `managementGroups` \nAPI Version: `2019-11-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000006a2", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Management/managementGroups@2019-11-01'" + } + }, + { + "label": "'Microsoft.Management/managementGroups@2020-02-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Management` \nType: `managementGroups` \nAPI Version: `2020-02-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000006a1", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Management/managementGroups@2020-02-01'" + } + }, + { + "label": "'Microsoft.Management/managementGroups@2020-05-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Management` \nType: `managementGroups` \nAPI Version: `2020-05-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000006a0", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Management/managementGroups@2020-05-01'" + } + }, + { + "label": "'Microsoft.Maps/accounts/creators@2020-02-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Maps` \nType: `accounts/creators` \nAPI Version: `2020-02-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000006ab", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Maps/accounts/creators@2020-02-01-preview'" + } + }, + { + "label": "'Microsoft.Maps/accounts/privateAtlases@2020-02-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Maps` \nType: `accounts/privateAtlases` \nAPI Version: `2020-02-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000006ac", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Maps/accounts/privateAtlases@2020-02-01-preview'" + } + }, + { + "label": "'Microsoft.Maps/accounts@2017-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Maps` \nType: `accounts` \nAPI Version: `2017-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000006aa", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Maps/accounts@2017-01-01-preview'" + } + }, + { + "label": "'Microsoft.Maps/accounts@2018-05-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Maps` \nType: `accounts` \nAPI Version: `2018-05-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000006a9", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Maps/accounts@2018-05-01'" + } + }, + { + "label": "'Microsoft.Maps/accounts@2020-02-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Maps` \nType: `accounts` \nAPI Version: `2020-02-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000006a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27216,6 +28542,57 @@ "newText": "'Microsoft.Maps/accounts@2020-02-01-preview'" } }, + { + "label": "'Microsoft.Marketplace/privateStores/offers@2020-01-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Marketplace` \nType: `privateStores/offers` \nAPI Version: `2020-01-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000006ae", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Marketplace/privateStores/offers@2020-01-01'" + } + }, + { + "label": "'Microsoft.Marketplace/privateStores@2020-01-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Marketplace` \nType: `privateStores` \nAPI Version: `2020-01-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000006ad", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Marketplace/privateStores@2020-01-01'" + } + }, + { + "label": "'Microsoft.MarketplaceOrdering/offerTypes/publishers/offers/plans/agreements@2015-06-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.MarketplaceOrdering` \nType: `offerTypes/publishers/offers/plans/agreements` \nAPI Version: `2015-06-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000006af", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.MarketplaceOrdering/offerTypes/publishers/offers/plans/agreements@2015-06-01'" + } + }, { "label": "'Microsoft.Media/mediaServices/accountFilters@2018-07-01'", "kind": "class", @@ -27225,7 +28602,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000662", + "sortText": "000006b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27242,7 +28619,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000661", + "sortText": "000006b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27259,7 +28636,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000668", + "sortText": "000006bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27276,7 +28653,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000667", + "sortText": "000006bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27293,7 +28670,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000666", + "sortText": "000006ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27310,7 +28687,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000665", + "sortText": "000006b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27327,7 +28704,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000664", + "sortText": "000006b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27344,7 +28721,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000663", + "sortText": "000006b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27361,7 +28738,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000066c", + "sortText": "000006c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27378,7 +28755,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000066b", + "sortText": "000006bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27395,7 +28772,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000066a", + "sortText": "000006be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27412,7 +28789,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000669", + "sortText": "000006bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27429,7 +28806,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000678", + "sortText": "000006cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27446,7 +28823,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000677", + "sortText": "000006cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27463,7 +28840,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000682", + "sortText": "000006d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27480,7 +28857,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000681", + "sortText": "000006d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27497,7 +28874,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000680", + "sortText": "000006d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27514,7 +28891,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000067f", + "sortText": "000006d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27531,7 +28908,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000686", + "sortText": "000006da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27548,7 +28925,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000685", + "sortText": "000006d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27565,7 +28942,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000684", + "sortText": "000006d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27582,7 +28959,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000683", + "sortText": "000006d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27599,7 +28976,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000068e", + "sortText": "000006e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27616,7 +28993,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000068d", + "sortText": "000006e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27633,7 +29010,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000068c", + "sortText": "000006e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27650,7 +29027,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000068b", + "sortText": "000006df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27667,7 +29044,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000068a", + "sortText": "000006de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27684,7 +29061,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000689", + "sortText": "000006dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27701,7 +29078,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000688", + "sortText": "000006dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27718,7 +29095,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000687", + "sortText": "000006db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27735,7 +29112,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000676", + "sortText": "000006ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27752,7 +29129,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000675", + "sortText": "000006c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27769,7 +29146,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000674", + "sortText": "000006c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27786,7 +29163,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000673", + "sortText": "000006c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27803,7 +29180,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000672", + "sortText": "000006c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27820,7 +29197,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000671", + "sortText": "000006c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27837,7 +29214,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000670", + "sortText": "000006c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27854,7 +29231,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000066f", + "sortText": "000006c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27871,7 +29248,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000066e", + "sortText": "000006c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27888,7 +29265,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000066d", + "sortText": "000006c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27905,7 +29282,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000679", + "sortText": "000006cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27922,7 +29299,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000067e", + "sortText": "000006d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27939,7 +29316,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000067d", + "sortText": "000006d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27956,7 +29333,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000067c", + "sortText": "000006d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27973,7 +29350,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000067b", + "sortText": "000006cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -27990,7 +29367,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000067a", + "sortText": "000006ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28007,7 +29384,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000660", + "sortText": "000006b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28024,7 +29401,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000065f", + "sortText": "000006b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28041,7 +29418,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000065e", + "sortText": "000006b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28058,7 +29435,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000065d", + "sortText": "000006b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28075,7 +29452,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000065c", + "sortText": "000006b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28092,7 +29469,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000691", + "sortText": "000006e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28109,7 +29486,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000690", + "sortText": "000006e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28126,7 +29503,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000692", + "sortText": "000006e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28143,7 +29520,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000693", + "sortText": "000006e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28160,7 +29537,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000068f", + "sortText": "000006e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28177,7 +29554,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000695", + "sortText": "000006e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28194,7 +29571,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000694", + "sortText": "000006e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28211,7 +29588,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000697", + "sortText": "000006eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28228,7 +29605,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000696", + "sortText": "000006ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28245,7 +29622,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000069a", + "sortText": "000006ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28262,7 +29639,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000699", + "sortText": "000006ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28279,7 +29656,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000698", + "sortText": "000006ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28296,7 +29673,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000069c", + "sortText": "000006f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28313,7 +29690,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000069b", + "sortText": "000006ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28330,7 +29707,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000069f", + "sortText": "000006f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28347,7 +29724,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000069e", + "sortText": "000006f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28364,7 +29741,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000069d", + "sortText": "000006f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28381,7 +29758,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006af", + "sortText": "00000703", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28398,7 +29775,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006ae", + "sortText": "00000702", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28415,7 +29792,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006ad", + "sortText": "00000701", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28432,7 +29809,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006ac", + "sortText": "00000700", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28449,7 +29826,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006cb", + "sortText": "0000071f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28466,7 +29843,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006ca", + "sortText": "0000071e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28483,7 +29860,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006c9", + "sortText": "0000071d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28500,7 +29877,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006c8", + "sortText": "0000071c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28517,7 +29894,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006d7", + "sortText": "0000072b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28534,7 +29911,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006d6", + "sortText": "0000072a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28551,7 +29928,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006d5", + "sortText": "00000729", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28568,7 +29945,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006d4", + "sortText": "00000728", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28585,7 +29962,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006d3", + "sortText": "00000727", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28602,7 +29979,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006d2", + "sortText": "00000726", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28619,7 +29996,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006d1", + "sortText": "00000725", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28636,7 +30013,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006d0", + "sortText": "00000724", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28653,7 +30030,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006cf", + "sortText": "00000723", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28670,7 +30047,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006ce", + "sortText": "00000722", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28687,7 +30064,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006cd", + "sortText": "00000721", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28704,7 +30081,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006cc", + "sortText": "00000720", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28721,7 +30098,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006c7", + "sortText": "0000071b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28738,7 +30115,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006c6", + "sortText": "0000071a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28755,7 +30132,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006c5", + "sortText": "00000719", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28772,7 +30149,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006c4", + "sortText": "00000718", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28789,7 +30166,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006c3", + "sortText": "00000717", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28806,7 +30183,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006c2", + "sortText": "00000716", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28823,7 +30200,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006c1", + "sortText": "00000715", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28840,7 +30217,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006c0", + "sortText": "00000714", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28857,7 +30234,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006bf", + "sortText": "00000713", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28874,7 +30251,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006be", + "sortText": "00000712", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28891,7 +30268,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006bd", + "sortText": "00000711", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28908,7 +30285,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006bc", + "sortText": "00000710", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28925,7 +30302,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006bb", + "sortText": "0000070f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28942,7 +30319,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006ba", + "sortText": "0000070e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28959,7 +30336,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006b9", + "sortText": "0000070d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28976,7 +30353,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006b8", + "sortText": "0000070c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -28993,7 +30370,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006b7", + "sortText": "0000070b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29010,7 +30387,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006b6", + "sortText": "0000070a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29027,7 +30404,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006b5", + "sortText": "00000709", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29044,7 +30421,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006b4", + "sortText": "00000708", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29061,7 +30438,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006b3", + "sortText": "00000707", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29078,7 +30455,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006b2", + "sortText": "00000706", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29095,7 +30472,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006b1", + "sortText": "00000705", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29112,7 +30489,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006b0", + "sortText": "00000704", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29129,7 +30506,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006db", + "sortText": "0000072f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29146,7 +30523,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006da", + "sortText": "0000072e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29163,7 +30540,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006d9", + "sortText": "0000072d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29180,7 +30557,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006d8", + "sortText": "0000072c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29197,7 +30574,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006ab", + "sortText": "000006ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29214,7 +30591,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006aa", + "sortText": "000006fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29231,7 +30608,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006a9", + "sortText": "000006fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29248,7 +30625,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006a8", + "sortText": "000006fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29265,7 +30642,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006a7", + "sortText": "000006fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29282,7 +30659,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006a6", + "sortText": "000006fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29299,7 +30676,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006a5", + "sortText": "000006f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29316,7 +30693,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006a4", + "sortText": "000006f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29333,7 +30710,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006a3", + "sortText": "000006f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29350,7 +30727,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006a2", + "sortText": "000006f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29367,7 +30744,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006a1", + "sortText": "000006f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29384,7 +30761,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006a0", + "sortText": "000006f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29401,7 +30778,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000070b", + "sortText": "0000075f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29418,7 +30795,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000070a", + "sortText": "0000075e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29435,7 +30812,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000709", + "sortText": "0000075d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29452,7 +30829,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000708", + "sortText": "0000075c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29469,7 +30846,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000707", + "sortText": "0000075b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29486,7 +30863,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000706", + "sortText": "0000075a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29503,7 +30880,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000705", + "sortText": "00000759", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29520,7 +30897,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000704", + "sortText": "00000758", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29537,7 +30914,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000703", + "sortText": "00000757", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29554,7 +30931,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000702", + "sortText": "00000756", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29571,7 +30948,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000701", + "sortText": "00000755", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29588,7 +30965,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000700", + "sortText": "00000754", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29605,7 +30982,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006ff", + "sortText": "00000753", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29622,7 +30999,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000895", + "sortText": "000008e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29639,7 +31016,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000894", + "sortText": "000008e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29656,7 +31033,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000893", + "sortText": "000008e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29673,7 +31050,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000892", + "sortText": "000008e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29690,7 +31067,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000891", + "sortText": "000008e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29707,7 +31084,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000890", + "sortText": "000008e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29724,7 +31101,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000088f", + "sortText": "000008e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29741,7 +31118,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000088e", + "sortText": "000008e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29758,7 +31135,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000088d", + "sortText": "000008e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29775,7 +31152,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000088c", + "sortText": "000008e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29792,7 +31169,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000088b", + "sortText": "000008df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29809,7 +31186,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000088a", + "sortText": "000008de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29826,7 +31203,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000889", + "sortText": "000008dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29843,7 +31220,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000888", + "sortText": "000008dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29860,7 +31237,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000887", + "sortText": "000008db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29877,7 +31254,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000886", + "sortText": "000008da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29894,7 +31271,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008b6", + "sortText": "0000090a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29911,7 +31288,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008b5", + "sortText": "00000909", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29928,7 +31305,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008b4", + "sortText": "00000908", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29945,7 +31322,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008b3", + "sortText": "00000907", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29962,7 +31339,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008bf", + "sortText": "00000913", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29979,7 +31356,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008be", + "sortText": "00000912", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -29996,7 +31373,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008bd", + "sortText": "00000911", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30013,7 +31390,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008bc", + "sortText": "00000910", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30030,7 +31407,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000933", + "sortText": "00000987", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30047,7 +31424,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000932", + "sortText": "00000986", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30064,7 +31441,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006fe", + "sortText": "00000752", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30081,7 +31458,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006fd", + "sortText": "00000751", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30098,7 +31475,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006fc", + "sortText": "00000750", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30115,7 +31492,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006fb", + "sortText": "0000074f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30132,7 +31509,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006fa", + "sortText": "0000074e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30149,7 +31526,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006f9", + "sortText": "0000074d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30166,7 +31543,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006f8", + "sortText": "0000074c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30183,7 +31560,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006f7", + "sortText": "0000074b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30200,7 +31577,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006f6", + "sortText": "0000074a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30217,7 +31594,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006f5", + "sortText": "00000749", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30234,7 +31611,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006f4", + "sortText": "00000748", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30251,7 +31628,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006f3", + "sortText": "00000747", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30268,7 +31645,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006f2", + "sortText": "00000746", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30285,7 +31662,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006f1", + "sortText": "00000745", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30302,7 +31679,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006f0", + "sortText": "00000744", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30319,7 +31696,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006ef", + "sortText": "00000743", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30336,7 +31713,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006ee", + "sortText": "00000742", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30353,7 +31730,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006ed", + "sortText": "00000741", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30370,7 +31747,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006ec", + "sortText": "00000740", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30387,7 +31764,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006eb", + "sortText": "0000073f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30404,7 +31781,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006ea", + "sortText": "0000073e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30421,7 +31798,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006e9", + "sortText": "0000073d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30438,7 +31815,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006e8", + "sortText": "0000073c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30455,7 +31832,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006e7", + "sortText": "0000073b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30472,7 +31849,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006e6", + "sortText": "0000073a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30489,7 +31866,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006e5", + "sortText": "00000739", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30506,7 +31883,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006e4", + "sortText": "00000738", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30523,7 +31900,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006e3", + "sortText": "00000737", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30540,7 +31917,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006e2", + "sortText": "00000736", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30557,7 +31934,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006e1", + "sortText": "00000735", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30574,7 +31951,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006e0", + "sortText": "00000734", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30591,7 +31968,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006df", + "sortText": "00000733", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30608,7 +31985,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006de", + "sortText": "00000732", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30625,7 +32002,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006dd", + "sortText": "00000731", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30642,7 +32019,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000006dc", + "sortText": "00000730", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30659,7 +32036,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000723", + "sortText": "00000777", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30676,7 +32053,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000722", + "sortText": "00000776", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30693,7 +32070,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000721", + "sortText": "00000775", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30710,7 +32087,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000720", + "sortText": "00000774", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30727,7 +32104,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000071f", + "sortText": "00000773", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30744,7 +32121,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000071e", + "sortText": "00000772", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30761,7 +32138,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000071d", + "sortText": "00000771", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30778,7 +32155,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000071c", + "sortText": "00000770", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30795,7 +32172,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000071b", + "sortText": "0000076f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30812,7 +32189,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000071a", + "sortText": "0000076e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30829,7 +32206,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000719", + "sortText": "0000076d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30846,7 +32223,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000718", + "sortText": "0000076c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30863,7 +32240,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000717", + "sortText": "0000076b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30880,7 +32257,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000716", + "sortText": "0000076a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30897,7 +32274,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000715", + "sortText": "00000769", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30914,7 +32291,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000714", + "sortText": "00000768", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30931,7 +32308,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000713", + "sortText": "00000767", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30948,7 +32325,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000712", + "sortText": "00000766", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30965,7 +32342,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000711", + "sortText": "00000765", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30982,7 +32359,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000710", + "sortText": "00000764", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -30999,7 +32376,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000070f", + "sortText": "00000763", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31016,7 +32393,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000070e", + "sortText": "00000762", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31033,7 +32410,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000070d", + "sortText": "00000761", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31050,7 +32427,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000070c", + "sortText": "00000760", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31067,7 +32444,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000736", + "sortText": "0000078a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31084,7 +32461,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000735", + "sortText": "00000789", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31101,7 +32478,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000734", + "sortText": "00000788", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31118,7 +32495,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000733", + "sortText": "00000787", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31135,7 +32512,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000732", + "sortText": "00000786", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31152,7 +32529,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000731", + "sortText": "00000785", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31169,7 +32546,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000730", + "sortText": "00000784", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31186,7 +32563,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000072f", + "sortText": "00000783", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31203,7 +32580,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000072e", + "sortText": "00000782", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31220,7 +32597,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000072d", + "sortText": "00000781", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31237,7 +32614,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000072c", + "sortText": "00000780", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31254,7 +32631,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000072b", + "sortText": "0000077f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31271,7 +32648,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000072a", + "sortText": "0000077e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31288,7 +32665,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000729", + "sortText": "0000077d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31305,7 +32682,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000728", + "sortText": "0000077c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31322,7 +32699,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000727", + "sortText": "0000077b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31339,7 +32716,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000726", + "sortText": "0000077a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31356,7 +32733,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000725", + "sortText": "00000779", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31373,7 +32750,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000724", + "sortText": "00000778", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31390,7 +32767,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000741", + "sortText": "00000795", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31407,7 +32784,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000740", + "sortText": "00000794", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31424,7 +32801,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000073f", + "sortText": "00000793", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31441,7 +32818,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000073e", + "sortText": "00000792", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31458,7 +32835,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000073d", + "sortText": "00000791", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31475,7 +32852,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000073c", + "sortText": "00000790", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31492,7 +32869,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000073b", + "sortText": "0000078f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31509,7 +32886,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000073a", + "sortText": "0000078e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31526,7 +32903,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000739", + "sortText": "0000078d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31543,7 +32920,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000738", + "sortText": "0000078c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31560,7 +32937,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000737", + "sortText": "0000078b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31577,7 +32954,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000762", + "sortText": "000007b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31594,7 +32971,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000761", + "sortText": "000007b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31611,7 +32988,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000760", + "sortText": "000007b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31628,7 +33005,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000075f", + "sortText": "000007b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31645,7 +33022,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000075e", + "sortText": "000007b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31662,7 +33039,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000075d", + "sortText": "000007b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31679,7 +33056,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000075c", + "sortText": "000007b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31696,7 +33073,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000075b", + "sortText": "000007af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31713,7 +33090,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000075a", + "sortText": "000007ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31730,7 +33107,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000759", + "sortText": "000007ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31747,7 +33124,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000758", + "sortText": "000007ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31764,7 +33141,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000757", + "sortText": "000007ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31781,7 +33158,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000756", + "sortText": "000007aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31798,7 +33175,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000755", + "sortText": "000007a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31815,7 +33192,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000754", + "sortText": "000007a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31832,7 +33209,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000753", + "sortText": "000007a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31849,7 +33226,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000752", + "sortText": "000007a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31866,7 +33243,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000751", + "sortText": "000007a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31883,7 +33260,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000750", + "sortText": "000007a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31900,7 +33277,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000074f", + "sortText": "000007a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31917,7 +33294,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000074e", + "sortText": "000007a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31934,7 +33311,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000074d", + "sortText": "000007a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31951,7 +33328,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000074c", + "sortText": "000007a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31968,7 +33345,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000074b", + "sortText": "0000079f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -31985,7 +33362,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000074a", + "sortText": "0000079e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32002,7 +33379,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000749", + "sortText": "0000079d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32019,7 +33396,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000748", + "sortText": "0000079c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32036,7 +33413,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000747", + "sortText": "0000079b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32053,7 +33430,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000746", + "sortText": "0000079a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32070,7 +33447,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000745", + "sortText": "00000799", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32087,7 +33464,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000744", + "sortText": "00000798", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32104,7 +33481,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000743", + "sortText": "00000797", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32121,7 +33498,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000742", + "sortText": "00000796", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32138,7 +33515,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000763", + "sortText": "000007b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32155,7 +33532,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000771", + "sortText": "000007c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32172,7 +33549,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000770", + "sortText": "000007c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32189,7 +33566,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000076f", + "sortText": "000007c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32206,7 +33583,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000076e", + "sortText": "000007c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32223,7 +33600,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000076d", + "sortText": "000007c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32240,7 +33617,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000076c", + "sortText": "000007c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32257,7 +33634,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000076b", + "sortText": "000007bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32274,7 +33651,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000076a", + "sortText": "000007be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32291,7 +33668,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000769", + "sortText": "000007bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32308,7 +33685,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000768", + "sortText": "000007bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32325,7 +33702,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000767", + "sortText": "000007bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32342,7 +33719,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000766", + "sortText": "000007ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32359,7 +33736,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000765", + "sortText": "000007b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32376,7 +33753,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000764", + "sortText": "000007b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32393,7 +33770,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000785", + "sortText": "000007d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32410,7 +33787,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000784", + "sortText": "000007d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32427,7 +33804,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000783", + "sortText": "000007d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32444,7 +33821,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000782", + "sortText": "000007d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32461,7 +33838,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000781", + "sortText": "000007d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32478,7 +33855,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000780", + "sortText": "000007d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32495,7 +33872,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000077f", + "sortText": "000007d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32512,7 +33889,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000077e", + "sortText": "000007d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32529,7 +33906,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000077d", + "sortText": "000007d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32546,7 +33923,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000077c", + "sortText": "000007d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32563,7 +33940,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000077b", + "sortText": "000007cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32580,7 +33957,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000077a", + "sortText": "000007ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32597,7 +33974,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000779", + "sortText": "000007cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32614,7 +33991,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000778", + "sortText": "000007cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32631,7 +34008,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000777", + "sortText": "000007cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32648,7 +34025,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000776", + "sortText": "000007ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32665,7 +34042,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000775", + "sortText": "000007c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32682,7 +34059,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000774", + "sortText": "000007c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32699,7 +34076,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000773", + "sortText": "000007c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32716,7 +34093,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000772", + "sortText": "000007c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32733,7 +34110,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000790", + "sortText": "000007e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32750,7 +34127,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000078f", + "sortText": "000007e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32767,7 +34144,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000078e", + "sortText": "000007e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32784,7 +34161,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000078d", + "sortText": "000007e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32801,7 +34178,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000078c", + "sortText": "000007e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32818,7 +34195,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000796", + "sortText": "000007ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32835,7 +34212,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000795", + "sortText": "000007e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32852,7 +34229,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000794", + "sortText": "000007e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32869,7 +34246,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000793", + "sortText": "000007e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32886,7 +34263,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000792", + "sortText": "000007e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32903,7 +34280,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000079b", + "sortText": "000007ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32920,7 +34297,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000079a", + "sortText": "000007ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32937,7 +34314,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000799", + "sortText": "000007ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32954,7 +34331,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000798", + "sortText": "000007ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32971,7 +34348,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007a0", + "sortText": "000007f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -32988,7 +34365,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000079f", + "sortText": "000007f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33005,7 +34382,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000079e", + "sortText": "000007f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33022,7 +34399,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000079d", + "sortText": "000007f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33039,7 +34416,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000079c", + "sortText": "000007f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33056,7 +34433,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007a6", + "sortText": "000007fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33073,7 +34450,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007a5", + "sortText": "000007f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33090,7 +34467,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007a4", + "sortText": "000007f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33107,7 +34484,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007a3", + "sortText": "000007f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33124,7 +34501,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007a2", + "sortText": "000007f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33141,7 +34518,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007ac", + "sortText": "00000800", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33158,7 +34535,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007ab", + "sortText": "000007ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33175,7 +34552,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007aa", + "sortText": "000007fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33192,7 +34569,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007a9", + "sortText": "000007fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33209,7 +34586,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007a8", + "sortText": "000007fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33226,7 +34603,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007b2", + "sortText": "00000806", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33243,7 +34620,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007b1", + "sortText": "00000805", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33260,7 +34637,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007b0", + "sortText": "00000804", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33277,7 +34654,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007af", + "sortText": "00000803", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33294,7 +34671,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007ae", + "sortText": "00000802", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33311,7 +34688,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007b8", + "sortText": "0000080c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33328,7 +34705,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007b7", + "sortText": "0000080b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33345,7 +34722,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007b6", + "sortText": "0000080a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33362,7 +34739,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007b5", + "sortText": "00000809", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33379,7 +34756,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007b4", + "sortText": "00000808", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33396,7 +34773,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007be", + "sortText": "00000812", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33413,7 +34790,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007bd", + "sortText": "00000811", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33430,7 +34807,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007bc", + "sortText": "00000810", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33447,7 +34824,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007bb", + "sortText": "0000080f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33464,7 +34841,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007ba", + "sortText": "0000080e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33481,7 +34858,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007c4", + "sortText": "00000818", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33498,7 +34875,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007c3", + "sortText": "00000817", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33515,7 +34892,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007c2", + "sortText": "00000816", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33532,7 +34909,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007c1", + "sortText": "00000815", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33549,7 +34926,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007c0", + "sortText": "00000814", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33566,7 +34943,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000078a", + "sortText": "000007de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33583,7 +34960,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000789", + "sortText": "000007dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33600,7 +34977,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000788", + "sortText": "000007dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33617,7 +34994,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000787", + "sortText": "000007db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33634,7 +35011,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000786", + "sortText": "000007da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33651,7 +35028,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000791", + "sortText": "000007e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33668,7 +35045,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000797", + "sortText": "000007eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33685,7 +35062,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007a1", + "sortText": "000007f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33702,7 +35079,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007a7", + "sortText": "000007fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33719,7 +35096,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007ad", + "sortText": "00000801", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33736,7 +35113,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007b3", + "sortText": "00000807", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33753,7 +35130,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007b9", + "sortText": "0000080d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33770,7 +35147,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007bf", + "sortText": "00000813", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33787,7 +35164,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007c5", + "sortText": "00000819", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33804,7 +35181,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000078b", + "sortText": "000007df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33821,7 +35198,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007c6", + "sortText": "0000081a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33838,7 +35215,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000808", + "sortText": "0000085c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33855,7 +35232,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000807", + "sortText": "0000085b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33872,7 +35249,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000806", + "sortText": "0000085a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33889,7 +35266,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000805", + "sortText": "00000859", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33906,7 +35283,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000804", + "sortText": "00000858", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33923,7 +35300,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000803", + "sortText": "00000857", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33940,7 +35317,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000802", + "sortText": "00000856", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33957,7 +35334,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000801", + "sortText": "00000855", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33974,7 +35351,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000800", + "sortText": "00000854", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -33991,7 +35368,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007ff", + "sortText": "00000853", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34008,7 +35385,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007fe", + "sortText": "00000852", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34025,7 +35402,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007fd", + "sortText": "00000851", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34042,7 +35419,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007fc", + "sortText": "00000850", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34059,7 +35436,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007fb", + "sortText": "0000084f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34076,7 +35453,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007fa", + "sortText": "0000084e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34093,7 +35470,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007f9", + "sortText": "0000084d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34110,7 +35487,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007f8", + "sortText": "0000084c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34127,7 +35504,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007f7", + "sortText": "0000084b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34144,7 +35521,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007f6", + "sortText": "0000084a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34161,7 +35538,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007f5", + "sortText": "00000849", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34178,7 +35555,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007f4", + "sortText": "00000848", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34195,7 +35572,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007f3", + "sortText": "00000847", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34212,7 +35589,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007f2", + "sortText": "00000846", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34229,7 +35606,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007f1", + "sortText": "00000845", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34246,7 +35623,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007f0", + "sortText": "00000844", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34263,7 +35640,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007ef", + "sortText": "00000843", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34280,7 +35657,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007ee", + "sortText": "00000842", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34297,7 +35674,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007ed", + "sortText": "00000841", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34314,7 +35691,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007ec", + "sortText": "00000840", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34331,7 +35708,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007eb", + "sortText": "0000083f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34348,7 +35725,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007ea", + "sortText": "0000083e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34365,7 +35742,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007e9", + "sortText": "0000083d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34382,7 +35759,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007e8", + "sortText": "0000083c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34399,7 +35776,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000083d", + "sortText": "00000891", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34416,7 +35793,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000083c", + "sortText": "00000890", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34433,7 +35810,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000083b", + "sortText": "0000088f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34450,7 +35827,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000083a", + "sortText": "0000088e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34467,7 +35844,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000839", + "sortText": "0000088d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34484,7 +35861,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000838", + "sortText": "0000088c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34501,7 +35878,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000837", + "sortText": "0000088b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34518,7 +35895,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000836", + "sortText": "0000088a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34535,7 +35912,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000835", + "sortText": "00000889", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34552,7 +35929,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000834", + "sortText": "00000888", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34569,7 +35946,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000833", + "sortText": "00000887", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34586,7 +35963,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000832", + "sortText": "00000886", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34603,7 +35980,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000831", + "sortText": "00000885", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34620,7 +35997,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000830", + "sortText": "00000884", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34637,7 +36014,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000082f", + "sortText": "00000883", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34654,7 +36031,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000082e", + "sortText": "00000882", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34671,7 +36048,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000082d", + "sortText": "00000881", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34688,7 +36065,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000082c", + "sortText": "00000880", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34705,7 +36082,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000082b", + "sortText": "0000087f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34722,7 +36099,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000082a", + "sortText": "0000087e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34739,7 +36116,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000829", + "sortText": "0000087d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34756,7 +36133,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000828", + "sortText": "0000087c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34773,7 +36150,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000827", + "sortText": "0000087b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34790,7 +36167,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000826", + "sortText": "0000087a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34807,7 +36184,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000825", + "sortText": "00000879", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34824,7 +36201,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000824", + "sortText": "00000878", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34841,7 +36218,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000823", + "sortText": "00000877", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34858,7 +36235,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000822", + "sortText": "00000876", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34875,7 +36252,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000821", + "sortText": "00000875", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34892,7 +36269,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000820", + "sortText": "00000874", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34909,7 +36286,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000081f", + "sortText": "00000873", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34926,7 +36303,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000081e", + "sortText": "00000872", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34943,7 +36320,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000081d", + "sortText": "00000871", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34960,7 +36337,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000081c", + "sortText": "00000870", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34977,7 +36354,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000081b", + "sortText": "0000086f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -34994,7 +36371,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000081a", + "sortText": "0000086e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35011,7 +36388,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000819", + "sortText": "0000086d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35028,7 +36405,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000818", + "sortText": "0000086c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35045,7 +36422,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000817", + "sortText": "0000086b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35062,7 +36439,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000816", + "sortText": "0000086a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35079,7 +36456,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000815", + "sortText": "00000869", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35096,7 +36473,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000814", + "sortText": "00000868", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35113,7 +36490,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000813", + "sortText": "00000867", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35130,7 +36507,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000812", + "sortText": "00000866", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35147,7 +36524,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000811", + "sortText": "00000865", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35164,7 +36541,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000810", + "sortText": "00000864", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35181,7 +36558,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000080f", + "sortText": "00000863", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35198,7 +36575,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000080e", + "sortText": "00000862", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35215,7 +36592,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000080d", + "sortText": "00000861", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35232,7 +36609,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000080c", + "sortText": "00000860", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35249,7 +36626,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000080b", + "sortText": "0000085f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35266,7 +36643,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000080a", + "sortText": "0000085e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35283,7 +36660,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000809", + "sortText": "0000085d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35300,7 +36677,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007e7", + "sortText": "0000083b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35317,7 +36694,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007e6", + "sortText": "0000083a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35334,7 +36711,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007e5", + "sortText": "00000839", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35351,7 +36728,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007e4", + "sortText": "00000838", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35368,7 +36745,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007e3", + "sortText": "00000837", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35385,7 +36762,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007e2", + "sortText": "00000836", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35402,7 +36779,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007e1", + "sortText": "00000835", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35419,7 +36796,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007e0", + "sortText": "00000834", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35436,7 +36813,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007df", + "sortText": "00000833", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35453,7 +36830,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007de", + "sortText": "00000832", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35470,7 +36847,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007dd", + "sortText": "00000831", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35487,7 +36864,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007dc", + "sortText": "00000830", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35504,7 +36881,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007db", + "sortText": "0000082f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35521,7 +36898,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007da", + "sortText": "0000082e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35538,7 +36915,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007d9", + "sortText": "0000082d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35555,7 +36932,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007d8", + "sortText": "0000082c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35572,7 +36949,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007d7", + "sortText": "0000082b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35589,7 +36966,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007d6", + "sortText": "0000082a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35606,7 +36983,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007d5", + "sortText": "00000829", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35623,7 +37000,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007d4", + "sortText": "00000828", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35640,7 +37017,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007d3", + "sortText": "00000827", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35657,7 +37034,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007d2", + "sortText": "00000826", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35674,7 +37051,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007d1", + "sortText": "00000825", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35691,7 +37068,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007d0", + "sortText": "00000824", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35708,7 +37085,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007cf", + "sortText": "00000823", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35725,7 +37102,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007ce", + "sortText": "00000822", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35742,7 +37119,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007cd", + "sortText": "00000821", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35759,7 +37136,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007cc", + "sortText": "00000820", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35776,7 +37153,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007cb", + "sortText": "0000081f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35793,7 +37170,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007ca", + "sortText": "0000081e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35810,7 +37187,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007c9", + "sortText": "0000081d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35827,7 +37204,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007c8", + "sortText": "0000081c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35844,7 +37221,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000007c7", + "sortText": "0000081b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35861,7 +37238,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000865", + "sortText": "000008b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35878,7 +37255,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000864", + "sortText": "000008b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35895,7 +37272,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000863", + "sortText": "000008b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35912,7 +37289,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000862", + "sortText": "000008b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35929,7 +37306,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000861", + "sortText": "000008b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35946,7 +37323,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000860", + "sortText": "000008b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35963,7 +37340,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000085f", + "sortText": "000008b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35980,7 +37357,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000085e", + "sortText": "000008b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -35997,7 +37374,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000085d", + "sortText": "000008b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36014,7 +37391,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000085c", + "sortText": "000008b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36031,7 +37408,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000085b", + "sortText": "000008af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36048,7 +37425,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000085a", + "sortText": "000008ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36065,7 +37442,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000859", + "sortText": "000008ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36082,7 +37459,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000858", + "sortText": "000008ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36099,7 +37476,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000857", + "sortText": "000008ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36116,7 +37493,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000856", + "sortText": "000008aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36133,7 +37510,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000855", + "sortText": "000008a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36150,7 +37527,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000854", + "sortText": "000008a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36167,7 +37544,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000853", + "sortText": "000008a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36184,7 +37561,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000852", + "sortText": "000008a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36201,7 +37578,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000851", + "sortText": "000008a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36218,7 +37595,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000850", + "sortText": "000008a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36235,7 +37612,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000084f", + "sortText": "000008a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36252,7 +37629,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000084e", + "sortText": "000008a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36269,7 +37646,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000084d", + "sortText": "000008a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36286,7 +37663,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000084c", + "sortText": "000008a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36303,7 +37680,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000084b", + "sortText": "0000089f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36320,7 +37697,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000084a", + "sortText": "0000089e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36337,7 +37714,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000849", + "sortText": "0000089d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36354,7 +37731,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000848", + "sortText": "0000089c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36371,7 +37748,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000847", + "sortText": "0000089b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36388,7 +37765,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000846", + "sortText": "0000089a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36405,7 +37782,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000845", + "sortText": "00000899", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36422,7 +37799,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000844", + "sortText": "00000898", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36439,7 +37816,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000843", + "sortText": "00000897", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36456,7 +37833,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000842", + "sortText": "00000896", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36473,7 +37850,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000841", + "sortText": "00000895", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36490,7 +37867,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000840", + "sortText": "00000894", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36507,7 +37884,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000083f", + "sortText": "00000893", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36524,7 +37901,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000083e", + "sortText": "00000892", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36541,7 +37918,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000885", + "sortText": "000008d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36558,7 +37935,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000884", + "sortText": "000008d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36575,7 +37952,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000883", + "sortText": "000008d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36592,7 +37969,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000882", + "sortText": "000008d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36609,7 +37986,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000881", + "sortText": "000008d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36626,7 +38003,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000880", + "sortText": "000008d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36643,7 +38020,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000087f", + "sortText": "000008d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36660,7 +38037,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000087e", + "sortText": "000008d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36677,7 +38054,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000087d", + "sortText": "000008d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36694,7 +38071,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000087c", + "sortText": "000008d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36711,7 +38088,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000087b", + "sortText": "000008cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36728,7 +38105,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000087a", + "sortText": "000008ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36745,7 +38122,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000879", + "sortText": "000008cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36762,7 +38139,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000878", + "sortText": "000008cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36779,7 +38156,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000877", + "sortText": "000008cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36796,7 +38173,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000876", + "sortText": "000008ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36813,7 +38190,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000875", + "sortText": "000008c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36830,7 +38207,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000874", + "sortText": "000008c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36847,7 +38224,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000873", + "sortText": "000008c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36864,7 +38241,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000872", + "sortText": "000008c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36881,7 +38258,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000871", + "sortText": "000008c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36898,7 +38275,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000870", + "sortText": "000008c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36915,7 +38292,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000086f", + "sortText": "000008c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36932,7 +38309,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000086e", + "sortText": "000008c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36949,7 +38326,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000086d", + "sortText": "000008c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36966,7 +38343,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000086c", + "sortText": "000008c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -36983,7 +38360,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000086b", + "sortText": "000008bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37000,7 +38377,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000086a", + "sortText": "000008be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37017,7 +38394,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000869", + "sortText": "000008bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37034,7 +38411,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000868", + "sortText": "000008bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37051,7 +38428,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000867", + "sortText": "000008bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37068,7 +38445,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000866", + "sortText": "000008ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37085,7 +38462,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008a1", + "sortText": "000008f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37102,7 +38479,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008a0", + "sortText": "000008f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37119,7 +38496,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008a9", + "sortText": "000008fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37136,7 +38513,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008a8", + "sortText": "000008fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37153,7 +38530,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008a7", + "sortText": "000008fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37170,7 +38547,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008a6", + "sortText": "000008fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37187,7 +38564,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008a5", + "sortText": "000008f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37204,7 +38581,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008a4", + "sortText": "000008f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37221,7 +38598,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008a3", + "sortText": "000008f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37238,7 +38615,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008a2", + "sortText": "000008f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37255,7 +38632,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000089f", + "sortText": "000008f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37272,7 +38649,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000089e", + "sortText": "000008f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37289,7 +38666,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000089d", + "sortText": "000008f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37306,7 +38683,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000089c", + "sortText": "000008f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37323,7 +38700,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000089b", + "sortText": "000008ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37340,7 +38717,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000089a", + "sortText": "000008ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37357,7 +38734,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000899", + "sortText": "000008ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37374,7 +38751,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000898", + "sortText": "000008ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37391,7 +38768,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000897", + "sortText": "000008eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37408,7 +38785,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000896", + "sortText": "000008ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37425,7 +38802,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008b2", + "sortText": "00000906", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37442,7 +38819,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008b1", + "sortText": "00000905", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37459,7 +38836,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008b0", + "sortText": "00000904", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37476,7 +38853,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008af", + "sortText": "00000903", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37493,7 +38870,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008ae", + "sortText": "00000902", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37510,7 +38887,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008ad", + "sortText": "00000901", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37527,7 +38904,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008ac", + "sortText": "00000900", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37544,7 +38921,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008ab", + "sortText": "000008ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37561,7 +38938,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008aa", + "sortText": "000008fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37578,7 +38955,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008bb", + "sortText": "0000090f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37595,7 +38972,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008ba", + "sortText": "0000090e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37612,7 +38989,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008b9", + "sortText": "0000090d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37629,7 +39006,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008b8", + "sortText": "0000090c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37646,7 +39023,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008b7", + "sortText": "0000090b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37663,7 +39040,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008c6", + "sortText": "0000091a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37680,7 +39057,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008c5", + "sortText": "00000919", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37697,7 +39074,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008c4", + "sortText": "00000918", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37714,7 +39091,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008c3", + "sortText": "00000917", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37731,7 +39108,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008c2", + "sortText": "00000916", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37748,7 +39125,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008c1", + "sortText": "00000915", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37765,7 +39142,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008c0", + "sortText": "00000914", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37782,7 +39159,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008ea", + "sortText": "0000093e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37799,7 +39176,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008e9", + "sortText": "0000093d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37816,7 +39193,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008e8", + "sortText": "0000093c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37833,7 +39210,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000904", + "sortText": "00000958", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37850,7 +39227,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000903", + "sortText": "00000957", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37867,7 +39244,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000902", + "sortText": "00000956", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37884,7 +39261,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000901", + "sortText": "00000955", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37901,7 +39278,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000900", + "sortText": "00000954", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37918,7 +39295,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008ff", + "sortText": "00000953", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37935,7 +39312,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008fe", + "sortText": "00000952", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37952,7 +39329,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008fd", + "sortText": "00000951", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37969,7 +39346,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008fc", + "sortText": "00000950", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -37986,7 +39363,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008fb", + "sortText": "0000094f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38003,7 +39380,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008fa", + "sortText": "0000094e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38020,7 +39397,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008f9", + "sortText": "0000094d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38037,7 +39414,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008f8", + "sortText": "0000094c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38054,7 +39431,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008f7", + "sortText": "0000094b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38071,7 +39448,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008f6", + "sortText": "0000094a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38088,7 +39465,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008f5", + "sortText": "00000949", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38105,7 +39482,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008f4", + "sortText": "00000948", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38122,7 +39499,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008f3", + "sortText": "00000947", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38139,7 +39516,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008f2", + "sortText": "00000946", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38156,7 +39533,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008f1", + "sortText": "00000945", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38173,7 +39550,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008f0", + "sortText": "00000944", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38190,7 +39567,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008ef", + "sortText": "00000943", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38207,7 +39584,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008ee", + "sortText": "00000942", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38224,7 +39601,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008ed", + "sortText": "00000941", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38241,7 +39618,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008ec", + "sortText": "00000940", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38258,7 +39635,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008eb", + "sortText": "0000093f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38275,7 +39652,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008e7", + "sortText": "0000093b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38292,7 +39669,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008e6", + "sortText": "0000093a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38309,7 +39686,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008e5", + "sortText": "00000939", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38326,7 +39703,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008e4", + "sortText": "00000938", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38343,7 +39720,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008e3", + "sortText": "00000937", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38360,7 +39737,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008e2", + "sortText": "00000936", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38377,7 +39754,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008e1", + "sortText": "00000935", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38394,7 +39771,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008e0", + "sortText": "00000934", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38411,7 +39788,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008df", + "sortText": "00000933", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38428,7 +39805,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008de", + "sortText": "00000932", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38445,7 +39822,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008dd", + "sortText": "00000931", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38462,7 +39839,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008dc", + "sortText": "00000930", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38479,7 +39856,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008db", + "sortText": "0000092f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38496,7 +39873,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008da", + "sortText": "0000092e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38513,7 +39890,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008d9", + "sortText": "0000092d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38530,7 +39907,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008d8", + "sortText": "0000092c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38547,7 +39924,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008d7", + "sortText": "0000092b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38564,7 +39941,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008d6", + "sortText": "0000092a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38581,7 +39958,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008d5", + "sortText": "00000929", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38598,7 +39975,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008d4", + "sortText": "00000928", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38615,7 +39992,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008d3", + "sortText": "00000927", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38632,7 +40009,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008d2", + "sortText": "00000926", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38649,7 +40026,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008d1", + "sortText": "00000925", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38666,7 +40043,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008d0", + "sortText": "00000924", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38683,7 +40060,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008cf", + "sortText": "00000923", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38700,7 +40077,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008ce", + "sortText": "00000922", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38717,7 +40094,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008cd", + "sortText": "00000921", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38734,7 +40111,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008cc", + "sortText": "00000920", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38751,7 +40128,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008cb", + "sortText": "0000091f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38768,7 +40145,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008ca", + "sortText": "0000091e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38785,7 +40162,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008c9", + "sortText": "0000091d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38802,7 +40179,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008c8", + "sortText": "0000091c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38819,7 +40196,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000008c7", + "sortText": "0000091b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38836,7 +40213,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000925", + "sortText": "00000979", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38853,7 +40230,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000924", + "sortText": "00000978", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38870,7 +40247,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000923", + "sortText": "00000977", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38887,7 +40264,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000922", + "sortText": "00000976", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38904,7 +40281,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000921", + "sortText": "00000975", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38921,7 +40298,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000920", + "sortText": "00000974", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38938,7 +40315,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000091f", + "sortText": "00000973", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38955,7 +40332,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000091e", + "sortText": "00000972", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38972,7 +40349,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000091d", + "sortText": "00000971", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -38989,7 +40366,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000091c", + "sortText": "00000970", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39006,7 +40383,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000091b", + "sortText": "0000096f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39023,7 +40400,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000091a", + "sortText": "0000096e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39040,7 +40417,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000919", + "sortText": "0000096d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39057,7 +40434,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000918", + "sortText": "0000096c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39074,7 +40451,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000917", + "sortText": "0000096b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39091,7 +40468,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000916", + "sortText": "0000096a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39108,7 +40485,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000915", + "sortText": "00000969", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39125,7 +40502,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000914", + "sortText": "00000968", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39142,7 +40519,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000913", + "sortText": "00000967", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39159,7 +40536,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000912", + "sortText": "00000966", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39176,7 +40553,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000911", + "sortText": "00000965", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39193,7 +40570,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000910", + "sortText": "00000964", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39210,7 +40587,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000090f", + "sortText": "00000963", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39227,7 +40604,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000090e", + "sortText": "00000962", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39244,7 +40621,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000090d", + "sortText": "00000961", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39261,7 +40638,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000090c", + "sortText": "00000960", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39278,7 +40655,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000090b", + "sortText": "0000095f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39295,7 +40672,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000090a", + "sortText": "0000095e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39312,7 +40689,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000909", + "sortText": "0000095d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39329,7 +40706,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000908", + "sortText": "0000095c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39346,7 +40723,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000907", + "sortText": "0000095b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39363,7 +40740,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000906", + "sortText": "0000095a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39380,7 +40757,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000905", + "sortText": "00000959", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39397,7 +40774,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000931", + "sortText": "00000985", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39414,7 +40791,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000930", + "sortText": "00000984", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39431,7 +40808,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000092f", + "sortText": "00000983", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39448,7 +40825,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000092e", + "sortText": "00000982", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39465,7 +40842,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000092d", + "sortText": "00000981", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39482,7 +40859,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000092c", + "sortText": "00000980", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39499,7 +40876,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000092b", + "sortText": "0000097f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39516,7 +40893,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000092a", + "sortText": "0000097e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39533,7 +40910,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000929", + "sortText": "0000097d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39550,7 +40927,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000928", + "sortText": "0000097c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39567,7 +40944,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000927", + "sortText": "0000097b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39584,7 +40961,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000926", + "sortText": "0000097a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39601,7 +40978,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000964", + "sortText": "000009b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39618,7 +40995,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000963", + "sortText": "000009b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39635,7 +41012,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000962", + "sortText": "000009b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39652,7 +41029,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000961", + "sortText": "000009b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39669,7 +41046,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000960", + "sortText": "000009b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39686,7 +41063,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000095f", + "sortText": "000009b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39703,7 +41080,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000095e", + "sortText": "000009b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39720,7 +41097,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000095d", + "sortText": "000009b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39737,7 +41114,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000095c", + "sortText": "000009b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39754,7 +41131,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000095b", + "sortText": "000009af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39771,7 +41148,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000095a", + "sortText": "000009ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39788,7 +41165,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000959", + "sortText": "000009ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39805,7 +41182,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000958", + "sortText": "000009ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39822,7 +41199,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000957", + "sortText": "000009ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39839,7 +41216,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000956", + "sortText": "000009aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39856,7 +41233,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000955", + "sortText": "000009a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39873,7 +41250,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000954", + "sortText": "000009a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39890,7 +41267,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000953", + "sortText": "000009a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39907,7 +41284,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000952", + "sortText": "000009a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39924,7 +41301,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000951", + "sortText": "000009a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39941,7 +41318,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000950", + "sortText": "000009a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39958,7 +41335,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000094f", + "sortText": "000009a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39975,7 +41352,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000094e", + "sortText": "000009a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -39992,7 +41369,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000094d", + "sortText": "000009a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40009,7 +41386,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000094c", + "sortText": "000009a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40026,7 +41403,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000094b", + "sortText": "0000099f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40043,7 +41420,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000094a", + "sortText": "0000099e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40060,7 +41437,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000949", + "sortText": "0000099d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40077,7 +41454,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000948", + "sortText": "0000099c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40094,7 +41471,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000947", + "sortText": "0000099b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40111,7 +41488,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000946", + "sortText": "0000099a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40128,7 +41505,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000945", + "sortText": "00000999", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40145,7 +41522,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000944", + "sortText": "00000998", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40162,7 +41539,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000943", + "sortText": "00000997", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40179,7 +41556,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000942", + "sortText": "00000996", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40196,7 +41573,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000941", + "sortText": "00000995", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40213,7 +41590,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000940", + "sortText": "00000994", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40230,7 +41607,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000093f", + "sortText": "00000993", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40247,7 +41624,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000093e", + "sortText": "00000992", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40264,7 +41641,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000093d", + "sortText": "00000991", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40281,7 +41658,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000093c", + "sortText": "00000990", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40298,7 +41675,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000093b", + "sortText": "0000098f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40315,7 +41692,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000093a", + "sortText": "0000098e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40332,7 +41709,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000939", + "sortText": "0000098d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40349,7 +41726,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000938", + "sortText": "0000098c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40366,7 +41743,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000937", + "sortText": "0000098b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40383,7 +41760,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000936", + "sortText": "0000098a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40400,7 +41777,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000935", + "sortText": "00000989", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40417,7 +41794,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000934", + "sortText": "00000988", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40434,7 +41811,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000974", + "sortText": "000009c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40451,7 +41828,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000973", + "sortText": "000009c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40468,7 +41845,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000972", + "sortText": "000009c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40485,7 +41862,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000971", + "sortText": "000009c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40502,7 +41879,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000970", + "sortText": "000009c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40519,7 +41896,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000096f", + "sortText": "000009c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40536,7 +41913,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000096e", + "sortText": "000009c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40553,7 +41930,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000096d", + "sortText": "000009c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40570,7 +41947,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000096c", + "sortText": "000009c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40587,7 +41964,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000096b", + "sortText": "000009bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40604,7 +41981,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000096a", + "sortText": "000009be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40621,7 +41998,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000969", + "sortText": "000009bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40638,7 +42015,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000968", + "sortText": "000009bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40655,7 +42032,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000967", + "sortText": "000009bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40672,7 +42049,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000966", + "sortText": "000009ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40689,7 +42066,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000965", + "sortText": "000009b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40706,7 +42083,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009b6", + "sortText": "00000a0a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40723,7 +42100,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009b5", + "sortText": "00000a09", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40740,7 +42117,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009b4", + "sortText": "00000a08", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40757,7 +42134,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009b3", + "sortText": "00000a07", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40774,7 +42151,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009b2", + "sortText": "00000a06", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40791,7 +42168,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009b1", + "sortText": "00000a05", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40808,7 +42185,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009b0", + "sortText": "00000a04", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40825,7 +42202,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009af", + "sortText": "00000a03", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40842,7 +42219,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009ae", + "sortText": "00000a02", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40859,7 +42236,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009ad", + "sortText": "00000a01", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40876,7 +42253,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009ac", + "sortText": "00000a00", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40893,7 +42270,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009ab", + "sortText": "000009ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40910,7 +42287,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009aa", + "sortText": "000009fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40927,7 +42304,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009a9", + "sortText": "000009fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40944,7 +42321,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009a8", + "sortText": "000009fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40961,7 +42338,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009a7", + "sortText": "000009fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40978,7 +42355,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009a6", + "sortText": "000009fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -40995,7 +42372,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009a5", + "sortText": "000009f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41012,7 +42389,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009a4", + "sortText": "000009f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41029,7 +42406,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009a3", + "sortText": "000009f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41046,7 +42423,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009a2", + "sortText": "000009f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41063,7 +42440,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009a1", + "sortText": "000009f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41080,7 +42457,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009a0", + "sortText": "000009f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41097,7 +42474,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000099f", + "sortText": "000009f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41114,7 +42491,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000099e", + "sortText": "000009f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41131,7 +42508,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000099d", + "sortText": "000009f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41148,7 +42525,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000099c", + "sortText": "000009f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41165,7 +42542,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000099b", + "sortText": "000009ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41182,7 +42559,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000099a", + "sortText": "000009ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41199,7 +42576,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000999", + "sortText": "000009ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41216,7 +42593,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000998", + "sortText": "000009ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41233,7 +42610,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000997", + "sortText": "000009eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41250,7 +42627,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000996", + "sortText": "000009ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41267,7 +42644,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000995", + "sortText": "000009e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41284,7 +42661,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000994", + "sortText": "000009e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41301,7 +42678,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000993", + "sortText": "000009e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41318,7 +42695,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000992", + "sortText": "000009e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41335,7 +42712,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000991", + "sortText": "000009e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41352,7 +42729,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000990", + "sortText": "000009e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41369,7 +42746,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000098f", + "sortText": "000009e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41386,7 +42763,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000098e", + "sortText": "000009e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41403,7 +42780,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000098d", + "sortText": "000009e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41420,7 +42797,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000098c", + "sortText": "000009e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41437,7 +42814,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000098b", + "sortText": "000009df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41454,7 +42831,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000098a", + "sortText": "000009de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41471,7 +42848,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000989", + "sortText": "000009dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41488,7 +42865,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000988", + "sortText": "000009dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41505,7 +42882,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000987", + "sortText": "000009db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41522,7 +42899,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000986", + "sortText": "000009da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41539,7 +42916,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000985", + "sortText": "000009d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41556,7 +42933,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000984", + "sortText": "000009d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41573,7 +42950,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000983", + "sortText": "000009d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41590,7 +42967,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000982", + "sortText": "000009d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41607,7 +42984,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000981", + "sortText": "000009d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41624,7 +43001,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000980", + "sortText": "000009d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41641,7 +43018,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000097f", + "sortText": "000009d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41658,7 +43035,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000097e", + "sortText": "000009d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41675,7 +43052,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000097d", + "sortText": "000009d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41692,7 +43069,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000097c", + "sortText": "000009d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41709,7 +43086,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000097b", + "sortText": "000009cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41726,7 +43103,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000097a", + "sortText": "000009ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41743,7 +43120,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000979", + "sortText": "000009cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41760,7 +43137,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000978", + "sortText": "000009cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41777,7 +43154,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000977", + "sortText": "000009cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41794,7 +43171,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000976", + "sortText": "000009ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41811,7 +43188,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000975", + "sortText": "000009c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41828,7 +43205,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009bc", + "sortText": "00000a10", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41845,7 +43222,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009be", + "sortText": "00000a12", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41862,7 +43239,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009bd", + "sortText": "00000a11", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41879,7 +43256,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009bb", + "sortText": "00000a0f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41896,7 +43273,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009ba", + "sortText": "00000a0e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41913,7 +43290,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009b9", + "sortText": "00000a0d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41930,7 +43307,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009b8", + "sortText": "00000a0c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41947,7 +43324,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009b7", + "sortText": "00000a0b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41964,7 +43341,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009f2", + "sortText": "00000a46", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41981,7 +43358,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009f1", + "sortText": "00000a45", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -41998,7 +43375,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009f0", + "sortText": "00000a44", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42015,7 +43392,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009ef", + "sortText": "00000a43", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42032,7 +43409,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009ee", + "sortText": "00000a42", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42049,7 +43426,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009ed", + "sortText": "00000a41", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42066,7 +43443,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009ec", + "sortText": "00000a40", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42083,7 +43460,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009eb", + "sortText": "00000a3f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42100,7 +43477,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009ea", + "sortText": "00000a3e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42117,7 +43494,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009e9", + "sortText": "00000a3d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42134,7 +43511,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009e8", + "sortText": "00000a3c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42151,7 +43528,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009e7", + "sortText": "00000a3b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42168,7 +43545,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009e6", + "sortText": "00000a3a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42185,7 +43562,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009e5", + "sortText": "00000a39", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42202,7 +43579,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009e4", + "sortText": "00000a38", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42219,7 +43596,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009e3", + "sortText": "00000a37", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42236,7 +43613,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009e2", + "sortText": "00000a36", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42253,7 +43630,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009e1", + "sortText": "00000a35", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42270,7 +43647,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009e0", + "sortText": "00000a34", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42287,7 +43664,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009df", + "sortText": "00000a33", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42304,7 +43681,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009de", + "sortText": "00000a32", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42321,7 +43698,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009dd", + "sortText": "00000a31", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42338,7 +43715,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009dc", + "sortText": "00000a30", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42355,7 +43732,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009f8", + "sortText": "00000a4c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42372,7 +43749,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009f7", + "sortText": "00000a4b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42389,7 +43766,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009f6", + "sortText": "00000a4a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42406,7 +43783,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009f5", + "sortText": "00000a49", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42423,7 +43800,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009f4", + "sortText": "00000a48", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42440,7 +43817,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009f3", + "sortText": "00000a47", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42457,7 +43834,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a15", + "sortText": "00000a69", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42474,7 +43851,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a14", + "sortText": "00000a68", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42491,7 +43868,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a13", + "sortText": "00000a67", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42508,7 +43885,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a12", + "sortText": "00000a66", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42525,7 +43902,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a11", + "sortText": "00000a65", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42542,7 +43919,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a10", + "sortText": "00000a64", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42559,7 +43936,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a0f", + "sortText": "00000a63", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42576,7 +43953,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a0e", + "sortText": "00000a62", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42593,7 +43970,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a0d", + "sortText": "00000a61", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42610,7 +43987,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a0c", + "sortText": "00000a60", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42627,7 +44004,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a0b", + "sortText": "00000a5f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42644,7 +44021,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a0a", + "sortText": "00000a5e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42661,7 +44038,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a09", + "sortText": "00000a5d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42678,7 +44055,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a08", + "sortText": "00000a5c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42695,7 +44072,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a07", + "sortText": "00000a5b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42712,7 +44089,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a06", + "sortText": "00000a5a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42729,7 +44106,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a05", + "sortText": "00000a59", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42746,7 +44123,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a04", + "sortText": "00000a58", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42763,7 +44140,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a03", + "sortText": "00000a57", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42780,7 +44157,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a02", + "sortText": "00000a56", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42797,7 +44174,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a01", + "sortText": "00000a55", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42814,7 +44191,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a00", + "sortText": "00000a54", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42831,7 +44208,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009ff", + "sortText": "00000a53", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42848,7 +44225,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009fe", + "sortText": "00000a52", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42865,7 +44242,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009fd", + "sortText": "00000a51", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42882,7 +44259,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009fc", + "sortText": "00000a50", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42899,7 +44276,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009fb", + "sortText": "00000a4f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42916,7 +44293,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009fa", + "sortText": "00000a4e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42933,7 +44310,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009f9", + "sortText": "00000a4d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42950,7 +44327,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009db", + "sortText": "00000a2f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42967,7 +44344,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009da", + "sortText": "00000a2e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -42984,7 +44361,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009d9", + "sortText": "00000a2d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43001,7 +44378,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009d8", + "sortText": "00000a2c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43018,7 +44395,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009d7", + "sortText": "00000a2b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43035,7 +44412,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009d6", + "sortText": "00000a2a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43052,7 +44429,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009d5", + "sortText": "00000a29", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43069,7 +44446,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009d4", + "sortText": "00000a28", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43086,7 +44463,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009d3", + "sortText": "00000a27", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43103,7 +44480,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009d2", + "sortText": "00000a26", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43120,7 +44497,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009d1", + "sortText": "00000a25", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43137,7 +44514,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009d0", + "sortText": "00000a24", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43154,7 +44531,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009cf", + "sortText": "00000a23", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43171,7 +44548,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009ce", + "sortText": "00000a22", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43188,7 +44565,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009cd", + "sortText": "00000a21", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43205,7 +44582,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009cc", + "sortText": "00000a20", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43222,7 +44599,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009cb", + "sortText": "00000a1f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43239,7 +44616,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009ca", + "sortText": "00000a1e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43256,7 +44633,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009c9", + "sortText": "00000a1d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43273,7 +44650,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009c8", + "sortText": "00000a1c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43290,7 +44667,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009c7", + "sortText": "00000a1b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43307,7 +44684,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009c6", + "sortText": "00000a1a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43324,7 +44701,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009c5", + "sortText": "00000a19", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43341,7 +44718,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009c4", + "sortText": "00000a18", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43358,7 +44735,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009c3", + "sortText": "00000a17", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43375,7 +44752,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009c2", + "sortText": "00000a16", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43392,7 +44769,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009c1", + "sortText": "00000a15", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43409,7 +44786,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009c0", + "sortText": "00000a14", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43426,7 +44803,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000009bf", + "sortText": "00000a13", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43443,7 +44820,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a25", + "sortText": "00000a79", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43460,7 +44837,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a24", + "sortText": "00000a78", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43477,7 +44854,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a23", + "sortText": "00000a77", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43494,7 +44871,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a22", + "sortText": "00000a76", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43511,7 +44888,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a21", + "sortText": "00000a75", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43528,7 +44905,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a20", + "sortText": "00000a74", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43545,7 +44922,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a1f", + "sortText": "00000a73", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43562,7 +44939,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a1e", + "sortText": "00000a72", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43579,7 +44956,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a1d", + "sortText": "00000a71", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43596,7 +44973,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a1c", + "sortText": "00000a70", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43613,7 +44990,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a1b", + "sortText": "00000a6f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43630,7 +45007,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a1a", + "sortText": "00000a6e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43647,7 +45024,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a19", + "sortText": "00000a6d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43664,7 +45041,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a18", + "sortText": "00000a6c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43681,7 +45058,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a17", + "sortText": "00000a6b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43698,7 +45075,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a16", + "sortText": "00000a6a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43715,7 +45092,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a2b", + "sortText": "00000a7f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43732,7 +45109,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a2a", + "sortText": "00000a7e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43749,7 +45126,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a29", + "sortText": "00000a7d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43766,7 +45143,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a2e", + "sortText": "00000a82", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43783,7 +45160,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a2d", + "sortText": "00000a81", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43800,7 +45177,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a2c", + "sortText": "00000a80", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43817,7 +45194,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a31", + "sortText": "00000a85", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43834,7 +45211,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a30", + "sortText": "00000a84", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43851,7 +45228,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a2f", + "sortText": "00000a83", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43868,7 +45245,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a34", + "sortText": "00000a88", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43885,7 +45262,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a33", + "sortText": "00000a87", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43902,7 +45279,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a32", + "sortText": "00000a86", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43919,7 +45296,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a37", + "sortText": "00000a8b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43936,7 +45313,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a36", + "sortText": "00000a8a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43953,7 +45330,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a35", + "sortText": "00000a89", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43970,7 +45347,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a3a", + "sortText": "00000a8e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -43987,7 +45364,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a39", + "sortText": "00000a8d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44004,7 +45381,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a38", + "sortText": "00000a8c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44021,7 +45398,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a3d", + "sortText": "00000a91", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44038,7 +45415,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a3c", + "sortText": "00000a90", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44055,7 +45432,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a3b", + "sortText": "00000a8f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44072,7 +45449,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a40", + "sortText": "00000a94", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44089,7 +45466,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a3f", + "sortText": "00000a93", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44106,7 +45483,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a3e", + "sortText": "00000a92", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44123,7 +45500,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a43", + "sortText": "00000a97", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44140,7 +45517,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a42", + "sortText": "00000a96", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44157,7 +45534,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a41", + "sortText": "00000a95", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44174,7 +45551,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a28", + "sortText": "00000a7c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44191,7 +45568,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a27", + "sortText": "00000a7b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44208,7 +45585,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a26", + "sortText": "00000a7a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44225,7 +45602,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a52", + "sortText": "00000aa6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44242,7 +45619,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a51", + "sortText": "00000aa5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44259,7 +45636,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a50", + "sortText": "00000aa4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44276,7 +45653,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a4f", + "sortText": "00000aa3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44293,7 +45670,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a4e", + "sortText": "00000aa2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44310,7 +45687,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a4d", + "sortText": "00000aa1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44327,7 +45704,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a4c", + "sortText": "00000aa0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44344,7 +45721,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a4b", + "sortText": "00000a9f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44361,7 +45738,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a4a", + "sortText": "00000a9e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44378,7 +45755,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a49", + "sortText": "00000a9d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44395,7 +45772,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a48", + "sortText": "00000a9c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44412,7 +45789,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a47", + "sortText": "00000a9b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44429,7 +45806,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a46", + "sortText": "00000a9a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44446,7 +45823,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a45", + "sortText": "00000a99", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44463,7 +45840,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a44", + "sortText": "00000a98", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44480,7 +45857,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a68", + "sortText": "00000abc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44497,7 +45874,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a67", + "sortText": "00000abb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44514,7 +45891,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a66", + "sortText": "00000aba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44531,7 +45908,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a65", + "sortText": "00000ab9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44548,7 +45925,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a64", + "sortText": "00000ab8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44565,7 +45942,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a63", + "sortText": "00000ab7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44582,7 +45959,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a62", + "sortText": "00000ab6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44599,7 +45976,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a61", + "sortText": "00000ab5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44616,7 +45993,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a60", + "sortText": "00000ab4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44633,7 +46010,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a5f", + "sortText": "00000ab3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44650,7 +46027,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a5e", + "sortText": "00000ab2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44667,7 +46044,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a5d", + "sortText": "00000ab1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44684,7 +46061,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a5c", + "sortText": "00000ab0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44701,7 +46078,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a5b", + "sortText": "00000aaf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44718,7 +46095,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a5a", + "sortText": "00000aae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44735,7 +46112,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a59", + "sortText": "00000aad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44752,7 +46129,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a58", + "sortText": "00000aac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44769,7 +46146,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a57", + "sortText": "00000aab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44786,7 +46163,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a56", + "sortText": "00000aaa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44803,7 +46180,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a55", + "sortText": "00000aa9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44820,7 +46197,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a54", + "sortText": "00000aa8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44837,7 +46214,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a53", + "sortText": "00000aa7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44854,7 +46231,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a89", + "sortText": "00000add", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44871,7 +46248,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a88", + "sortText": "00000adc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44888,7 +46265,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a87", + "sortText": "00000adb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44905,7 +46282,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a86", + "sortText": "00000ada", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44922,7 +46299,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a85", + "sortText": "00000ad9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44939,7 +46316,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a84", + "sortText": "00000ad8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44956,7 +46333,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a83", + "sortText": "00000ad7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44973,7 +46350,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a82", + "sortText": "00000ad6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -44990,7 +46367,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a81", + "sortText": "00000ad5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45007,7 +46384,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a80", + "sortText": "00000ad4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45024,7 +46401,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a7f", + "sortText": "00000ad3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45041,7 +46418,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a7e", + "sortText": "00000ad2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45058,7 +46435,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a7d", + "sortText": "00000ad1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45075,7 +46452,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a7c", + "sortText": "00000ad0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45092,7 +46469,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a7b", + "sortText": "00000acf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45109,7 +46486,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a7a", + "sortText": "00000ace", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45126,7 +46503,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a79", + "sortText": "00000acd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45143,7 +46520,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a78", + "sortText": "00000acc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45160,7 +46537,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a77", + "sortText": "00000acb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45177,7 +46554,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a76", + "sortText": "00000aca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45194,7 +46571,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a75", + "sortText": "00000ac9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45211,7 +46588,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a74", + "sortText": "00000ac8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45228,7 +46605,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a73", + "sortText": "00000ac7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45245,7 +46622,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a72", + "sortText": "00000ac6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45262,7 +46639,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a71", + "sortText": "00000ac5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45279,7 +46656,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a70", + "sortText": "00000ac4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45296,7 +46673,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a6f", + "sortText": "00000ac3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45313,7 +46690,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a6e", + "sortText": "00000ac2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45330,7 +46707,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a6d", + "sortText": "00000ac1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45347,7 +46724,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a6c", + "sortText": "00000ac0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45364,7 +46741,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a6b", + "sortText": "00000abf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45381,7 +46758,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a6a", + "sortText": "00000abe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45398,7 +46775,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a69", + "sortText": "00000abd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45415,7 +46792,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a9a", + "sortText": "00000aee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45432,7 +46809,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a99", + "sortText": "00000aed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45449,7 +46826,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a98", + "sortText": "00000aec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45466,7 +46843,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a97", + "sortText": "00000aeb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45483,7 +46860,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a96", + "sortText": "00000aea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45500,7 +46877,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a95", + "sortText": "00000ae9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45517,7 +46894,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a94", + "sortText": "00000ae8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45534,7 +46911,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a93", + "sortText": "00000ae7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45551,7 +46928,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a92", + "sortText": "00000ae6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45568,7 +46945,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a91", + "sortText": "00000ae5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45585,7 +46962,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a90", + "sortText": "00000ae4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45602,7 +46979,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a8f", + "sortText": "00000ae3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45619,7 +46996,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a8e", + "sortText": "00000ae2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45636,7 +47013,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a8d", + "sortText": "00000ae1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45653,7 +47030,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a8c", + "sortText": "00000ae0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45670,7 +47047,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a8b", + "sortText": "00000adf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45687,7 +47064,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a8a", + "sortText": "00000ade", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45704,7 +47081,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ad2", + "sortText": "00000b26", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45721,7 +47098,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ad1", + "sortText": "00000b25", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45738,7 +47115,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ad0", + "sortText": "00000b24", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45755,7 +47132,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000acf", + "sortText": "00000b23", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45772,7 +47149,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ace", + "sortText": "00000b22", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45789,7 +47166,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000acd", + "sortText": "00000b21", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45806,7 +47183,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000acc", + "sortText": "00000b20", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45823,7 +47200,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000acb", + "sortText": "00000b1f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45840,7 +47217,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aca", + "sortText": "00000b1e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45857,7 +47234,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ac9", + "sortText": "00000b1d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45874,7 +47251,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ac8", + "sortText": "00000b1c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45891,7 +47268,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ac7", + "sortText": "00000b1b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45908,7 +47285,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ac6", + "sortText": "00000b1a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45925,7 +47302,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ac5", + "sortText": "00000b19", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45942,7 +47319,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ac4", + "sortText": "00000b18", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45959,7 +47336,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ac3", + "sortText": "00000b17", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45976,7 +47353,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ac2", + "sortText": "00000b16", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -45993,7 +47370,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ac1", + "sortText": "00000b15", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46010,7 +47387,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ac0", + "sortText": "00000b14", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46027,7 +47404,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000abf", + "sortText": "00000b13", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46044,7 +47421,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000abe", + "sortText": "00000b12", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46061,7 +47438,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000abd", + "sortText": "00000b11", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46078,7 +47455,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000abc", + "sortText": "00000b10", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46095,7 +47472,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000abb", + "sortText": "00000b0f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46112,7 +47489,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aba", + "sortText": "00000b0e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46129,7 +47506,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ab9", + "sortText": "00000b0d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46146,7 +47523,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ab8", + "sortText": "00000b0c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46163,7 +47540,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ab7", + "sortText": "00000b0b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46180,7 +47557,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ab6", + "sortText": "00000b0a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46197,7 +47574,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ab5", + "sortText": "00000b09", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46214,7 +47591,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ab4", + "sortText": "00000b08", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46231,7 +47608,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ab3", + "sortText": "00000b07", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46248,7 +47625,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ab2", + "sortText": "00000b06", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46265,7 +47642,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ab1", + "sortText": "00000b05", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46282,7 +47659,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ab0", + "sortText": "00000b04", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46299,7 +47676,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aaf", + "sortText": "00000b03", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46316,7 +47693,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aae", + "sortText": "00000b02", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46333,7 +47710,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aad", + "sortText": "00000b01", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46350,7 +47727,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aac", + "sortText": "00000b00", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46367,7 +47744,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aab", + "sortText": "00000aff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46384,7 +47761,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aaa", + "sortText": "00000afe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46401,7 +47778,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aa9", + "sortText": "00000afd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46418,7 +47795,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aa8", + "sortText": "00000afc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46435,7 +47812,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aa7", + "sortText": "00000afb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46452,7 +47829,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aa6", + "sortText": "00000afa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46469,7 +47846,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aa5", + "sortText": "00000af9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46486,7 +47863,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aa4", + "sortText": "00000af8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46503,7 +47880,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aa3", + "sortText": "00000af7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46520,7 +47897,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aa2", + "sortText": "00000af6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46537,7 +47914,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aa1", + "sortText": "00000af5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46554,7 +47931,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aa0", + "sortText": "00000af4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46571,7 +47948,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a9f", + "sortText": "00000af3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46588,7 +47965,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a9e", + "sortText": "00000af2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46605,7 +47982,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a9d", + "sortText": "00000af1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46622,7 +47999,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a9c", + "sortText": "00000af0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46639,7 +48016,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000a9b", + "sortText": "00000aef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46656,7 +48033,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b14", + "sortText": "00000b68", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46673,7 +48050,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b13", + "sortText": "00000b67", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46690,7 +48067,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b12", + "sortText": "00000b66", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46707,7 +48084,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b11", + "sortText": "00000b65", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46724,7 +48101,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b10", + "sortText": "00000b64", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46741,7 +48118,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b0f", + "sortText": "00000b63", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46758,7 +48135,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b0e", + "sortText": "00000b62", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46775,7 +48152,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b0d", + "sortText": "00000b61", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46792,7 +48169,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b0c", + "sortText": "00000b60", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46809,7 +48186,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b0b", + "sortText": "00000b5f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46826,7 +48203,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b0a", + "sortText": "00000b5e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46843,7 +48220,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b09", + "sortText": "00000b5d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46860,7 +48237,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b08", + "sortText": "00000b5c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46877,7 +48254,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b07", + "sortText": "00000b5b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46894,7 +48271,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b06", + "sortText": "00000b5a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46911,7 +48288,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b05", + "sortText": "00000b59", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46928,7 +48305,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b04", + "sortText": "00000b58", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46945,7 +48322,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b03", + "sortText": "00000b57", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46962,7 +48339,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b02", + "sortText": "00000b56", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46979,7 +48356,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b01", + "sortText": "00000b55", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -46996,7 +48373,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b00", + "sortText": "00000b54", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47013,7 +48390,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aff", + "sortText": "00000b53", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47030,7 +48407,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000afe", + "sortText": "00000b52", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47047,7 +48424,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000afd", + "sortText": "00000b51", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47064,7 +48441,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000afc", + "sortText": "00000b50", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47081,7 +48458,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000afb", + "sortText": "00000b4f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47098,7 +48475,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000afa", + "sortText": "00000b4e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47115,7 +48492,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000af9", + "sortText": "00000b4d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47132,7 +48509,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000af8", + "sortText": "00000b4c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47149,7 +48526,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000af7", + "sortText": "00000b4b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47166,7 +48543,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000af6", + "sortText": "00000b4a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47183,7 +48560,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000af5", + "sortText": "00000b49", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47200,7 +48577,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000af4", + "sortText": "00000b48", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47217,7 +48594,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000af3", + "sortText": "00000b47", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47234,7 +48611,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000af2", + "sortText": "00000b46", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47251,7 +48628,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000af1", + "sortText": "00000b45", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47268,7 +48645,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000af0", + "sortText": "00000b44", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47285,7 +48662,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aef", + "sortText": "00000b43", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47302,7 +48679,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aee", + "sortText": "00000b42", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47319,7 +48696,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aed", + "sortText": "00000b41", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47336,7 +48713,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aec", + "sortText": "00000b40", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47353,7 +48730,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aeb", + "sortText": "00000b3f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47370,7 +48747,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000aea", + "sortText": "00000b3e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47387,7 +48764,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ae9", + "sortText": "00000b3d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47404,7 +48781,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ae8", + "sortText": "00000b3c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47421,7 +48798,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ae7", + "sortText": "00000b3b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47438,7 +48815,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ae6", + "sortText": "00000b3a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47455,7 +48832,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ae5", + "sortText": "00000b39", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47472,7 +48849,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ae4", + "sortText": "00000b38", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47489,7 +48866,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ae3", + "sortText": "00000b37", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47506,7 +48883,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ae2", + "sortText": "00000b36", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47523,7 +48900,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ae1", + "sortText": "00000b35", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47540,7 +48917,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ae0", + "sortText": "00000b34", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47557,7 +48934,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000adf", + "sortText": "00000b33", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47574,7 +48951,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ade", + "sortText": "00000b32", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47591,7 +48968,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000add", + "sortText": "00000b31", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47608,7 +48985,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000adc", + "sortText": "00000b30", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47625,7 +49002,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000adb", + "sortText": "00000b2f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47642,7 +49019,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ada", + "sortText": "00000b2e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47659,7 +49036,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ad9", + "sortText": "00000b2d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47676,7 +49053,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ad8", + "sortText": "00000b2c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47693,7 +49070,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ad7", + "sortText": "00000b2b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47710,7 +49087,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ad6", + "sortText": "00000b2a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47727,7 +49104,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ad5", + "sortText": "00000b29", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47744,7 +49121,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ad4", + "sortText": "00000b28", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47761,7 +49138,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ad3", + "sortText": "00000b27", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47778,7 +49155,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b18", + "sortText": "00000b6c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47795,7 +49172,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b17", + "sortText": "00000b6b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47812,7 +49189,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b16", + "sortText": "00000b6a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47829,7 +49206,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b15", + "sortText": "00000b69", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47846,7 +49223,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b3a", + "sortText": "00000b8e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47863,7 +49240,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b39", + "sortText": "00000b8d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47880,7 +49257,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b38", + "sortText": "00000b8c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47897,7 +49274,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b37", + "sortText": "00000b8b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47914,7 +49291,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b36", + "sortText": "00000b8a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47931,7 +49308,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b35", + "sortText": "00000b89", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47948,7 +49325,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b34", + "sortText": "00000b88", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47965,7 +49342,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b33", + "sortText": "00000b87", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47982,7 +49359,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b32", + "sortText": "00000b86", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -47999,7 +49376,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b31", + "sortText": "00000b85", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48016,7 +49393,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b30", + "sortText": "00000b84", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48033,7 +49410,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b2f", + "sortText": "00000b83", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48050,7 +49427,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b2e", + "sortText": "00000b82", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48067,7 +49444,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b2d", + "sortText": "00000b81", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48084,7 +49461,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b2c", + "sortText": "00000b80", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48101,7 +49478,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b2b", + "sortText": "00000b7f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48118,7 +49495,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b2a", + "sortText": "00000b7e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48135,7 +49512,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b29", + "sortText": "00000b7d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48152,7 +49529,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b28", + "sortText": "00000b7c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48169,7 +49546,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b27", + "sortText": "00000b7b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48186,7 +49563,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b26", + "sortText": "00000b7a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48203,7 +49580,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b25", + "sortText": "00000b79", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48220,7 +49597,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b24", + "sortText": "00000b78", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48237,7 +49614,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b23", + "sortText": "00000b77", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48254,7 +49631,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b22", + "sortText": "00000b76", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48271,7 +49648,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b21", + "sortText": "00000b75", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48288,7 +49665,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b20", + "sortText": "00000b74", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48305,7 +49682,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b1f", + "sortText": "00000b73", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48322,7 +49699,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b1e", + "sortText": "00000b72", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48339,7 +49716,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b1d", + "sortText": "00000b71", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48356,7 +49733,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b1c", + "sortText": "00000b70", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48373,7 +49750,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b1b", + "sortText": "00000b6f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48390,7 +49767,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b1a", + "sortText": "00000b6e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48407,7 +49784,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b19", + "sortText": "00000b6d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48424,7 +49801,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b40", + "sortText": "00000b94", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48441,7 +49818,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b3f", + "sortText": "00000b93", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48458,7 +49835,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b3e", + "sortText": "00000b92", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48475,7 +49852,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b3d", + "sortText": "00000b91", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48492,7 +49869,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b3c", + "sortText": "00000b90", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48509,7 +49886,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b3b", + "sortText": "00000b8f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48526,7 +49903,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b55", + "sortText": "00000ba9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48543,7 +49920,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b54", + "sortText": "00000ba8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48560,7 +49937,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b58", + "sortText": "00000bac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48577,7 +49954,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b57", + "sortText": "00000bab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48594,7 +49971,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b56", + "sortText": "00000baa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48611,7 +49988,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b5a", + "sortText": "00000bae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48628,7 +50005,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b59", + "sortText": "00000bad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48645,7 +50022,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b5c", + "sortText": "00000bb0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48662,7 +50039,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b5b", + "sortText": "00000baf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48679,7 +50056,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b63", + "sortText": "00000bb7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48696,7 +50073,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b62", + "sortText": "00000bb6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48713,7 +50090,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b61", + "sortText": "00000bb5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48730,7 +50107,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b60", + "sortText": "00000bb4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48747,7 +50124,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b5f", + "sortText": "00000bb3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48764,7 +50141,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b5e", + "sortText": "00000bb2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48781,7 +50158,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b5d", + "sortText": "00000bb1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48798,7 +50175,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b53", + "sortText": "00000ba7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48815,7 +50192,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b52", + "sortText": "00000ba6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48832,7 +50209,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b51", + "sortText": "00000ba5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48849,7 +50226,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b50", + "sortText": "00000ba4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48866,7 +50243,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b4f", + "sortText": "00000ba3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48883,7 +50260,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b4e", + "sortText": "00000ba2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48900,7 +50277,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b4d", + "sortText": "00000ba1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48917,7 +50294,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b4c", + "sortText": "00000ba0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48934,7 +50311,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b4b", + "sortText": "00000b9f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48951,7 +50328,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b4a", + "sortText": "00000b9e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48968,7 +50345,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b49", + "sortText": "00000b9d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -48985,7 +50362,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b48", + "sortText": "00000b9c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49002,7 +50379,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b47", + "sortText": "00000b9b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49019,7 +50396,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b46", + "sortText": "00000b9a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49036,7 +50413,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b45", + "sortText": "00000b99", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49053,7 +50430,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b44", + "sortText": "00000b98", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49070,7 +50447,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b43", + "sortText": "00000b97", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49087,7 +50464,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b42", + "sortText": "00000b96", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49104,7 +50481,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b41", + "sortText": "00000b95", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49121,7 +50498,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b83", + "sortText": "00000bd7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49138,7 +50515,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b82", + "sortText": "00000bd6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49155,7 +50532,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b81", + "sortText": "00000bd5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49172,7 +50549,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b80", + "sortText": "00000bd4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49189,7 +50566,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b7f", + "sortText": "00000bd3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49206,7 +50583,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b7e", + "sortText": "00000bd2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49223,7 +50600,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b7d", + "sortText": "00000bd1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49240,7 +50617,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b7c", + "sortText": "00000bd0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49257,7 +50634,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b7b", + "sortText": "00000bcf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49274,7 +50651,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b7a", + "sortText": "00000bce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49291,7 +50668,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b79", + "sortText": "00000bcd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49308,7 +50685,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b78", + "sortText": "00000bcc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49325,7 +50702,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b77", + "sortText": "00000bcb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49342,7 +50719,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b76", + "sortText": "00000bca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49359,7 +50736,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b75", + "sortText": "00000bc9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49376,7 +50753,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b74", + "sortText": "00000bc8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49393,7 +50770,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b73", + "sortText": "00000bc7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49410,7 +50787,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b72", + "sortText": "00000bc6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49427,7 +50804,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b71", + "sortText": "00000bc5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49444,7 +50821,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b70", + "sortText": "00000bc4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49461,7 +50838,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b6f", + "sortText": "00000bc3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49478,7 +50855,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b6e", + "sortText": "00000bc2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49495,7 +50872,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b6d", + "sortText": "00000bc1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49512,7 +50889,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b6c", + "sortText": "00000bc0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49529,7 +50906,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b6b", + "sortText": "00000bbf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49546,7 +50923,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b6a", + "sortText": "00000bbe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49563,7 +50940,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b69", + "sortText": "00000bbd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49580,7 +50957,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b68", + "sortText": "00000bbc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49597,7 +50974,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b67", + "sortText": "00000bbb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49614,7 +50991,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b66", + "sortText": "00000bba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49631,7 +51008,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b65", + "sortText": "00000bb9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49648,7 +51025,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b64", + "sortText": "00000bb8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49665,7 +51042,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bf4", + "sortText": "00000c48", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49682,7 +51059,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bf3", + "sortText": "00000c47", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49699,7 +51076,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bf2", + "sortText": "00000c46", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49716,7 +51093,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bf1", + "sortText": "00000c45", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49733,7 +51110,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bf0", + "sortText": "00000c44", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49750,7 +51127,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bef", + "sortText": "00000c43", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49767,7 +51144,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bee", + "sortText": "00000c42", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49784,7 +51161,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bed", + "sortText": "00000c41", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49801,7 +51178,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bec", + "sortText": "00000c40", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49818,7 +51195,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000beb", + "sortText": "00000c3f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49835,7 +51212,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bea", + "sortText": "00000c3e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49852,7 +51229,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000be9", + "sortText": "00000c3d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49869,7 +51246,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000be8", + "sortText": "00000c3c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49886,7 +51263,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000be7", + "sortText": "00000c3b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49903,7 +51280,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000be6", + "sortText": "00000c3a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49920,7 +51297,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000be5", + "sortText": "00000c39", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49937,7 +51314,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bc4", + "sortText": "00000c18", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49954,7 +51331,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bc3", + "sortText": "00000c17", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49971,7 +51348,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bc2", + "sortText": "00000c16", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -49988,7 +51365,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bc1", + "sortText": "00000c15", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50005,7 +51382,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bc0", + "sortText": "00000c14", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50022,7 +51399,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bbf", + "sortText": "00000c13", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50039,7 +51416,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bbe", + "sortText": "00000c12", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50056,7 +51433,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bbd", + "sortText": "00000c11", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50073,7 +51450,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bbc", + "sortText": "00000c10", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50090,7 +51467,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bbb", + "sortText": "00000c0f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50107,7 +51484,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bba", + "sortText": "00000c0e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50124,7 +51501,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bb9", + "sortText": "00000c0d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50141,7 +51518,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bb8", + "sortText": "00000c0c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50158,7 +51535,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bb7", + "sortText": "00000c0b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50175,7 +51552,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bb6", + "sortText": "00000c0a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50192,7 +51569,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bb5", + "sortText": "00000c09", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50209,7 +51586,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bb4", + "sortText": "00000c08", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50226,7 +51603,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bb3", + "sortText": "00000c07", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50243,7 +51620,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bb2", + "sortText": "00000c06", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50260,7 +51637,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bb1", + "sortText": "00000c05", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50277,7 +51654,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bb0", + "sortText": "00000c04", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50294,7 +51671,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000baf", + "sortText": "00000c03", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50311,7 +51688,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bae", + "sortText": "00000c02", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50328,7 +51705,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bad", + "sortText": "00000c01", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50345,7 +51722,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bac", + "sortText": "00000c00", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50362,7 +51739,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bab", + "sortText": "00000bff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50379,7 +51756,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000baa", + "sortText": "00000bfe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50396,7 +51773,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ba9", + "sortText": "00000bfd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50413,7 +51790,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ba8", + "sortText": "00000bfc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50430,7 +51807,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ba7", + "sortText": "00000bfb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50447,7 +51824,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ba6", + "sortText": "00000bfa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50464,7 +51841,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000be4", + "sortText": "00000c38", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50481,7 +51858,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000be3", + "sortText": "00000c37", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50498,7 +51875,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000be2", + "sortText": "00000c36", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50515,7 +51892,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000be1", + "sortText": "00000c35", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50532,7 +51909,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000be0", + "sortText": "00000c34", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50549,7 +51926,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bdf", + "sortText": "00000c33", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50566,7 +51943,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bde", + "sortText": "00000c32", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50583,7 +51960,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bdd", + "sortText": "00000c31", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50600,7 +51977,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bdc", + "sortText": "00000c30", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50617,7 +51994,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bdb", + "sortText": "00000c2f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50634,7 +52011,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bda", + "sortText": "00000c2e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50651,7 +52028,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bd9", + "sortText": "00000c2d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50668,7 +52045,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bd8", + "sortText": "00000c2c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50685,7 +52062,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bd7", + "sortText": "00000c2b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50702,7 +52079,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bd6", + "sortText": "00000c2a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50719,7 +52096,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bd5", + "sortText": "00000c29", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50736,7 +52113,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bd4", + "sortText": "00000c28", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50753,7 +52130,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bd3", + "sortText": "00000c27", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50770,7 +52147,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bd2", + "sortText": "00000c26", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50787,7 +52164,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bd1", + "sortText": "00000c25", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50804,7 +52181,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bd0", + "sortText": "00000c24", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50821,7 +52198,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bcf", + "sortText": "00000c23", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50838,7 +52215,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bce", + "sortText": "00000c22", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50855,7 +52232,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bcd", + "sortText": "00000c21", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50872,7 +52249,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bcc", + "sortText": "00000c20", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50889,7 +52266,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bcb", + "sortText": "00000c1f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50906,7 +52283,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bca", + "sortText": "00000c1e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50923,7 +52300,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bc9", + "sortText": "00000c1d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50940,7 +52317,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bc8", + "sortText": "00000c1c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50957,7 +52334,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bc7", + "sortText": "00000c1b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50974,7 +52351,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ba4", + "sortText": "00000bf8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -50991,7 +52368,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ba3", + "sortText": "00000bf7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51008,7 +52385,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ba2", + "sortText": "00000bf6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51025,7 +52402,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ba1", + "sortText": "00000bf5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51042,7 +52419,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ba0", + "sortText": "00000bf4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51059,7 +52436,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b9f", + "sortText": "00000bf3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51076,7 +52453,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b9e", + "sortText": "00000bf2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51093,7 +52470,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b9d", + "sortText": "00000bf1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51110,7 +52487,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b9c", + "sortText": "00000bf0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51127,7 +52504,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b9b", + "sortText": "00000bef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51144,7 +52521,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b9a", + "sortText": "00000bee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51161,7 +52538,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b99", + "sortText": "00000bed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51178,7 +52555,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b98", + "sortText": "00000bec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51195,7 +52572,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b97", + "sortText": "00000beb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51212,7 +52589,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b96", + "sortText": "00000bea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51229,7 +52606,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b95", + "sortText": "00000be9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51246,7 +52623,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b94", + "sortText": "00000be8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51263,7 +52640,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b93", + "sortText": "00000be7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51280,7 +52657,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b92", + "sortText": "00000be6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51297,7 +52674,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b91", + "sortText": "00000be5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51314,7 +52691,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b90", + "sortText": "00000be4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51331,7 +52708,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b8f", + "sortText": "00000be3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51348,7 +52725,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b8e", + "sortText": "00000be2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51365,7 +52742,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b8d", + "sortText": "00000be1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51382,7 +52759,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b8c", + "sortText": "00000be0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51399,7 +52776,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b8b", + "sortText": "00000bdf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51416,7 +52793,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b8a", + "sortText": "00000bde", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51433,7 +52810,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b89", + "sortText": "00000bdd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51450,7 +52827,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b88", + "sortText": "00000bdc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51467,7 +52844,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b87", + "sortText": "00000bdb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51484,7 +52861,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b86", + "sortText": "00000bda", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51501,7 +52878,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b85", + "sortText": "00000bd9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51518,7 +52895,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c06", + "sortText": "00000c5a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51535,7 +52912,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c05", + "sortText": "00000c59", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51552,7 +52929,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c04", + "sortText": "00000c58", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51569,7 +52946,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c03", + "sortText": "00000c57", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51586,7 +52963,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c02", + "sortText": "00000c56", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51603,7 +52980,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c01", + "sortText": "00000c55", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51620,7 +52997,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c00", + "sortText": "00000c54", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51637,7 +53014,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bff", + "sortText": "00000c53", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51654,7 +53031,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bfe", + "sortText": "00000c52", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51671,7 +53048,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bfd", + "sortText": "00000c51", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51688,7 +53065,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bfc", + "sortText": "00000c50", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51705,7 +53082,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bfb", + "sortText": "00000c4f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51722,7 +53099,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bfa", + "sortText": "00000c4e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51739,7 +53116,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bf9", + "sortText": "00000c4d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51756,7 +53133,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bf8", + "sortText": "00000c4c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51773,7 +53150,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bf7", + "sortText": "00000c4b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51790,7 +53167,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bf6", + "sortText": "00000c4a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51807,7 +53184,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bf5", + "sortText": "00000c49", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51824,7 +53201,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c21", + "sortText": "00000c75", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51841,7 +53218,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c20", + "sortText": "00000c74", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51858,7 +53235,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c1f", + "sortText": "00000c73", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51875,7 +53252,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c1e", + "sortText": "00000c72", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51892,7 +53269,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c1d", + "sortText": "00000c71", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51909,7 +53286,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c1c", + "sortText": "00000c70", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51926,7 +53303,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c1b", + "sortText": "00000c6f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51943,7 +53320,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c1a", + "sortText": "00000c6e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51960,7 +53337,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c19", + "sortText": "00000c6d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51977,7 +53354,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c18", + "sortText": "00000c6c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -51994,7 +53371,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c17", + "sortText": "00000c6b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52011,7 +53388,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c16", + "sortText": "00000c6a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52028,7 +53405,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c15", + "sortText": "00000c69", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52045,7 +53422,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c14", + "sortText": "00000c68", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52062,7 +53439,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c13", + "sortText": "00000c67", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52079,7 +53456,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c12", + "sortText": "00000c66", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52096,7 +53473,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c11", + "sortText": "00000c65", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52113,7 +53490,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c10", + "sortText": "00000c64", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52130,7 +53507,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c0f", + "sortText": "00000c63", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52147,7 +53524,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c0e", + "sortText": "00000c62", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52164,7 +53541,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c0d", + "sortText": "00000c61", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52181,7 +53558,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c0c", + "sortText": "00000c60", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52198,7 +53575,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c0b", + "sortText": "00000c5f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52215,7 +53592,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c0a", + "sortText": "00000c5e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52232,7 +53609,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c09", + "sortText": "00000c5d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52249,7 +53626,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c08", + "sortText": "00000c5c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52266,7 +53643,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c07", + "sortText": "00000c5b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52283,7 +53660,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000b84", + "sortText": "00000bd8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52300,7 +53677,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bc6", + "sortText": "00000c1a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52317,7 +53694,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000bc5", + "sortText": "00000c19", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52334,7 +53711,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ba5", + "sortText": "00000bf9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52351,7 +53728,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c47", + "sortText": "00000c9b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52368,7 +53745,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c46", + "sortText": "00000c9a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52385,7 +53762,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c45", + "sortText": "00000c99", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52402,7 +53779,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c44", + "sortText": "00000c98", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52419,7 +53796,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c43", + "sortText": "00000c97", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52436,7 +53813,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c42", + "sortText": "00000c96", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52453,7 +53830,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c41", + "sortText": "00000c95", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52470,7 +53847,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c40", + "sortText": "00000c94", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52487,7 +53864,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c3f", + "sortText": "00000c93", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52504,7 +53881,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c3e", + "sortText": "00000c92", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52521,7 +53898,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c3d", + "sortText": "00000c91", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52538,7 +53915,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c3c", + "sortText": "00000c90", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52555,7 +53932,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c3b", + "sortText": "00000c8f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52572,7 +53949,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c3a", + "sortText": "00000c8e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52589,7 +53966,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c39", + "sortText": "00000c8d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52606,7 +53983,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c38", + "sortText": "00000c8c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52623,7 +54000,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c37", + "sortText": "00000c8b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52640,7 +54017,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c36", + "sortText": "00000c8a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52657,7 +54034,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c35", + "sortText": "00000c89", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52674,7 +54051,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c34", + "sortText": "00000c88", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52691,7 +54068,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c33", + "sortText": "00000c87", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52708,7 +54085,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c32", + "sortText": "00000c86", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52725,7 +54102,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c31", + "sortText": "00000c85", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52742,7 +54119,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c30", + "sortText": "00000c84", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52759,7 +54136,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c2f", + "sortText": "00000c83", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52776,7 +54153,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c2e", + "sortText": "00000c82", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52793,7 +54170,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c2d", + "sortText": "00000c81", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52810,7 +54187,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c2c", + "sortText": "00000c80", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52827,7 +54204,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c2b", + "sortText": "00000c7f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52844,7 +54221,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c2a", + "sortText": "00000c7e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52861,7 +54238,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c29", + "sortText": "00000c7d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52878,7 +54255,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c28", + "sortText": "00000c7c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52895,7 +54272,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c27", + "sortText": "00000c7b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52912,7 +54289,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c26", + "sortText": "00000c7a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52929,7 +54306,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c25", + "sortText": "00000c79", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52946,7 +54323,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c24", + "sortText": "00000c78", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52963,7 +54340,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c23", + "sortText": "00000c77", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52980,7 +54357,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c22", + "sortText": "00000c76", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -52997,7 +54374,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c4f", + "sortText": "00000ca3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53014,7 +54391,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c4e", + "sortText": "00000ca2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53031,7 +54408,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c4d", + "sortText": "00000ca1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53048,7 +54425,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c4c", + "sortText": "00000ca0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53065,7 +54442,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c4b", + "sortText": "00000c9f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53082,7 +54459,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c4a", + "sortText": "00000c9e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53099,7 +54476,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c49", + "sortText": "00000c9d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53116,7 +54493,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c48", + "sortText": "00000c9c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53133,7 +54510,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c62", + "sortText": "00000cb6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53150,7 +54527,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c61", + "sortText": "00000cb5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53167,7 +54544,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c60", + "sortText": "00000cb4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53184,7 +54561,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c5f", + "sortText": "00000cb3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53201,7 +54578,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c5e", + "sortText": "00000cb2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53218,7 +54595,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c5d", + "sortText": "00000cb1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53235,7 +54612,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c5c", + "sortText": "00000cb0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53252,7 +54629,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c5b", + "sortText": "00000caf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53269,7 +54646,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c5a", + "sortText": "00000cae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53286,7 +54663,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c59", + "sortText": "00000cad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53303,7 +54680,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c58", + "sortText": "00000cac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53320,7 +54697,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c57", + "sortText": "00000cab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53337,7 +54714,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c56", + "sortText": "00000caa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53354,7 +54731,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c55", + "sortText": "00000ca9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53371,7 +54748,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c54", + "sortText": "00000ca8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53388,7 +54765,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c53", + "sortText": "00000ca7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53405,7 +54782,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c52", + "sortText": "00000ca6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53422,7 +54799,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c51", + "sortText": "00000ca5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53439,7 +54816,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c50", + "sortText": "00000ca4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53456,7 +54833,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c63", + "sortText": "00000cb7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53473,7 +54850,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c69", + "sortText": "00000cbd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53490,7 +54867,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c68", + "sortText": "00000cbc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53507,7 +54884,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c67", + "sortText": "00000cbb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53524,7 +54901,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c6f", + "sortText": "00000cc3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53541,7 +54918,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c6e", + "sortText": "00000cc2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53558,7 +54935,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c6d", + "sortText": "00000cc1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53575,7 +54952,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c6c", + "sortText": "00000cc0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53592,7 +54969,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c6b", + "sortText": "00000cbf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53609,7 +54986,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c6a", + "sortText": "00000cbe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53626,7 +55003,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c66", + "sortText": "00000cba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53643,7 +55020,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c65", + "sortText": "00000cb9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53660,7 +55037,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c64", + "sortText": "00000cb8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53677,7 +55054,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c73", + "sortText": "00000cc7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53694,7 +55071,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c72", + "sortText": "00000cc6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53711,7 +55088,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c75", + "sortText": "00000cc9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53728,7 +55105,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c74", + "sortText": "00000cc8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53745,7 +55122,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c71", + "sortText": "00000cc5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53762,7 +55139,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c70", + "sortText": "00000cc4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53779,7 +55156,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c76", + "sortText": "00000cca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53796,7 +55173,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c7a", + "sortText": "00000cce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53813,7 +55190,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c79", + "sortText": "00000ccd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53830,7 +55207,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c78", + "sortText": "00000ccc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53847,7 +55224,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c77", + "sortText": "00000ccb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53864,7 +55241,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c7e", + "sortText": "00000cd2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53881,7 +55258,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c7d", + "sortText": "00000cd1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53898,7 +55275,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c7c", + "sortText": "00000cd0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53915,7 +55292,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c7b", + "sortText": "00000ccf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53932,7 +55309,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c80", + "sortText": "00000cd4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53949,7 +55326,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c7f", + "sortText": "00000cd3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53966,7 +55343,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c87", + "sortText": "00000cdb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -53983,7 +55360,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c86", + "sortText": "00000cda", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54000,7 +55377,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c85", + "sortText": "00000cd9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54017,7 +55394,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c8a", + "sortText": "00000cde", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54034,7 +55411,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c89", + "sortText": "00000cdd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54051,7 +55428,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c88", + "sortText": "00000cdc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54068,7 +55445,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c8e", + "sortText": "00000ce2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54085,7 +55462,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c8d", + "sortText": "00000ce1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54102,7 +55479,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c8c", + "sortText": "00000ce0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54119,7 +55496,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c8b", + "sortText": "00000cdf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54136,7 +55513,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c91", + "sortText": "00000ce5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54153,7 +55530,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c90", + "sortText": "00000ce4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54170,7 +55547,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c8f", + "sortText": "00000ce3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54187,7 +55564,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c94", + "sortText": "00000ce8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54204,7 +55581,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c93", + "sortText": "00000ce7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54221,7 +55598,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c92", + "sortText": "00000ce6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54238,7 +55615,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c97", + "sortText": "00000ceb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54255,7 +55632,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c96", + "sortText": "00000cea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54272,7 +55649,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c95", + "sortText": "00000ce9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54289,7 +55666,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c84", + "sortText": "00000cd8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54306,7 +55683,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c83", + "sortText": "00000cd7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54323,7 +55700,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c82", + "sortText": "00000cd6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54340,7 +55717,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c81", + "sortText": "00000cd5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54348,6 +55725,23 @@ "newText": "'Microsoft.OperationalInsights/workspaces@2020-10-01'" } }, + { + "label": "'Microsoft.OperationsManagement/ManagementAssociations@2015-11-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.OperationsManagement` \nType: `ManagementAssociations` \nAPI Version: `2015-11-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000cec", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.OperationsManagement/ManagementAssociations@2015-11-01-preview'" + } + }, { "label": "'Microsoft.OperationsManagement/ManagementConfigurations@2015-11-01-preview'", "kind": "class", @@ -54357,7 +55751,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c98", + "sortText": "00000ced", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54374,7 +55768,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c99", + "sortText": "00000cee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54382,6 +55776,91 @@ "newText": "'Microsoft.OperationsManagement/solutions@2015-11-01-preview'" } }, + { + "label": "'Microsoft.Peering/peerAsns@2019-08-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Peering` \nType: `peerAsns` \nAPI Version: `2019-08-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000cf3", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Peering/peerAsns@2019-08-01-preview'" + } + }, + { + "label": "'Microsoft.Peering/peerAsns@2019-09-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Peering` \nType: `peerAsns` \nAPI Version: `2019-09-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000cf2", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Peering/peerAsns@2019-09-01-preview'" + } + }, + { + "label": "'Microsoft.Peering/peerAsns@2020-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Peering` \nType: `peerAsns` \nAPI Version: `2020-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000cf1", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Peering/peerAsns@2020-01-01-preview'" + } + }, + { + "label": "'Microsoft.Peering/peerAsns@2020-04-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Peering` \nType: `peerAsns` \nAPI Version: `2020-04-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000cf0", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Peering/peerAsns@2020-04-01'" + } + }, + { + "label": "'Microsoft.Peering/peerAsns@2020-10-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Peering` \nType: `peerAsns` \nAPI Version: `2020-10-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000cef", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Peering/peerAsns@2020-10-01'" + } + }, { "label": "'Microsoft.Peering/peeringServices/prefixes@2019-08-01-preview'", "kind": "class", @@ -54391,7 +55870,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cae", + "sortText": "00000d08", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54408,7 +55887,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cad", + "sortText": "00000d07", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54425,7 +55904,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cac", + "sortText": "00000d06", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54442,7 +55921,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cab", + "sortText": "00000d05", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54459,7 +55938,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000caa", + "sortText": "00000d04", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54476,7 +55955,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ca9", + "sortText": "00000d03", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54493,7 +55972,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ca8", + "sortText": "00000d02", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54510,7 +55989,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ca7", + "sortText": "00000d01", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54527,7 +56006,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ca6", + "sortText": "00000d00", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54544,7 +56023,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ca5", + "sortText": "00000cff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54561,7 +56040,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ca1", + "sortText": "00000cfb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54578,7 +56057,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ca0", + "sortText": "00000cfa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54595,7 +56074,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c9f", + "sortText": "00000cf9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54612,7 +56091,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ca4", + "sortText": "00000cfe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54629,7 +56108,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ca3", + "sortText": "00000cfd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54646,7 +56125,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ca2", + "sortText": "00000cfc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54663,7 +56142,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c9e", + "sortText": "00000cf8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54680,7 +56159,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c9d", + "sortText": "00000cf7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54697,7 +56176,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c9c", + "sortText": "00000cf6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54714,7 +56193,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c9b", + "sortText": "00000cf5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54731,7 +56210,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000c9a", + "sortText": "00000cf4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54748,7 +56227,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cb0", + "sortText": "00000d0a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54765,7 +56244,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000caf", + "sortText": "00000d09", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54782,7 +56261,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cb4", + "sortText": "00000d0e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54799,7 +56278,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cb3", + "sortText": "00000d0d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54816,7 +56295,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cb2", + "sortText": "00000d0c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54833,7 +56312,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cb1", + "sortText": "00000d0b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54841,6 +56320,40 @@ "newText": "'Microsoft.Portal/dashboards@2020-09-01-preview'" } }, + { + "label": "'Microsoft.Portal/tenantConfigurations@2019-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Portal` \nType: `tenantConfigurations` \nAPI Version: `2019-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d10", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Portal/tenantConfigurations@2019-01-01-preview'" + } + }, + { + "label": "'Microsoft.Portal/tenantConfigurations@2020-09-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Portal` \nType: `tenantConfigurations` \nAPI Version: `2020-09-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d0f", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Portal/tenantConfigurations@2020-09-01-preview'" + } + }, { "label": "'Microsoft.PowerBI/workspaceCollections@2016-01-29'", "kind": "class", @@ -54850,7 +56363,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cb5", + "sortText": "00000d11", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54867,7 +56380,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cb6", + "sortText": "00000d12", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54884,7 +56397,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cb8", + "sortText": "00000d14", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54901,7 +56414,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cb7", + "sortText": "00000d13", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54918,7 +56431,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cba", + "sortText": "00000d16", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54935,7 +56448,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cb9", + "sortText": "00000d15", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54952,7 +56465,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cbe", + "sortText": "00000d1a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54969,7 +56482,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cbf", + "sortText": "00000d1b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -54986,7 +56499,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cc5", + "sortText": "00000d21", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55003,7 +56516,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cc4", + "sortText": "00000d20", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55020,7 +56533,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cc3", + "sortText": "00000d1f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55037,7 +56550,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cc2", + "sortText": "00000d1e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55054,7 +56567,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cc1", + "sortText": "00000d1d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55071,7 +56584,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cc0", + "sortText": "00000d1c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55088,7 +56601,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cc9", + "sortText": "00000d25", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55105,7 +56618,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cc8", + "sortText": "00000d24", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55122,7 +56635,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cc7", + "sortText": "00000d23", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55139,7 +56652,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cc6", + "sortText": "00000d22", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55156,7 +56669,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cbd", + "sortText": "00000d19", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55173,7 +56686,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cbc", + "sortText": "00000d18", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55190,7 +56703,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ccb", + "sortText": "00000d27", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55207,7 +56720,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cca", + "sortText": "00000d26", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55224,7 +56737,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ccc", + "sortText": "00000d28", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55241,7 +56754,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ccd", + "sortText": "00000d29", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55258,7 +56771,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ccf", + "sortText": "00000d2b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55275,7 +56788,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cce", + "sortText": "00000d2a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55292,7 +56805,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cd2", + "sortText": "00000d2e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55309,7 +56822,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cd1", + "sortText": "00000d2d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55326,7 +56839,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cd0", + "sortText": "00000d2c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55343,7 +56856,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cd8", + "sortText": "00000d34", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55360,7 +56873,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cd7", + "sortText": "00000d33", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55377,7 +56890,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cd6", + "sortText": "00000d32", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55394,7 +56907,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cdd", + "sortText": "00000d39", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55411,7 +56924,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cdc", + "sortText": "00000d38", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55428,7 +56941,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ce0", + "sortText": "00000d3c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55445,7 +56958,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cdf", + "sortText": "00000d3b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55462,7 +56975,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cde", + "sortText": "00000d3a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55479,7 +56992,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ce3", + "sortText": "00000d3f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55496,7 +57009,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ce2", + "sortText": "00000d3e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55513,7 +57026,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ce1", + "sortText": "00000d3d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55530,7 +57043,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cdb", + "sortText": "00000d37", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55547,7 +57060,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cda", + "sortText": "00000d36", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55564,7 +57077,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000cd9", + "sortText": "00000d35", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55581,7 +57094,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ce5", + "sortText": "00000d41", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -55598,1508 +57111,2341 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ce4", + "sortText": "00000d40", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders@2018-07-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2016-08-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings` \nAPI Version: `2016-08-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d44", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2016-08-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-01-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings` \nAPI Version: `2018-01-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d43", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-01-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-07-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings` \nAPI Version: `2018-07-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d42", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-07-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2016-08-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationvCenters` \nAPI Version: `2016-08-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d47", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2016-08-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-01-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationvCenters` \nAPI Version: `2018-01-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d46", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-01-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-07-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationvCenters` \nAPI Version: `2018-07-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d45", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-07-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2016-08-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics` \nAPI Version: `2016-08-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d31", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2016-08-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-01-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics` \nAPI Version: `2018-01-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d30", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-01-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-07-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics` \nAPI Version: `2018-07-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d2f", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-07-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2016-08-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationPolicies` \nAPI Version: `2016-08-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d4a", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2016-08-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-01-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationPolicies` \nAPI Version: `2018-01-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d49", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-01-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-07-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationPolicies` \nAPI Version: `2018-07-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d48", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-07-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationProtectionIntents@2018-07-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationProtectionIntents` \nAPI Version: `2018-07-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d4b", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationProtectionIntents@2018-07-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2016-08-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationRecoveryPlans` \nAPI Version: `2016-08-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d4e", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2016-08-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-01-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationRecoveryPlans` \nAPI Version: `2018-01-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d4d", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-01-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-07-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationRecoveryPlans` \nAPI Version: `2018-07-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d4c", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-07-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults/replicationVaultSettings@2018-07-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationVaultSettings` \nAPI Version: `2018-07-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d4f", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults/replicationVaultSettings@2018-07-10'" + } + }, + { + "label": "'Microsoft.RecoveryServices/vaults@2016-06-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults` \nAPI Version: `2016-06-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d17", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RecoveryServices/vaults@2016-06-01'" + } + }, + { + "label": "'Microsoft.RedHatOpenShift/openShiftClusters@2020-04-30'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RedHatOpenShift` \nType: `openShiftClusters` \nAPI Version: `2020-04-30`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d51", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RedHatOpenShift/openShiftClusters@2020-04-30'" + } + }, + { + "label": "'Microsoft.RedHatOpenShift/openShiftClusters@2021-01-31-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.RedHatOpenShift` \nType: `openShiftClusters` \nAPI Version: `2021-01-31-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d50", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.RedHatOpenShift/openShiftClusters@2021-01-31-preview'" + } + }, + { + "label": "'Microsoft.Relay/namespaces/AuthorizationRules@2016-07-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2016-07-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d56", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces/AuthorizationRules@2016-07-01'" + } + }, + { + "label": "'Microsoft.Relay/namespaces/HybridConnections/authorizationRules@2016-07-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/HybridConnections/authorizationRules` \nAPI Version: `2016-07-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d5a", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces/HybridConnections/authorizationRules@2016-07-01'" + } + }, + { + "label": "'Microsoft.Relay/namespaces/HybridConnections@2016-07-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/HybridConnections` \nAPI Version: `2016-07-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d58", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces/HybridConnections@2016-07-01'" + } + }, + { + "label": "'Microsoft.Relay/namespaces/WcfRelays/authorizationRules@2016-07-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/WcfRelays/authorizationRules` \nAPI Version: `2016-07-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d5f", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces/WcfRelays/authorizationRules@2016-07-01'" + } + }, + { + "label": "'Microsoft.Relay/namespaces/WcfRelays@2016-07-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/WcfRelays` \nAPI Version: `2016-07-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d5d", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces/WcfRelays@2016-07-01'" + } + }, + { + "label": "'Microsoft.Relay/namespaces/authorizationRules@2017-04-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/authorizationRules` \nAPI Version: `2017-04-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d55", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces/authorizationRules@2017-04-01'" + } + }, + { + "label": "'Microsoft.Relay/namespaces/hybridConnections/authorizationRules@2017-04-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/hybridConnections/authorizationRules` \nAPI Version: `2017-04-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d59", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces/hybridConnections/authorizationRules@2017-04-01'" + } + }, + { + "label": "'Microsoft.Relay/namespaces/hybridConnections@2017-04-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/hybridConnections` \nAPI Version: `2017-04-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d57", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces/hybridConnections@2017-04-01'" + } + }, + { + "label": "'Microsoft.Relay/namespaces/privateEndpointConnections@2018-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/privateEndpointConnections` \nAPI Version: `2018-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d5b", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces/privateEndpointConnections@2018-01-01-preview'" + } + }, + { + "label": "'Microsoft.Relay/namespaces/wcfRelays/authorizationRules@2017-04-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/wcfRelays/authorizationRules` \nAPI Version: `2017-04-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d5e", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces/wcfRelays/authorizationRules@2017-04-01'" + } + }, + { + "label": "'Microsoft.Relay/namespaces/wcfRelays@2017-04-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/wcfRelays` \nAPI Version: `2017-04-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d5c", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces/wcfRelays@2017-04-01'" + } + }, + { + "label": "'Microsoft.Relay/namespaces@2016-07-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces` \nAPI Version: `2016-07-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d54", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces@2016-07-01'" + } + }, + { + "label": "'Microsoft.Relay/namespaces@2017-04-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces` \nAPI Version: `2017-04-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d53", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces@2017-04-01'" + } + }, + { + "label": "'Microsoft.Relay/namespaces@2018-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces` \nAPI Version: `2018-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d52", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Relay/namespaces@2018-01-01-preview'" + } + }, + { + "label": "'Microsoft.ResourceGraph/queries@2018-09-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.ResourceGraph` \nType: `queries` \nAPI Version: `2018-09-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d60", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.ResourceGraph/queries@2018-09-01-preview'" + } + }, + { + "label": "'Microsoft.Resources/deploymentScripts@2019-10-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deploymentScripts` \nAPI Version: `2019-10-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d70", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Resources/deploymentScripts@2019-10-01-preview'" + } + }, + { + "label": "'Microsoft.Resources/deploymentScripts@2020-10-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deploymentScripts` \nAPI Version: `2020-10-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d6f", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Resources/deploymentScripts@2020-10-01'" + } + }, + { + "label": "'Microsoft.Resources/deployments@2015-11-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2015-11-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d6e", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Resources/deployments@2015-11-01'" + } + }, + { + "label": "'Microsoft.Resources/deployments@2016-02-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2016-02-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d6d", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Resources/deployments@2016-02-01'" + } + }, + { + "label": "'Microsoft.Resources/deployments@2016-07-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2016-07-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d6c", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Resources/deployments@2016-07-01'" + } + }, + { + "label": "'Microsoft.Resources/deployments@2016-09-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2016-09-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d6b", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Resources/deployments@2016-09-01'" + } + }, + { + "label": "'Microsoft.Resources/deployments@2017-05-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2017-05-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d6a", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Resources/deployments@2017-05-10'" + } + }, + { + "label": "'Microsoft.Resources/deployments@2018-02-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2018-02-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d69", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Resources/deployments@2018-02-01'" + } + }, + { + "label": "'Microsoft.Resources/deployments@2018-05-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2018-05-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d68", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Resources/deployments@2018-05-01'" + } + }, + { + "label": "'Microsoft.Resources/deployments@2019-03-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-03-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d67", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Resources/deployments@2019-03-01'" + } + }, + { + "label": "'Microsoft.Resources/deployments@2019-05-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-05-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d66", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Resources/deployments@2019-05-01'" + } + }, + { + "label": "'Microsoft.Resources/deployments@2019-05-10'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-05-10`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d65", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Resources/deployments@2019-05-10'" + } + }, + { + "label": "'Microsoft.Resources/deployments@2019-07-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-07-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d64", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Resources/deployments@2019-07-01'" + } + }, + { + "label": "'Microsoft.Resources/deployments@2019-08-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-08-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d63", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders@2018-07-10'" + "newText": "'Microsoft.Resources/deployments@2019-08-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2016-08-10'", + "label": "'Microsoft.Resources/deployments@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce8", + "sortText": "00000d62", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2016-08-10'" + "newText": "'Microsoft.Resources/deployments@2019-10-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-01-10'", + "label": "'Microsoft.Resources/deployments@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce7", + "sortText": "00000d61", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-01-10'" + "newText": "'Microsoft.Resources/deployments@2020-06-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-07-10'", + "label": "'Microsoft.Resources/resourceGroups@2015-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2015-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce6", + "sortText": "00000d7e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-07-10'" + "newText": "'Microsoft.Resources/resourceGroups@2015-11-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2016-08-10'", + "label": "'Microsoft.Resources/resourceGroups@2016-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationvCenters` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2016-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ceb", + "sortText": "00000d7d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2016-08-10'" + "newText": "'Microsoft.Resources/resourceGroups@2016-02-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-01-10'", + "label": "'Microsoft.Resources/resourceGroups@2016-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationvCenters` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2016-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cea", + "sortText": "00000d7c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-01-10'" + "newText": "'Microsoft.Resources/resourceGroups@2016-07-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-07-10'", + "label": "'Microsoft.Resources/resourceGroups@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationvCenters` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce9", + "sortText": "00000d7b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-07-10'" + "newText": "'Microsoft.Resources/resourceGroups@2016-09-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2016-08-10'", + "label": "'Microsoft.Resources/resourceGroups@2017-05-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2017-05-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000cd5", + "sortText": "00000d7a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2016-08-10'" + "newText": "'Microsoft.Resources/resourceGroups@2017-05-10'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-01-10'", + "label": "'Microsoft.Resources/resourceGroups@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cd4", + "sortText": "00000d79", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-01-10'" + "newText": "'Microsoft.Resources/resourceGroups@2018-02-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-07-10'", + "label": "'Microsoft.Resources/resourceGroups@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cd3", + "sortText": "00000d78", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-07-10'" + "newText": "'Microsoft.Resources/resourceGroups@2018-05-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2016-08-10'", + "label": "'Microsoft.Resources/resourceGroups@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationPolicies` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cee", + "sortText": "00000d77", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2016-08-10'" + "newText": "'Microsoft.Resources/resourceGroups@2019-03-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-01-10'", + "label": "'Microsoft.Resources/resourceGroups@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationPolicies` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ced", + "sortText": "00000d76", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-01-10'" + "newText": "'Microsoft.Resources/resourceGroups@2019-05-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-07-10'", + "label": "'Microsoft.Resources/resourceGroups@2019-05-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationPolicies` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2019-05-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000cec", + "sortText": "00000d75", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-07-10'" + "newText": "'Microsoft.Resources/resourceGroups@2019-05-10'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationProtectionIntents@2018-07-10'", + "label": "'Microsoft.Resources/resourceGroups@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationProtectionIntents` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cef", + "sortText": "00000d74", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationProtectionIntents@2018-07-10'" + "newText": "'Microsoft.Resources/resourceGroups@2019-07-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2016-08-10'", + "label": "'Microsoft.Resources/resourceGroups@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationRecoveryPlans` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf2", + "sortText": "00000d73", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2016-08-10'" + "newText": "'Microsoft.Resources/resourceGroups@2019-08-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-01-10'", + "label": "'Microsoft.Resources/resourceGroups@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationRecoveryPlans` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf1", + "sortText": "00000d72", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-01-10'" + "newText": "'Microsoft.Resources/resourceGroups@2019-10-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-07-10'", + "label": "'Microsoft.Resources/resourceGroups@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationRecoveryPlans` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf0", + "sortText": "00000d71", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-07-10'" + "newText": "'Microsoft.Resources/resourceGroups@2020-06-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationVaultSettings@2018-07-10'", + "label": "'Microsoft.Resources/tags@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationVaultSettings` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.Resources` \nType: `tags` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf3", + "sortText": "00000d80", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationVaultSettings@2018-07-10'" + "newText": "'Microsoft.Resources/tags@2019-10-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults@2016-06-01'", + "label": "'Microsoft.Resources/tags@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Resources` \nType: `tags` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cbb", + "sortText": "00000d7f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults@2016-06-01'" + "newText": "'Microsoft.Resources/tags@2020-06-01'" } }, { - "label": "'Microsoft.RedHatOpenShift/openShiftClusters@2020-04-30'", + "label": "'Microsoft.Resources/templateSpecs/versions@2019-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RedHatOpenShift` \nType: `openShiftClusters` \nAPI Version: `2020-04-30`" + "value": "Namespace: `Microsoft.Resources` \nType: `templateSpecs/versions` \nAPI Version: `2019-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf5", + "sortText": "00000d82", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RedHatOpenShift/openShiftClusters@2020-04-30'" + "newText": "'Microsoft.Resources/templateSpecs/versions@2019-06-01-preview'" } }, { - "label": "'Microsoft.RedHatOpenShift/openShiftClusters@2021-01-31-preview'", + "label": "'Microsoft.Resources/templateSpecs@2019-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RedHatOpenShift` \nType: `openShiftClusters` \nAPI Version: `2021-01-31-preview`" + "value": "Namespace: `Microsoft.Resources` \nType: `templateSpecs` \nAPI Version: `2019-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf4", + "sortText": "00000d81", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RedHatOpenShift/openShiftClusters@2021-01-31-preview'" + "newText": "'Microsoft.Resources/templateSpecs@2019-06-01-preview'" } }, { - "label": "'Microsoft.Relay/namespaces/AuthorizationRules@2016-07-01'", + "label": "'Microsoft.SaaS/resources@2018-03-01-beta'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.SaaS` \nType: `resources` \nAPI Version: `2018-03-01-beta`" }, "deprecated": false, "preselect": false, - "sortText": "00000cfa", + "sortText": "00000d83", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/AuthorizationRules@2016-07-01'" + "newText": "'Microsoft.SaaS/resources@2018-03-01-beta'" } }, { - "label": "'Microsoft.Relay/namespaces/HybridConnections/authorizationRules@2016-07-01'", + "label": "'Microsoft.Scheduler/jobCollections/jobs@2014-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/HybridConnections/authorizationRules` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections/jobs` \nAPI Version: `2014-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000cfe", + "sortText": "00000d89", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/HybridConnections/authorizationRules@2016-07-01'" + "newText": "'Microsoft.Scheduler/jobCollections/jobs@2014-08-01-preview'" } }, { - "label": "'Microsoft.Relay/namespaces/HybridConnections@2016-07-01'", + "label": "'Microsoft.Scheduler/jobCollections/jobs@2016-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/HybridConnections` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections/jobs` \nAPI Version: `2016-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cfc", + "sortText": "00000d88", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/HybridConnections@2016-07-01'" + "newText": "'Microsoft.Scheduler/jobCollections/jobs@2016-01-01'" } }, { - "label": "'Microsoft.Relay/namespaces/WcfRelays/authorizationRules@2016-07-01'", + "label": "'Microsoft.Scheduler/jobCollections/jobs@2016-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/WcfRelays/authorizationRules` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections/jobs` \nAPI Version: `2016-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d03", + "sortText": "00000d87", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/WcfRelays/authorizationRules@2016-07-01'" + "newText": "'Microsoft.Scheduler/jobCollections/jobs@2016-03-01'" } }, { - "label": "'Microsoft.Relay/namespaces/WcfRelays@2016-07-01'", + "label": "'Microsoft.Scheduler/jobCollections@2014-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/WcfRelays` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections` \nAPI Version: `2014-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d01", + "sortText": "00000d86", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/WcfRelays@2016-07-01'" + "newText": "'Microsoft.Scheduler/jobCollections@2014-08-01-preview'" } }, { - "label": "'Microsoft.Relay/namespaces/authorizationRules@2017-04-01'", + "label": "'Microsoft.Scheduler/jobCollections@2016-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/authorizationRules` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections` \nAPI Version: `2016-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf9", + "sortText": "00000d85", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/authorizationRules@2017-04-01'" + "newText": "'Microsoft.Scheduler/jobCollections@2016-01-01'" } }, { - "label": "'Microsoft.Relay/namespaces/hybridConnections/authorizationRules@2017-04-01'", + "label": "'Microsoft.Scheduler/jobCollections@2016-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/hybridConnections/authorizationRules` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections` \nAPI Version: `2016-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cfd", + "sortText": "00000d84", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/hybridConnections/authorizationRules@2017-04-01'" + "newText": "'Microsoft.Scheduler/jobCollections@2016-03-01'" } }, { - "label": "'Microsoft.Relay/namespaces/hybridConnections@2017-04-01'", + "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/hybridConnections` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000cfb", + "sortText": "00000d93", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/hybridConnections@2017-04-01'" + "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2019-10-01-preview'" } }, { - "label": "'Microsoft.Relay/namespaces/privateEndpointConnections@2018-01-01-preview'", + "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-03-13'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/privateEndpointConnections` \nAPI Version: `2018-01-01-preview`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2020-03-13`" }, "deprecated": false, "preselect": false, - "sortText": "00000cff", + "sortText": "00000d92", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/privateEndpointConnections@2018-01-01-preview'" + "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-03-13'" } }, { - "label": "'Microsoft.Relay/namespaces/wcfRelays/authorizationRules@2017-04-01'", + "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/wcfRelays/authorizationRules` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d02", + "sortText": "00000d91", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/wcfRelays/authorizationRules@2017-04-01'" + "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01'" } }, { - "label": "'Microsoft.Relay/namespaces/wcfRelays@2017-04-01'", + "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/wcfRelays` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2020-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d00", + "sortText": "00000d90", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/wcfRelays@2017-04-01'" + "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01-preview'" } }, { - "label": "'Microsoft.Relay/namespaces@2016-07-01'", + "label": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices/sharedPrivateLinkResources` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf8", + "sortText": "00000d95", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces@2016-07-01'" + "newText": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01'" } }, { - "label": "'Microsoft.Relay/namespaces@2017-04-01'", + "label": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices/sharedPrivateLinkResources` \nAPI Version: `2020-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf7", + "sortText": "00000d94", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces@2017-04-01'" + "newText": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01-preview'" } }, { - "label": "'Microsoft.Relay/namespaces@2018-01-01-preview'", + "label": "'Microsoft.Search/searchServices@2015-02-28'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces` \nAPI Version: `2018-01-01-preview`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2015-02-28`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf6", + "sortText": "00000d8f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces@2018-01-01-preview'" + "newText": "'Microsoft.Search/searchServices@2015-02-28'" } }, { - "label": "'Microsoft.ResourceGraph/queries@2018-09-01-preview'", + "label": "'Microsoft.Search/searchServices@2015-08-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ResourceGraph` \nType: `queries` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2015-08-19`" }, "deprecated": false, "preselect": false, - "sortText": "00000d04", + "sortText": "00000d8e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ResourceGraph/queries@2018-09-01-preview'" + "newText": "'Microsoft.Search/searchServices@2015-08-19'" } }, { - "label": "'Microsoft.Resources/deploymentScripts@2019-10-01-preview'", + "label": "'Microsoft.Search/searchServices@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deploymentScripts` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d14", + "sortText": "00000d8d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deploymentScripts@2019-10-01-preview'" + "newText": "'Microsoft.Search/searchServices@2019-10-01-preview'" } }, { - "label": "'Microsoft.Resources/deploymentScripts@2020-10-01'", + "label": "'Microsoft.Search/searchServices@2020-03-13'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deploymentScripts` \nAPI Version: `2020-10-01`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2020-03-13`" }, "deprecated": false, "preselect": false, - "sortText": "00000d13", + "sortText": "00000d8c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deploymentScripts@2020-10-01'" + "newText": "'Microsoft.Search/searchServices@2020-03-13'" } }, { - "label": "'Microsoft.Resources/deployments@2015-11-01'", + "label": "'Microsoft.Search/searchServices@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2015-11-01`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d12", + "sortText": "00000d8b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2015-11-01'" + "newText": "'Microsoft.Search/searchServices@2020-08-01'" } }, { - "label": "'Microsoft.Resources/deployments@2016-02-01'", + "label": "'Microsoft.Search/searchServices@2020-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2016-02-01`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2020-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d11", + "sortText": "00000d8a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2016-02-01'" + "newText": "'Microsoft.Search/searchServices@2020-08-01-preview'" } }, { - "label": "'Microsoft.Resources/deployments@2016-07-01'", + "label": "'Microsoft.Security/advancedThreatProtectionSettings@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.Security` \nType: `advancedThreatProtectionSettings` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d10", + "sortText": "00000d97", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2016-07-01'" + "newText": "'Microsoft.Security/advancedThreatProtectionSettings@2017-08-01-preview'" } }, { - "label": "'Microsoft.Resources/deployments@2016-09-01'", + "label": "'Microsoft.Security/advancedThreatProtectionSettings@2019-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Security` \nType: `advancedThreatProtectionSettings` \nAPI Version: `2019-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d0f", + "sortText": "00000d96", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2016-09-01'" + "newText": "'Microsoft.Security/advancedThreatProtectionSettings@2019-01-01'" } }, { - "label": "'Microsoft.Resources/deployments@2017-05-10'", + "label": "'Microsoft.Security/alertsSuppressionRules@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2017-05-10`" + "value": "Namespace: `Microsoft.Security` \nType: `alertsSuppressionRules` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d0e", + "sortText": "00000d98", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2017-05-10'" + "newText": "'Microsoft.Security/alertsSuppressionRules@2019-01-01-preview'" } }, { - "label": "'Microsoft.Resources/deployments@2018-02-01'", + "label": "'Microsoft.Security/assessmentMetadata@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Security` \nType: `assessmentMetadata` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d0d", + "sortText": "00000d9a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2018-02-01'" + "newText": "'Microsoft.Security/assessmentMetadata@2019-01-01-preview'" } }, { - "label": "'Microsoft.Resources/deployments@2018-05-01'", + "label": "'Microsoft.Security/assessmentMetadata@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Security` \nType: `assessmentMetadata` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d0c", + "sortText": "00000d99", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2018-05-01'" + "newText": "'Microsoft.Security/assessmentMetadata@2020-01-01'" } }, { - "label": "'Microsoft.Resources/deployments@2019-03-01'", + "label": "'Microsoft.Security/assessments@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.Security` \nType: `assessments` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d0b", + "sortText": "00000d9c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2019-03-01'" + "newText": "'Microsoft.Security/assessments@2019-01-01-preview'" } }, { - "label": "'Microsoft.Resources/deployments@2019-05-01'", + "label": "'Microsoft.Security/assessments@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Security` \nType: `assessments` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d0a", + "sortText": "00000d9b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2019-05-01'" + "newText": "'Microsoft.Security/assessments@2020-01-01'" } }, { - "label": "'Microsoft.Resources/deployments@2019-05-10'", + "label": "'Microsoft.Security/autoProvisioningSettings@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-05-10`" + "value": "Namespace: `Microsoft.Security` \nType: `autoProvisioningSettings` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d09", + "sortText": "00000d9e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2019-05-10'" + "newText": "'Microsoft.Security/autoProvisioningSettings@2017-08-01-preview'" } }, { - "label": "'Microsoft.Resources/deployments@2019-07-01'", + "label": "'Microsoft.Security/automations@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Security` \nType: `automations` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d08", + "sortText": "00000d9d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2019-07-01'" + "newText": "'Microsoft.Security/automations@2019-01-01-preview'" } }, { - "label": "'Microsoft.Resources/deployments@2019-08-01'", + "label": "'Microsoft.Security/connectors@2020-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Security` \nType: `connectors` \nAPI Version: `2020-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d07", + "sortText": "00000d9f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2019-08-01'" + "newText": "'Microsoft.Security/connectors@2020-01-01-preview'" } }, { - "label": "'Microsoft.Resources/deployments@2019-10-01'", + "label": "'Microsoft.Security/deviceSecurityGroups@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.Security` \nType: `deviceSecurityGroups` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d06", + "sortText": "00000da1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2019-10-01'" + "newText": "'Microsoft.Security/deviceSecurityGroups@2017-08-01-preview'" } }, { - "label": "'Microsoft.Resources/deployments@2020-06-01'", + "label": "'Microsoft.Security/deviceSecurityGroups@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Security` \nType: `deviceSecurityGroups` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d05", + "sortText": "00000da0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2020-06-01'" + "newText": "'Microsoft.Security/deviceSecurityGroups@2019-08-01'" } }, { - "label": "'Microsoft.Resources/tags@2019-10-01'", + "label": "'Microsoft.Security/informationProtectionPolicies@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `tags` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.Security` \nType: `informationProtectionPolicies` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d16", + "sortText": "00000da2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/tags@2019-10-01'" + "newText": "'Microsoft.Security/informationProtectionPolicies@2017-08-01-preview'" } }, { - "label": "'Microsoft.Resources/tags@2020-06-01'", + "label": "'Microsoft.Security/iotDefenderSettings@2020-08-06-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `tags` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Security` \nType: `iotDefenderSettings` \nAPI Version: `2020-08-06-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d15", + "sortText": "00000da3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/tags@2020-06-01'" + "newText": "'Microsoft.Security/iotDefenderSettings@2020-08-06-preview'" } }, { - "label": "'Microsoft.Resources/templateSpecs/versions@2019-06-01-preview'", + "label": "'Microsoft.Security/iotSecuritySolutions@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `templateSpecs/versions` \nAPI Version: `2019-06-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `iotSecuritySolutions` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d18", + "sortText": "00000da5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/templateSpecs/versions@2019-06-01-preview'" + "newText": "'Microsoft.Security/iotSecuritySolutions@2017-08-01-preview'" } }, { - "label": "'Microsoft.Resources/templateSpecs@2019-06-01-preview'", + "label": "'Microsoft.Security/iotSecuritySolutions@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `templateSpecs` \nAPI Version: `2019-06-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `iotSecuritySolutions` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d17", + "sortText": "00000da4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/templateSpecs@2019-06-01-preview'" + "newText": "'Microsoft.Security/iotSecuritySolutions@2019-08-01'" } }, { - "label": "'Microsoft.SaaS/resources@2018-03-01-beta'", + "label": "'Microsoft.Security/iotSensors@2020-08-06-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SaaS` \nType: `resources` \nAPI Version: `2018-03-01-beta`" + "value": "Namespace: `Microsoft.Security` \nType: `iotSensors` \nAPI Version: `2020-08-06-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d19", + "sortText": "00000da6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SaaS/resources@2018-03-01-beta'" + "newText": "'Microsoft.Security/iotSensors@2020-08-06-preview'" } }, { - "label": "'Microsoft.Scheduler/jobCollections/jobs@2014-08-01-preview'", + "label": "'Microsoft.Security/locations/applicationWhitelistings@2015-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections/jobs` \nAPI Version: `2014-08-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `locations/applicationWhitelistings` \nAPI Version: `2015-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d1f", + "sortText": "00000da8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Scheduler/jobCollections/jobs@2014-08-01-preview'" + "newText": "'Microsoft.Security/locations/applicationWhitelistings@2015-06-01-preview'" } }, { - "label": "'Microsoft.Scheduler/jobCollections/jobs@2016-01-01'", + "label": "'Microsoft.Security/locations/applicationWhitelistings@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections/jobs` \nAPI Version: `2016-01-01`" + "value": "Namespace: `Microsoft.Security` \nType: `locations/applicationWhitelistings` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d1e", + "sortText": "00000da7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Scheduler/jobCollections/jobs@2016-01-01'" + "newText": "'Microsoft.Security/locations/applicationWhitelistings@2020-01-01'" } }, { - "label": "'Microsoft.Scheduler/jobCollections/jobs@2016-03-01'", + "label": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2015-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections/jobs` \nAPI Version: `2016-03-01`" + "value": "Namespace: `Microsoft.Security` \nType: `locations/jitNetworkAccessPolicies` \nAPI Version: `2015-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d1d", + "sortText": "00000daa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Scheduler/jobCollections/jobs@2016-03-01'" + "newText": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2015-06-01-preview'" } }, { - "label": "'Microsoft.Scheduler/jobCollections@2014-08-01-preview'", + "label": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections` \nAPI Version: `2014-08-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `locations/jitNetworkAccessPolicies` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d1c", + "sortText": "00000da9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Scheduler/jobCollections@2014-08-01-preview'" + "newText": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2020-01-01'" } }, { - "label": "'Microsoft.Scheduler/jobCollections@2016-01-01'", + "label": "'Microsoft.Security/pricings@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections` \nAPI Version: `2016-01-01`" + "value": "Namespace: `Microsoft.Security` \nType: `pricings` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d1b", + "sortText": "00000dac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Scheduler/jobCollections@2016-01-01'" + "newText": "'Microsoft.Security/pricings@2017-08-01-preview'" } }, { - "label": "'Microsoft.Scheduler/jobCollections@2016-03-01'", + "label": "'Microsoft.Security/pricings@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections` \nAPI Version: `2016-03-01`" + "value": "Namespace: `Microsoft.Security` \nType: `pricings` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d1a", + "sortText": "00000dab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Scheduler/jobCollections@2016-03-01'" + "newText": "'Microsoft.Security/pricings@2018-06-01'" } }, { - "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2019-10-01-preview'", + "label": "'Microsoft.Security/securityContacts@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `securityContacts` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d29", + "sortText": "00000dad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2019-10-01-preview'" + "newText": "'Microsoft.Security/securityContacts@2017-08-01-preview'" } }, { - "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-03-13'", + "label": "'Microsoft.Security/settings@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2020-03-13`" + "value": "Namespace: `Microsoft.Security` \nType: `settings` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d28", + "sortText": "00000daf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-03-13'" + "newText": "'Microsoft.Security/settings@2017-08-01-preview'" } }, { - "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01'", + "label": "'Microsoft.Security/settings@2019-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.Security` \nType: `settings` \nAPI Version: `2019-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d27", + "sortText": "00000dae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01'" + "newText": "'Microsoft.Security/settings@2019-01-01'" } }, { - "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01-preview'", + "label": "'Microsoft.Security/workspaceSettings@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2020-08-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `workspaceSettings` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d26", + "sortText": "00000db0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01-preview'" + "newText": "'Microsoft.Security/workspaceSettings@2017-08-01-preview'" } }, { - "label": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01'", + "label": "'Microsoft.SecurityInsights/alertRules/actions@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices/sharedPrivateLinkResources` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `alertRules/actions` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d2b", + "sortText": "00000db4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01'" + "newText": "'Microsoft.SecurityInsights/alertRules/actions@2019-01-01-preview'" } }, { - "label": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01-preview'", + "label": "'Microsoft.SecurityInsights/alertRules/actions@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices/sharedPrivateLinkResources` \nAPI Version: `2020-08-01-preview`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `alertRules/actions` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d2a", + "sortText": "00000db3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01-preview'" + "newText": "'Microsoft.SecurityInsights/alertRules/actions@2020-01-01'" } }, { - "label": "'Microsoft.Search/searchServices@2015-02-28'", + "label": "'Microsoft.SecurityInsights/alertRules@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2015-02-28`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `alertRules` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d25", + "sortText": "00000db2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices@2015-02-28'" + "newText": "'Microsoft.SecurityInsights/alertRules@2019-01-01-preview'" } }, { - "label": "'Microsoft.Search/searchServices@2015-08-19'", + "label": "'Microsoft.SecurityInsights/alertRules@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2015-08-19`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `alertRules` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d24", + "sortText": "00000db1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices@2015-08-19'" + "newText": "'Microsoft.SecurityInsights/alertRules@2020-01-01'" } }, { - "label": "'Microsoft.Search/searchServices@2019-10-01-preview'", + "label": "'Microsoft.SecurityInsights/bookmarks/relations@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `bookmarks/relations` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d23", + "sortText": "00000db7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices@2019-10-01-preview'" + "newText": "'Microsoft.SecurityInsights/bookmarks/relations@2019-01-01-preview'" } }, { - "label": "'Microsoft.Search/searchServices@2020-03-13'", + "label": "'Microsoft.SecurityInsights/bookmarks@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2020-03-13`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `bookmarks` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d22", + "sortText": "00000db6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices@2020-03-13'" + "newText": "'Microsoft.SecurityInsights/bookmarks@2019-01-01-preview'" } }, { - "label": "'Microsoft.Search/searchServices@2020-08-01'", + "label": "'Microsoft.SecurityInsights/bookmarks@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `bookmarks` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d21", + "sortText": "00000db5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices@2020-08-01'" + "newText": "'Microsoft.SecurityInsights/bookmarks@2020-01-01'" } }, { - "label": "'Microsoft.Search/searchServices@2020-08-01-preview'", + "label": "'Microsoft.SecurityInsights/cases/comments@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2020-08-01-preview`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `cases/comments` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d20", + "sortText": "00000db9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices@2020-08-01-preview'" + "newText": "'Microsoft.SecurityInsights/cases/comments@2019-01-01-preview'" } }, { - "label": "'Microsoft.Security/advancedThreatProtectionSettings@2017-08-01-preview'", + "label": "'Microsoft.SecurityInsights/cases/relations@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `advancedThreatProtectionSettings` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `cases/relations` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d2d", + "sortText": "00000dba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/advancedThreatProtectionSettings@2017-08-01-preview'" + "newText": "'Microsoft.SecurityInsights/cases/relations@2019-01-01-preview'" } }, { - "label": "'Microsoft.Security/advancedThreatProtectionSettings@2019-01-01'", + "label": "'Microsoft.SecurityInsights/cases@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `advancedThreatProtectionSettings` \nAPI Version: `2019-01-01`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `cases` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d2c", + "sortText": "00000db8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/advancedThreatProtectionSettings@2019-01-01'" + "newText": "'Microsoft.SecurityInsights/cases@2019-01-01-preview'" } }, { - "label": "'Microsoft.Security/assessments@2019-01-01-preview'", + "label": "'Microsoft.SecurityInsights/dataConnectors@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `assessments` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `dataConnectors` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d2f", + "sortText": "00000dbc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/assessments@2019-01-01-preview'" + "newText": "'Microsoft.SecurityInsights/dataConnectors@2019-01-01-preview'" } }, { - "label": "'Microsoft.Security/assessments@2020-01-01'", + "label": "'Microsoft.SecurityInsights/dataConnectors@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `assessments` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `dataConnectors` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d2e", + "sortText": "00000dbb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/assessments@2020-01-01'" + "newText": "'Microsoft.SecurityInsights/dataConnectors@2020-01-01'" } }, { - "label": "'Microsoft.Security/automations@2019-01-01-preview'", + "label": "'Microsoft.SecurityInsights/incidents/comments@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `automations` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `incidents/comments` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d30", + "sortText": "00000dc0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/automations@2019-01-01-preview'" + "newText": "'Microsoft.SecurityInsights/incidents/comments@2019-01-01-preview'" } }, { - "label": "'Microsoft.Security/deviceSecurityGroups@2017-08-01-preview'", + "label": "'Microsoft.SecurityInsights/incidents/comments@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `deviceSecurityGroups` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `incidents/comments` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d32", + "sortText": "00000dbf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/deviceSecurityGroups@2017-08-01-preview'" + "newText": "'Microsoft.SecurityInsights/incidents/comments@2020-01-01'" } }, { - "label": "'Microsoft.Security/deviceSecurityGroups@2019-08-01'", + "label": "'Microsoft.SecurityInsights/incidents/relations@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `deviceSecurityGroups` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `incidents/relations` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d31", + "sortText": "00000dc1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/deviceSecurityGroups@2019-08-01'" + "newText": "'Microsoft.SecurityInsights/incidents/relations@2019-01-01-preview'" } }, { - "label": "'Microsoft.Security/informationProtectionPolicies@2017-08-01-preview'", + "label": "'Microsoft.SecurityInsights/incidents@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `informationProtectionPolicies` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `incidents` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d33", + "sortText": "00000dbe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/informationProtectionPolicies@2017-08-01-preview'" + "newText": "'Microsoft.SecurityInsights/incidents@2019-01-01-preview'" } }, { - "label": "'Microsoft.Security/iotSecuritySolutions@2017-08-01-preview'", + "label": "'Microsoft.SecurityInsights/incidents@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `iotSecuritySolutions` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `incidents` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d35", + "sortText": "00000dbd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/iotSecuritySolutions@2017-08-01-preview'" + "newText": "'Microsoft.SecurityInsights/incidents@2020-01-01'" } }, { - "label": "'Microsoft.Security/iotSecuritySolutions@2019-08-01'", + "label": "'Microsoft.SecurityInsights/settings@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `iotSecuritySolutions` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `settings` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d34", + "sortText": "00000dc2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/iotSecuritySolutions@2019-08-01'" + "newText": "'Microsoft.SecurityInsights/settings@2019-01-01-preview'" } }, { - "label": "'Microsoft.Security/iotSensors@2020-08-06-preview'", + "label": "'Microsoft.SecurityInsights/threatIntelligence/indicators@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `iotSensors` \nAPI Version: `2020-08-06-preview`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `threatIntelligence/indicators` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d36", + "sortText": "00000dc3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/iotSensors@2020-08-06-preview'" + "newText": "'Microsoft.SecurityInsights/threatIntelligence/indicators@2019-01-01-preview'" } }, { - "label": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2015-06-01-preview'", + "label": "'Microsoft.SecurityInsights/watchlists/watchlistItems@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `locations/jitNetworkAccessPolicies` \nAPI Version: `2015-06-01-preview`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `watchlists/watchlistItems` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d38", + "sortText": "00000dc5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2015-06-01-preview'" + "newText": "'Microsoft.SecurityInsights/watchlists/watchlistItems@2019-01-01-preview'" } }, { - "label": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2020-01-01'", + "label": "'Microsoft.SecurityInsights/watchlists@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `locations/jitNetworkAccessPolicies` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.SecurityInsights` \nType: `watchlists` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d37", + "sortText": "00000dc4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2020-01-01'" + "newText": "'Microsoft.SecurityInsights/watchlists@2019-01-01-preview'" } }, { - "label": "'Microsoft.Security/pricings@2017-08-01-preview'", + "label": "'Microsoft.SerialConsole/serialPorts@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `pricings` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.SerialConsole` \nType: `serialPorts` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d39", + "sortText": "00000dc6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/pricings@2017-08-01-preview'" + "newText": "'Microsoft.SerialConsole/serialPorts@2018-05-01'" } }, { @@ -57111,7 +59457,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d3f", + "sortText": "00000dcc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57128,7 +59474,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d3e", + "sortText": "00000dcb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57145,7 +59491,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d3d", + "sortText": "00000dca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57162,7 +59508,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d41", + "sortText": "00000dce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57179,7 +59525,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d40", + "sortText": "00000dcd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57196,7 +59542,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d42", + "sortText": "00000dcf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57213,7 +59559,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d44", + "sortText": "00000dd1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57230,7 +59576,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d43", + "sortText": "00000dd0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57247,7 +59593,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d46", + "sortText": "00000dd3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57264,7 +59610,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d45", + "sortText": "00000dd2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57281,7 +59627,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d47", + "sortText": "00000dd4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57298,7 +59644,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d4d", + "sortText": "00000dda", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57315,7 +59661,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d4c", + "sortText": "00000dd9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57332,7 +59678,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d4b", + "sortText": "00000dd8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57349,7 +59695,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d4a", + "sortText": "00000dd7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57366,7 +59712,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d49", + "sortText": "00000dd6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57383,7 +59729,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d48", + "sortText": "00000dd5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57400,7 +59746,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d53", + "sortText": "00000de0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57417,7 +59763,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d52", + "sortText": "00000ddf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57434,7 +59780,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d51", + "sortText": "00000dde", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57451,7 +59797,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d58", + "sortText": "00000de5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57468,7 +59814,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d57", + "sortText": "00000de4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57485,7 +59831,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d56", + "sortText": "00000de3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57502,7 +59848,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d55", + "sortText": "00000de2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57519,7 +59865,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d54", + "sortText": "00000de1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57536,7 +59882,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d50", + "sortText": "00000ddd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57553,7 +59899,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d4f", + "sortText": "00000ddc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57570,7 +59916,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d4e", + "sortText": "00000ddb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57587,7 +59933,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d59", + "sortText": "00000de6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57604,7 +59950,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d3c", + "sortText": "00000dc9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57621,7 +59967,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d3b", + "sortText": "00000dc8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57638,7 +59984,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d3a", + "sortText": "00000dc7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57655,7 +60001,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d79", + "sortText": "00000e06", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57672,7 +60018,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d78", + "sortText": "00000e05", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57689,7 +60035,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d77", + "sortText": "00000e04", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57706,7 +60052,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d76", + "sortText": "00000e03", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57723,7 +60069,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d75", + "sortText": "00000e02", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57740,7 +60086,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d74", + "sortText": "00000e01", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57757,7 +60103,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d73", + "sortText": "00000e00", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57774,7 +60120,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d72", + "sortText": "00000dff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57791,7 +60137,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d71", + "sortText": "00000dfe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57808,7 +60154,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d70", + "sortText": "00000dfd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57825,7 +60171,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d6f", + "sortText": "00000dfc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57842,7 +60188,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d6e", + "sortText": "00000dfb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57859,7 +60205,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d6d", + "sortText": "00000dfa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57876,7 +60222,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d6c", + "sortText": "00000df9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57893,7 +60239,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d6b", + "sortText": "00000df8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57910,7 +60256,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d6a", + "sortText": "00000df7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57927,7 +60273,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d69", + "sortText": "00000df6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57944,7 +60290,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d68", + "sortText": "00000df5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57961,7 +60307,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d67", + "sortText": "00000df4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57978,7 +60324,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d66", + "sortText": "00000df3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -57995,7 +60341,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d65", + "sortText": "00000df2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58012,7 +60358,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d64", + "sortText": "00000df1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58029,7 +60375,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d63", + "sortText": "00000df0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58046,7 +60392,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d62", + "sortText": "00000def", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58063,7 +60409,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d61", + "sortText": "00000dee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58080,7 +60426,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d60", + "sortText": "00000ded", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58097,7 +60443,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d5f", + "sortText": "00000dec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58114,7 +60460,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d5e", + "sortText": "00000deb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58131,7 +60477,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d5d", + "sortText": "00000dea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58148,7 +60494,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d5c", + "sortText": "00000de9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58165,7 +60511,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d5b", + "sortText": "00000de8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58182,7 +60528,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d5a", + "sortText": "00000de7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58199,7 +60545,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d7b", + "sortText": "00000e08", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58216,7 +60562,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d7a", + "sortText": "00000e07", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58233,7 +60579,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d7d", + "sortText": "00000e0a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58250,7 +60596,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d7c", + "sortText": "00000e09", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58267,7 +60613,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d7e", + "sortText": "00000e0b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58284,7 +60630,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d80", + "sortText": "00000e0d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58301,7 +60647,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d7f", + "sortText": "00000e0c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58318,7 +60664,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d82", + "sortText": "00000e0f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58335,7 +60681,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d81", + "sortText": "00000e0e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58352,7 +60698,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d84", + "sortText": "00000e11", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58369,7 +60715,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d83", + "sortText": "00000e10", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58386,7 +60732,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d88", + "sortText": "00000e15", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58403,7 +60749,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d8a", + "sortText": "00000e17", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58420,7 +60766,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d89", + "sortText": "00000e16", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58437,7 +60783,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d87", + "sortText": "00000e14", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58454,7 +60800,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d86", + "sortText": "00000e13", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58471,7 +60817,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d85", + "sortText": "00000e12", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58488,7 +60834,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d8c", + "sortText": "00000e19", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58505,7 +60851,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d8b", + "sortText": "00000e18", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58522,7 +60868,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d8d", + "sortText": "00000e1a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58539,7 +60885,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d8e", + "sortText": "00000e1b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58556,7 +60902,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d92", + "sortText": "00000e1f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58573,7 +60919,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d91", + "sortText": "00000e1e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58590,7 +60936,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d90", + "sortText": "00000e1d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58607,7 +60953,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d8f", + "sortText": "00000e1c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58624,7 +60970,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d96", + "sortText": "00000e23", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58641,7 +60987,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d95", + "sortText": "00000e22", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58658,7 +61004,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d94", + "sortText": "00000e21", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58675,7 +61021,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d93", + "sortText": "00000e20", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58692,7 +61038,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d98", + "sortText": "00000e25", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58709,7 +61055,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d97", + "sortText": "00000e24", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58726,7 +61072,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d99", + "sortText": "00000e26", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58743,7 +61089,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d9a", + "sortText": "00000e27", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58760,7 +61106,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d9b", + "sortText": "00000e28", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58777,7 +61123,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d9f", + "sortText": "00000e2c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58794,7 +61140,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000da0", + "sortText": "00000e2d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58811,7 +61157,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000da5", + "sortText": "00000e32", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58828,7 +61174,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000da6", + "sortText": "00000e33", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58845,7 +61191,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000da7", + "sortText": "00000e34", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58862,7 +61208,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000da8", + "sortText": "00000e35", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58879,7 +61225,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000daa", + "sortText": "00000e37", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58896,7 +61242,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000da9", + "sortText": "00000e36", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58913,7 +61259,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000da4", + "sortText": "00000e31", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58930,7 +61276,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000da3", + "sortText": "00000e30", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58947,7 +61293,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000da2", + "sortText": "00000e2f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58964,7 +61310,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000da1", + "sortText": "00000e2e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58981,7 +61327,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dab", + "sortText": "00000e38", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -58998,7 +61344,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dac", + "sortText": "00000e39", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59015,7 +61361,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dad", + "sortText": "00000e3a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59032,7 +61378,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000daf", + "sortText": "00000e3c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59049,7 +61395,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dae", + "sortText": "00000e3b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59066,7 +61412,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db0", + "sortText": "00000e3d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59083,7 +61429,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d9e", + "sortText": "00000e2b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59100,7 +61446,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d9d", + "sortText": "00000e2a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59117,7 +61463,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000d9c", + "sortText": "00000e29", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59134,7 +61480,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db6", + "sortText": "00000e43", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59151,7 +61497,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db5", + "sortText": "00000e42", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59168,7 +61514,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db4", + "sortText": "00000e41", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59185,7 +61531,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db7", + "sortText": "00000e44", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59202,7 +61548,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db8", + "sortText": "00000e45", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59219,7 +61565,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db9", + "sortText": "00000e46", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59236,7 +61582,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dba", + "sortText": "00000e47", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59253,7 +61599,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dbb", + "sortText": "00000e48", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59270,7 +61616,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dbc", + "sortText": "00000e49", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59287,7 +61633,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc3", + "sortText": "00000e50", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59304,7 +61650,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc4", + "sortText": "00000e51", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59321,7 +61667,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc6", + "sortText": "00000e53", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59338,7 +61684,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc5", + "sortText": "00000e52", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59355,7 +61701,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc7", + "sortText": "00000e54", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59372,7 +61718,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc8", + "sortText": "00000e55", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59389,7 +61735,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc9", + "sortText": "00000e56", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59406,7 +61752,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dcb", + "sortText": "00000e58", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59423,7 +61769,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dca", + "sortText": "00000e57", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59440,7 +61786,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dcc", + "sortText": "00000e59", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59457,7 +61803,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dcd", + "sortText": "00000e5a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59474,7 +61820,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dce", + "sortText": "00000e5b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59491,7 +61837,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dcf", + "sortText": "00000e5c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59508,7 +61854,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd2", + "sortText": "00000e5f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59525,7 +61871,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd1", + "sortText": "00000e5e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59542,7 +61888,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd0", + "sortText": "00000e5d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59559,7 +61905,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd6", + "sortText": "00000e63", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59576,7 +61922,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd5", + "sortText": "00000e62", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59593,7 +61939,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd4", + "sortText": "00000e61", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59610,7 +61956,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd3", + "sortText": "00000e60", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59627,7 +61973,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd7", + "sortText": "00000e64", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59644,7 +61990,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd9", + "sortText": "00000e66", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59661,7 +62007,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd8", + "sortText": "00000e65", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59678,7 +62024,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ddb", + "sortText": "00000e68", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59695,7 +62041,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dda", + "sortText": "00000e67", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59712,7 +62058,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc2", + "sortText": "00000e4f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59729,7 +62075,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc1", + "sortText": "00000e4e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59746,7 +62092,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc0", + "sortText": "00000e4d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59763,7 +62109,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dbf", + "sortText": "00000e4c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59780,7 +62126,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dbe", + "sortText": "00000e4b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59797,7 +62143,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dbd", + "sortText": "00000e4a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59814,7 +62160,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dde", + "sortText": "00000e6b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59831,7 +62177,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ddd", + "sortText": "00000e6a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59848,7 +62194,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ddc", + "sortText": "00000e69", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59865,7 +62211,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ddf", + "sortText": "00000e6c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59882,7 +62228,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de0", + "sortText": "00000e6d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59899,7 +62245,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de1", + "sortText": "00000e6e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59916,7 +62262,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de3", + "sortText": "00000e70", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59933,7 +62279,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de2", + "sortText": "00000e6f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59950,7 +62296,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de5", + "sortText": "00000e72", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59967,7 +62313,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de7", + "sortText": "00000e74", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59984,7 +62330,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de6", + "sortText": "00000e73", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60001,7 +62347,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de8", + "sortText": "00000e75", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60018,7 +62364,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de4", + "sortText": "00000e71", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60035,7 +62381,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de9", + "sortText": "00000e76", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60052,7 +62398,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dea", + "sortText": "00000e77", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60069,7 +62415,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dec", + "sortText": "00000e79", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60086,7 +62432,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000deb", + "sortText": "00000e78", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60103,7 +62449,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ded", + "sortText": "00000e7a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60120,7 +62466,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dee", + "sortText": "00000e7b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60137,7 +62483,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000def", + "sortText": "00000e7c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60154,7 +62500,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db3", + "sortText": "00000e40", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60171,7 +62517,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db2", + "sortText": "00000e3f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60188,7 +62534,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db1", + "sortText": "00000e3e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60205,7 +62551,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df1", + "sortText": "00000e7e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60222,7 +62568,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df0", + "sortText": "00000e7d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60239,7 +62585,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df2", + "sortText": "00000e7f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60256,7 +62602,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e65", + "sortText": "00000ef2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60273,7 +62619,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e64", + "sortText": "00000ef1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60290,7 +62636,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e66", + "sortText": "00000ef3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60307,7 +62653,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e67", + "sortText": "00000ef4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60324,7 +62670,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e69", + "sortText": "00000ef6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60341,7 +62687,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e68", + "sortText": "00000ef5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60358,7 +62704,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e6b", + "sortText": "00000ef8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60375,7 +62721,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e6a", + "sortText": "00000ef7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60392,7 +62738,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e6c", + "sortText": "00000ef9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60409,7 +62755,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e6d", + "sortText": "00000efa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60426,7 +62772,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e6f", + "sortText": "00000efc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60443,7 +62789,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e6e", + "sortText": "00000efb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60460,7 +62806,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e71", + "sortText": "00000efe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60477,7 +62823,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e70", + "sortText": "00000efd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60494,7 +62840,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e72", + "sortText": "00000eff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60511,7 +62857,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e74", + "sortText": "00000f01", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60528,7 +62874,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e73", + "sortText": "00000f00", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60545,7 +62891,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e76", + "sortText": "00000f03", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60562,7 +62908,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e75", + "sortText": "00000f02", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60579,7 +62925,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e78", + "sortText": "00000f05", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60596,7 +62942,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e77", + "sortText": "00000f04", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60613,7 +62959,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e79", + "sortText": "00000f06", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60630,7 +62976,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e63", + "sortText": "00000ef0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60647,7 +62993,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e62", + "sortText": "00000eef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60664,7 +63010,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e13", + "sortText": "00000ea0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60681,7 +63027,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e12", + "sortText": "00000e9f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60698,7 +63044,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e11", + "sortText": "00000e9e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60715,7 +63061,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e10", + "sortText": "00000e9d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60732,7 +63078,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e0f", + "sortText": "00000e9c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60749,7 +63095,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e0e", + "sortText": "00000e9b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60766,7 +63112,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e0d", + "sortText": "00000e9a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60783,7 +63129,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e0c", + "sortText": "00000e99", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60800,7 +63146,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e0b", + "sortText": "00000e98", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60817,7 +63163,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e0a", + "sortText": "00000e97", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60834,7 +63180,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e09", + "sortText": "00000e96", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60851,7 +63197,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e08", + "sortText": "00000e95", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60868,7 +63214,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e07", + "sortText": "00000e94", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60885,7 +63231,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e06", + "sortText": "00000e93", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60902,7 +63248,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e05", + "sortText": "00000e92", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60919,7 +63265,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e04", + "sortText": "00000e91", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60936,7 +63282,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e03", + "sortText": "00000e90", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60953,7 +63299,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e02", + "sortText": "00000e8f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60970,7 +63316,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e01", + "sortText": "00000e8e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60987,7 +63333,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e15", + "sortText": "00000ea2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61004,7 +63350,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e14", + "sortText": "00000ea1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61021,7 +63367,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e1b", + "sortText": "00000ea8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61038,7 +63384,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e1a", + "sortText": "00000ea7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61055,7 +63401,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e19", + "sortText": "00000ea6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61072,7 +63418,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e18", + "sortText": "00000ea5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61089,7 +63435,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e17", + "sortText": "00000ea4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61106,7 +63452,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e16", + "sortText": "00000ea3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61123,7 +63469,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e1c", + "sortText": "00000ea9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61140,7 +63486,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e21", + "sortText": "00000eae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61157,7 +63503,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e20", + "sortText": "00000ead", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61174,7 +63520,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e1f", + "sortText": "00000eac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61191,7 +63537,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e1e", + "sortText": "00000eab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61208,7 +63554,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e1d", + "sortText": "00000eaa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61225,7 +63571,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e23", + "sortText": "00000eb0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61242,7 +63588,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e22", + "sortText": "00000eaf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61259,7 +63605,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e25", + "sortText": "00000eb2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61276,7 +63622,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e24", + "sortText": "00000eb1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61293,7 +63639,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e29", + "sortText": "00000eb6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61310,7 +63656,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e28", + "sortText": "00000eb5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61327,7 +63673,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e27", + "sortText": "00000eb4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61344,7 +63690,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e26", + "sortText": "00000eb3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61361,7 +63707,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e2b", + "sortText": "00000eb8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61378,7 +63724,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e2a", + "sortText": "00000eb7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61395,7 +63741,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e00", + "sortText": "00000e8d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61412,7 +63758,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dff", + "sortText": "00000e8c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61429,7 +63775,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dfe", + "sortText": "00000e8b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61446,7 +63792,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dfd", + "sortText": "00000e8a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61463,7 +63809,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dfc", + "sortText": "00000e89", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61480,7 +63826,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dfb", + "sortText": "00000e88", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61497,7 +63843,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dfa", + "sortText": "00000e87", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61514,7 +63860,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df9", + "sortText": "00000e86", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61531,7 +63877,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df8", + "sortText": "00000e85", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61548,7 +63894,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df7", + "sortText": "00000e84", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61565,7 +63911,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df6", + "sortText": "00000e83", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61582,7 +63928,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df5", + "sortText": "00000e82", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61599,7 +63945,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df4", + "sortText": "00000e81", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61616,7 +63962,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df3", + "sortText": "00000e80", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61633,7 +63979,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e33", + "sortText": "00000ec0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61650,7 +63996,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e32", + "sortText": "00000ebf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61667,7 +64013,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e31", + "sortText": "00000ebe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61684,7 +64030,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e30", + "sortText": "00000ebd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61701,7 +64047,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e2f", + "sortText": "00000ebc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61718,7 +64064,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e2e", + "sortText": "00000ebb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61735,7 +64081,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e2d", + "sortText": "00000eba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61752,7 +64098,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e2c", + "sortText": "00000eb9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61769,7 +64115,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e3d", + "sortText": "00000eca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61786,7 +64132,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e46", + "sortText": "00000ed3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61803,7 +64149,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e45", + "sortText": "00000ed2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61820,7 +64166,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e44", + "sortText": "00000ed1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61837,7 +64183,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e43", + "sortText": "00000ed0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61854,7 +64200,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e42", + "sortText": "00000ecf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61871,7 +64217,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e41", + "sortText": "00000ece", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61888,7 +64234,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e40", + "sortText": "00000ecd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61905,7 +64251,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e3f", + "sortText": "00000ecc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61922,7 +64268,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e3e", + "sortText": "00000ecb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61939,7 +64285,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e58", + "sortText": "00000ee5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61956,7 +64302,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e57", + "sortText": "00000ee4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61973,7 +64319,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e56", + "sortText": "00000ee3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61990,7 +64336,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e55", + "sortText": "00000ee2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62007,7 +64353,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e54", + "sortText": "00000ee1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62024,7 +64370,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e53", + "sortText": "00000ee0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62041,7 +64387,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e52", + "sortText": "00000edf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62058,7 +64404,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e51", + "sortText": "00000ede", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62075,7 +64421,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e50", + "sortText": "00000edd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62092,7 +64438,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e61", + "sortText": "00000eee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62109,7 +64455,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e60", + "sortText": "00000eed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62126,7 +64472,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e5f", + "sortText": "00000eec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62143,7 +64489,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e5e", + "sortText": "00000eeb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62160,7 +64506,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e5d", + "sortText": "00000eea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62177,7 +64523,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e5c", + "sortText": "00000ee9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62194,7 +64540,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e5b", + "sortText": "00000ee8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62211,7 +64557,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e5a", + "sortText": "00000ee7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62228,7 +64574,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e59", + "sortText": "00000ee6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62245,7 +64591,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e4f", + "sortText": "00000edc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62262,7 +64608,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e4e", + "sortText": "00000edb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62279,7 +64625,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e4d", + "sortText": "00000eda", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62296,7 +64642,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e4c", + "sortText": "00000ed9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62313,7 +64659,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e4b", + "sortText": "00000ed8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62330,7 +64676,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e4a", + "sortText": "00000ed7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62347,7 +64693,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e49", + "sortText": "00000ed6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62364,7 +64710,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e48", + "sortText": "00000ed5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62381,7 +64727,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e47", + "sortText": "00000ed4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62398,7 +64744,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e3c", + "sortText": "00000ec9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62415,7 +64761,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e3b", + "sortText": "00000ec8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62432,7 +64778,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e3a", + "sortText": "00000ec7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62449,7 +64795,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e39", + "sortText": "00000ec6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62466,7 +64812,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e38", + "sortText": "00000ec5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62483,7 +64829,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e37", + "sortText": "00000ec4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62500,7 +64846,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e36", + "sortText": "00000ec3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62517,7 +64863,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e35", + "sortText": "00000ec2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62534,7 +64880,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e34", + "sortText": "00000ec1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62551,7 +64897,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e7b", + "sortText": "00000f08", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62568,7 +64914,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e7a", + "sortText": "00000f07", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62585,7 +64931,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e7f", + "sortText": "00000f0c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62602,7 +64948,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e7e", + "sortText": "00000f0b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62619,7 +64965,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e81", + "sortText": "00000f0e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62636,7 +64982,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e80", + "sortText": "00000f0d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62653,7 +64999,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e83", + "sortText": "00000f10", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62670,7 +65016,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e82", + "sortText": "00000f0f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62687,7 +65033,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e85", + "sortText": "00000f12", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62704,7 +65050,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e84", + "sortText": "00000f11", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62721,7 +65067,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e7d", + "sortText": "00000f0a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62738,7 +65084,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e7c", + "sortText": "00000f09", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62746,6 +65092,125 @@ "newText": "'Microsoft.StreamAnalytics/streamingjobs@2017-04-01-preview'" } }, + { + "label": "'Microsoft.Subscription/aliases@2019-10-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Subscription` \nType: `aliases` \nAPI Version: `2019-10-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000f14", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Subscription/aliases@2019-10-01-preview'" + } + }, + { + "label": "'Microsoft.Subscription/aliases@2020-09-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Subscription` \nType: `aliases` \nAPI Version: `2020-09-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000f13", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Subscription/aliases@2020-09-01'" + } + }, + { + "label": "'Microsoft.Subscription/subscriptionDefinitions@2017-11-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Subscription` \nType: `subscriptionDefinitions` \nAPI Version: `2017-11-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000f15", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Subscription/subscriptionDefinitions@2017-11-01-preview'" + } + }, + { + "label": "'Microsoft.Support/supportTickets/communications@2019-05-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Support` \nType: `supportTickets/communications` \nAPI Version: `2019-05-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000f19", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Support/supportTickets/communications@2019-05-01-preview'" + } + }, + { + "label": "'Microsoft.Support/supportTickets/communications@2020-04-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Support` \nType: `supportTickets/communications` \nAPI Version: `2020-04-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000f18", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Support/supportTickets/communications@2020-04-01'" + } + }, + { + "label": "'Microsoft.Support/supportTickets@2019-05-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Support` \nType: `supportTickets` \nAPI Version: `2019-05-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000f17", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Support/supportTickets@2019-05-01-preview'" + } + }, + { + "label": "'Microsoft.Support/supportTickets@2020-04-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Support` \nType: `supportTickets` \nAPI Version: `2020-04-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000f16", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Support/supportTickets@2020-04-01'" + } + }, { "label": "'Microsoft.Synapse/privateLinkHubs@2019-06-01-preview'", "kind": "class", @@ -62755,7 +65220,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e86", + "sortText": "00000f1a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62772,7 +65237,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e88", + "sortText": "00000f1c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62789,7 +65254,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e89", + "sortText": "00000f1d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62806,7 +65271,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e8a", + "sortText": "00000f1e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62823,7 +65288,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e8b", + "sortText": "00000f1f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62840,7 +65305,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e8c", + "sortText": "00000f20", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62857,7 +65322,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e8d", + "sortText": "00000f21", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62874,7 +65339,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e8e", + "sortText": "00000f22", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62891,7 +65356,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e8f", + "sortText": "00000f23", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62908,7 +65373,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e90", + "sortText": "00000f24", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62925,7 +65390,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e91", + "sortText": "00000f25", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62942,7 +65407,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e92", + "sortText": "00000f26", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62959,7 +65424,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e95", + "sortText": "00000f29", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62976,7 +65441,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e97", + "sortText": "00000f2b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62993,7 +65458,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e96", + "sortText": "00000f2a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63010,7 +65475,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e98", + "sortText": "00000f2c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63027,7 +65492,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e99", + "sortText": "00000f2d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63044,7 +65509,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e9a", + "sortText": "00000f2e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63061,7 +65526,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e9b", + "sortText": "00000f2f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63078,7 +65543,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e9c", + "sortText": "00000f30", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63095,7 +65560,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e9e", + "sortText": "00000f32", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63112,7 +65577,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e9d", + "sortText": "00000f31", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63129,7 +65594,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea0", + "sortText": "00000f34", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63146,7 +65611,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e9f", + "sortText": "00000f33", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63163,7 +65628,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e94", + "sortText": "00000f28", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63180,7 +65645,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e93", + "sortText": "00000f27", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63197,7 +65662,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea1", + "sortText": "00000f35", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63214,7 +65679,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e87", + "sortText": "00000f1b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63231,7 +65696,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea9", + "sortText": "00000f3d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63248,7 +65713,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea8", + "sortText": "00000f3c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63265,7 +65730,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea7", + "sortText": "00000f3b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63282,7 +65747,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea6", + "sortText": "00000f3a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63299,7 +65764,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ead", + "sortText": "00000f41", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63316,7 +65781,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eac", + "sortText": "00000f40", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63333,7 +65798,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eab", + "sortText": "00000f3f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63350,7 +65815,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eaa", + "sortText": "00000f3e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63367,7 +65832,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb1", + "sortText": "00000f45", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63384,7 +65849,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb0", + "sortText": "00000f44", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63401,7 +65866,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eaf", + "sortText": "00000f43", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63418,7 +65883,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eae", + "sortText": "00000f42", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63435,7 +65900,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea5", + "sortText": "00000f39", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63452,7 +65917,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea4", + "sortText": "00000f38", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63469,7 +65934,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea3", + "sortText": "00000f37", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63486,7 +65951,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea2", + "sortText": "00000f36", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63503,7 +65968,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb9", + "sortText": "00000f4d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63520,7 +65985,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eba", + "sortText": "00000f4e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63537,7 +66002,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ebb", + "sortText": "00000f4f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63554,7 +66019,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb5", + "sortText": "00000f49", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63571,7 +66036,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb4", + "sortText": "00000f48", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63588,7 +66053,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb3", + "sortText": "00000f47", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63605,7 +66070,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb2", + "sortText": "00000f46", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63622,7 +66087,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec1", + "sortText": "00000f55", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63639,7 +66104,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec0", + "sortText": "00000f54", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63656,7 +66121,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ebf", + "sortText": "00000f53", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63673,7 +66138,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ebe", + "sortText": "00000f52", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63690,7 +66155,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ebd", + "sortText": "00000f51", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63707,7 +66172,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ebc", + "sortText": "00000f50", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63724,7 +66189,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec2", + "sortText": "00000f56", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63741,7 +66206,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec3", + "sortText": "00000f57", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63758,7 +66223,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ecd", + "sortText": "00000f61", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63775,7 +66240,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ecc", + "sortText": "00000f60", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63792,7 +66257,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ecb", + "sortText": "00000f5f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63809,7 +66274,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eca", + "sortText": "00000f5e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63826,7 +66291,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec9", + "sortText": "00000f5d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63843,182 +66308,267 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed2", + "sortText": "00000f66", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Web/hostingEnvironments/workerPools@2015-08-01'" + } + }, + { + "label": "'Microsoft.Web/hostingEnvironments/workerPools@2016-09-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments/workerPools` \nAPI Version: `2016-09-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000f65", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Web/hostingEnvironments/workerPools@2016-09-01'" + } + }, + { + "label": "'Microsoft.Web/hostingEnvironments/workerPools@2018-02-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments/workerPools` \nAPI Version: `2018-02-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000f64", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Web/hostingEnvironments/workerPools@2018-02-01'" + } + }, + { + "label": "'Microsoft.Web/hostingEnvironments/workerPools@2019-08-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments/workerPools` \nAPI Version: `2019-08-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000f63", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Web/hostingEnvironments/workerPools@2019-08-01'" + } + }, + { + "label": "'Microsoft.Web/hostingEnvironments/workerPools@2020-06-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments/workerPools` \nAPI Version: `2020-06-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000f62", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Web/hostingEnvironments/workerPools@2020-06-01'" + } + }, + { + "label": "'Microsoft.Web/hostingEnvironments@2015-08-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2015-08-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000f5c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments/workerPools@2015-08-01'" + "newText": "'Microsoft.Web/hostingEnvironments@2015-08-01'" } }, { - "label": "'Microsoft.Web/hostingEnvironments/workerPools@2016-09-01'", + "label": "'Microsoft.Web/hostingEnvironments@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments/workerPools` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ed1", + "sortText": "00000f5b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments/workerPools@2016-09-01'" + "newText": "'Microsoft.Web/hostingEnvironments@2016-09-01'" } }, { - "label": "'Microsoft.Web/hostingEnvironments/workerPools@2018-02-01'", + "label": "'Microsoft.Web/hostingEnvironments@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments/workerPools` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ed0", + "sortText": "00000f5a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments/workerPools@2018-02-01'" + "newText": "'Microsoft.Web/hostingEnvironments@2018-02-01'" } }, { - "label": "'Microsoft.Web/hostingEnvironments/workerPools@2019-08-01'", + "label": "'Microsoft.Web/hostingEnvironments@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments/workerPools` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ecf", + "sortText": "00000f59", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments/workerPools@2019-08-01'" + "newText": "'Microsoft.Web/hostingEnvironments@2019-08-01'" } }, { - "label": "'Microsoft.Web/hostingEnvironments/workerPools@2020-06-01'", + "label": "'Microsoft.Web/hostingEnvironments@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments/workerPools` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ece", + "sortText": "00000f58", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments/workerPools@2020-06-01'" + "newText": "'Microsoft.Web/hostingEnvironments@2020-06-01'" } }, { - "label": "'Microsoft.Web/hostingEnvironments@2015-08-01'", + "label": "'Microsoft.Web/managedHostingEnvironments@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.Web` \nType: `managedHostingEnvironments` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ec8", + "sortText": "00000f67", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments@2015-08-01'" + "newText": "'Microsoft.Web/managedHostingEnvironments@2015-08-01'" } }, { - "label": "'Microsoft.Web/hostingEnvironments@2016-09-01'", + "label": "'Microsoft.Web/publishingUsers@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Web` \nType: `publishingUsers` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ec7", + "sortText": "00000f6c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments@2016-09-01'" + "newText": "'Microsoft.Web/publishingUsers@2015-08-01'" } }, { - "label": "'Microsoft.Web/hostingEnvironments@2018-02-01'", + "label": "'Microsoft.Web/publishingUsers@2016-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Web` \nType: `publishingUsers` \nAPI Version: `2016-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ec6", + "sortText": "00000f6b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments@2018-02-01'" + "newText": "'Microsoft.Web/publishingUsers@2016-03-01'" } }, { - "label": "'Microsoft.Web/hostingEnvironments@2019-08-01'", + "label": "'Microsoft.Web/publishingUsers@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Web` \nType: `publishingUsers` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ec5", + "sortText": "00000f6a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments@2019-08-01'" + "newText": "'Microsoft.Web/publishingUsers@2018-02-01'" } }, { - "label": "'Microsoft.Web/hostingEnvironments@2020-06-01'", + "label": "'Microsoft.Web/publishingUsers@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Web` \nType: `publishingUsers` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ec4", + "sortText": "00000f69", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments@2020-06-01'" + "newText": "'Microsoft.Web/publishingUsers@2019-08-01'" } }, { - "label": "'Microsoft.Web/managedHostingEnvironments@2015-08-01'", + "label": "'Microsoft.Web/publishingUsers@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `managedHostingEnvironments` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.Web` \nType: `publishingUsers` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ed3", + "sortText": "00000f68", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/managedHostingEnvironments@2015-08-01'" + "newText": "'Microsoft.Web/publishingUsers@2020-06-01'" } }, { @@ -64030,7 +66580,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000edd", + "sortText": "00000f76", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64047,7 +66597,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000edc", + "sortText": "00000f75", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64064,7 +66614,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000edb", + "sortText": "00000f74", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64081,7 +66631,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eda", + "sortText": "00000f73", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64098,7 +66648,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed9", + "sortText": "00000f72", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64115,7 +66665,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee2", + "sortText": "00000f7b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64132,7 +66682,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee1", + "sortText": "00000f7a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64149,7 +66699,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee0", + "sortText": "00000f79", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64166,7 +66716,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000edf", + "sortText": "00000f78", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64183,7 +66733,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ede", + "sortText": "00000f77", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64200,7 +66750,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed8", + "sortText": "00000f71", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64217,7 +66767,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed7", + "sortText": "00000f70", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64234,7 +66784,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed6", + "sortText": "00000f6f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64251,7 +66801,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed5", + "sortText": "00000f6e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64268,7 +66818,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed4", + "sortText": "00000f6d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64285,7 +66835,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eea", + "sortText": "00000f83", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64302,7 +66852,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee9", + "sortText": "00000f82", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64319,7 +66869,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ef0", + "sortText": "00000f89", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64336,7 +66886,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eef", + "sortText": "00000f88", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64353,7 +66903,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eee", + "sortText": "00000f87", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64370,7 +66920,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eed", + "sortText": "00000f86", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64387,7 +66937,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eec", + "sortText": "00000f85", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64404,7 +66954,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eeb", + "sortText": "00000f84", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64421,7 +66971,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ef5", + "sortText": "00000f8e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64438,7 +66988,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ef4", + "sortText": "00000f8d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64455,7 +67005,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ef3", + "sortText": "00000f8c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64472,7 +67022,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ef2", + "sortText": "00000f8b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64489,7 +67039,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ef1", + "sortText": "00000f8a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64506,7 +67056,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000efa", + "sortText": "00000f93", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64523,7 +67073,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ef9", + "sortText": "00000f92", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64540,7 +67090,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ef8", + "sortText": "00000f91", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64557,7 +67107,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ef7", + "sortText": "00000f90", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64574,7 +67124,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ef6", + "sortText": "00000f8f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64591,7 +67141,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f02", + "sortText": "00000f9b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64608,7 +67158,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f01", + "sortText": "00000f9a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64625,7 +67175,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f00", + "sortText": "00000f99", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64642,7 +67192,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eff", + "sortText": "00000f98", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64659,7 +67209,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000efe", + "sortText": "00000f97", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64676,7 +67226,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000efd", + "sortText": "00000f96", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64693,7 +67243,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000efc", + "sortText": "00000f95", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64710,7 +67260,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000efb", + "sortText": "00000f94", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64727,7 +67277,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f08", + "sortText": "00000fa1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64744,7 +67294,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f07", + "sortText": "00000fa0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64761,7 +67311,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f06", + "sortText": "00000f9f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64778,7 +67328,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f05", + "sortText": "00000f9e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64795,7 +67345,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f04", + "sortText": "00000f9d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64812,7 +67362,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f03", + "sortText": "00000f9c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64829,7 +67379,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f13", + "sortText": "00000fac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64846,7 +67396,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f12", + "sortText": "00000fab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64863,7 +67413,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f11", + "sortText": "00000faa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64880,7 +67430,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f10", + "sortText": "00000fa9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64897,7 +67447,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f0f", + "sortText": "00000fa8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64914,7 +67464,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f0e", + "sortText": "00000fa7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64931,7 +67481,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f0d", + "sortText": "00000fa6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64948,7 +67498,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f0c", + "sortText": "00000fa5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64965,7 +67515,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f0b", + "sortText": "00000fa4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64982,7 +67532,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f0a", + "sortText": "00000fa3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64999,7 +67549,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f09", + "sortText": "00000fa2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65016,7 +67566,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f14", + "sortText": "00000fad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65033,7 +67583,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f19", + "sortText": "00000fb2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65050,7 +67600,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f18", + "sortText": "00000fb1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65067,7 +67617,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f17", + "sortText": "00000fb0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65084,7 +67634,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f16", + "sortText": "00000faf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65101,7 +67651,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f15", + "sortText": "00000fae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65118,7 +67668,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f1d", + "sortText": "00000fb6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65135,7 +67685,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f1c", + "sortText": "00000fb5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65152,7 +67702,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f1b", + "sortText": "00000fb4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65169,7 +67719,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f1a", + "sortText": "00000fb3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65186,7 +67736,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f23", + "sortText": "00000fbc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65203,7 +67753,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f22", + "sortText": "00000fbb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65220,7 +67770,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f21", + "sortText": "00000fba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65237,7 +67787,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f20", + "sortText": "00000fb9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65254,7 +67804,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f1f", + "sortText": "00000fb8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65271,7 +67821,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f1e", + "sortText": "00000fb7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65288,7 +67838,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f27", + "sortText": "00000fc0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65305,7 +67855,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f26", + "sortText": "00000fbf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65322,7 +67872,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f25", + "sortText": "00000fbe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65339,7 +67889,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f24", + "sortText": "00000fbd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65356,7 +67906,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f29", + "sortText": "00000fc2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65373,7 +67923,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f28", + "sortText": "00000fc1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65390,7 +67940,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f2e", + "sortText": "00000fc7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65407,7 +67957,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f2d", + "sortText": "00000fc6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65424,7 +67974,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f2c", + "sortText": "00000fc5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65441,7 +67991,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f2b", + "sortText": "00000fc4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65458,7 +68008,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f2a", + "sortText": "00000fc3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65475,7 +68025,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f36", + "sortText": "00000fcf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65492,7 +68042,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f35", + "sortText": "00000fce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65509,7 +68059,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f3c", + "sortText": "00000fd5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65526,7 +68076,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f3b", + "sortText": "00000fd4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65543,7 +68093,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f3a", + "sortText": "00000fd3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65560,7 +68110,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f39", + "sortText": "00000fd2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65577,7 +68127,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f38", + "sortText": "00000fd1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65594,7 +68144,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f37", + "sortText": "00000fd0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65611,7 +68161,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f41", + "sortText": "00000fda", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65628,7 +68178,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f40", + "sortText": "00000fd9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65645,7 +68195,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f3f", + "sortText": "00000fd8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65662,7 +68212,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f3e", + "sortText": "00000fd7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65679,7 +68229,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f3d", + "sortText": "00000fd6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65696,7 +68246,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f46", + "sortText": "00000fdf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65713,7 +68263,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f45", + "sortText": "00000fde", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65730,7 +68280,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f44", + "sortText": "00000fdd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65747,7 +68297,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f43", + "sortText": "00000fdc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65764,7 +68314,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f42", + "sortText": "00000fdb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65781,7 +68331,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f4e", + "sortText": "00000fe7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65798,7 +68348,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f4d", + "sortText": "00000fe6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65815,7 +68365,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f4c", + "sortText": "00000fe5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65832,7 +68382,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f4b", + "sortText": "00000fe4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65849,7 +68399,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f4a", + "sortText": "00000fe3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65866,7 +68416,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f49", + "sortText": "00000fe2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65883,7 +68433,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f48", + "sortText": "00000fe1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65900,7 +68450,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f47", + "sortText": "00000fe0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65917,7 +68467,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f54", + "sortText": "00000fed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65934,7 +68484,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f53", + "sortText": "00000fec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65951,7 +68501,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f52", + "sortText": "00000feb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65968,7 +68518,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f51", + "sortText": "00000fea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65985,7 +68535,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f50", + "sortText": "00000fe9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66002,7 +68552,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f4f", + "sortText": "00000fe8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66019,7 +68569,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f5f", + "sortText": "00000ff8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66036,7 +68586,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f5e", + "sortText": "00000ff7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66053,7 +68603,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f5d", + "sortText": "00000ff6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66070,7 +68620,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f5c", + "sortText": "00000ff5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66087,7 +68637,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f5b", + "sortText": "00000ff4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66104,7 +68654,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f5a", + "sortText": "00000ff3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66121,7 +68671,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f59", + "sortText": "00000ff2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66138,7 +68688,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f58", + "sortText": "00000ff1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66155,7 +68705,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f57", + "sortText": "00000ff0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66172,7 +68722,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f56", + "sortText": "00000fef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66189,7 +68739,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f55", + "sortText": "00000fee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66206,7 +68756,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f60", + "sortText": "00000ff9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66223,7 +68773,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f65", + "sortText": "00000ffe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66240,7 +68790,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f64", + "sortText": "00000ffd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66257,7 +68807,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f63", + "sortText": "00000ffc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66274,7 +68824,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f62", + "sortText": "00000ffb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66291,7 +68841,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f61", + "sortText": "00000ffa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66308,7 +68858,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f69", + "sortText": "00001002", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66325,7 +68875,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f68", + "sortText": "00001001", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66342,7 +68892,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f67", + "sortText": "00001000", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66359,7 +68909,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f66", + "sortText": "00000fff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66376,7 +68926,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f6f", + "sortText": "00001008", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66393,7 +68943,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f6e", + "sortText": "00001007", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66410,7 +68960,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f6d", + "sortText": "00001006", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66427,7 +68977,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f6c", + "sortText": "00001005", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66444,7 +68994,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f6b", + "sortText": "00001004", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66461,7 +69011,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f6a", + "sortText": "00001003", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66478,7 +69028,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f73", + "sortText": "0000100c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66495,7 +69045,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f72", + "sortText": "0000100b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66512,7 +69062,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f71", + "sortText": "0000100a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66529,7 +69079,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f70", + "sortText": "00001009", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66546,7 +69096,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f78", + "sortText": "00001011", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66563,7 +69113,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f77", + "sortText": "00001010", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66580,7 +69130,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f76", + "sortText": "0000100f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66597,7 +69147,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f75", + "sortText": "0000100e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66614,7 +69164,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f74", + "sortText": "0000100d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66631,7 +69181,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f7e", + "sortText": "00001017", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66648,7 +69198,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f7d", + "sortText": "00001016", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66665,7 +69215,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f7c", + "sortText": "00001015", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66682,7 +69232,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f7b", + "sortText": "00001014", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66699,7 +69249,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f7a", + "sortText": "00001013", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66716,7 +69266,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f79", + "sortText": "00001012", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66733,7 +69283,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f8a", + "sortText": "00001023", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66750,7 +69300,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f89", + "sortText": "00001022", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66767,7 +69317,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f88", + "sortText": "00001021", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66784,7 +69334,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f87", + "sortText": "00001020", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66801,7 +69351,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f86", + "sortText": "0000101f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66818,7 +69368,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f85", + "sortText": "0000101e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66835,7 +69385,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f84", + "sortText": "0000101d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66852,7 +69402,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f83", + "sortText": "0000101c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66869,7 +69419,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f82", + "sortText": "0000101b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66886,7 +69436,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f81", + "sortText": "0000101a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66903,7 +69453,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f80", + "sortText": "00001019", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66920,7 +69470,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f7f", + "sortText": "00001018", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66937,7 +69487,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f34", + "sortText": "00000fcd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66954,7 +69504,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f33", + "sortText": "00000fcc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66971,7 +69521,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f32", + "sortText": "00000fcb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66988,7 +69538,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f31", + "sortText": "00000fca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67005,7 +69555,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f30", + "sortText": "00000fc9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67022,7 +69572,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f2f", + "sortText": "00000fc8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67039,7 +69589,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f90", + "sortText": "00001029", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67056,7 +69606,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f8f", + "sortText": "00001028", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67073,7 +69623,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f8e", + "sortText": "00001027", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67090,7 +69640,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f8d", + "sortText": "00001026", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67107,7 +69657,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f8c", + "sortText": "00001025", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67124,7 +69674,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f8b", + "sortText": "00001024", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67141,7 +69691,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f9c", + "sortText": "00001035", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67158,7 +69708,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f9b", + "sortText": "00001034", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67175,7 +69725,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f9a", + "sortText": "00001033", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67192,7 +69742,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f99", + "sortText": "00001032", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67209,7 +69759,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f98", + "sortText": "00001031", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67226,7 +69776,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f97", + "sortText": "00001030", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67243,7 +69793,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f96", + "sortText": "0000102f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67260,7 +69810,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f95", + "sortText": "0000102e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67277,7 +69827,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f94", + "sortText": "0000102d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67294,7 +69844,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f93", + "sortText": "0000102c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67311,7 +69861,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f92", + "sortText": "0000102b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67328,7 +69878,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f91", + "sortText": "0000102a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67345,7 +69895,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee8", + "sortText": "00000f81", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67362,7 +69912,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee7", + "sortText": "00000f80", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67379,7 +69929,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee6", + "sortText": "00000f7f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67396,7 +69946,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee5", + "sortText": "00000f7e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67413,7 +69963,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee4", + "sortText": "00000f7d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67430,7 +69980,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee3", + "sortText": "00000f7c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67438,6 +69988,91 @@ "newText": "'Microsoft.Web/sites@2020-06-01'" } }, + { + "label": "'Microsoft.Web/sourcecontrols@2015-08-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Web` \nType: `sourcecontrols` \nAPI Version: `2015-08-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000103a", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Web/sourcecontrols@2015-08-01'" + } + }, + { + "label": "'Microsoft.Web/sourcecontrols@2016-03-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Web` \nType: `sourcecontrols` \nAPI Version: `2016-03-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00001039", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Web/sourcecontrols@2016-03-01'" + } + }, + { + "label": "'Microsoft.Web/sourcecontrols@2018-02-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Web` \nType: `sourcecontrols` \nAPI Version: `2018-02-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00001038", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Web/sourcecontrols@2018-02-01'" + } + }, + { + "label": "'Microsoft.Web/sourcecontrols@2019-08-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Web` \nType: `sourcecontrols` \nAPI Version: `2019-08-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00001037", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Web/sourcecontrols@2019-08-01'" + } + }, + { + "label": "'Microsoft.Web/sourcecontrols@2020-06-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.Web` \nType: `sourcecontrols` \nAPI Version: `2020-06-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00001036", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.Web/sourcecontrols@2020-06-01'" + } + }, { "label": "'Microsoft.Web/staticSites/builds/config@2019-08-01'", "kind": "class", @@ -67447,7 +70082,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa0", + "sortText": "0000103e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67464,7 +70099,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f9f", + "sortText": "0000103d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67481,7 +70116,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa2", + "sortText": "00001040", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67498,7 +70133,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa1", + "sortText": "0000103f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67515,7 +70150,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f9e", + "sortText": "0000103c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67532,7 +70167,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f9d", + "sortText": "0000103b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67549,7 +70184,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa3", + "sortText": "00001041", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67566,7 +70201,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa5", + "sortText": "00001043", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67583,7 +70218,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa4", + "sortText": "00001042", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67591,6 +70226,23 @@ "newText": "'Microsoft.WindowsIoT/deviceServices@2019-06-01'" } }, + { + "label": "'Microsoft.WorkloadMonitor/notificationSettings@2018-08-31-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.WorkloadMonitor` \nType: `notificationSettings` \nAPI Version: `2018-08-31-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00001044", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.WorkloadMonitor/notificationSettings@2018-08-31-preview'" + } + }, { "label": "'microsoft.aadiam/azureADMetrics@2020-07-01-preview'", "kind": "class", @@ -67608,6 +70260,23 @@ "newText": "'microsoft.aadiam/azureADMetrics@2020-07-01-preview'" } }, + { + "label": "'microsoft.aadiam/diagnosticSettings@2017-04-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `microsoft.aadiam` \nType: `diagnosticSettings` \nAPI Version: `2017-04-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000006", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'microsoft.aadiam/diagnosticSettings@2017-04-01'" + } + }, { "label": "'microsoft.aadiam/privateLinkForAzureAd@2020-03-01-preview'", "kind": "class", @@ -67617,7 +70286,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000006", + "sortText": "00000007", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67634,7 +70303,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000000e", + "sortText": "0000000f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67651,7 +70320,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000000d", + "sortText": "0000000e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67668,7 +70337,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000587", + "sortText": "000005c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67685,7 +70354,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000586", + "sortText": "000005c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67702,7 +70371,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000585", + "sortText": "000005c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67719,7 +70388,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000584", + "sortText": "000005c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67736,7 +70405,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000583", + "sortText": "000005c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67753,7 +70422,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000589", + "sortText": "000005c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67770,7 +70439,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000588", + "sortText": "000005c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67787,7 +70456,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000058a", + "sortText": "000005c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67804,7 +70473,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000058b", + "sortText": "000005c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67821,7 +70490,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000058f", + "sortText": "000005cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67838,7 +70507,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000592", + "sortText": "000005cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67855,7 +70524,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000593", + "sortText": "000005d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67872,7 +70541,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000594", + "sortText": "000005d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67889,7 +70558,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000059b", + "sortText": "000005d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67906,7 +70575,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000059a", + "sortText": "000005d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67923,7 +70592,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000599", + "sortText": "000005d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67931,6 +70600,23 @@ "newText": "'microsoft.insights/diagnosticSettings@2017-05-01-preview'" } }, + { + "label": "'microsoft.insights/diagnosticSettings@2020-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `microsoft.insights` \nType: `diagnosticSettings` \nAPI Version: `2020-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000005d6", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'microsoft.insights/diagnosticSettings@2020-01-01-preview'" + } + }, { "label": "'microsoft.insights/guestDiagnosticSettings@2018-06-01-preview'", "kind": "class", @@ -67940,7 +70626,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000059c", + "sortText": "000005da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67957,7 +70643,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000059d", + "sortText": "000005db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67965,6 +70651,23 @@ "newText": "'microsoft.insights/guestDiagnosticSettingsAssociation@2018-06-01-preview'" } }, + { + "label": "'microsoft.insights/logprofiles@2016-03-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `microsoft.insights` \nType: `logprofiles` \nAPI Version: `2016-03-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000005dc", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'microsoft.insights/logprofiles@2016-03-01'" + } + }, { "label": "'microsoft.insights/privateLinkScopes@2019-10-17-preview'", "kind": "class", @@ -67974,7 +70677,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005a0", + "sortText": "000005df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67991,7 +70694,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005a4", + "sortText": "000005e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68008,7 +70711,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005a7", + "sortText": "000005e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68025,7 +70728,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005a6", + "sortText": "000005e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68042,7 +70745,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005a8", + "sortText": "000005e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68059,7 +70762,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb7", + "sortText": "00000f4b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68076,7 +70779,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb8", + "sortText": "00000f4c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68093,7 +70796,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb6", + "sortText": "00000f4a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { diff --git a/src/Bicep.Core.Samples/Files/Functions/az.json b/src/Bicep.Core.Samples/Files/Functions/az.json index fb52226759a..6e077b5135b 100644 --- a/src/Bicep.Core.Samples/Files/Functions/az.json +++ b/src/Bicep.Core.Samples/Files/Functions/az.json @@ -51,6 +51,25 @@ "... : string" ] }, + { + "name": "managementGroup", + "description": "Returns the scope for a named management group.", + "fixedParameters": [ + { + "name": "name", + "description": "The unique identifier of the management group (not the display name).", + "type": "string", + "required": true + } + ], + "minimumArgumentCount": 1, + "maximumArgumentCount": 1, + "flags": "default", + "typeSignature": "(name: string): managementGroup", + "parameterTypeSignatures": [ + "name: string" + ] + }, { "name": "pickZones", "description": "Determines whether a resource type supports zones for a region.", diff --git a/src/Bicep.Core.Samples/Files/InvalidExpressions_LF/Completions/azFunctions.json b/src/Bicep.Core.Samples/Files/InvalidExpressions_LF/Completions/azFunctions.json index ebb25bd57b0..1dc58cfda44 100644 --- a/src/Bicep.Core.Samples/Files/InvalidExpressions_LF/Completions/azFunctions.json +++ b/src/Bicep.Core.Samples/Files/InvalidExpressions_LF/Completions/azFunctions.json @@ -61,6 +61,23 @@ "command": "editor.action.triggerParameterHints" } }, + { + "label": "managementGroup", + "kind": "function", + "detail": "managementGroup()", + "deprecated": false, + "preselect": false, + "sortText": "3_managementGroup", + "insertTextFormat": "snippet", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "managementGroup($0)" + }, + "command": { + "command": "editor.action.triggerParameterHints" + } + }, { "label": "pickZones", "kind": "function", diff --git a/src/Bicep.Core.Samples/Files/InvalidExpressions_LF/Completions/symbols.json b/src/Bicep.Core.Samples/Files/InvalidExpressions_LF/Completions/symbols.json index 3da3cc0210f..21d768f4aa7 100644 --- a/src/Bicep.Core.Samples/Files/InvalidExpressions_LF/Completions/symbols.json +++ b/src/Bicep.Core.Samples/Files/InvalidExpressions_LF/Completions/symbols.json @@ -1225,6 +1225,23 @@ "newText": "malformedStringIndex" } }, + { + "label": "managementGroup", + "kind": "function", + "detail": "managementGroup()", + "deprecated": false, + "preselect": false, + "sortText": "3_managementGroup", + "insertTextFormat": "snippet", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "managementGroup($0)" + }, + "command": { + "command": "editor.action.triggerParameterHints" + } + }, { "label": "max", "kind": "function", diff --git a/src/Bicep.Core.Samples/Files/InvalidModulesSubscription_LF/main.diagnostics.bicep b/src/Bicep.Core.Samples/Files/InvalidModulesSubscription_LF/main.diagnostics.bicep index 471418ae5234fb50a5fe3bc93ee76416666d6eff..a38b4e2ddc25dba49a03d11dcb1f0f0483b3b9e6 100644 GIT binary patch delta 12 TcmaE2*=DgJOk%T%?Xa=rcGlL^GH%STa~K7y_X&gC>IlP{fJBnIQngpFB}W zoHdvsnIV7j+z55$Oon2hd>%tSLkW;BV@PDkVaQ}i0kYG8Vnsl@WU?ZMsHPr}6~K@R z6v+k3mjGcZSXD8|B!&VYuNY{f0)x_I$1F)+B?gfC8is0y7>2yb7vt3@*TibDtAlt9 zwVV0lT^X5;7)&NFWD{jHpBxwQL#RhHupC!sT`BRP%BRFi>!C}KtFu6ZLlQyBls5F@|RekcGY_84k N3fP!7e<-Um1^|gWW)uJb delta 4300 zcmeHJL2DCH5S~q`q@vQ+E}_OsqE-`VyS7$BRBEDl5DWIwSlQZUo2E@9T|;&&3W1^8=r&Jy{zHsX7vGySfQJKGWsl1lz;ScwY1mbj=Mkr2EjOcWoZqNh` z(=f001llIaFN2v2^aQ;I z?nihQ&@+#ABZ~$Yoa7B#D~eIQymYNRY#?dFG#&5%uz48msNS^pMzM;Z03#wh>n z@;fqlmKxxM9^sd1fAzssPT?1K&s7up38mK+&uD{qF3=^4arks!yORU_d^XCX$?jN| z9y{qK3G9kR1kfzKMQlP-X4tHy`;V6CFyvel^y;DGZJtCui5kKEmS|xwB?={+SEBqh zHORlFKYQB4AENpHqh9K~^0=d7{9lyE{nFl#nGmn(ettFcP933LuYF3HZ_kDm??CDu fNDoxCt7_?(kB5wt-chgU9rX^_QLmbudwuaY1>ju7 diff --git a/src/Bicep.Core.Samples/Files/InvalidOutputs_CRLF/Completions/symbols.json b/src/Bicep.Core.Samples/Files/InvalidOutputs_CRLF/Completions/symbols.json index 44e43bde68b..58fa2c57d11 100644 --- a/src/Bicep.Core.Samples/Files/InvalidOutputs_CRLF/Completions/symbols.json +++ b/src/Bicep.Core.Samples/Files/InvalidOutputs_CRLF/Completions/symbols.json @@ -466,6 +466,23 @@ "command": "editor.action.triggerParameterHints" } }, + { + "label": "managementGroup", + "kind": "function", + "detail": "managementGroup()", + "deprecated": false, + "preselect": false, + "sortText": "3_managementGroup", + "insertTextFormat": "snippet", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "managementGroup($0)" + }, + "command": { + "command": "editor.action.triggerParameterHints" + } + }, { "label": "max", "kind": "function", diff --git a/src/Bicep.Core.Samples/Files/InvalidParameters_LF/Completions/justSymbols.json b/src/Bicep.Core.Samples/Files/InvalidParameters_LF/Completions/justSymbols.json index 8353e529c40..84d577206b4 100644 --- a/src/Bicep.Core.Samples/Files/InvalidParameters_LF/Completions/justSymbols.json +++ b/src/Bicep.Core.Samples/Files/InvalidParameters_LF/Completions/justSymbols.json @@ -732,6 +732,23 @@ "newText": "malformedType2" } }, + { + "label": "managementGroup", + "kind": "function", + "detail": "managementGroup()", + "deprecated": false, + "preselect": false, + "sortText": "3_managementGroup", + "insertTextFormat": "snippet", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "managementGroup($0)" + }, + "command": { + "command": "editor.action.triggerParameterHints" + } + }, { "label": "max", "kind": "function", diff --git a/src/Bicep.Core.Samples/Files/InvalidParameters_LF/Completions/oneTwoThreePlusSymbols.json b/src/Bicep.Core.Samples/Files/InvalidParameters_LF/Completions/oneTwoThreePlusSymbols.json index 80cf816825b..f09288bdd4e 100644 --- a/src/Bicep.Core.Samples/Files/InvalidParameters_LF/Completions/oneTwoThreePlusSymbols.json +++ b/src/Bicep.Core.Samples/Files/InvalidParameters_LF/Completions/oneTwoThreePlusSymbols.json @@ -774,6 +774,23 @@ "newText": "malformedType2" } }, + { + "label": "managementGroup", + "kind": "function", + "detail": "managementGroup()", + "deprecated": false, + "preselect": false, + "sortText": "3_managementGroup", + "insertTextFormat": "snippet", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "managementGroup($0)" + }, + "command": { + "command": "editor.action.triggerParameterHints" + } + }, { "label": "max", "kind": "function", diff --git a/src/Bicep.Core.Samples/Files/InvalidParameters_LF/Completions/symbolsPlusParamDefaultFunctions.json b/src/Bicep.Core.Samples/Files/InvalidParameters_LF/Completions/symbolsPlusParamDefaultFunctions.json index d2c2472f21e..7d2a7eed35a 100644 --- a/src/Bicep.Core.Samples/Files/InvalidParameters_LF/Completions/symbolsPlusParamDefaultFunctions.json +++ b/src/Bicep.Core.Samples/Files/InvalidParameters_LF/Completions/symbolsPlusParamDefaultFunctions.json @@ -732,6 +732,23 @@ "newText": "malformedType2" } }, + { + "label": "managementGroup", + "kind": "function", + "detail": "managementGroup()", + "deprecated": false, + "preselect": false, + "sortText": "3_managementGroup", + "insertTextFormat": "snippet", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "managementGroup($0)" + }, + "command": { + "command": "editor.action.triggerParameterHints" + } + }, { "label": "max", "kind": "function", diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/arrayPlusSymbols.json b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/arrayPlusSymbols.json index 2726781fa9b98b1a6f61662b887c1b736e6dc9d0..471a0ef1f269809a1488c5988c5dc328b90848f2 100644 GIT binary patch literal 114758 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 X);|^B7`xvZ{Vl$YeLnnw`KS3m+?A_2 literal 59344 zcmdU2+m7705q)1^|6wpNur?4ZyuR(_&4|6pBzC-6&w7CbfuZSUj~S~aMN*GvV))-f zUC5#&Hk+hMD(1xodQ^wSbBe{HC{h3X`m3|E&&@w)XXj~h#nSVi&d$Gio_vhiifVa?2azzT=|n zWs+Stmwx`zqln)!_DTApJn8uO()`z5Ipyw6_VTviWm5Az^JUO%JDW!{Ebz28n?rw` zIDLEAY*^(Tl5et!Ap)BdOiC)1GpBh>vO6^lJKoW#pU-OXurFR=D{%6 zhx6n2dg~^_s*D!}t5t(=4ca(vdUWsMgY%v$nK3r`exI}%4l)A#cFsh$$jfh&mZxv) zl3!o5@|UDc_N->*pLteS648A1sHe$^uq98LxQ$fWFq`mg_jxtdAc>u zX9-;EmNRUz4_GGNSDC~_e@>@}t7Q9v6)fArgei#cw!$*oLKN7(XkwpNFfW}8&vG_QUN3cWW5kMp0@v#?=PXc)aJ47A#KwxE>+(1DHvMRaUWAZp+v_PrbreT#p*O zdiy4>)=2tIpQr+LlP4*ww0i|IS}n7$w80cYVya*u5<~hyC`cx@ViXNdax@mWVhnsB zlcMbx-N?wqj#)Onzh)g7oei=WLqF)`X#F4?8QY}#z^aSvmohKJ_Tt^&#C`p#I<{HX zjxc-PwZofaTV*CTyLEc`x=rfjx03s$qTU2E{KsCHXk1~EmOZ1&Mt%F2`KZixm>))_ z3y3rEidH1)4q>LM*(Kkz=i9C4=#gf~B1u@~4V^&J6*_TPk>+=MmU$IfVshxMP^D3* zd?mxKq(BY=tmRFmS?|GJpJ@>z|yVty`O!p+L^YICc`7`o~228_XojLi4V-B2Ja+QKEumwLJIGqc~c9&_{owB-eYw&GRD6@)AK?@k-?K^npR5 z%TKwgOQbBG6N?V9gcdq}O#C-~1!XQ_sAoU<=%b|HFL50KTSy3#-;rseyNDnUq-P9$ z0Bw1Jpsjcn3Y=JmLI1pYj`bqjvRm!pQ4F<=z{?9~Y&KpE2ks(_I2{jS7+X(3URO|P z_y0rDkP-SWNe>L;Zh;X9T`yxR(Wo=<&VP96=K9n)qv|*Xxu`&cb1mVZ#n_dboBgyPfJG#pbbz^*bkJh#(zz^%*}kZ~UIc3mFt-PW9+)^?Vdt~! z71h3H^M=#!y#6q`4`F!jouHk?K76$@G{SQ_s=vlTv?{xkSU{Faoj=^ zFSxU;68i_gvMN868+PHfU2HH%rPksd6~$AR$i~5rmzCEJa%+Go(9i=SNxEK9%?>-i z`_tOxvr8fk%S8PuyU4tKtMn2-#=`1Y{Zeq7@b`z2<>8Cfr4E?beCLUKvK(c3a1Hh}Y69WNP1ZbU1 zfSRnZZqrI3ZbweWf@SY}YJ`wtnpfX-KTKk*lvSiFE{Q~3TZ!bYpA{ucG*qh*)+ak(4@0a8IjxY3Z4N5SskXVYiwnr_|DLKEV=|Pk@brPnS9M z-=2p{HP>S(xCJxK4{T??;TMJZ4hCWcK(e;Z?h`M^-eoWx<1AEb){W2*HEq8>)o4H5LXHUU4 zaFbfA+%GdZb-G+MSV55{s~kU`!F~y%0X-(BT`I|xSGCwkttMe?xh*ekP}9rU4-=6q zR6(k5R4HbkT=PwLpw9FrjwR-ecC%yMh-#8%m25Kb=5!j-E{6f?kUordm{fu{F;MA} zCicm#PlgbeVwv_hWNkkTu`T6B!6DIZ6$=gR=b4cRHY+v4PSW!2-sW?g)@RrlW&{%xx zXimE8bmw`uT#gLg4vlvml$_tj83!Ko&BsYV+v-03`uW7^XmpGXW0m+m}im6c!HUbmXOKR zPE6wH{>_yHmWHy@_Zvi-F95Z$D9})(s<^Ch4GBr(681D_%K}gf%K{BWDvQg`tX-BT zGp8I)VSrj#7HB9^SzJD6XON{oKF9a195cajg;%mP+07Tjgi6P??#*c`i)8zX?clvZ8S|E{i{1ot`(o^ciMvdr%rkje;EjEN^yf=EZ`MuzwvPvR>{Yl17t z&H=!WT3q{b%WLt6&)q8R?CiX&Da0>d`dbjQmWiINNMGZM1AT|A7T;mK=w6%m;?Qh4pGY$<9h*acd@22vRnsS@ZO?&} zgZ2jI$lMOFBjLC8DTL#Pli2km8SEEe8Nef=+2tFS(_ow%%wWF&&j20~&)<2c;bsuP z#)PZ|{Nfqx7vLGdBjVX*e`FfZ@LWO|&tSg*&j20~&n^#2OnHU}4Z?T^`vrIg@Q8SJ zdGcY(^V6C0AlNU!Gk{0L^V6XG{A?!AV7~y*03H#~&w_aVekRXgzW~nw9ud#q2l4#F zOrF7h0iFRoBA$N;;TbBYplJ}y@mU7!ct{Sa>7Z%~;uy^FIR@-_I1Z}kpkfN*7|iiG z2JCn^4yxs#S_EXyRfu<{Au7L2jE1>{(`^;nKcZehg}z%3YKa|_6^ zaO<%Q6Cc8bCuk(Cr&nPEGb};}pwwKp&Nwf@#MMxWd(jAHh%^Fd1T=cA2n3B#b$ihW zW{5NbXaqER6#s%oD6qX~1T#b$0W<;{UF!UbrMuyGZX}7e2lA#?vpJkXk}(LboKA|> zNAC4TP;))zi$H_+O^mJZzIEFts<%rj@u|mpa&y)43TbPAD#5@5Dh(PZ$X@ZO>ZBCM zLtfq$Ji8YEvfp|A;qQmMHoOCG%_|N#^D~V@BPJDBdAr5Nq(e3`buB;CSW--(mQiEc zPF#Y3e~y||&4BRAQjL6$dsLB@;v1`m3$`it*Rf=q-h>&%UZR)5S3tT}4K9Gsg z_KR!^KU`Itk{7<8EUz>>R8cfs6&_U5Xui;m6wL{-rW_fmh=z?c$lW*W>p(n2G*% zDqhi}(^XWReDpdfsJR|9y$sqnakWCt)b@!gN^6!Snb$(Qvp^ML=mV7utrzzn+;e%w zxFZ2lzZ%jGiFa&^Po=>xQc}SmvMI98U*(^))a#;CXM!rv$O|e}`ks*`o&2|=@D-yq z!4+fZ1(_IK&&b3m6P}9o@7uz3Fq!SPUTw6TS-w1aZ-zCgvq~W|bjP8jDf!-OIuO^R zhPB?liM2IKnx;=w0e#4JJmb{|wtbheX=!7N=p&}HL;47=Nu5<Mtq|8;ujm4s|L4HE58L`=7~!?DLzYD0Du3vdQNGY+o{}pb916@s$x-Fd zTBlM$^oVS9l)U*&fHCq7djZ4@hI0P||)W!6bf6!bzXV z1iWcpcoXMk9@6POyZ!KIxU*?8nq5zsKutqym10VF=5!_1UM+8kh%+|(Lo8q3irYe! oD6-_AUL3@uADg6R-k;~4*8+|(^b diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/cliPropertyAccessIndexesPlusSymbols.json b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/cliPropertyAccessIndexesPlusSymbols.json index 305ff08417a80c28691b4cbeb0807d4a95803cc0..75cc86df6a2e6382c832cf58b37c4e476fd8ce6f 100644 GIT binary patch literal 127370 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 literal 58724 zcmdU2ZI9fx5&j+^|6y@3a5hi`euMbe(nb@Sg# zNlOkT@wg;4(y(7_;Fj}n_&lTGP?V^DeEG#{^||?HwK_?YOO~EIU!9z;OP18^b-rPz zCx1Bndd;&<^J7uw1uN@M>W2-h6W-c^+3Nlq_S>G9Z1Vux9Wpz^XJQGNVZbiou zdY6>foBU%YO~g+(NxElEw-=uZ_I&m0=^5K5`?Nk?{daZxhE;W5veREztAA!Eou9u; ze>bcs*;)*v@p_x26_dY+zgH|}>w5S@m6!DeyKVk{^60&h1)f!6@J*xd^KzH8O^Y<) zS!*YIfL0BM4O~*4S8`YWY;=C1tW>H7ozjv$~RqHuB3d@uR;nKoy|p0nodw1nsEE zMEH*iFLeRr>4uf+&sz9H+lgsI#6Dn|cwZ!02p^88h|6Si#tN2gATddzM4Yp7o2;3E zD}&iY&K|!vV3KjC`QpRjV?~u8iC~AwB7jCf<72N_d=khb*dg)=pb_x+#EZwT19=2H zL>>V&0v^Bi;_+!9k6?$$BY;N0<5M>t&zrfV@MUpeg~8zfl9IuLD=za3lq+uY3baSy z48RE4DxKo2V$UGUNUAI=p39`Mz^u7DL>1^J#uixj9L7aeb$8ugzWV z-IlR=o_d9`Xpb7adjBS_mPq=|n5Y7EohK=)w0i|IS}n7$w80cYVya*u5<~hyC`cym zdn+28I19Jv!4!oSU-sS z`eSu$v#cFq^1N$@H_5ihOl)@R`0{m=)XC2!_lf_531;{Yy)e087#I1V z%yyU`4z5en8N`v$DpY7ilJ1br;ev5?!FTM%W}_%^6H1yPizH!{H*^9?SLnoHMVfzV zo@G#MxM-uSP^D3*$`>kSlqdHe+_hti0-f~%el(;X{0im#kNK`hS@TTJxC*^V zN}gP%pbI>%FuZU&FHB%F31R9gGEHa1W==d@5-}n`jxrCvf{f4`6eu?W2u$hD~ z`5l=ix{C<%Kzf#!#}s`4ZGM5EuXq&-oLKrn|Dt)0^*r0KTkYXd47H5F^9yI}HeL;T z?jl@qIv&I@ww{2ztf0{E|A(R>SLnOur4Wp}1x6rry^Os?qfXB||I14^*Qdq_RmU;N zSp_nUAxf=uN6}=1>=BR;@6Zh}ml6(oj9s~@*-r}sSVZDU2bfDq2R+6voy&rl?F#Kh zNvVtFxtP`fb9kp&*5H=kSHmFhz{h(4qj*U)`8(!v_ z@BSIflo_rp3RXo3nKH^1$1ODRA~DM4t-jBR^}1nMQ-9ZMm7Ffq13#djDN)kS@^=U($*(;icVUjIZAv}2+YfM@Hx z6vwaBhbL`0tHc97s=ksdA=^&i5s1lowM8=W9ey3p(q==r7ZOf7V9dlibPyTs zF861|xk&8x$L%P%EouK?f|+uLUYLknAo0tQ(Ip= zq)RS0Ny^2kNus!Eo>?A=WUpuLFh&UXJCIFUEfnK$WEL1C<)xxafqas~77vtE!6+?5sU=XH*(m?g)!FqVF`HJO$gpO=>N2zs%&+ z@p92%1x1>ya{PD(`#FdP^q81-sU%Zg)nWs?8ildtw!E}KO)o<~OhhhF1*x%7rI=lE z#n;_IM&p|}mY6r%O^$UVs!5tfvPsXI<7q@|4i~6H`Y_sIQVHI~K&4BX*d@0<8A3G2 zOb&YQCdL-X3(bhgQUdqdH5KO$p^~rlPDQ>L5gqyM*-aOD@rvEB6dwB;T@SV`rCoOd zlm%saemUBONxfzA_MNUdB=Ng!U*4`+Q8&A(I7%4s=F`N`S$yhfPP*$PzGfGshi-?) zyADduZ{v&ukNNs~M4+wi)7wucPDi6-tnuPFRhjroBHNtlhrW%Nvn6Gl{bVL>;AF&_ zoC@L@j+)S3)E$v;30s3FcFZ{hvG*90N@h=kq{9=;gfxdtrhZ})NB3{4B(OAeSg0B< zBFz_onpqU+C{k5iR=9R9VNY|iEC4mLEYMM;vbgNb+GY8A;*_IZEdVvMEYMM;vbcOk z&>+j<*dpJzq1=$>(8S&1>auSlj*#Hp9=DV}sN%Z5!sM(qG} zG4Y_w=+$$o8}j;vJfp(v>N43)7r}%|$FuIu@hhQ7Hm}$gUNn<&ZrO@Fm|))T9(rM7 zZ-EU5IWnsI-UVM@|2-G8^C+loa!4aoK_sa1gh~?W2-#*tQRX*%Bi>z8RJdFt(g;-) z393Ay5=A;fCQ6xPSL1u$maC*Sz!anJ0g({hsHoCa$+oOyncv46l@Y2KBTuLVk&e(^ z8REk^iLWHB39cZ0FUaKRMn-pqbO)*Zsm%A|uh!er)!_uT)(}@1lSgFoXwDE`F(Iej zmFkSVIpon!-XqrLd_yUWm@SH=RP~Okyf{nYOeXl2kq~8IF?n@2hBOHx(hSco*exui zpw;Vq!%m*BPLk>zYRFo&eYxSa_~CQ6N?WZ?x|%}#<@dvZ4dQPZ``F?N0C45_x~^+0 zHUmf8SvCmAMo9GOegHAwcc+Vqku6AHYlpOg!)2`}N|`Y&o4sGcFyQeSdr@ zeZ#8pqqepO2g+W5J#%Dkd)Sfi+xis3@xxK<`jHIwGq4Qc5z*}OvB_~TP7P+TpMhrp zkBH|--f6hG2;fe(tOfky8SH1^8Negr+2w}%IG$l6JB(+rpMhrpkBDcNo%J!#urnRT zGuY3-Gk{0Lv&&ZbnCGVx=RvTafoA}Zi07w4`T5yIp22kJz51}cHTH|iL}joJ3Af;VQh@bY0s@Fc=g+ElJvkzDS%rr#^x4~W8v0g`6juA z6;c4VV2sTzAjiV3$Ffaw3oD}lZowFvTR@J5TaV?MV%SOEoa3&z;o0&*Y97K5!AHDeAA@YzlpI0-nVYYMD=b~CB6+F_Y;>O;Gd%=RdYdjWvNEV)(SOMDOBZ)iP$CP4CM)7(kex^QbfqQ$2N7; zjRmeCJs-%#Xval1h3_w`b;%3gZ(LWJ9jYiAt_lw-X*6Hxt`yA)v8R~t%Qe$pZFaeG zj0kgyX7Dir`M@huA=@0L!rD4NqJNo+SB&U*6;&tKUIzs=?J?6!uYVI)3)D>Qn5d$(W?7PXEwnoeR1x|V-Mb`PN{G*n7U3BV9P~{nTL8Z!JWMoMv z|G6l9#b`}%#pruMCPp_hGBL`8r(*s4wlEz`X1lFd8!ac6FOT1wVNL2RQpoh(aVTj@ zzVn(6M0?b**84ZHwnRzOjEO3s_t}yz5~~!&LS~A@aK3? z?=zlzeR8igzzplY2PWngi0f`tbb-x(+q3RVs6H7+c&+S^B~iG_A39}}FLarwX+M`> z5G+=AuK#DavuQG#Tu+%mO_$ap#gy*M@k**~EpLd3Gd2&0 uSiZa!w}mQEWXYe-_Ttfxby73$@3~Iv0Y@7-3hx2Zs_5;uuJ@N;{Of-!bvd~J diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/defaultCreateModeIndexes.json b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/defaultCreateModeIndexes.json index 5474b94efef31fec89d60907c07ddf82af5e5832..4c54070de9ff279fbf7a0daf74639a4bdf0b53b0 100644 GIT binary patch literal 139078 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 Qj(kgRV;6^iV*XT!u`+?5 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 Ly567t>6iZlxjrfO diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/deploymentScriptKindsPlusSymbols.json b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/deploymentScriptKindsPlusSymbols.json index 2018be5376b5f257c73e266847b69f7366f6f7b5..c27728eb7728356b493db2bbc41f5599ff76e41e 100644 GIT binary patch literal 115430 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 literal 59016 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 literal 58729 zcmdU2ZI9fx5&j+^|6y@3U>hg`zr;@BZ$|92*V>6|UmTz>aCE!eJJwoBk+gT`xcToT zr6q@wcv_MgY1l6gvd4Kie4f#8C`!~nzx-mg`YiuhtxnS9oTVqvRws8q@@#YWCFRFW zew`^3@u#aK-80$Y*{6a%Tm5?X`S1IZegEq8?&`m*_J7{w*Q|VZ$2Z8y*? z$v_vy?RKB78{(CNAed-=&yZ;vU5`JQy#outRh99gV6~|$~Q@w>{!jpzwoTC6yg~9WtsTVFAY!y=y(A1E-OJZ zDl!p%*WslvfIQu>QvYm(KeU~gDn#r9mW}sC(uDBgc#1erHZNGgvJIppMU;qhR&J9u zvv6fGo5 z)(&5kotw_opvN>EZ&d&IbJ>P6JC2m3~Gh~qztoDXZAms|3IIKwX zPx3(q&4!CM+6q+~jjDa2Qbv1n@BWJ`a)wpt zRZ{ZgJOy3gafSYc(|Tb8n@I>;SCMIAx`-eT?5L~DV~Re2Horj7SG)?jJR)#3=wY)S zLn1(%Un1x$UWr_uKCno1cAe|GM9Jbgv6v8ZXkp^V#J}__D02xzGyC;-;rtTUEnqVV zVe>mOO-vUNo`9=uF-2y8Rx?a{^qEV;go&V)!nwwMOgsS5h zC!g$F}=`!+gMPq<@kGboCjnf6T z&)QK@ZJx>3WPaiGIflIM!Vv; z4KECH6h0iUK)1OsNzfjFB>*F&$&IJxM1lVLX{65BHfIo^UefKU z2FeE;V+&M#hjCF|)E9g1H4n=6m?CugCz7BU6O{lwTj!-Xx1&BhuE|*?o)XdZm0Agn zZ6_Upn4DLR;M-JNBqQJA*YPZEH-rUsIO%{f6YJ1HWVE|1^2LEU?B=KKAh<`;{=oz@ z<@CL<5xGF(S0kfKJYE&GNIU$o!1b=I?FH$a#dz0_?JPab(j)2Cp9iE)(u3KSzLm8&Bj!QtB zJp;lld;@$`e7jYN!}x}W2SfP=gjx6o_^9}Hd7zPJ4c{;O_j_NM;Tn`+Tp_U(aqW*< zqGNtK=cI8U$N?S~jVt6bn!ym_*32WXy<3YDWkaUxt|1oxT~un8TW_4>ziAFJ;t}RO zOH?+&p(yC|jZK)!eE9@RR6YSV3O-%t)c<&%3?GQ!1TaLargsP|!l8M8z3%|#_(#8T+lCBR_YP92`6QZu3 zuh*=q&Mw)D=HQk=X*hC6SiDwytNG+9cnsX8)*|=IY)&077cEv$q^T;$k7ux-gJ?jH ziD{QgGUZh*Hn6Kf7?0eRS2n2WrSFH0$OWn(JvOQovr8`cx;+hNcoSzN=B;*5?XP$&F8j5X~`@gW0={u?6yi91⪼9k3? z;_w<&@{Qi9$QL7`BfmKS=qxW@u`8CsV_$>oVQfoj*B&D@f-*h79PPrU-ZFXnR@WSo z_-(c?Z`Q1+hY)Es+Wa}p;aZLZFN&-tmhlQ%;A~JjdsF_89jv`gXWraJ= zCG2TVmIa_@mIXSBR2G+=*>PFE9?bWCQ;u=90MyK~Ku3|v;_@vzi!6t;Z+zc|azmO! z6N|$!DPp)6G^v2S5#hAGs*D20=Y0hcZGHM1g8gs3cL2knJrMWq!ps z;#EXVh08Ufj8H{UpxP5EQIsQOqLfK?G2Fr!xk?%XOfkA15DC$aiYi@|Y|BcP`F+4q z8=;CZ@PtYb;> zkTyX?n&H_QyMcuiw0fOy*vYfiNm89c4Oxq}FE_jvfB4+4(pIaJwx$rj{BgJiA%4r) zb%QGaz?I|cy0)#j(LUgAv2A%;tBA%ZF<>#jpc?SC#cn0u@ zczznh^EVTD2KyO!2Jnb@{w9d$Zzu8$_A~Gd;1TisZ3xd$IR#CFV2;l+V8=spP)!F_ zQxL~sj?Xb*$HQ?@JqHz25XWGS&oN-f!*Nh82h~y#$6$`nF<{5TaZnuxl~NGLV2;l* zV8_F8Pz?uFQV_>rj?Xb*$HQ?@{RS0M5XWGS&oN-f!*NjU_T97+8O-rH2JCn^{?5HV zelO2^AFw;Nf!A)5bnUQc?V?f>+Ir)>CDJtS?Cf|XgrPAiryaMV;MH%tNznr>#;0T+``HyfLk!e z<`$4+;nrh0rnrR_PXM=IjLj_|$HJ}0GE97c7@nX}v>soDb z@7yR7#~#QVT21C~2ua2uxN09AsH2UHqJC&*s$sp_N@$3vcdDtLAw{$;=L`ttAlytcdpKblt@aHeM(hfZuN zF7kHE7?Td!$TqZmUt>uzgqlZ$jq%nMso)RU6j|r5@@pgYy6DuJ zpvu$pf=ZRc$jFjT{&P|IiqV+hiqZ9gOpJD9WMY&FPsRH8U12+zZ0xpPZMB?OzC8M1 zhqbA*NFmd8$DyPt`Oa%P5baUJ+U(!P+7cy=91~SQ@3Sq>cy-A(?=vh?EM0RzQTz)1%9MJ8zo)s!+J7hUDu8s;iU9>Mz z2y~VQq%lJ%Wj~i-3O^>{luu*=Udb2U#Ce(fba>Bh*ZmppY}$+_*Hbo7+oiQgF=aY) zypn2Ks~aNXjLpL#mM?F_ZJ|mOS?W(O_Ttfxby73$&+|^}0Y@7(3hx2Zs_5;usrQ#( G{QG|(ggjdS diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/objectPlusSymbols.json b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/objectPlusSymbols.json index e5fc28b6b9d2f54bc82613e495377b02d43be133..681aa3f9c1509cbd3dcafa8f199bb08625add9e8 100644 GIT binary patch literal 114758 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 literal 58666 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 literal 58736 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 LwyO7+U;O)jqXkfs diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.bicep b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.bicep index a9364cf257c..81a7569f8d2 100644 --- a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.bicep +++ b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.bicep @@ -569,3 +569,13 @@ resource invalidExtensionResourceDuplicateName2 'Mock.Rp/mockExtResource@2019-01 resource invalidDecorator 'Microsoft.Foo/foos@2020-02-02-alpha'= { name: 'invalidDecorator' } + +resource cyclicRes 'Mock.Rp/mockExistingResource@2020-01-01' = { + name: 'cyclicRes' + scope: cyclicRes +} + +resource cyclicExistingRes 'Mock.Rp/mockExistingResource@2020-01-01' existing = { + name: 'cyclicExistingRes' + scope: cyclicExistingRes +} \ No newline at end of file diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.diagnostics.bicep b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.diagnostics.bicep index cd75d240fe4a6a5f78fdf081dac72180d1a1774c..41dd07cb119c154422258b4bd64807ee9db55e4e 100644 GIT binary patch literal 92140 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 DBpxg( diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.formatted.bicep b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.formatted.bicep index ca67402502184969dd3bce1f1c38ec29f2602828..410c08cc24a67be53e46e5c5ef078617dfdc0e4c 100644 GIT binary patch literal 34808 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 LITT6b=PC3*NVR8e literal 17146 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 aP=NoN0gkP1Tb~Ir$$(F%kR# diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.symbols.bicep b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.symbols.bicep index ab1c3c363ec..9d94ea4397a 100644 --- a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.symbols.bicep +++ b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.symbols.bicep @@ -694,3 +694,14 @@ resource invalidDecorator 'Microsoft.Foo/foos@2020-02-02-alpha'= { name: 'invalidDecorator' } +resource cyclicRes 'Mock.Rp/mockExistingResource@2020-01-01' = { +//@[9:18) Resource cyclicRes. Type: Mock.Rp/mockExistingResource@2020-01-01. Declaration start char: 0, length: 108 + name: 'cyclicRes' + scope: cyclicRes +} + +resource cyclicExistingRes 'Mock.Rp/mockExistingResource@2020-01-01' existing = { +//@[9:26) Resource cyclicExistingRes. Type: Mock.Rp/mockExistingResource@2020-01-01. Declaration start char: 0, length: 141 + name: 'cyclicExistingRes' + scope: cyclicExistingRes +} diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.syntax.bicep b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.syntax.bicep index 9c866762fccf239393217842eb117a113821e5be..e6b77ff4d44daa7fef7e7bde18d66e8a29cac7a7 100644 GIT binary patch literal 265124 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 literal 130518 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 literal 66334 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 a(q%6U38fCpkkB4I3_;st47p?eHva?pf=ZwO literal 66542 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 Ke^e`lB{QMJ2XCnkQeyKZnx{&nE{ zIkU6paqnJVn~+8z%lo){X3orao@eg;*FR@r8s_05T!mSf=<^_q!$?<7^zG}g&@VH6 ze;I!nhCjvYGhKz|Sif&nt2XsZPPHpOlgR&E*XQB)VLN;hw!&}2$9n%XzHWt~_Whmy ze+WMfKhgUjoNL!J?fO8UhnY;{a4K$NaT>1Ha%H0R3rTk&N~3ubHCsrteC=zkIS)t6 zHG4~LrKXAVJiHb?{E}o%>7X7(t|Os!6uu2#ghSzy_`Hp>+AA71Q9ly>Jp3ifj}_Xn zek`39;f+?!B-y6+g6jJvRYLbS5!YY!ME5LQuXau{x1;)UiP%W*wzf+vIG5O#{;*EZ zlBTau{aX5N$*b_Jn|%t|rowL`EU&|*aGeTI{AZe3t{sJ`>^&C+zO|jLz7($u@tW!# zZzQ&w-ZK~7rT(xYG4Z8d7y3RAPjzLaxH^t;_LXEgm27ZW=$9+;^Z39EM=`e814?$A zE&cjS@m^$dvAWbXMM~+}tbDDt*ezuRi>RBUKY0&)_?t(mzKi;_qv0z(vYUAM3f|FT zr1(G8CyU}XWSqi$)4%yU=tBSB-KpF=eM_IpTvYn}v%;_Lnuq>)>pb*E*et@U@G$&c z9%*@sYCv4fg@1cqDrJBF@tVirhZ3wY{4pGBNKh6l@--j@wd<@05X z{jW#$ApAprgEd%sM5mbYE4=@|$2k}r$@{2B^gQ!GMIq}wFFf+5D(&9;qUvHU<=@n+ zGjSYgmrMC4ePimx9>-tlXQ-Al{d%rm(t5q2u3V^AQ*%FF(to5r>q=`*!rx-GBd<8s zy=68^Rp|>|;oD`n7w)SQJrS?_;q5X)z7x-x_Ijl?>~4EMk&N_eNizD*o21`VuQgEL z^-6V--jwP(2!GYya2~{Wv?O!#o+ERloynsU{Yo|eETRae`6`p(Ypt6Fua+*W*Y*;{ z+i-X!nUNID>GH|s;IUZA;%L>`(`;4ut2Od96|(VP(^(wPqQ|sXl5Zs4SZI6S03M%5 zOP=Xkd3vxex2@ANd$s$1Ez=`;&Al~s?Ld~E$hw?FKgY9Lz?w<%7$u^lY^^-4(6ms^aG9nSR`PbA;WR#r2~?GrO%H|Zk-X@l z%0*^1a_LF5g2{CvnXT`~E?CF&aDEQrRA3gnj`9@4OB&wHfQ| zi6qmkN>jbO6F|b8rrsZ$jTQA)b6H*IeC%R7tUJ-9I%Mnm*Pc8-wQGY!x6R@Ga-(^k zdl~Z$^TB-HU=d;~+o~)%h-$*=g-UIGmCKCWj@`a+K961Y%Qa`|R1uhP;L$Hd-RwZ& z%3pI9;lJdl4g))TZ6%*Qs48rEMsgm!lS@wJ?RNUdFUt6Rx7jS;na`=#<-gor>pw{T z>*_?9b1t=|J135eYTh$*)5{Fw)RxIDv$bEwSNblpI-W^B#9OX4A-2gF`NsCiJ;!Bx z*Ek$#*SsTptnXy#zJ5?=5NcIB$M>O)#TEJxF(CP$>w|`LuuY!*GdP+YwOWG@( zyodO9l_hrNAt&Kk)Wau9RyRD4Y)Go+ns#nafH{`2u%hNs#q@0N&t zP{tSfRVL0sbXMg4VR$58WbO`E>wd_}i6?yPjt9zSrt~_Nx&xnI=egcx_53po9|_+{ z?2E`;!=+rWw5v_xAH*&$U$Y@uISJU^Fqa$O{XW`Ys$58voryB1!!G$fFVCLby=hvj zMtVbi3}=V)@bd~Ebn&P*49gfZq_-s1C#(MwVK~&j=heAyygUARmuuZ^>ej8t%)4~& zRBiu}kgz_R`AEA*VZmBfx?b)s5-UVF-33trzpwNSZcjv2-;r6@^L?(B7qZrId@nn` zA1iK{G+FoVeOVrt&E71n_nLtplr;D-{+mZdqHB6lNxd#3dTb?5o(-E4)ETgimeXJA z7fTu1at`rnImY#>Yg5yI>MOg#ifntWh&fbd+Z6g%S9X`PC+~r_Ry~kajFg!iU5mfw z4iUL{pt4d?|*>u<8f_Xgw>KQSv69% zvJ+7oN+Ch z^}giygTXQ7hZ4QLR`i~)e6Ss3IKGH$_~aaGKiiMh(04+H`jL6BBLz4F(AnqTMEf?#cXa2-H?W zKi2bS9TVEx9!y%8Ds!i*>^_;(QT?wp;YhvZ?yBG1)O99#aN5)-x*!mxo534NoeoYC! zS>lrOt388A^S$h@(QPYt&VjBRFG>A#KmXvI@k6YhxvZu;_bEYeYlR(FaxA*&I5!+G zskbZYE;>WGYlTU)v*KA>v%hT~3NO1y1diPEEhCp+ZK5ZQ4kNPZ6ni&YVd=Zr$6|3T zS%|ZAawHpYCLx+_T3Ao=?To{&rlp2jfuInb=LOQ-uH_*(EZ#BPiTSSh3;?7<0RZ?@Jxc3T6R6#hu1MJ z@YDHj#2B=VauWV5+->@aF6fn87<&IR4{Cm^J*(*zQ$1aVWqB&Wq}>wNGD9@ibmfXI z%~<+9_u1r|tV%T7v;e)keU~^gP5IPE$L$YL$0iz9k8Y=#D(l7;)lqFHk*dVjYUlqV8m!D-ui!>(M|ex}+`gb@XL44!t|j*>R+IE9>mqCtKxud9M0Uwa=gUZEBxua+iFz^CM>J9o0dP I@cx?p8>7G*2><{9 literal 6266 zcmd5=|8E<&7609U{|6QeARDMpma=u5fFhHuv^Bc4f$gQhilX4%QP#zG#~aDBtETzi z`+4M%$CJ)(G6dKhCsOzxAK%x{d!!Otwki`W<+{kOja2+ru*s_;Q&P)~NxG$}cBEyN z$+kB7AM^9s-_Op!I6I$B*q7|x@eyM+uf&2)tfaJ*sh-ekDKl;gS%dN*v}xVyT~X&) zS%IxP!7}T+cHx8tao2{|Iam45Ute8Yp7+N`_&q*SUiG}z|CaSY>+ghlkm_y<(yt&{ zb^msD{+AJTs~v6LSM?T(@e-@UqpDq}ZRdv%^weL^X6K_vi#k)g#)y1G1;NQ%bE{dS zWFwR*gbwb}ZPQ3)^f$&d`bP21rpUgp%iV$*)e7=FV?4`*);EPv@bx#+SXqp9r`n*{ z$Pw?I*j?LH0P8{cyN!%#q3#O^4QkL<3ie=uj^Jr25aM1L;)FNpgMKzeiEIhS)6ySp z>UP@?`%jleT}<9MUpJB{vL4jqsztplBU(4y1H+;;uYgf zQx*=yz5~QDZB$X;0`(?Fp5^ik^k?tdy7*5kt}W@rL(|tvw#~_DQsk%a5s-VX*j8$T z-LFetTVY=wh@Vc`!*<7NY1rFV8`f&U%vLa`OkOCFnR54nATa26?aGp*Qnhy~jx$`= z8jy+_W<_mC3aRDO6ISgj?@0s9-EdXKMe>74r-ThceFchd4}jdhJ;1KW`~H;6{3L># zwanT|)MmY!=G<_!65%_}@kRJXtB3G_`0e?R_!!H0 z!?VHwQHLDCfy8FBdjy_GwPNsrjp?4Y5XJ|Rx}bvG$o=BG*Ch3RFTH?qqjm}a(xW{_17_A`8^ z9CkfO6j zuL~n=NjrS-#pm}knZ8BkMsthChJzZy+GzE-e2R{t{20&hk!*zXC>A>b54yPl0l{Kl zvX|)9RMfyKm;I#Og{(KlZPcZ0As7NMOaL8#QmG8uxKkBfh^lp+F1msZGX!n8=Vgob zAL9FgX+~S=C+aCr9{sJ@jU8JS+JK}-PW_xs=I3)vYkwx}I!zi?R9x*|VHgt%dz^DV zMu&9=WRx3Y%J>9HJmL}K#~*`O8D7*v{oy%T%sFxpx?ivljt&U)Go{3`Dc%T0LlSC( z77`v-Tn$;an_VM3gTZ$~v928Vq=asIAS~jy;)a}Fs&6C=V?GAyxS%{#>M0seDRnZ+_-@G+GV}>_~e<+wxZ$_ z$lB5nznD(lN>cF}*D#Wu@LyXcl1x?|O;6p;i_$YP%PXC{)w2FmNHYpGq;wI(L9^tX z{sac^Ju2t1xRd@4asjs%)`6G~((O>91kZultWVf!W+Bfs+p3|B`(*5K(lyyB6SfzzjKKQ+QRe;LDXs>$_iXPA@JEdFJYO` z8Skgnj{Nkf{EJT}pG7$nN`_PLdX;=P;?DIw!Fiv2&q>{Q51HYLjQ402GwjDU?X$9H zTLJp}jP7GcV*>szuP{2%h|)cNq_N(sF7MKz)~m#8oep(gS=W=!>6pf=0mj1OZ|&Pk6&I+@OzHd>-+~HQD#aH{X@`q69Z zuiAbj{)yV^6V%vRH^RFC)j9Mc8_h#*2oIP>|YJWPkPsjAMB9zgs}F*S3q!u_ywZ{4T3YD5MgDQ z6|?zBBMZFNRGk58QRPGL?zgzGXa31f3?flSurR9QKtV>}$q090yuSK#KQQ%2Wjt2f zaO~{B1z~_8YLA9PKSiA?(XtY_UDvlRbl5guu%O2*mNyUbB6^=*Bch&1qUN!v=ZB)^ Jk80&I>31Yor62$R diff --git a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.json b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.json index d95432768efd163a3ac91c6fccc58d7d828bdd7c..bc3d0211154c0ab470149e779cf673eaba7c8529 100644 GIT binary patch literal 21744 zcmeHPTW?cG5Z>qh3UpctkSM94r7drP&=yf>1u2zkMaVb_1k%`z6KIO~>utYp$CJIE zi*JDhS@E%t&(6-yeP(C#-@ot7XXX-KmHEO<%+S0vJLXR_!1vqs?n`ro*BHOuHfwnK z&s?`p9^mO0cGQkJz_Zu!{U38|4sq`~Adc`d!1CHD{+x;P%c!Tg9^$z@dskP}!|1P0|NPNoKtIGE zXC(}dl~GC|q0#{O5tluzjQ9xrN7Iq%2pM&R^^5^k@t9!bA;unnat;eVE6rnH@=TwM}R<19hocUGTuj^;9$;R@YYTXaq!7dRr*s#5WyU8Me`wxd3?cn$Id)(+@tyZ) zqs?q{-p6`L;{mS3CC5v_Jmw5}a#Xw4w}AKDJi)3cC-ZT>ygEwr1pMXu2Igx^y%C;$ z1-yn0tC&F3$>)9WcLUF>);-0XZRdIp2qQq~F2R(3%CopvMr{kTxUGo7Q{7Vts5aA$4KH+_9FKmWDJQ z;MpCsj&a0+96G`su`?y=#n_Tw^bMy**ZA02TPc<>b@`eZt6>7dO1j& zkuA>A;CIaP+x@JH3;WemTmq2;(bIX{chdG*j3Z?AG zQkAl){wbuh+L4eqTsb{}`0=rM07xgN)Tay&@h!DCF;CT!^gTP3a#s1I+|9`oeJ=gA zL`rL*t^YmNrBK$KhixPOx3cmtFb*(3;~T|PbeR@_mXn?%mh*Z$Mo-9<92dsDw$|3k z{hjG7AvJQVotW2vDtN{e&##3r>Fu}ieu(#Hh-4naODmr_im&$`FP*R9FY!DTAcj#} zjA|BdX( zF=iNH2Kp>U9{JcrpcSmOz_&e>~~vz+dP@{z|waG@`7nT6Wr5*{)} zZCcriDBkis*Q+t4+AO85i&OnE{2b~@{3~PFJ@86xZXL$+VUfqsw|0tKd@o%=1?$T= zS*cKgqrSg-itIh*7Ug$-tNrsztaiAbkHIqKDgL3`CT3Iz*2*wWrH`Q|v$Bvz`zoLG zkIW15HmeWG+yw;HOu~}*Rjiptx_2=vbK6{I=4Se2i{29 zgQ46BCS7Cr#Y#YopZgx-I*DJQkbuHV}8;l_q?7i(?1C@{7$>^#Wz7|at9cB?*0Rak0{o8ao7&`#}a$k#8s`XTNa zbB!7^G5TSxlXKBVlcTvkTk?cd4RLDnU>|qah{~Z}D^NHb zbH4p7wBZM=Z3GQq?+BxT)aSR^n_w37p~*b!*z8<7#J-=aT6W8H+uI7wa_e=u6thw~ zD$rjsc2-?FuIiztJd5GwW!CMH*YPffwTXDa?_0`M@!Qj_8TU2iwl}@3Da50WC zY0rGks;gnN$FMzT8CR*LP5oi$yM(ICtkNuFh3Tq%n-#9Gjd#vB2RimAIrynO>iF1Krt(uByADrQ*Fn>)e}ctxbheiE z^|iX*-dp9?@5`oW$})SgR@d(pcYKkap&tzDc|IRPQM#aMe6R<~@+$}>wm&$(~3o?B*B z40?$FXPbLId~ZhanD0$O+Z#t{xqT<6#jFSp(FOb1N`&799ovTG)Va8Ovp7jiGoJW# zXxv{!f33cCw$Y)5=)xC?<+l;rF!tsyj>Dz2BV2b1Qgtik96OSls^WKn0r&Qffz1x~ zTzD#$UH!*)_lB?e$Dg~QP`gE;7ara58DDC>= zEA!UUihUt(F_zTT9vhwv;|{*h^H^&&YLs}8RZZ>mU$-10uLQ=>{06Q`Pk?ZS@~qv) zp>!%#UrI~&{AcE|FgxaND^cudlNB${*7RV<%jal#@?Y{`m5S7}QFYumV6I#l8>eacEi<&wMG(Q=Xr1&5dJI zpW8PO@ufBP61OiBKn3A~p zUZYj;ExA9kXZM$L@}BmFq;zMT6vw4?osyy4icD{vLSPR#tHV+wW(}CJzF)cIf7FnZ zndKe;|9SB>adn#e0d@atk~`SpsXlhn=>O()r=6Wnh91sg8FpPP1G8Lx(Vg^mr&xVl Km*A?}E^`T06+EP`IVHY(!9}2SxJBKyDl^Kj z$-!=&IodZJ#=fQUhViRWl!?zQv)BOXYgPiper&WdUHt`9oua;l zAHfomR7y{WHru=Yr`^f8MJbwve3eTYwJJvmx_|04&pFE}m$6q(REZWvo-;1RZ@7D% zak5;-;kztBpg9EUVje;P7G)6+eq+)K2bY!_={?H0K~1}&tC`v-5EW}s^kje(p*IV^ z%%cn#L8Mh6QhrY}tdNK-TT}H&nIGl@h*-vnzZselP`zD*f|`C(!w&y8f0er&h&JFZ zgM9A!{cdRgzCETgPKYbLHkG)bpE101K0~ZWX6&}xq`0JzMCHMexC->cCmA6b=6%%5ZO zq4IERcGp>1jRyNdK*x~eB#fon-8*Jl8ti${6`{5Yzo7%lh-|vM)+raJaRYg1iG@!J zJ-Y6@WxGJM8IP>+kY&sGV{P}qW73RDWYdm1VPV0428sHU2cpCBoUmU~C$Ea>XM<~d zhT?QdIpCi5J>(e%Y{=d*l(oSyDjD>zS(Gz4&)EFXLT!xo$Gf#dqG+<%+Tb)xVj}PN_D!s~lg5*uam&FSr%tzuZfV?SE!zWZZGSip zznNQ|Rv0sDi$`WQcHSeI)m9NnQ%-i6=T%E$^Ta)G!vncQOjcU|R7MYK9BU0LAY$>} zKkK)qm0SNY`(BRwZ<&-%-8J-h?zOE=RXN<8$24*4T5x1TyhSa5Z4aB`t_#z;e{<-> z#_A%#9pdU7H&}E-`f>f|0*c#ruxQAcS_RPCe6TRtvrY9fb2rE>r4D&h_A=WxEC;(9 zR4t*#@{VK6B1wSBV*kjZ2G=m;5D265MZhT(q`k=tU|IooNxXAKt$&QYX>Zij5^OEw zPzKAYCX6}snMEF4$c-R~+P9I4-<(3F%QxBT;3NoL|N9gNJ@X8hzMI{)nfXl)@1_B_ z<^7$B?>}=P0v8ZK3gFTZAnc*6GFi=@HqC~qC}4sYifyyoN0i(>gWK-2lgh)Cg;%HL zHI{Qmy;rfekJ`Qw+$wG2M2mKF9cubT=*3{(G2CejRQV{zdqE||KL}T^Aboz{&_6q5 zXev)q zU1Edf)s9Emu|FszgG=f-{3C}>fV$VH-2u2NYW~u{yV*JY2X5T)wtXYiOr{m4E<(6w zQL!?~;+mK(K^Q?o;9j5|TM1-VUbb149Duj$&9*FEU3QDgWEFatkJiKhYrD7Kz=bC& zTmYhOCRrDDg}#@11XW^@p^M%j?=hnKrI!1-afni E7t&k10RR91 diff --git a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.symbols.bicep b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.symbols.bicep index bd09100935b..ea978a1ab30 100644 --- a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.symbols.bicep +++ b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.symbols.bicep @@ -290,3 +290,20 @@ resource extensionDependencies 'My.Rp/mockResource@2020-01-01' = { } } +resource existing1 'Mock.Rp/existingExtensionResource@2020-01-01' existing = { +//@[9:18) Resource existing1. Type: Mock.Rp/existingExtensionResource@2020-01-01. Declaration start char: 0, length: 123 + name: 'existing1' + scope: extension1 +} + +resource existing2 'Mock.Rp/existingExtensionResource@2020-01-01' existing = { +//@[9:18) Resource existing2. Type: Mock.Rp/existingExtensionResource@2020-01-01. Declaration start char: 0, length: 122 + name: 'existing2' + scope: existing1 +} + +resource extension3 'My.Rp/extensionResource@2020-12-01' = { +//@[9:19) Resource extension3. Type: My.Rp/extensionResource@2020-12-01. Declaration start char: 0, length: 105 + name: 'extension3' + scope: existing1 +} diff --git a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.syntax.bicep b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.syntax.bicep index fcb8715f7b7c55c82feb749b8dd0443537d885b8..131b662804ed5eff56b8ad9502a29ef2ad05f897 100644 GIT binary patch literal 129196 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 literal 61553 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 diff --git a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.tokens.bicep b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.tokens.bicep index e051ab740ab33cfbc7815beb4e51851c93a837b4..1fa759badad5ea7ed1a090b57ec3bd0cd8169cad 100644 GIT binary patch literal 72034 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 brN^khgA{^=XJ>yr{}#W)iyt2Q{ImZ7L}_7R diff --git a/src/Bicep.Core.Samples/Files/Variables_LF/Completions/symbolsPlusTypes.json b/src/Bicep.Core.Samples/Files/Variables_LF/Completions/symbolsPlusTypes.json index ff18c058bca..607e6650500 100644 --- a/src/Bicep.Core.Samples/Files/Variables_LF/Completions/symbolsPlusTypes.json +++ b/src/Bicep.Core.Samples/Files/Variables_LF/Completions/symbolsPlusTypes.json @@ -1074,6 +1074,23 @@ "newText": "loginEndpoint" } }, + { + "label": "managementGroup", + "kind": "function", + "detail": "managementGroup()", + "deprecated": false, + "preselect": false, + "sortText": "3_managementGroup", + "insertTextFormat": "snippet", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "managementGroup($0)" + }, + "command": { + "command": "editor.action.triggerParameterHints" + } + }, { "label": "max", "kind": "function", diff --git a/src/Bicep.Core.UnitTests/Assertions/JTokenAssertionsExtensions.cs b/src/Bicep.Core.UnitTests/Assertions/JTokenAssertionsExtensions.cs index 91d83ed3369..e1aef4ec8e3 100644 --- a/src/Bicep.Core.UnitTests/Assertions/JTokenAssertionsExtensions.cs +++ b/src/Bicep.Core.UnitTests/Assertions/JTokenAssertionsExtensions.cs @@ -15,7 +15,7 @@ public static class JTokenAssertionsExtensions { public static JTokenAssertions Should(this JToken instance) { - return new JTokenAssertions(instance); + return new JTokenAssertions(instance); } public static AndConstraint EqualWithJsonDiffOutput(this JTokenAssertions instance, TestContext testContext, JToken expected, string expectedLocation, string actualLocation, string because = "", params object[] becauseArgs) diff --git a/src/Bicep.Core.UnitTests/Diagnostics/ErrorBuilderTests.cs b/src/Bicep.Core.UnitTests/Diagnostics/ErrorBuilderTests.cs index 0b655808d9a..5e5fe466f45 100644 --- a/src/Bicep.Core.UnitTests/Diagnostics/ErrorBuilderTests.cs +++ b/src/Bicep.Core.UnitTests/Diagnostics/ErrorBuilderTests.cs @@ -134,6 +134,11 @@ private static object CreateMockParameter(ParameterInfo parameter, int index) return ResourceTypeReference.Parse("Mock.ErrorParam/mockResources@2020-01-01"); } + if (parameter.ParameterType == typeof(ResourceScope)) + { + return ResourceScope.ResourceGroup; + } + return $""; } } diff --git a/src/Bicep.Core.UnitTests/TypeSystem/Az/AzResourceTypeProviderTests.cs b/src/Bicep.Core.UnitTests/TypeSystem/Az/AzResourceTypeProviderTests.cs index 5e63ae7c591..d916df7e17c 100644 --- a/src/Bicep.Core.UnitTests/TypeSystem/Az/AzResourceTypeProviderTests.cs +++ b/src/Bicep.Core.UnitTests/TypeSystem/Az/AzResourceTypeProviderTests.cs @@ -22,29 +22,27 @@ namespace Bicep.Core.UnitTests.TypeSystem.Az [TestClass] public class AzResourceTypeProviderTests { - [DataTestMethod] - [DataRow(ResourceScope.Tenant)] - [DataRow(ResourceScope.ManagementGroup)] - [DataRow(ResourceScope.Subscription)] - [DataRow(ResourceScope.ResourceGroup)] - public void AzResourceTypeProvider_can_deserialize_all_types_without_throwing(ResourceScope scopeType) + [TestMethod] + public void AzResourceTypeProvider_can_deserialize_all_types_without_throwing() { var resourceTypeProvider = new AzResourceTypeProvider(); - var availableTypes = resourceTypeProvider.GetAvailableTypes(scopeType); + var availableTypes = resourceTypeProvider.GetAvailableTypes(); // sanity check - we know there should be a lot of types available - var expectedTypeCount = scopeType == ResourceScope.ResourceGroup ? 2000 : 100; + var expectedTypeCount = 3000; availableTypes.Should().HaveCountGreaterThan(expectedTypeCount); foreach (var availableType in availableTypes) { - resourceTypeProvider.HasType(scopeType, availableType).Should().BeTrue(); - var knownResourceType = resourceTypeProvider.GetType(scopeType, availableType); + resourceTypeProvider.HasType(availableType).Should().BeTrue(); + var resourceType = resourceTypeProvider.GetType(availableType, false); + var resourceTypeExisting = resourceTypeProvider.GetType(availableType, true); try { var visited = new HashSet(); - VisitAllReachableTypes(knownResourceType, visited); + VisitAllReachableTypes(resourceType, visited); + VisitAllReachableTypes(resourceTypeExisting, visited); } catch (Exception exception) { @@ -53,19 +51,15 @@ public void AzResourceTypeProvider_can_deserialize_all_types_without_throwing(Re } } - [DataTestMethod] - [DataRow(ResourceScope.Tenant)] - [DataRow(ResourceScope.ManagementGroup)] - [DataRow(ResourceScope.Subscription)] - [DataRow(ResourceScope.ResourceGroup)] - public void AzResourceTypeProvider_can_list_all_types_without_throwing(ResourceScope scopeType) + [TestMethod] + public void AzResourceTypeProvider_can_list_all_types_without_throwing() { var resourceTypeProvider = new AzResourceTypeProvider(); - var availableTypes = resourceTypeProvider.GetAvailableTypes(scopeType); + var availableTypes = resourceTypeProvider.GetAvailableTypes(); // sanity check - we know there should be a lot of types available - var expectedTypeCount = scopeType == ResourceScope.ResourceGroup ? 2000 : 100; + var expectedTypeCount = 3000; availableTypes.Should().HaveCountGreaterThan(expectedTypeCount); } @@ -116,7 +110,7 @@ Compilation createCompilation(string program) } "); compilation.Should().HaveDiagnostics(new [] { - ("BCP037", DiagnosticLevel.Error, "No other properties are allowed on objects of type \"Mock.Rp/mockType@2020-01-01\"."), + ("BCP038", DiagnosticLevel.Error, "The property \"madeUpProperty\" is not allowed on objects of type \"Mock.Rp/mockType@2020-01-01\". Permissible properties include \"dependsOn\"."), }); // Missing non top-level properties - should be a warning diff --git a/src/Bicep.Core.UnitTests/TypeSystem/TypeValidatorAssignabilityTests.cs b/src/Bicep.Core.UnitTests/TypeSystem/TypeValidatorAssignabilityTests.cs index 36eb4979d58..b9736b67a7d 100644 --- a/src/Bicep.Core.UnitTests/TypeSystem/TypeValidatorAssignabilityTests.cs +++ b/src/Bicep.Core.UnitTests/TypeSystem/TypeValidatorAssignabilityTests.cs @@ -1109,9 +1109,10 @@ private static IEnumerable GetData() private TypeSymbol CreateDummyResourceType() { + var typeProvider = new TestResourceTypeProvider(); var typeReference = ResourceTypeReference.Parse("Mock.Rp/mockType@2020-01-01"); - return new ResourceType(typeReference, new NamedObjectType(typeReference.FormatName(), TypeSymbolValidationFlags.Default, LanguageConstants.CreateResourceProperties(typeReference), null)); + return typeProvider.GetType(typeReference, false); } private static TypeManager CreateTypeManager(SyntaxHierarchy hierarchy) diff --git a/src/Bicep.Core.UnitTests/Utils/CompilationHelper.cs b/src/Bicep.Core.UnitTests/Utils/CompilationHelper.cs index e3e5baf3165..a31bf0eeeb1 100644 --- a/src/Bicep.Core.UnitTests/Utils/CompilationHelper.cs +++ b/src/Bicep.Core.UnitTests/Utils/CompilationHelper.cs @@ -12,29 +12,30 @@ using FluentAssertions; using System; using Bicep.Core.TypeSystem; +using Newtonsoft.Json.Linq; namespace Bicep.Core.UnitTests.Utils { public static class CompilationHelper { - public static Compilation CreateCompilation(IResourceTypeProvider resourceTypeProvider, params (string fileName, string fileContents)[] files) - { - var (uriDictionary, entryUri) = CreateFileDictionary(files); - - return CreateCompilation(resourceTypeProvider, uriDictionary, entryUri); - } - - public static Compilation CreateCompilation(params (string fileName, string fileContents)[] files) - => CreateCompilation(new AzResourceTypeProvider(), files); + public record CompilationResult( + JToken? Template, + IEnumerable Diagnostics, + Compilation compilation); - public static (string? jsonOutput, IEnumerable diagnostics) Compile(params (string fileName, string fileContents)[] files) + public static CompilationResult Compile(IResourceTypeProvider resourceTypeProvider, params (string fileName, string fileContents)[] files) { var (uriDictionary, entryUri) = CreateFileDictionary(files); + + var syntaxTreeGrouping = SyntaxTreeGroupingFactory.CreateForFiles(uriDictionary, entryUri); - return Compile(CreateCompilation(new AzResourceTypeProvider(), uriDictionary, entryUri)); + return Compile(new Compilation(resourceTypeProvider, syntaxTreeGrouping)); } - public static (string? jsonOutput, IEnumerable diagnostics) Compile(string fileContents) + public static CompilationResult Compile(params (string fileName, string fileContents)[] files) + => Compile(new AzResourceTypeProvider(), files); + + public static CompilationResult Compile(string fileContents) => Compile(("main.bicep", fileContents)); private static (IReadOnlyDictionary files, Uri entryFileUri) CreateFileDictionary(params (string fileName, string fileContents)[] files) @@ -49,20 +50,13 @@ private static (IReadOnlyDictionary files, Uri entryFileUri) Create return (uriDictionary, entryUri); } - private static Compilation CreateCompilation(IResourceTypeProvider resourceTypeProvider, IReadOnlyDictionary files, Uri entryFileUri) - { - var syntaxTreeGrouping = SyntaxTreeGroupingFactory.CreateForFiles(files, entryFileUri); - - return new Compilation(resourceTypeProvider, syntaxTreeGrouping); - } - - private static (string? jsonOutput, IEnumerable diagnostics) Compile(Compilation compilation) + private static CompilationResult Compile(Compilation compilation) { var emitter = new TemplateEmitter(compilation.GetEntrypointSemanticModel()); - + var diagnostics = compilation.GetEntrypointSemanticModel().GetAllDiagnostics(); - string? jsonOutput = null; + JToken? template = null; if (!compilation.GetEntrypointSemanticModel().HasErrors()) { using var stream = new MemoryStream(); @@ -71,47 +65,13 @@ private static (string? jsonOutput, IEnumerable diagnostics) Compile if (emitResult.Status != EmitStatus.Failed) { stream.Position = 0; - jsonOutput = new StreamReader(stream).ReadToEnd(); - } - } - - return (jsonOutput, diagnostics); - } + var jsonOutput = new StreamReader(stream).ReadToEnd(); - public static void AssertFailureWithDiagnostics(string fileContents, IEnumerable<(string code, DiagnosticLevel level, string message)> expectedDiagnostics) - { - var entryFileUri = new Uri("file:///main.bicep"); - - AssertFailureWithDiagnostics(new Dictionary { [entryFileUri] = fileContents }, entryFileUri, expectedDiagnostics); - } - - public static void AssertFailureWithDiagnostics(IReadOnlyDictionary files, Uri entryFileUri, IEnumerable<(string code, DiagnosticLevel level, string message)> expectedDiagnostics) - { - var (jsonOutput, diagnostics) = Compile(CreateCompilation(new AzResourceTypeProvider(), files, entryFileUri)); - using (new AssertionScope()) - { - jsonOutput.Should().BeNull(); - diagnostics.Should().HaveDiagnostics(expectedDiagnostics); - } - } - - public static string AssertSuccessWithTemplateOutput(string fileContents) - { - var entryFileUri = new Uri("file:///main.bicep"); - - return AssertSuccessWithTemplateOutput(new Dictionary { [entryFileUri] = fileContents }, entryFileUri); - } - - public static string AssertSuccessWithTemplateOutput(IReadOnlyDictionary files, Uri entryFileUri) - { - var (jsonOutput, diagnostics) = Compile(CreateCompilation(new AzResourceTypeProvider(), files, entryFileUri)); - using (new AssertionScope()) - { - jsonOutput.Should().NotBeNull(); - diagnostics.Should().BeEmpty(); + template = JToken.Parse(jsonOutput); + } } - return jsonOutput!; + return new(template, diagnostics, compilation); } } } \ No newline at end of file diff --git a/src/Bicep.Core.UnitTests/Utils/ResourceTypeProviderHelper.cs b/src/Bicep.Core.UnitTests/Utils/ResourceTypeProviderHelper.cs index f52ba5fd0af..6382f4ec1a7 100644 --- a/src/Bicep.Core.UnitTests/Utils/ResourceTypeProviderHelper.cs +++ b/src/Bicep.Core.UnitTests/Utils/ResourceTypeProviderHelper.cs @@ -1,12 +1,17 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; +using Azure.Bicep.Types.Az; +using Azure.Bicep.Types.Az.Index; using Azure.Deployments.Core.Extensions; using Bicep.Core.Resources; using Bicep.Core.TypeSystem; +using Bicep.Core.TypeSystem.Az; +using Moq; namespace Bicep.Core.UnitTests.Utils { @@ -24,13 +29,13 @@ public MockResourceTypeProvider(IEnumerable definedTypes) ResourceTypeReferenceComparer.Instance); } - public IEnumerable GetAvailableTypes(ResourceScope scopeType) + public IEnumerable GetAvailableTypes() => typeDictionary.Keys; - public ResourceType GetType(ResourceScope scopeType, ResourceTypeReference reference) + public ResourceType GetType(ResourceTypeReference reference, bool isExistingResource) => typeDictionary[reference]; - public bool HasType(ResourceScope scopeType, ResourceTypeReference typeReference) + public bool HasType(ResourceTypeReference typeReference) => typeDictionary.ContainsKey(typeReference); } @@ -44,7 +49,29 @@ public static ResourceType CreateCustomResourceType(string fullyQualifiedType, s var resourceProperties = LanguageConstants.GetCommonResourceProperties(reference) .Concat(new TypeProperty("properties", new NamedObjectType("properties", validationFlags, customProperties, null), TypePropertyFlags.Required)); - return new ResourceType(reference, new NamedObjectType(reference.FormatName(), validationFlags, resourceProperties, null)); + var bodyType = new NamedObjectType(reference.FormatName(), validationFlags, resourceProperties, null); + return new ResourceType(reference, ResourceScope.Tenant | ResourceScope.ManagementGroup | ResourceScope.Subscription | ResourceScope.ResourceGroup | ResourceScope.Resource, bodyType); + } + + public static AzResourceTypeProvider CreateAzResourceTypeProvider(Action typeFactoryFunc) + { + var factory = new Azure.Bicep.Types.Concrete.TypeFactory(Enumerable.Empty()); + typeFactoryFunc(factory); + + var typeDict = new Dictionary(); + var resourceDict = new Dictionary(); + foreach (var resourceType in factory.GetTypes().OfType()) + { + var typeLocation = new TypeLocation(); + typeDict[resourceType.Name] = typeLocation; + resourceDict[typeLocation] = resourceType; + } + + var typeLoader = new Mock(); + typeLoader.Setup(x => x.GetIndexedTypes()).Returns(new IndexedTypes(typeDict, typeDict, typeDict, typeDict, typeDict)); + typeLoader.Setup(x => x.LoadResourceType(It.IsAny())).Returns(typeLocation => resourceDict[typeLocation]); + + return new AzResourceTypeProvider(typeLoader.Object); } } } \ No newline at end of file diff --git a/src/Bicep.Core.UnitTests/Utils/TestResourceTypeProvider.cs b/src/Bicep.Core.UnitTests/Utils/TestResourceTypeProvider.cs index b656f30dc28..883438a0583 100644 --- a/src/Bicep.Core.UnitTests/Utils/TestResourceTypeProvider.cs +++ b/src/Bicep.Core.UnitTests/Utils/TestResourceTypeProvider.cs @@ -6,18 +6,24 @@ using System.Linq; using Bicep.Core.Resources; using Bicep.Core.TypeSystem; +using Bicep.Core.TypeSystem.Az; namespace Bicep.Core.UnitTests.Utils { public class TestResourceTypeProvider : IResourceTypeProvider { - public ResourceType GetType(ResourceScope scopeType, ResourceTypeReference reference) - => new ResourceType(reference, new NamedObjectType(reference.FormatName(), TypeSymbolValidationFlags.Default, LanguageConstants.CreateResourceProperties(reference), null)); + public ResourceType GetType(ResourceTypeReference reference, bool isExistingResource) + { + var bodyType = new NamedObjectType(reference.FormatName(), TypeSymbolValidationFlags.Default, LanguageConstants.CreateResourceProperties(reference), null); + var resourceType = new ResourceType(reference, ResourceScope.Tenant | ResourceScope.ManagementGroup | ResourceScope.Subscription | ResourceScope.ResourceGroup | ResourceScope.Resource, bodyType); - public bool HasType(ResourceScope scopeType, ResourceTypeReference typeReference) + return AzResourceTypeProvider.SetBicepResourceProperties(resourceType, isExistingResource); + } + + public bool HasType(ResourceTypeReference typeReference) => true; - public IEnumerable GetAvailableTypes(ResourceScope scopeType) + public IEnumerable GetAvailableTypes() => Enumerable.Empty(); public static IResourceTypeProvider Create() diff --git a/src/Bicep.Core/Diagnostics/DiagnosticBuilder.cs b/src/Bicep.Core/Diagnostics/DiagnosticBuilder.cs index cf1f9ec0877..e066fd8a6cd 100644 --- a/src/Bicep.Core/Diagnostics/DiagnosticBuilder.cs +++ b/src/Bicep.Core/Diagnostics/DiagnosticBuilder.cs @@ -766,6 +766,18 @@ public Diagnostic RuntimePropertyNotAllowed(string property, IEnumerable TextSpan, "BCP133", "The unicode escape sequence is not valid. Valid unicode escape sequences range from \\u{0} to \\u{10FFFF}."); + + public Diagnostic UnsupportedModuleScope(ResourceScope suppliedScope, ResourceScope supportedScopes) => new( + TextSpan, + DiagnosticLevel.Error, + "BCP134", + $"Scope {ToQuotedString(LanguageConstants.GetResourceScopeDescriptions(suppliedScope))} is not valid for this module. Permitted scopes: {ToQuotedString(LanguageConstants.GetResourceScopeDescriptions(supportedScopes))}."); + + public Diagnostic UnsupportedResourceScope(ResourceScope suppliedScope, ResourceScope supportedScopes) => new( + TextSpan, + DiagnosticLevel.Error, + "BCP135", + $"Scope {ToQuotedString(LanguageConstants.GetResourceScopeDescriptions(suppliedScope))} is not valid for this resource type. Permitted scopes: {ToQuotedString(LanguageConstants.GetResourceScopeDescriptions(supportedScopes))}."); } public static DiagnosticBuilderInternal ForPosition(TextSpan span) diff --git a/src/Bicep.Core/Emit/EmitLimitationCalculator.cs b/src/Bicep.Core/Emit/EmitLimitationCalculator.cs index a61fef92665..c0b83c7c167 100644 --- a/src/Bicep.Core/Emit/EmitLimitationCalculator.cs +++ b/src/Bicep.Core/Emit/EmitLimitationCalculator.cs @@ -1,6 +1,5 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; @@ -18,8 +17,8 @@ public static EmitLimitationInfo Calculate(SemanticModel model) { var diagnosticWriter = ToListDiagnosticWriter.Create(); - var moduleScopeData = GetSupportedScopeInfo(model, diagnosticWriter); - var resourceScopeData = GetResoureScopeInfo(model, diagnosticWriter); + var moduleScopeData = ScopeHelper.GetModuleScopeInfo(model, diagnosticWriter); + var resourceScopeData = ScopeHelper.GetResoureScopeInfo(model, diagnosticWriter); DeployTimeConstantVisitor.ValidateDeployTimeConstants(model, diagnosticWriter); diagnosticWriter.WriteMultiple(DetectDuplicateNames(model, resourceScopeData, moduleScopeData)); @@ -27,79 +26,7 @@ public static EmitLimitationInfo Calculate(SemanticModel model) return new EmitLimitationInfo(diagnosticWriter.GetDiagnostics(), moduleScopeData, resourceScopeData); } - public static ImmutableDictionary GetResoureScopeInfo(SemanticModel semanticModel, IDiagnosticWriter diagnosticWriter) - { - var scopeInfo = new Dictionary(); - - foreach (var resourceSymbol in semanticModel.Root.ResourceDeclarations) - { - var scopeValue = resourceSymbol.SafeGetBodyPropertyValue(LanguageConstants.ResourceScopePropertyName); - if (scopeValue is null) - { - scopeInfo[resourceSymbol] = null; - continue; - } - - var scopeSymbol = semanticModel.GetSymbolInfo(scopeValue); - if (scopeSymbol is not ResourceSymbol targetResourceSymbol) - { - scopeInfo[resourceSymbol] = null; - diagnosticWriter.Write(scopeValue, x => x.InvalidExtensionResourceScope()); - continue; - } - - scopeInfo[resourceSymbol] = targetResourceSymbol; - } - - return scopeInfo.ToImmutableDictionary(); - } - - private static ImmutableDictionary GetSupportedScopeInfo(SemanticModel semanticModel, IDiagnosticWriter diagnosticWriter) - { - var moduleScopeData = new Dictionary(); - - foreach (var moduleSymbol in semanticModel.Root.ModuleDeclarations) - { - var scopeValue = moduleSymbol.SafeGetBodyPropertyValue(LanguageConstants.ResourceScopePropertyName); - if (scopeValue == null) - { - // no scope provided - assume the parent scope - moduleScopeData[moduleSymbol] = new ScopeHelper.ScopeData { RequestedScope = semanticModel.TargetScope }; - continue; - } - - var scopeType = semanticModel.GetTypeInfo(scopeValue); - var scopeData = ScopeHelper.TryGetScopeData(semanticModel.TargetScope, scopeType); - - if (scopeData != null) - { - moduleScopeData[moduleSymbol] = scopeData; - continue; - } - - switch (semanticModel.TargetScope) - { - case ResourceScope.Tenant: - diagnosticWriter.Write(scopeValue, x => x.InvalidModuleScopeForTenantScope()); - break; - case ResourceScope.ManagementGroup: - diagnosticWriter.Write(scopeValue, x => x.InvalidModuleScopeForManagementScope()); - break; - case ResourceScope.Subscription: - diagnosticWriter.Write(scopeValue, x => x.InvalidModuleScopeForSubscriptionScope()); - break; - case ResourceScope.ResourceGroup: - diagnosticWriter.Write(scopeValue, x => x.InvalidModuleScopeForResourceGroup()); - break; - default: - throw new InvalidOperationException($"Unrecognized target scope {semanticModel.TargetScope}"); - } - } - - return moduleScopeData.ToImmutableDictionary(); - } - - private static IEnumerable DetectDuplicateNames(SemanticModel semanticModel, ImmutableDictionary resourceScopeData, ImmutableDictionary moduleScopeData) + private static IEnumerable DetectDuplicateNames(SemanticModel semanticModel, ImmutableDictionary resourceScopeData, ImmutableDictionary moduleScopeData) { // This method only checks, if in one deployment we do not have 2 or more resources with this same name in one deployment to avoid template validation error // This will not check resource constraints such as necessity of having unique virtual network names within resource group @@ -135,7 +62,7 @@ private static IEnumerable GetModuleDefinitions(SemanticModel { foreach (var module in semanticModel.Root.ModuleDeclarations) { - if (!moduleScopeData.ContainsKey(module)) + if (!moduleScopeData.TryGetValue(module, out var scopeData)) { //module has invalid scope provided, ignoring from duplicate check continue; @@ -148,27 +75,32 @@ private static IEnumerable GetModuleDefinitions(SemanticModel var propertyScopeValue = (module.SafeGetBodyPropertyValue(LanguageConstants.ResourceScopePropertyName) as FunctionCallSyntax)?.Arguments.Select(x => x.Expression as StringSyntax).ToImmutableArray(); - yield return new ModuleDefinition(module.Name, moduleScopeData[module].RequestedScope, propertyScopeValue, propertyNameValue); + yield return new ModuleDefinition(module.Name, scopeData.RequestedScope, propertyScopeValue, propertyNameValue); } } - private static IEnumerable GetResourceDefinitions(SemanticModel semanticModel, ImmutableDictionary resourceScopeData) + private static IEnumerable GetResourceDefinitions(SemanticModel semanticModel, ImmutableDictionary resourceScopeData) { foreach (var resource in semanticModel.Root.ResourceDeclarations) { - if (!resourceScopeData.ContainsKey(resource)) + if (resource.DeclaringResource.IsExistingResource()) { - //resource contains invlid scope data, ignoring from duplicate check + // 'existing' resources are not being deployed so duplicates are allowed continue; } + if (!resourceScopeData.TryGetValue(resource, out var scopeData)) + { + scopeData = null; + } + if (resource.Type is not ResourceType resourceType || resource.SafeGetBodyPropertyValue(LanguageConstants.ResourceNamePropertyName) is not StringSyntax namePropertyValue) { //currently limiting check to 'name' property values that are strings, although it can be references or other syntaxes continue; } - yield return new ResourceDefinition(resource.Name, resourceScopeData[resource], resourceType.TypeReference.FullyQualifiedType, namePropertyValue); + yield return new ResourceDefinition(resource.Name, scopeData?.ResourceScopeSymbol, resourceType.TypeReference.FullyQualifiedType, namePropertyValue); } } } diff --git a/src/Bicep.Core/Emit/EmitLimitationInfo.cs b/src/Bicep.Core/Emit/EmitLimitationInfo.cs index 42c6a3a128e..4739bbb552b 100644 --- a/src/Bicep.Core/Emit/EmitLimitationInfo.cs +++ b/src/Bicep.Core/Emit/EmitLimitationInfo.cs @@ -13,13 +13,13 @@ public class EmitLimitationInfo public ImmutableDictionary ModuleScopeData { get; } - public ImmutableDictionary ResoureScopeData { get; } + public ImmutableDictionary ResourceScopeData { get; } - public EmitLimitationInfo(IReadOnlyList diagnostics, ImmutableDictionary moduleScopeData, ImmutableDictionary resoureScopeData) + public EmitLimitationInfo(IReadOnlyList diagnostics, ImmutableDictionary moduleScopeData, ImmutableDictionary resourceScopeData) { Diagnostics = diagnostics; ModuleScopeData = moduleScopeData; - ResoureScopeData = resoureScopeData; + ResourceScopeData = resourceScopeData; } } } diff --git a/src/Bicep.Core/Emit/EmitterContext.cs b/src/Bicep.Core/Emit/EmitterContext.cs index c606a77730a..fba0ea21d55 100644 --- a/src/Bicep.Core/Emit/EmitterContext.cs +++ b/src/Bicep.Core/Emit/EmitterContext.cs @@ -23,6 +23,6 @@ public EmitterContext(SemanticModel semanticModel) public ImmutableDictionary ModuleScopeData => SemanticModel.EmitLimitationInfo.ModuleScopeData; - public ImmutableDictionary ResoureScopeData => SemanticModel.EmitLimitationInfo.ResoureScopeData; + public ImmutableDictionary ResourceScopeData => SemanticModel.EmitLimitationInfo.ResourceScopeData; } } diff --git a/src/Bicep.Core/Emit/ExpressionConverter.cs b/src/Bicep.Core/Emit/ExpressionConverter.cs index 86988d1e255..9ac4cfbaae9 100644 --- a/src/Bicep.Core/Emit/ExpressionConverter.cs +++ b/src/Bicep.Core/Emit/ExpressionConverter.cs @@ -186,15 +186,12 @@ private LanguageExpression GenerateScopedResourceId(ResourceSymbol resourceSymbo var typeReference = EmitHelpers.GetTypeReference(resourceSymbol); var nameSegments = GetResourceNameSegments(resourceSymbol, typeReference); - if (context.ResoureScopeData[resourceSymbol] is { } parentResourceSymbol) + if (!context.ResourceScopeData.TryGetValue(resourceSymbol, out var scopeData)) { - // this should be safe because we've already checked for cycles by now - var parentResourceId = GetUnqualifiedResourceId(parentResourceSymbol); - - return ExpressionConverter.GenerateScopedResourceId(parentResourceId, typeReference.FullyQualifiedType, nameSegments); + return ScopeHelper.FormatLocallyScopedResourceId(targetScope, typeReference.FullyQualifiedType, nameSegments); } - return ScopeHelper.FormatLocallyScopedResourceId(targetScope, typeReference.FullyQualifiedType, nameSegments); + return ScopeHelper.FormatCrossScopeResourceId(this, scopeData, typeReference.FullyQualifiedType, nameSegments); } public LanguageExpression GetUnqualifiedResourceId(ResourceSymbol resourceSymbol) diff --git a/src/Bicep.Core/Emit/ScopeHelper.cs b/src/Bicep.Core/Emit/ScopeHelper.cs index 2695bdfac2d..4ca9f5d9a9f 100644 --- a/src/Bicep.Core/Emit/ScopeHelper.cs +++ b/src/Bicep.Core/Emit/ScopeHelper.cs @@ -2,9 +2,12 @@ // Licensed under the MIT License. using System; using System.Collections.Generic; +using System.Collections.Immutable; using System.Linq; using Azure.Deployments.Expression.Expressions; +using Bicep.Core.Diagnostics; using Bicep.Core.Extensions; +using Bicep.Core.Parsing; using Bicep.Core.Semantics; using Bicep.Core.Syntax; using Bicep.Core.TypeSystem; @@ -23,110 +26,84 @@ public class ScopeData public SyntaxBase? SubscriptionIdProperty { get; set; } public SyntaxBase? ResourceGroupProperty { get; set; } + + public ResourceSymbol? ResourceScopeSymbol { get; set; } } - public static ScopeData? TryGetScopeData(ResourceScope currentScope, TypeSymbol scopeType) + public delegate void LogInvalidScopeDiagnostic(IPositionable positionable, ResourceScope suppliedScope, ResourceScope supportedScopes); + + private static ScopeData? ValidateScope(SemanticModel semanticModel, LogInvalidScopeDiagnostic logInvalidScopeFunc, ResourceScope supportedScopes, SyntaxBase bodySyntax, ObjectPropertySyntax? scopeProperty) { - switch (currentScope) + if (scopeProperty is null) { - case ResourceScope.Tenant: - switch (scopeType) + // no scope provided - use the target scope for the file + if (!supportedScopes.HasFlag(semanticModel.TargetScope)) + { + logInvalidScopeFunc(bodySyntax, semanticModel.TargetScope, supportedScopes); + return null; + } + + return null; + } + + var scopeSymbol = semanticModel.GetSymbolInfo(scopeProperty.Value); + var scopeType = semanticModel.GetTypeInfo(scopeProperty.Value); + + switch (scopeType) + { + case TenantScopeType type: + if (!supportedScopes.HasFlag(ResourceScope.Tenant)) { - case TenantScopeType: - return new ScopeData { - RequestedScope = ResourceScope.Tenant }; - case ManagementGroupScopeType managementGroupScopeType when managementGroupScopeType.Arguments.Length == 1: - return new ScopeData { - RequestedScope = ResourceScope.ManagementGroup, - ManagementGroupNameProperty = managementGroupScopeType.Arguments[0].Expression }; - case SubscriptionScopeType subscriptionScopeType when subscriptionScopeType.Arguments.Length == 1: - return new ScopeData { - RequestedScope = ResourceScope.Subscription, - SubscriptionIdProperty = subscriptionScopeType.Arguments[0].Expression }; - case ResourceGroupScopeType resourceGroupScopeType when resourceGroupScopeType.Arguments.Length == 2: - return new ScopeData { - RequestedScope = ResourceScope.ResourceGroup, - SubscriptionIdProperty = resourceGroupScopeType.Arguments[0].Expression, - ResourceGroupProperty = resourceGroupScopeType.Arguments[1].Expression }; + logInvalidScopeFunc(scopeProperty.Value, ResourceScope.Tenant, supportedScopes); + return null; } - break; - case ResourceScope.ManagementGroup: - switch (scopeType) + + return new ScopeData { RequestedScope = ResourceScope.Tenant }; + case ManagementGroupScopeType type: + if (!supportedScopes.HasFlag(ResourceScope.ManagementGroup)) { - case TenantScopeType: - return new ScopeData { - RequestedScope = ResourceScope.Tenant }; - case ManagementGroupScopeType managementGroupScopeType when managementGroupScopeType.Arguments.Length == 0: - return new ScopeData { - RequestedScope = ResourceScope.ManagementGroup }; - case ManagementGroupScopeType managementGroupScopeType when managementGroupScopeType.Arguments.Length == 1: - return new ScopeData { - RequestedScope = ResourceScope.ManagementGroup, - ManagementGroupNameProperty = managementGroupScopeType.Arguments[0].Expression }; - case SubscriptionScopeType subscriptionScopeType when subscriptionScopeType.Arguments.Length == 1: - return new ScopeData { - RequestedScope = ResourceScope.Subscription, - SubscriptionIdProperty = subscriptionScopeType.Arguments[0].Expression }; - case ResourceGroupScopeType resourceGroupScopeType when resourceGroupScopeType.Arguments.Length == 2: - return new ScopeData { - RequestedScope = ResourceScope.ResourceGroup, - SubscriptionIdProperty = resourceGroupScopeType.Arguments[0].Expression, - ResourceGroupProperty = resourceGroupScopeType.Arguments[1].Expression }; + logInvalidScopeFunc(scopeProperty.Value, ResourceScope.ManagementGroup, supportedScopes); + return null; } - break; - case ResourceScope.Subscription: - switch (scopeType) + + return type.Arguments.Length switch { + 0 => new ScopeData { RequestedScope = ResourceScope.ManagementGroup }, + _ => new ScopeData { RequestedScope = ResourceScope.ManagementGroup, ManagementGroupNameProperty = type.Arguments[0].Expression }, + }; + case SubscriptionScopeType type: + if (!supportedScopes.HasFlag(ResourceScope.Subscription)) { - case TenantScopeType: - return new ScopeData { - RequestedScope = ResourceScope.Tenant }; - case SubscriptionScopeType subscriptionScopeType when subscriptionScopeType.Arguments.Length == 0: - return new ScopeData { - RequestedScope = ResourceScope.Subscription }; - case SubscriptionScopeType subscriptionScopeType when subscriptionScopeType.Arguments.Length == 1: - return new ScopeData { - RequestedScope = ResourceScope.Subscription, - SubscriptionIdProperty = subscriptionScopeType.Arguments[0].Expression }; - case ResourceGroupScopeType resourceGroupScopeType when resourceGroupScopeType.Arguments.Length == 1: - return new ScopeData { - RequestedScope = ResourceScope.ResourceGroup, - ResourceGroupProperty = resourceGroupScopeType.Arguments[0].Expression }; - case ResourceGroupScopeType resourceGroupScopeType when resourceGroupScopeType.Arguments.Length == 2: - return new ScopeData { - RequestedScope = ResourceScope.ResourceGroup, - SubscriptionIdProperty = resourceGroupScopeType.Arguments[0].Expression, - ResourceGroupProperty = resourceGroupScopeType.Arguments[1].Expression }; + logInvalidScopeFunc(scopeProperty.Value, ResourceScope.Subscription, supportedScopes); + return null; } - break; - case ResourceScope.ResourceGroup: - switch (scopeType) + + return type.Arguments.Length switch { + 0 => new ScopeData { RequestedScope = ResourceScope.Subscription }, + _ => new ScopeData { RequestedScope = ResourceScope.Subscription, SubscriptionIdProperty = type.Arguments[0].Expression }, + }; + case ResourceGroupScopeType type: + if (!supportedScopes.HasFlag(ResourceScope.ResourceGroup)) { - case TenantScopeType: - return new ScopeData { - RequestedScope = ResourceScope.Tenant }; - case SubscriptionScopeType subscriptionScopeType when subscriptionScopeType.Arguments.Length == 0: - return new ScopeData { - RequestedScope = ResourceScope.Subscription, }; - case SubscriptionScopeType subscriptionScopeType when subscriptionScopeType.Arguments.Length == 1: - return new ScopeData { - RequestedScope = ResourceScope.Subscription, - SubscriptionIdProperty = subscriptionScopeType.Arguments[0].Expression }; - case ResourceGroupScopeType resourceGroupScopeType when resourceGroupScopeType.Arguments.Length == 0: - return new ScopeData { - RequestedScope = ResourceScope.ResourceGroup }; - case ResourceGroupScopeType resourceGroupScopeType when resourceGroupScopeType.Arguments.Length == 1: - return new ScopeData { - RequestedScope = ResourceScope.ResourceGroup, - ResourceGroupProperty = resourceGroupScopeType.Arguments[0].Expression }; - case ResourceGroupScopeType resourceGroupScopeType when resourceGroupScopeType.Arguments.Length == 2: - return new ScopeData { - RequestedScope = ResourceScope.ResourceGroup, - SubscriptionIdProperty = resourceGroupScopeType.Arguments[0].Expression, - ResourceGroupProperty = resourceGroupScopeType.Arguments[1].Expression }; + logInvalidScopeFunc(scopeProperty.Value, ResourceScope.ResourceGroup, supportedScopes); + return null; } - break; + + return type.Arguments.Length switch { + 0 => new ScopeData { RequestedScope = ResourceScope.ResourceGroup }, + 1 => new ScopeData { RequestedScope = ResourceScope.ResourceGroup, ResourceGroupProperty = type.Arguments[0].Expression }, + _ => new ScopeData { RequestedScope = ResourceScope.ResourceGroup, SubscriptionIdProperty = type.Arguments[0].Expression, ResourceGroupProperty = type.Arguments[1].Expression }, + }; + case {} when scopeSymbol is ResourceSymbol targetResourceSymbol: + if (!supportedScopes.HasFlag(ResourceScope.Resource)) + { + logInvalidScopeFunc(scopeProperty.Value, ResourceScope.Resource, supportedScopes); + return null; + } + + return new ScopeData { RequestedScope = ResourceScope.Resource, ResourceScopeSymbol = targetResourceSymbol }; } + // type validation should have already caught this return null; } @@ -192,8 +169,18 @@ public static LanguageExpression FormatCrossScopeResourceId(ExpressionConverter // and we don't even have a mechanism for reliably getting the current scope (e.g. something like 'deployment().scope'). There are plans to add a managementGroupResourceId function, // but until we have it, we should generate unqualified resource Ids. There should not be a risk of collision, because we do not allow mixing of resource scopes in a single bicep file. return ExpressionConverter.GenerateUnqualifiedResourceId(fullyQualifiedType, nameSegments); + case ResourceScope.Resource: + if (scopeData.ResourceScopeSymbol is null) + { + throw new InvalidOperationException($"Cannot format resourceId with non-null resource scope symbol"); + } + + return ExpressionConverter.GenerateScopedResourceId( + expressionConverter.GetLocallyScopedResourceId(scopeData.ResourceScopeSymbol), + fullyQualifiedType, + nameSegments); default: - throw new NotImplementedException($"Cannot format resourceId for scope {scopeData.RequestedScope}"); + throw new InvalidOperationException($"Cannot format resourceId for scope {scopeData.RequestedScope}"); } } @@ -260,8 +247,125 @@ public static void EmitModuleScopeProperties(ResourceScope targetScope, ScopeDat } return; default: - throw new NotImplementedException($"Cannot format resourceId for scope {scopeData.RequestedScope}"); + throw new InvalidOperationException($"Cannot format resourceId for scope {scopeData.RequestedScope}"); + } + } + + public static ImmutableDictionary GetResoureScopeInfo(SemanticModel semanticModel, IDiagnosticWriter diagnosticWriter) + { + void logInvalidScopeDiagnostic(IPositionable positionable, ResourceScope suppliedScope, ResourceScope supportedScopes) + => diagnosticWriter.Write(positionable, x => x.UnsupportedResourceScope(suppliedScope, supportedScopes)); + + var scopeInfo = new Dictionary(); + + foreach (var resourceSymbol in semanticModel.Root.ResourceDeclarations) + { + if (resourceSymbol.Type is not ResourceType resourceType) + { + // missing type should be caught during type validation + continue; + } + + var scopeProperty = resourceSymbol.SafeGetBodyProperty(LanguageConstants.ResourceScopePropertyName); + var scopeData = ScopeHelper.ValidateScope(semanticModel, logInvalidScopeDiagnostic, resourceType.ValidParentScopes, resourceSymbol.DeclaringResource.Value, scopeProperty); + + if (scopeData is null) + { + continue; + } + + scopeInfo[resourceSymbol] = scopeData; } + + return scopeInfo.ToImmutableDictionary(); + } + + private static bool ValidateNestedTemplateScopeRestrictions(SemanticModel semanticModel, ScopeData scopeData) + { + bool checkScopes(params ResourceScope[] scopes) + => scopes.Contains(semanticModel.TargetScope); + + switch (scopeData.RequestedScope) + { + // If you update this switch block to add new supported nested template scope combinations, + // please ensure you update the wording of error messages BCP113, BCP114, BCP115 & BCP116 to reflect this! + case ResourceScope.Tenant: + return checkScopes(ResourceScope.Tenant, ResourceScope.ManagementGroup, ResourceScope.Subscription, ResourceScope.ResourceGroup); + case ResourceScope.ManagementGroup when scopeData.ManagementGroupNameProperty is not null: + return checkScopes(ResourceScope.Tenant, ResourceScope.ManagementGroup); + case ResourceScope.ManagementGroup: + return checkScopes(ResourceScope.Tenant, ResourceScope.ManagementGroup); + case ResourceScope.Subscription when scopeData.SubscriptionIdProperty is not null: + return checkScopes(ResourceScope.Tenant, ResourceScope.ManagementGroup, ResourceScope.Subscription, ResourceScope.ResourceGroup); + case ResourceScope.Subscription: + return checkScopes(ResourceScope.Subscription, ResourceScope.ResourceGroup); + case ResourceScope.ResourceGroup when scopeData.SubscriptionIdProperty is not null && scopeData.ResourceGroupProperty is not null: + return checkScopes(ResourceScope.Tenant, ResourceScope.ManagementGroup, ResourceScope.Subscription, ResourceScope.ResourceGroup); + case ResourceScope.ResourceGroup when scopeData.ResourceGroupProperty is not null: + return checkScopes(ResourceScope.Subscription, ResourceScope.ResourceGroup); + case ResourceScope.ResourceGroup: + return checkScopes(ResourceScope.ResourceGroup); + } + + return true; + } + + public static ImmutableDictionary GetModuleScopeInfo(SemanticModel semanticModel, IDiagnosticWriter diagnosticWriter) + { + void logInvalidScopeDiagnostic(IPositionable positionable, ResourceScope suppliedScope, ResourceScope supportedScopes) + => diagnosticWriter.Write(positionable, x => x.UnsupportedModuleScope(suppliedScope, supportedScopes)); + + var scopeInfo = new Dictionary(); + + foreach (var moduleSymbol in semanticModel.Root.ModuleDeclarations) + { + if (moduleSymbol.Type is not ModuleType moduleType) + { + // missing type should be caught during type validation + continue; + } + + var scopeProperty = moduleSymbol.SafeGetBodyProperty(LanguageConstants.ResourceScopePropertyName); + var scopeData = ScopeHelper.ValidateScope(semanticModel, logInvalidScopeDiagnostic, moduleType.ValidParentScopes, moduleSymbol.DeclaringModule.Value, scopeProperty); + + if (scopeData is null) + { + scopeData = new ScopeData { RequestedScope = semanticModel.TargetScope }; + } + + if (!ScopeHelper.ValidateNestedTemplateScopeRestrictions(semanticModel, scopeData)) + { + if (scopeProperty is null) + { + // if there's a scope mismatch, the scope property will be required. + // this means a missing scope property will have already been flagged as an error by type validation. + continue; + } + + switch (semanticModel.TargetScope) + { + case ResourceScope.Tenant: + diagnosticWriter.Write(scopeProperty.Value, x => x.InvalidModuleScopeForTenantScope()); + break; + case ResourceScope.ManagementGroup: + diagnosticWriter.Write(scopeProperty.Value, x => x.InvalidModuleScopeForManagementScope()); + break; + case ResourceScope.Subscription: + diagnosticWriter.Write(scopeProperty.Value, x => x.InvalidModuleScopeForSubscriptionScope()); + break; + case ResourceScope.ResourceGroup: + diagnosticWriter.Write(scopeProperty.Value, x => x.InvalidModuleScopeForResourceGroup()); + break; + default: + throw new InvalidOperationException($"Unrecognized target scope {semanticModel.TargetScope}"); + } + continue; + } + + scopeInfo[moduleSymbol] = scopeData; + } + + return scopeInfo.ToImmutableDictionary(); } } } \ No newline at end of file diff --git a/src/Bicep.Core/Emit/TemplateWriter.cs b/src/Bicep.Core/Emit/TemplateWriter.cs index 3302389b92d..1fb0903c264 100644 --- a/src/Bicep.Core/Emit/TemplateWriter.cs +++ b/src/Bicep.Core/Emit/TemplateWriter.cs @@ -248,6 +248,11 @@ private void EmitResources() foreach (var resourceSymbol in this.context.SemanticModel.Root.ResourceDeclarations) { + if (resourceSymbol.DeclaringResource.IsExistingResource()) + { + continue; + } + this.EmitResource(resourceSymbol); } @@ -273,7 +278,7 @@ private void EmitResource(ResourceSymbol resourceSymbol) this.emitter.EmitProperty("type", typeReference.FullyQualifiedType); this.emitter.EmitProperty("apiVersion", typeReference.ApiVersion); - if (context.SemanticModel.EmitLimitationInfo.ResoureScopeData[resourceSymbol] is ResourceSymbol scopeResource) + if (context.SemanticModel.EmitLimitationInfo.ResourceScopeData.TryGetValue(resourceSymbol, out var scopeData) && scopeData.ResourceScopeSymbol is { } scopeResource) { this.emitter.EmitProperty("scope", () => this.emitter.EmitUnqualifiedResourceId(scopeResource)); } @@ -407,7 +412,10 @@ private void EmitDependsOn(DeclaredSymbol declaredSymbol) switch (dependency) { case ResourceSymbol resourceDependency: - emitter.EmitResourceIdReference(resourceDependency); + if (!resourceDependency.DeclaringResource.IsExistingResource()) + { + emitter.EmitResourceIdReference(resourceDependency); + } break; case ModuleSymbol moduleDependency: emitter.EmitResourceIdReference(moduleDependency); diff --git a/src/Bicep.Core/LanguageConstants.cs b/src/Bicep.Core/LanguageConstants.cs index 2c774a936ca..488bbaad6bd 100644 --- a/src/Bicep.Core/LanguageConstants.cs +++ b/src/Bicep.Core/LanguageConstants.cs @@ -24,6 +24,7 @@ public static class LanguageConstants public const string VariableKeyword = "var"; public const string ResourceKeyword = "resource"; public const string ModuleKeyword = "module"; + public const string ExistingKeyword = "existing"; public const string IfKeyword = "if"; @@ -70,7 +71,8 @@ public static class LanguageConstants public const string StringHoleClose = "}"; public static readonly TypeSymbol Any = new AnyType(); - public static readonly TypeSymbol ResourceRef = new ResourceReferenceType("resource | module", ResourceScope.Module | ResourceScope.Resource); + public static readonly TypeSymbol ResourceRef = CreateResourceScopeReference(ResourceScope.Module | ResourceScope.Resource); + public static readonly TypeSymbol ResourceRefArray = new TypedArrayType(ResourceRef, TypeSymbolValidationFlags.Default); public static readonly TypeSymbol String = new PrimitiveType("string", TypeSymbolValidationFlags.Default); // LooseString should be regarded as equal to the 'string' type, but with different validation behavior public static readonly TypeSymbol LooseString = new PrimitiveType("string", TypeSymbolValidationFlags.AllowLooseStringAssignment); @@ -151,15 +153,45 @@ public static IEnumerable GetCommonResourceProperties(ResourceType yield return new TypeProperty(ResourceApiVersionPropertyName, new StringLiteralType(reference.ApiVersion), TypePropertyFlags.ReadOnly | TypePropertyFlags.DeployTimeConstant); } - private static ResourceReferenceType CreateResourceScopeReference(ResourceScope resourceScope) - => resourceScope switch + public static IEnumerable GetResourceScopeDescriptions(ResourceScope resourceScope) + { + if (resourceScope == ResourceScope.None) { - ResourceScope.Tenant => new ResourceReferenceType("tenant", resourceScope), - ResourceScope.ManagementGroup => new ResourceReferenceType("managementGroup", resourceScope), - ResourceScope.Subscription => new ResourceReferenceType("subscription", resourceScope), - ResourceScope.ResourceGroup => new ResourceReferenceType("resourceGroup", resourceScope), - _ => new ResourceReferenceType("none", ResourceScope.None), - }; + yield return "none"; + } + + if (resourceScope.HasFlag(ResourceScope.Resource)) + { + yield return "resource"; + } + if (resourceScope.HasFlag(ResourceScope.Module)) + { + yield return "module"; + } + if (resourceScope.HasFlag(ResourceScope.Tenant)) + { + yield return "tenant"; + } + if (resourceScope.HasFlag(ResourceScope.ManagementGroup)) + { + yield return "managementGroup"; + } + if (resourceScope.HasFlag(ResourceScope.Subscription)) + { + yield return "subscription"; + } + if (resourceScope.HasFlag(ResourceScope.ResourceGroup)) + { + yield return "resourceGroup"; + } + } + + public static ResourceScopeType CreateResourceScopeReference(ResourceScope resourceScope) + { + var scopeDescriptions = string.Join(" | ", GetResourceScopeDescriptions(resourceScope)); + + return new ResourceScopeType(scopeDescriptions, resourceScope); + } public static TypeSymbol CreateModuleType(IEnumerable paramsProperties, IEnumerable outputProperties, ResourceScope moduleScope, ResourceScope containingScope, string typeName) { @@ -168,7 +200,6 @@ public static TypeSymbol CreateModuleType(IEnumerable paramsProper var paramsRequiredFlag = paramsProperties.Any(x => x.Flags.HasFlag(TypePropertyFlags.Required)) ? TypePropertyFlags.Required : TypePropertyFlags.None; var outputsType = new NamedObjectType(ModuleOutputsPropertyName, TypeSymbolValidationFlags.Default, outputProperties, null); - var resourceRefArray = new TypedArrayType(ResourceRef, TypeSymbolValidationFlags.Default); // If the module scope matches the parent scope, we can safely omit the scope property var scopeRequiredFlag = moduleScope != containingScope ? TypePropertyFlags.Required : TypePropertyFlags.None; @@ -182,11 +213,11 @@ public static TypeSymbol CreateModuleType(IEnumerable paramsProper new TypeProperty(ResourceScopePropertyName, CreateResourceScopeReference(moduleScope), TypePropertyFlags.WriteOnly | scopeRequiredFlag), new TypeProperty(ModuleParamsPropertyName, paramsType, paramsRequiredFlag | TypePropertyFlags.WriteOnly), new TypeProperty(ModuleOutputsPropertyName, outputsType, TypePropertyFlags.ReadOnly), - new TypeProperty(ResourceDependsOnPropertyName, resourceRefArray, TypePropertyFlags.WriteOnly), + new TypeProperty(ResourceDependsOnPropertyName, ResourceRefArray, TypePropertyFlags.WriteOnly), }, null); - return new ModuleType(typeName, moduleBody); + return new ModuleType(typeName, moduleScope, moduleBody); } public static IEnumerable CreateResourceProperties(ResourceTypeReference resourceTypeReference) @@ -236,8 +267,6 @@ public static IEnumerable CreateResourceProperties(ResourceTypeRef var resourceRefArray = new TypedArrayType(ResourceRef, TypeSymbolValidationFlags.Default); yield return new TypeProperty(ResourceDependsOnPropertyName, resourceRefArray, TypePropertyFlags.WriteOnly); - - yield return new TypeProperty(ResourceScopePropertyName, new ResourceReferenceType("resource", ResourceScope.Resource), TypePropertyFlags.WriteOnly); } } } \ No newline at end of file diff --git a/src/Bicep.Core/Parsing/Parser.cs b/src/Bicep.Core/Parsing/Parser.cs index 75ec2ce971a..8158e6ee7d1 100644 --- a/src/Bicep.Core/Parsing/Parser.cs +++ b/src/Bicep.Core/Parsing/Parser.cs @@ -297,6 +297,13 @@ private SyntaxBase ResourceDeclaration(IEnumerable leadingNodes) GetSuppressionFlag(name), TokenType.Assignment, TokenType.NewLine); + Token? existingKeyword = null; + var current = reader.Peek(); + if (current.Type == TokenType.Identifier && current.Text == LanguageConstants.ExistingKeyword) + { + existingKeyword = reader.Read(); + } + var assignment = this.WithRecovery(this.Assignment, GetSuppressionFlag(type), TokenType.LeftBrace, TokenType.NewLine); var value = this.WithRecovery(() => @@ -312,7 +319,7 @@ private SyntaxBase ResourceDeclaration(IEnumerable leadingNodes) GetSuppressionFlag(assignment), TokenType.NewLine); - return new ResourceDeclarationSyntax(leadingNodes, keyword, name, type, assignment, value); + return new ResourceDeclarationSyntax(leadingNodes, keyword, name, type, existingKeyword, assignment, value); } private SyntaxBase ModuleDeclaration(IEnumerable leadingNodes) diff --git a/src/Bicep.Core/PrettyPrint/DocumentBuildVisitor.cs b/src/Bicep.Core/PrettyPrint/DocumentBuildVisitor.cs index 4d654f6babf..1bf5f6bce50 100644 --- a/src/Bicep.Core/PrettyPrint/DocumentBuildVisitor.cs +++ b/src/Bicep.Core/PrettyPrint/DocumentBuildVisitor.cs @@ -107,6 +107,7 @@ public override void VisitResourceDeclarationSyntax(ResourceDeclarationSyntax sy this.documentStack.Push(Nil); this.Visit(syntax.Name); this.Visit(syntax.Type); + this.Visit(syntax.ExistingKeyword); this.Visit(syntax.Assignment); this.Visit(syntax.Value); }); diff --git a/src/Bicep.Core/Semantics/NameBindingVisitor.cs b/src/Bicep.Core/Semantics/NameBindingVisitor.cs index fb908f67c8c..049c5dd6bbf 100644 --- a/src/Bicep.Core/Semantics/NameBindingVisitor.cs +++ b/src/Bicep.Core/Semantics/NameBindingVisitor.cs @@ -58,6 +58,7 @@ public override void VisitResourceDeclarationSyntax(ResourceDeclarationSyntax sy this.Visit(syntax.Keyword); this.Visit(syntax.Name); this.Visit(syntax.Type); + this.Visit(syntax.ExistingKeyword); this.Visit(syntax.Assignment); allowedFlags = FunctionFlags.RequiresInlining; this.Visit(syntax.Value); diff --git a/src/Bicep.Core/Semantics/Namespaces/AzNamespaceSymbol.cs b/src/Bicep.Core/Semantics/Namespaces/AzNamespaceSymbol.cs index 24149c4f9a5..2c64de71916 100644 --- a/src/Bicep.Core/Semantics/Namespaces/AzNamespaceSymbol.cs +++ b/src/Bicep.Core/Semantics/Namespaces/AzNamespaceSymbol.cs @@ -134,14 +134,12 @@ private static NamedObjectType GetDeploymentReturnType(ResourceScope targetScope // return an empty object type (so that dot property access doesn't work), and generate as an ARM expression "createObject()" if anyone tries to access the object value. // This list should be kept in-sync with ScopeHelper.CanConvertToArmJson(). - var allScopes = ResourceScope.Tenant | ResourceScope.ManagementGroup | ResourceScope.Subscription | ResourceScope.ResourceGroup; - yield return ( new FunctionOverloadBuilder("tenant") .WithDynamicReturnType(GetRestrictedTenantReturnValue) .WithDescription("Returns the current tenant scope.") .Build(), - allScopes); + ResourceScope.Tenant | ResourceScope.ManagementGroup | ResourceScope.Subscription | ResourceScope.ResourceGroup); yield return ( new FunctionOverloadBuilder("managementGroup") @@ -155,7 +153,7 @@ private static NamedObjectType GetDeploymentReturnType(ResourceScope targetScope .WithDescription("Returns the scope for a named management group.") .WithRequiredParameter("name", LanguageConstants.String, "The unique identifier of the management group (not the display name).") .Build(), - ResourceScope.Tenant | ResourceScope.ManagementGroup); + ResourceScope.Tenant | ResourceScope.ManagementGroup | ResourceScope.Subscription | ResourceScope.ResourceGroup); yield return ( new FunctionOverloadBuilder("subscription") @@ -169,7 +167,7 @@ private static NamedObjectType GetDeploymentReturnType(ResourceScope targetScope .WithDescription("Returns a named subscription scope. **This function can only be used in subscription and resourceGroup deployments.**") .WithRequiredParameter("subscriptionId", LanguageConstants.String, "The subscription ID") .Build(), - allScopes); + ResourceScope.Tenant | ResourceScope.ManagementGroup | ResourceScope.Subscription | ResourceScope.ResourceGroup); yield return ( new FunctionOverloadBuilder("resourceGroup") diff --git a/src/Bicep.Core/Semantics/SymbolExtensions.cs b/src/Bicep.Core/Semantics/SymbolExtensions.cs index 530bad83ecb..6f45a0af0e0 100644 --- a/src/Bicep.Core/Semantics/SymbolExtensions.cs +++ b/src/Bicep.Core/Semantics/SymbolExtensions.cs @@ -7,10 +7,16 @@ namespace Bicep.Core.Semantics { public static class SymbolExtensions { - public static SyntaxBase? SafeGetBodyPropertyValue(this ResourceSymbol resourceSymbol, string propertyName) => - resourceSymbol.DeclaringResource.TryGetBody()?.SafeGetPropertyByName(propertyName)?.Value; + public static ObjectPropertySyntax? SafeGetBodyProperty(this ResourceSymbol resourceSymbol, string propertyName) + => resourceSymbol.DeclaringResource.TryGetBody()?.SafeGetPropertyByName(propertyName); - public static SyntaxBase? SafeGetBodyPropertyValue(this ModuleSymbol moduleSymbol, string propertyName) => - moduleSymbol.DeclaringModule.TryGetBody()?.SafeGetPropertyByName(propertyName)?.Value; + public static SyntaxBase? SafeGetBodyPropertyValue(this ResourceSymbol resourceSymbol, string propertyName) + => SafeGetBodyProperty(resourceSymbol, propertyName)?.Value; + + public static ObjectPropertySyntax? SafeGetBodyProperty(this ModuleSymbol moduleSymbol, string propertyName) + => moduleSymbol.DeclaringModule.TryGetBody()?.SafeGetPropertyByName(propertyName); + + public static SyntaxBase? SafeGetBodyPropertyValue(this ModuleSymbol moduleSymbol, string propertyName) + => SafeGetBodyProperty(moduleSymbol, propertyName)?.Value; } } \ No newline at end of file diff --git a/src/Bicep.Core/Syntax/ResourceDeclarationSyntax.cs b/src/Bicep.Core/Syntax/ResourceDeclarationSyntax.cs index 7be282ec543..bd77fe7b10c 100644 --- a/src/Bicep.Core/Syntax/ResourceDeclarationSyntax.cs +++ b/src/Bicep.Core/Syntax/ResourceDeclarationSyntax.cs @@ -1,88 +1,94 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -using System; -using System.Collections.Generic; -using System.Linq; -using Bicep.Core.Diagnostics; -using Bicep.Core.Navigation; -using Bicep.Core.Parsing; -using Bicep.Core.Resources; -using Bicep.Core.TypeSystem; - -namespace Bicep.Core.Syntax -{ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Linq; +using Bicep.Core.Diagnostics; +using Bicep.Core.Navigation; +using Bicep.Core.Parsing; +using Bicep.Core.Resources; +using Bicep.Core.TypeSystem; + +namespace Bicep.Core.Syntax +{ public class ResourceDeclarationSyntax : StatementSyntax, INamedDeclarationSyntax { - public ResourceDeclarationSyntax(IEnumerable leadingNodes, Token keyword, IdentifierSyntax name, SyntaxBase type, SyntaxBase assignment, SyntaxBase value) + public ResourceDeclarationSyntax(IEnumerable leadingNodes, Token keyword, IdentifierSyntax name, SyntaxBase type, Token? existingKeyword, SyntaxBase assignment, SyntaxBase value) : base(leadingNodes) - { - AssertKeyword(keyword, nameof(keyword), LanguageConstants.ResourceKeyword); - AssertSyntaxType(name, nameof(name), typeof(IdentifierSyntax)); - AssertSyntaxType(type, nameof(type), typeof(StringSyntax), typeof(SkippedTriviaSyntax)); - AssertTokenType(keyword, nameof(keyword), TokenType.Identifier); - AssertSyntaxType(assignment, nameof(assignment), typeof(Token), typeof(SkippedTriviaSyntax)); - AssertTokenType(assignment as Token, nameof(assignment), TokenType.Assignment); - AssertSyntaxType(value, nameof(value), typeof(SkippedTriviaSyntax), typeof(ObjectSyntax), typeof(IfConditionSyntax)); - - this.Keyword = keyword; - this.Name = name; - this.Type = type; - this.Assignment = assignment; - this.Value = value; - } - - public Token Keyword { get; } - - public IdentifierSyntax Name { get; } - - public SyntaxBase Type { get; } - - public SyntaxBase Assignment { get; } - - public SyntaxBase Value { get; } - - public override void Accept(ISyntaxVisitor visitor) => visitor.VisitResourceDeclarationSyntax(this); - + { + AssertKeyword(keyword, nameof(keyword), LanguageConstants.ResourceKeyword); + AssertSyntaxType(name, nameof(name), typeof(IdentifierSyntax)); + AssertSyntaxType(type, nameof(type), typeof(StringSyntax), typeof(SkippedTriviaSyntax)); + AssertKeyword(existingKeyword, nameof(existingKeyword), LanguageConstants.ExistingKeyword); + AssertTokenType(keyword, nameof(keyword), TokenType.Identifier); + AssertSyntaxType(assignment, nameof(assignment), typeof(Token), typeof(SkippedTriviaSyntax)); + AssertTokenType(assignment as Token, nameof(assignment), TokenType.Assignment); + AssertSyntaxType(value, nameof(value), typeof(SkippedTriviaSyntax), typeof(ObjectSyntax), typeof(IfConditionSyntax)); + + this.Keyword = keyword; + this.Name = name; + this.Type = type; + this.ExistingKeyword = existingKeyword; + this.Assignment = assignment; + this.Value = value; + } + + public Token Keyword { get; } + + public IdentifierSyntax Name { get; } + + public SyntaxBase Type { get; } + + public Token? ExistingKeyword { get; } + + public SyntaxBase Assignment { get; } + + public SyntaxBase Value { get; } + + public override void Accept(ISyntaxVisitor visitor) => visitor.VisitResourceDeclarationSyntax(this); + public override TextSpan Span => TextSpan.Between(this.LeadingNodes.FirstOrDefault() ?? this.Keyword, this.Value); - - public StringSyntax? TypeString => Type as StringSyntax; - - public TypeSymbol GetDeclaredType(ResourceScope targetScope, IResourceTypeProvider resourceTypeProvider) - { - var stringSyntax = this.TypeString; - - if (stringSyntax != null && stringSyntax.IsInterpolated()) - { - // TODO: in the future, we can relax this check to allow interpolation with compile-time constants. - // right now, codegen will still generate a format string however, which will cause problems for the type. - return ErrorType.Create(DiagnosticBuilder.ForPosition(this.Type).ResourceTypeInterpolationUnsupported()); - } - - var stringContent = stringSyntax?.TryGetLiteralValue(); - if (stringContent == null) - { - return ErrorType.Create(DiagnosticBuilder.ForPosition(this.Type).InvalidResourceType()); - } - - var typeReference = ResourceTypeReference.TryParse(stringContent); - if (typeReference == null) - { - return ErrorType.Create(DiagnosticBuilder.ForPosition(this.Type).InvalidResourceType()); - } - - return resourceTypeProvider.GetType(targetScope, typeReference); - } - - public ObjectSyntax? TryGetBody() => - this.Value switch - { - ObjectSyntax @object => @object, - IfConditionSyntax ifCondition => ifCondition.Body as ObjectSyntax, - SkippedTriviaSyntax => null, - - // blocked by assert in the constructor - _ => throw new NotImplementedException($"Unexpected type of resource value '{this.Value.GetType().Name}'.") - }; - } -} + + public StringSyntax? TypeString => Type as StringSyntax; + + public bool IsExistingResource() => ExistingKeyword is not null; + + public TypeSymbol GetDeclaredType(IResourceTypeProvider resourceTypeProvider) + { + var stringSyntax = this.TypeString; + + if (stringSyntax != null && stringSyntax.IsInterpolated()) + { + // TODO: in the future, we can relax this check to allow interpolation with compile-time constants. + // right now, codegen will still generate a format string however, which will cause problems for the type. + return ErrorType.Create(DiagnosticBuilder.ForPosition(this.Type).ResourceTypeInterpolationUnsupported()); + } + + var stringContent = stringSyntax?.TryGetLiteralValue(); + if (stringContent == null) + { + return ErrorType.Create(DiagnosticBuilder.ForPosition(this.Type).InvalidResourceType()); + } + + var typeReference = ResourceTypeReference.TryParse(stringContent); + if (typeReference == null) + { + return ErrorType.Create(DiagnosticBuilder.ForPosition(this.Type).InvalidResourceType()); + } + + return resourceTypeProvider.GetType(typeReference, IsExistingResource()); + } + + public ObjectSyntax? TryGetBody() => + this.Value switch + { + ObjectSyntax @object => @object, + IfConditionSyntax ifCondition => ifCondition.Body as ObjectSyntax, + SkippedTriviaSyntax => null, + + // blocked by assert in the constructor + _ => throw new NotImplementedException($"Unexpected type of resource value '{this.Value.GetType().Name}'.") + }; + } +} diff --git a/src/Bicep.Core/Syntax/SyntaxRewriteVisitor.cs b/src/Bicep.Core/Syntax/SyntaxRewriteVisitor.cs index 4bc23e7b073..2fb95a528e5 100644 --- a/src/Bicep.Core/Syntax/SyntaxRewriteVisitor.cs +++ b/src/Bicep.Core/Syntax/SyntaxRewriteVisitor.cs @@ -1,582 +1,583 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -using System; -using System.Collections.Generic; -using System.Linq; -using Bicep.Core.Diagnostics; -using Bicep.Core.Parsing; - -namespace Bicep.Core.Syntax -{ - public abstract class SyntaxRewriteVisitor : ISyntaxVisitor - { - private SyntaxBase? currentSyntax; - - public TSyntax Rewrite(TSyntax syntax) - where TSyntax : SyntaxBase - { - if (Rewrite(syntax, out var newSyntax)) - { - return newSyntax; - } - - return syntax; - } - - private bool Rewrite(TSyntax syntax, out TSyntax newSyntax) - where TSyntax : SyntaxBase - { - currentSyntax = null; - syntax.Accept(this); - - if (currentSyntax is not TSyntax rewrittenSyntax) - { - throw new InvalidOperationException($"Expected {nameof(currentSyntax)} to be of type {typeof(TSyntax)}"); - } - - newSyntax = rewrittenSyntax; - return !object.ReferenceEquals(newSyntax, syntax); - } - - private bool Rewrite(IEnumerable syntaxes, out IEnumerable newSyntaxes) - where TSyntax : SyntaxBase - { - var hasChanges = false; - var newSyntaxList = new List(); - foreach (var syntax in syntaxes) - { - hasChanges |= Rewrite(syntax, out var newSyntax); - newSyntaxList.Add(newSyntax); - } - - newSyntaxes = hasChanges ? newSyntaxList : syntaxes; - return hasChanges; - } - - private bool RewriteNullable(TSyntax? syntax, out TSyntax? newSyntax) - where TSyntax : SyntaxBase - { - if (syntax is null) - { - newSyntax = null; - return false; - } - - var hasChanges = Rewrite(syntax, out var newSyntaxNullable); - newSyntax = newSyntaxNullable; - - return hasChanges; - } - - private void ReplaceCurrent(TSyntax syntax, Func replaceFunc) - where TSyntax : SyntaxBase - { - if (currentSyntax is not null) - { - throw new InvalidOperationException($"Expected {nameof(currentSyntax)} to be null"); - } - - currentSyntax = replaceFunc(syntax); - } - - protected virtual Token ReplaceToken(Token syntax) => syntax; - void ISyntaxVisitor.VisitToken(Token syntax) => ReplaceCurrent(syntax, ReplaceToken); - - protected virtual SeparatedSyntaxList ReplaceSeparatedSyntaxList(SeparatedSyntaxList syntax) - { - var hasChanges = Rewrite(syntax.Elements, out var elements); - hasChanges |= Rewrite(syntax.Separators, out var separators); - - if (!hasChanges) - { - return syntax; - } - - return new SeparatedSyntaxList(elements, separators, new TextSpan(0, 0)); - } - void ISyntaxVisitor.VisitSeparatedSyntaxList(SeparatedSyntaxList syntax) => ReplaceCurrent(syntax, ReplaceSeparatedSyntaxList); - - protected virtual ParameterDeclarationSyntax ReplaceParameterDeclarationSyntax(ParameterDeclarationSyntax syntax) - { - var hasChanges = Rewrite(syntax.LeadingNodes, out var leadingNodes); - hasChanges |= Rewrite(syntax.Keyword, out var keyword); - hasChanges |= Rewrite(syntax.Name, out var name); - hasChanges |= Rewrite(syntax.Type, out var type); - hasChanges |= RewriteNullable(syntax.Modifier, out var modifier); - - if (!hasChanges) - { - return syntax; - } - - return new ParameterDeclarationSyntax(leadingNodes, keyword, name, type, modifier); - } - void ISyntaxVisitor.VisitParameterDeclarationSyntax(ParameterDeclarationSyntax syntax) => ReplaceCurrent(syntax, ReplaceParameterDeclarationSyntax); - - protected virtual ParameterDefaultValueSyntax ReplaceParameterDefaultValueSyntax(ParameterDefaultValueSyntax syntax) - { - var hasChanges = Rewrite(syntax.AssignmentToken, out var assignmentToken); - hasChanges |= Rewrite(syntax.DefaultValue, out var defaultValue); - - if (!hasChanges) - { - return syntax; - } - - return new ParameterDefaultValueSyntax(assignmentToken, defaultValue); - } - void ISyntaxVisitor.VisitParameterDefaultValueSyntax(ParameterDefaultValueSyntax syntax) => ReplaceCurrent(syntax, ReplaceParameterDefaultValueSyntax); - - protected virtual VariableDeclarationSyntax ReplaceVariableDeclarationSyntax(VariableDeclarationSyntax syntax) - { - var hasChanges = Rewrite(syntax.Keyword, out var keyword); - hasChanges |= Rewrite(syntax.Name, out var name); - hasChanges |= Rewrite(syntax.Assignment, out var assignment); - hasChanges |= Rewrite(syntax.Value, out var value); - - if (!hasChanges) - { - return syntax; - } - - return new VariableDeclarationSyntax(keyword, name, assignment, value); - } - void ISyntaxVisitor.VisitVariableDeclarationSyntax(VariableDeclarationSyntax syntax) => ReplaceCurrent(syntax, ReplaceVariableDeclarationSyntax); - - protected virtual TargetScopeSyntax ReplaceTargetScopeSyntax(TargetScopeSyntax syntax) - { - var hasChanges = Rewrite(syntax.LeadingNodes, out var leadingNodes); - hasChanges |= Rewrite(syntax.Keyword, out var keyword); - hasChanges |= Rewrite(syntax.Assignment, out var assignment); - hasChanges |= Rewrite(syntax.Value, out var value); - - if (!hasChanges) - { - return syntax; - } - - return new TargetScopeSyntax(leadingNodes, keyword, assignment, value); - } - void ISyntaxVisitor.VisitTargetScopeSyntax(TargetScopeSyntax syntax) => ReplaceCurrent(syntax, ReplaceTargetScopeSyntax); - - protected virtual ResourceDeclarationSyntax ReplaceResourceDeclarationSyntax(ResourceDeclarationSyntax syntax) - { - var hasChanges = Rewrite(syntax.LeadingNodes, out var leadingNodes); - hasChanges |= Rewrite(syntax.Keyword, out var keyword); - hasChanges |= Rewrite(syntax.Name, out var name); - hasChanges |= Rewrite(syntax.Type, out var type); - hasChanges |= Rewrite(syntax.Assignment, out var assignment); - hasChanges |= Rewrite(syntax.Value, out var value); - - if (!hasChanges) - { - return syntax; - } - - return new ResourceDeclarationSyntax(leadingNodes, keyword, name, type, assignment, value); - } - void ISyntaxVisitor.VisitResourceDeclarationSyntax(ResourceDeclarationSyntax syntax) => ReplaceCurrent(syntax, ReplaceResourceDeclarationSyntax); - - protected virtual ModuleDeclarationSyntax ReplaceModuleDeclarationSyntax(ModuleDeclarationSyntax syntax) - { - var hasChanges = Rewrite(syntax.LeadingNodes, out var leadingNodes); - hasChanges |= Rewrite(syntax.Keyword, out var keyword); - hasChanges |= Rewrite(syntax.Name, out var name); - hasChanges |= Rewrite(syntax.Path, out var path); - hasChanges |= Rewrite(syntax.Assignment, out var assignment); - hasChanges |= Rewrite(syntax.Value, out var value); - - if (!hasChanges) - { - return syntax; - } - +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +using System; +using System.Collections.Generic; +using System.Linq; +using Bicep.Core.Diagnostics; +using Bicep.Core.Parsing; + +namespace Bicep.Core.Syntax +{ + public abstract class SyntaxRewriteVisitor : ISyntaxVisitor + { + private SyntaxBase? currentSyntax; + + public TSyntax Rewrite(TSyntax syntax) + where TSyntax : SyntaxBase + { + if (Rewrite(syntax, out var newSyntax)) + { + return newSyntax; + } + + return syntax; + } + + private bool Rewrite(TSyntax syntax, out TSyntax newSyntax) + where TSyntax : SyntaxBase + { + currentSyntax = null; + syntax.Accept(this); + + if (currentSyntax is not TSyntax rewrittenSyntax) + { + throw new InvalidOperationException($"Expected {nameof(currentSyntax)} to be of type {typeof(TSyntax)}"); + } + + newSyntax = rewrittenSyntax; + return !object.ReferenceEquals(newSyntax, syntax); + } + + private bool Rewrite(IEnumerable syntaxes, out IEnumerable newSyntaxes) + where TSyntax : SyntaxBase + { + var hasChanges = false; + var newSyntaxList = new List(); + foreach (var syntax in syntaxes) + { + hasChanges |= Rewrite(syntax, out var newSyntax); + newSyntaxList.Add(newSyntax); + } + + newSyntaxes = hasChanges ? newSyntaxList : syntaxes; + return hasChanges; + } + + private bool RewriteNullable(TSyntax? syntax, out TSyntax? newSyntax) + where TSyntax : SyntaxBase + { + if (syntax is null) + { + newSyntax = null; + return false; + } + + var hasChanges = Rewrite(syntax, out var newSyntaxNullable); + newSyntax = newSyntaxNullable; + + return hasChanges; + } + + private void ReplaceCurrent(TSyntax syntax, Func replaceFunc) + where TSyntax : SyntaxBase + { + if (currentSyntax is not null) + { + throw new InvalidOperationException($"Expected {nameof(currentSyntax)} to be null"); + } + + currentSyntax = replaceFunc(syntax); + } + + protected virtual Token ReplaceToken(Token syntax) => syntax; + void ISyntaxVisitor.VisitToken(Token syntax) => ReplaceCurrent(syntax, ReplaceToken); + + protected virtual SeparatedSyntaxList ReplaceSeparatedSyntaxList(SeparatedSyntaxList syntax) + { + var hasChanges = Rewrite(syntax.Elements, out var elements); + hasChanges |= Rewrite(syntax.Separators, out var separators); + + if (!hasChanges) + { + return syntax; + } + + return new SeparatedSyntaxList(elements, separators, new TextSpan(0, 0)); + } + void ISyntaxVisitor.VisitSeparatedSyntaxList(SeparatedSyntaxList syntax) => ReplaceCurrent(syntax, ReplaceSeparatedSyntaxList); + + protected virtual ParameterDeclarationSyntax ReplaceParameterDeclarationSyntax(ParameterDeclarationSyntax syntax) + { + var hasChanges = Rewrite(syntax.LeadingNodes, out var leadingNodes); + hasChanges |= Rewrite(syntax.Keyword, out var keyword); + hasChanges |= Rewrite(syntax.Name, out var name); + hasChanges |= Rewrite(syntax.Type, out var type); + hasChanges |= RewriteNullable(syntax.Modifier, out var modifier); + + if (!hasChanges) + { + return syntax; + } + + return new ParameterDeclarationSyntax(leadingNodes, keyword, name, type, modifier); + } + void ISyntaxVisitor.VisitParameterDeclarationSyntax(ParameterDeclarationSyntax syntax) => ReplaceCurrent(syntax, ReplaceParameterDeclarationSyntax); + + protected virtual ParameterDefaultValueSyntax ReplaceParameterDefaultValueSyntax(ParameterDefaultValueSyntax syntax) + { + var hasChanges = Rewrite(syntax.AssignmentToken, out var assignmentToken); + hasChanges |= Rewrite(syntax.DefaultValue, out var defaultValue); + + if (!hasChanges) + { + return syntax; + } + + return new ParameterDefaultValueSyntax(assignmentToken, defaultValue); + } + void ISyntaxVisitor.VisitParameterDefaultValueSyntax(ParameterDefaultValueSyntax syntax) => ReplaceCurrent(syntax, ReplaceParameterDefaultValueSyntax); + + protected virtual VariableDeclarationSyntax ReplaceVariableDeclarationSyntax(VariableDeclarationSyntax syntax) + { + var hasChanges = Rewrite(syntax.Keyword, out var keyword); + hasChanges |= Rewrite(syntax.Name, out var name); + hasChanges |= Rewrite(syntax.Assignment, out var assignment); + hasChanges |= Rewrite(syntax.Value, out var value); + + if (!hasChanges) + { + return syntax; + } + + return new VariableDeclarationSyntax(keyword, name, assignment, value); + } + void ISyntaxVisitor.VisitVariableDeclarationSyntax(VariableDeclarationSyntax syntax) => ReplaceCurrent(syntax, ReplaceVariableDeclarationSyntax); + + protected virtual TargetScopeSyntax ReplaceTargetScopeSyntax(TargetScopeSyntax syntax) + { + var hasChanges = Rewrite(syntax.LeadingNodes, out var leadingNodes); + hasChanges |= Rewrite(syntax.Keyword, out var keyword); + hasChanges |= Rewrite(syntax.Assignment, out var assignment); + hasChanges |= Rewrite(syntax.Value, out var value); + + if (!hasChanges) + { + return syntax; + } + + return new TargetScopeSyntax(leadingNodes, keyword, assignment, value); + } + void ISyntaxVisitor.VisitTargetScopeSyntax(TargetScopeSyntax syntax) => ReplaceCurrent(syntax, ReplaceTargetScopeSyntax); + + protected virtual ResourceDeclarationSyntax ReplaceResourceDeclarationSyntax(ResourceDeclarationSyntax syntax) + { + var hasChanges = Rewrite(syntax.LeadingNodes, out var leadingNodes); + hasChanges |= Rewrite(syntax.Keyword, out var keyword); + hasChanges |= Rewrite(syntax.Name, out var name); + hasChanges |= Rewrite(syntax.Type, out var type); + hasChanges |= RewriteNullable(syntax.ExistingKeyword, out var existingKeyword); + hasChanges |= Rewrite(syntax.Assignment, out var assignment); + hasChanges |= Rewrite(syntax.Value, out var value); + + if (!hasChanges) + { + return syntax; + } + + return new ResourceDeclarationSyntax(leadingNodes, keyword, name, type, existingKeyword, assignment, value); + } + void ISyntaxVisitor.VisitResourceDeclarationSyntax(ResourceDeclarationSyntax syntax) => ReplaceCurrent(syntax, ReplaceResourceDeclarationSyntax); + + protected virtual ModuleDeclarationSyntax ReplaceModuleDeclarationSyntax(ModuleDeclarationSyntax syntax) + { + var hasChanges = Rewrite(syntax.LeadingNodes, out var leadingNodes); + hasChanges |= Rewrite(syntax.Keyword, out var keyword); + hasChanges |= Rewrite(syntax.Name, out var name); + hasChanges |= Rewrite(syntax.Path, out var path); + hasChanges |= Rewrite(syntax.Assignment, out var assignment); + hasChanges |= Rewrite(syntax.Value, out var value); + + if (!hasChanges) + { + return syntax; + } + return new ModuleDeclarationSyntax(leadingNodes, keyword, name, path, assignment, value); - } - void ISyntaxVisitor.VisitModuleDeclarationSyntax(ModuleDeclarationSyntax syntax) => ReplaceCurrent(syntax, ReplaceModuleDeclarationSyntax); - - protected virtual OutputDeclarationSyntax ReplaceOutputDeclarationSyntax(OutputDeclarationSyntax syntax) - { - var hasChanges = Rewrite(syntax.LeadingNodes, out var leadingNodes); - hasChanges |= Rewrite(syntax.Keyword, out var keyword); - hasChanges |= Rewrite(syntax.Name, out var name); - hasChanges |= Rewrite(syntax.Type, out var type); - hasChanges |= Rewrite(syntax.Assignment, out var assignment); - hasChanges |= Rewrite(syntax.Value, out var value); - - if (!hasChanges) - { - return syntax; - } - - return new OutputDeclarationSyntax(leadingNodes, keyword, name, type, assignment, value); - } - void ISyntaxVisitor.VisitOutputDeclarationSyntax(OutputDeclarationSyntax syntax) => ReplaceCurrent(syntax, ReplaceOutputDeclarationSyntax); - - protected virtual IdentifierSyntax ReplaceIdentifierSyntax(IdentifierSyntax syntax) - { - var hasChanges = Rewrite(syntax.Child, out var child); - - if (!hasChanges) - { - return syntax; - } - - return new IdentifierSyntax(child); - } - void ISyntaxVisitor.VisitIdentifierSyntax(IdentifierSyntax syntax) => ReplaceCurrent(syntax, ReplaceIdentifierSyntax); - - protected virtual TypeSyntax ReplaceTypeSyntax(TypeSyntax syntax) - { - var hasChanges = Rewrite(syntax.Identifier, out var identifier); - - if (!hasChanges) - { - return syntax; - } - - return new TypeSyntax(identifier); - } - void ISyntaxVisitor.VisitTypeSyntax(TypeSyntax syntax) => ReplaceCurrent(syntax, ReplaceTypeSyntax); - - protected virtual BooleanLiteralSyntax ReplaceBooleanLiteralSyntax(BooleanLiteralSyntax syntax) - { - var hasChanges = Rewrite(syntax.Literal, out var literal); - - if (!hasChanges) - { - return syntax; - } - - return new BooleanLiteralSyntax(literal, bool.Parse(literal.Text)); - } - void ISyntaxVisitor.VisitBooleanLiteralSyntax(BooleanLiteralSyntax syntax) => ReplaceCurrent(syntax, ReplaceBooleanLiteralSyntax); - - protected virtual StringSyntax ReplaceStringSyntax(StringSyntax syntax) - { - var hasChanges = Rewrite(syntax.StringTokens, out var stringTokens); - hasChanges |= Rewrite(syntax.Expressions, out var expressions); - - if (!hasChanges) - { - return syntax; - } - - var segmentValues = Lexer.TryGetRawStringSegments(stringTokens.ToArray()); - if (segmentValues == null) - { - throw new ArgumentException($"Failed to parse string tokens"); - } - - return new StringSyntax(stringTokens, expressions, segmentValues); - } - void ISyntaxVisitor.VisitStringSyntax(StringSyntax syntax) => ReplaceCurrent(syntax, ReplaceStringSyntax); - - protected virtual ProgramSyntax ReplaceProgramSyntax(ProgramSyntax syntax) - { - var hasChanges = Rewrite(syntax.Children, out var children); - hasChanges |= Rewrite(syntax.EndOfFile, out var endOfFile); - - if (!hasChanges) - { - return syntax; - } - - return new ProgramSyntax(children, endOfFile, Enumerable.Empty()); - } - void ISyntaxVisitor.VisitProgramSyntax(ProgramSyntax syntax) => ReplaceCurrent(syntax, ReplaceProgramSyntax); - - protected virtual IntegerLiteralSyntax ReplaceIntegerLiteralSyntax(IntegerLiteralSyntax syntax) - { - var hasChanges = Rewrite(syntax.Literal, out var literal); - - if (!hasChanges) - { - return syntax; - } - - return new IntegerLiteralSyntax(literal, long.Parse(literal.Text)); - } - void ISyntaxVisitor.VisitIntegerLiteralSyntax(IntegerLiteralSyntax syntax) => ReplaceCurrent(syntax, ReplaceIntegerLiteralSyntax); - - protected virtual NullLiteralSyntax ReplaceNullLiteralSyntax(NullLiteralSyntax syntax) - { - var hasChanges = Rewrite(syntax.NullKeyword, out var nullKeyword); - - if (!hasChanges) - { - return syntax; - } - - return new NullLiteralSyntax(nullKeyword); - } - void ISyntaxVisitor.VisitNullLiteralSyntax(NullLiteralSyntax syntax) => ReplaceCurrent(syntax, ReplaceNullLiteralSyntax); - - protected virtual SkippedTriviaSyntax ReplaceSkippedTriviaSyntax(SkippedTriviaSyntax syntax) - { - var hasChanges = Rewrite(syntax.Elements, out var elements); - - if (!hasChanges) - { - return syntax; - } - - return new SkippedTriviaSyntax(new TextSpan(0, 0), elements, Enumerable.Empty()); - } - void ISyntaxVisitor.VisitSkippedTriviaSyntax(SkippedTriviaSyntax syntax) => ReplaceCurrent(syntax, ReplaceSkippedTriviaSyntax); - - protected virtual ObjectSyntax ReplaceObjectSyntax(ObjectSyntax syntax) - { - var hasChanges = Rewrite(syntax.OpenBrace, out var openBrace); - hasChanges |= Rewrite(syntax.Children, out var children); - hasChanges |= Rewrite(syntax.CloseBrace, out var closeBrace); - - if (!hasChanges) - { - return syntax; - } - - return new ObjectSyntax(openBrace, children, closeBrace); - } - void ISyntaxVisitor.VisitObjectSyntax(ObjectSyntax syntax) => ReplaceCurrent(syntax, ReplaceObjectSyntax); - - protected virtual ObjectPropertySyntax ReplaceObjectPropertySyntax(ObjectPropertySyntax syntax) - { - var hasChanges = Rewrite(syntax.Key, out var key); - hasChanges |= Rewrite(syntax.Colon, out var colon); - hasChanges |= Rewrite(syntax.Value, out var value); - - if (!hasChanges) - { - return syntax; - } - - return new ObjectPropertySyntax(key, colon, value); - } - void ISyntaxVisitor.VisitObjectPropertySyntax(ObjectPropertySyntax syntax) => ReplaceCurrent(syntax, ReplaceObjectPropertySyntax); - - protected virtual ArraySyntax ReplaceArraySyntax(ArraySyntax syntax) - { - var hasChanges = Rewrite(syntax.OpenBracket, out var openBracket); - hasChanges |= Rewrite(syntax.Children, out var children); - hasChanges |= Rewrite(syntax.CloseBracket, out var closeBracket); - - if (!hasChanges) - { - return syntax; - } - - return new ArraySyntax(openBracket, children, closeBracket); - } - void ISyntaxVisitor.VisitArraySyntax(ArraySyntax syntax) => ReplaceCurrent(syntax, ReplaceArraySyntax); - - protected virtual ArrayItemSyntax ReplaceArrayItemSyntax(ArrayItemSyntax syntax) - { - var hasChanges = Rewrite(syntax.Value, out var value); - - if (!hasChanges) - { - return syntax; - } - - return new ArrayItemSyntax(value); - } - void ISyntaxVisitor.VisitArrayItemSyntax(ArrayItemSyntax syntax) => ReplaceCurrent(syntax, ReplaceArrayItemSyntax); - - protected virtual TernaryOperationSyntax ReplaceTernaryOperationSyntax(TernaryOperationSyntax syntax) - { - var hasChanges = Rewrite(syntax.ConditionExpression, out var conditionExpression); - hasChanges |= Rewrite(syntax.Question, out var question); - hasChanges |= Rewrite(syntax.TrueExpression, out var trueExpression); - hasChanges |= Rewrite(syntax.Colon, out var colon); - hasChanges |= Rewrite(syntax.FalseExpression, out var falseExpression); - - if (!hasChanges) - { - return syntax; - } - - return new TernaryOperationSyntax(conditionExpression, question, trueExpression, colon, falseExpression); - } - void ISyntaxVisitor.VisitTernaryOperationSyntax(TernaryOperationSyntax syntax) => ReplaceCurrent(syntax, ReplaceTernaryOperationSyntax); - - protected virtual BinaryOperationSyntax ReplaceBinaryOperationSyntax(BinaryOperationSyntax syntax) - { - var hasChanges = Rewrite(syntax.LeftExpression, out var leftExpression); - hasChanges |= Rewrite(syntax.OperatorToken, out var operatorToken); - hasChanges |= Rewrite(syntax.RightExpression, out var rightExpression); - - if (!hasChanges) - { - return syntax; - } - - return new BinaryOperationSyntax(leftExpression, operatorToken, rightExpression); - } - void ISyntaxVisitor.VisitBinaryOperationSyntax(BinaryOperationSyntax syntax) => ReplaceCurrent(syntax, ReplaceBinaryOperationSyntax); - - protected virtual UnaryOperationSyntax ReplaceUnaryOperationSyntax(UnaryOperationSyntax syntax) - { - var hasChanges = Rewrite(syntax.OperatorToken, out var operatorToken); - hasChanges |= Rewrite(syntax.Expression, out var expression); - - if (!hasChanges) - { - return syntax; - } - - return new UnaryOperationSyntax(operatorToken, expression); - } - void ISyntaxVisitor.VisitUnaryOperationSyntax(UnaryOperationSyntax syntax) => ReplaceCurrent(syntax, ReplaceUnaryOperationSyntax); - - protected virtual ArrayAccessSyntax ReplaceArrayAccessSyntax(ArrayAccessSyntax syntax) - { - var hasChanges = Rewrite(syntax.BaseExpression, out var baseExpression); - hasChanges |= Rewrite(syntax.OpenSquare, out var openSquare); - hasChanges |= Rewrite(syntax.IndexExpression, out var indexExpression); - hasChanges |= Rewrite(syntax.CloseSquare, out var closeSquare); - - if (!hasChanges) - { - return syntax; - } - - return new ArrayAccessSyntax(baseExpression, openSquare, indexExpression, closeSquare); - } - void ISyntaxVisitor.VisitArrayAccessSyntax(ArrayAccessSyntax syntax) => ReplaceCurrent(syntax, ReplaceArrayAccessSyntax); - - protected virtual PropertyAccessSyntax ReplacePropertyAccessSyntax(PropertyAccessSyntax syntax) - { - var hasChanges = Rewrite(syntax.BaseExpression, out var baseExpression); - hasChanges |= Rewrite(syntax.Dot, out var dot); - hasChanges |= Rewrite(syntax.PropertyName, out var propertyName); - - if (!hasChanges) - { - return syntax; - } - - return new PropertyAccessSyntax(baseExpression, dot, propertyName); - } - void ISyntaxVisitor.VisitPropertyAccessSyntax(PropertyAccessSyntax syntax) => ReplaceCurrent(syntax, ReplacePropertyAccessSyntax); - - protected virtual ParenthesizedExpressionSyntax ReplaceParenthesizedExpressionSyntax(ParenthesizedExpressionSyntax syntax) - { - var hasChanges = Rewrite(syntax.OpenParen, out var openParen); - hasChanges |= Rewrite(syntax.Expression, out var expression); - hasChanges |= Rewrite(syntax.CloseParen, out var closeParen); - - if (!hasChanges) - { - return syntax; - } - - return new ParenthesizedExpressionSyntax(openParen, expression, closeParen); - } - void ISyntaxVisitor.VisitParenthesizedExpressionSyntax(ParenthesizedExpressionSyntax syntax) => ReplaceCurrent(syntax, ReplaceParenthesizedExpressionSyntax); - - protected virtual FunctionCallSyntax ReplaceFunctionCallSyntax(FunctionCallSyntax syntax) - { - var hasChanges = Rewrite(syntax.Name, out var name); - hasChanges |= Rewrite(syntax.OpenParen, out var openParen); - hasChanges |= Rewrite(syntax.Arguments, out var arguments); - hasChanges |= Rewrite(syntax.CloseParen, out var closeParen); - - if (!hasChanges) - { - return syntax; - } - - return new FunctionCallSyntax(name, openParen, arguments, closeParen); - } - void ISyntaxVisitor.VisitFunctionCallSyntax(FunctionCallSyntax syntax) => ReplaceCurrent(syntax, ReplaceFunctionCallSyntax); - - protected virtual InstanceFunctionCallSyntax ReplaceInstanceFunctionCallSyntax(InstanceFunctionCallSyntax syntax) - { - var hasChanges = Rewrite(syntax.BaseExpression, out var baseExpression); - hasChanges |= Rewrite(syntax.Dot, out var dot); - hasChanges |= Rewrite(syntax.Name, out var name); - hasChanges |= Rewrite(syntax.OpenParen, out var openParen); - hasChanges |= Rewrite(syntax.Arguments, out var arguments); - hasChanges |= Rewrite(syntax.CloseParen, out var closeParen); - - if (!hasChanges) - { - return syntax; - } - - return new InstanceFunctionCallSyntax(baseExpression, dot, name, openParen, arguments, closeParen); - } - - void ISyntaxVisitor.VisitInstanceFunctionCallSyntax(InstanceFunctionCallSyntax syntax) => ReplaceCurrent(syntax, ReplaceInstanceFunctionCallSyntax); - - protected virtual FunctionArgumentSyntax ReplaceFunctionArgumentSyntax(FunctionArgumentSyntax syntax) - { - var hasChanges = Rewrite(syntax.Expression, out var expression); - hasChanges |= RewriteNullable(syntax.Comma, out var comma); - - if (!hasChanges) - { - return syntax; - } - - return new FunctionArgumentSyntax(expression, comma); - } - void ISyntaxVisitor.VisitFunctionArgumentSyntax(FunctionArgumentSyntax syntax) => ReplaceCurrent(syntax, ReplaceFunctionArgumentSyntax); - - protected virtual VariableAccessSyntax ReplaceVariableAccessSyntax(VariableAccessSyntax syntax) - { - var hasChanges = Rewrite(syntax.Name, out var name); - - if (!hasChanges) - { - return syntax; - } - - return new VariableAccessSyntax(name); - } - void ISyntaxVisitor.VisitVariableAccessSyntax(VariableAccessSyntax syntax) => ReplaceCurrent(syntax, ReplaceVariableAccessSyntax); - - protected virtual IfConditionSyntax ReplaceIfExpressionSyntax(IfConditionSyntax syntax) - { - var hasChanges = Rewrite(syntax.Keyword, out var keyword); - hasChanges |= Rewrite(syntax.ConditionExpression, out var conditionExpression); - hasChanges |= Rewrite(syntax.Body, out var body); - - if (!hasChanges) - { - return syntax; - } - - return new IfConditionSyntax(keyword, conditionExpression, body); - } - void ISyntaxVisitor.VisitIfConditionSyntax(IfConditionSyntax syntax) => ReplaceCurrent(syntax, ReplaceIfExpressionSyntax); - - protected virtual DecoratorSyntax ReplaceDecoratorSyntax(DecoratorSyntax syntax) - { - var hasChanges = Rewrite(syntax.At, out var at); - hasChanges |= Rewrite(syntax.Expression, out var expression); - - if (!hasChanges) - { - return syntax; - } - - return new DecoratorSyntax(at, expression); - } - void ISyntaxVisitor.VisitDecoratorSyntax(DecoratorSyntax syntax) => ReplaceCurrent(syntax, ReplaceDecoratorSyntax); - - protected virtual MissingDeclarationSyntax ReplaceMissingDeclarationSyntax(MissingDeclarationSyntax syntax) - { - var hasChange = Rewrite(syntax.LeadingNodes, out var leadingNodes); - - if (!hasChange) - { - return syntax; - } - - return new MissingDeclarationSyntax(leadingNodes); - } - void ISyntaxVisitor.VisitMissingDeclarationSyntax(MissingDeclarationSyntax syntax) => ReplaceCurrent(syntax, ReplaceMissingDeclarationSyntax); - } -} + } + void ISyntaxVisitor.VisitModuleDeclarationSyntax(ModuleDeclarationSyntax syntax) => ReplaceCurrent(syntax, ReplaceModuleDeclarationSyntax); + + protected virtual OutputDeclarationSyntax ReplaceOutputDeclarationSyntax(OutputDeclarationSyntax syntax) + { + var hasChanges = Rewrite(syntax.LeadingNodes, out var leadingNodes); + hasChanges |= Rewrite(syntax.Keyword, out var keyword); + hasChanges |= Rewrite(syntax.Name, out var name); + hasChanges |= Rewrite(syntax.Type, out var type); + hasChanges |= Rewrite(syntax.Assignment, out var assignment); + hasChanges |= Rewrite(syntax.Value, out var value); + + if (!hasChanges) + { + return syntax; + } + + return new OutputDeclarationSyntax(leadingNodes, keyword, name, type, assignment, value); + } + void ISyntaxVisitor.VisitOutputDeclarationSyntax(OutputDeclarationSyntax syntax) => ReplaceCurrent(syntax, ReplaceOutputDeclarationSyntax); + + protected virtual IdentifierSyntax ReplaceIdentifierSyntax(IdentifierSyntax syntax) + { + var hasChanges = Rewrite(syntax.Child, out var child); + + if (!hasChanges) + { + return syntax; + } + + return new IdentifierSyntax(child); + } + void ISyntaxVisitor.VisitIdentifierSyntax(IdentifierSyntax syntax) => ReplaceCurrent(syntax, ReplaceIdentifierSyntax); + + protected virtual TypeSyntax ReplaceTypeSyntax(TypeSyntax syntax) + { + var hasChanges = Rewrite(syntax.Identifier, out var identifier); + + if (!hasChanges) + { + return syntax; + } + + return new TypeSyntax(identifier); + } + void ISyntaxVisitor.VisitTypeSyntax(TypeSyntax syntax) => ReplaceCurrent(syntax, ReplaceTypeSyntax); + + protected virtual BooleanLiteralSyntax ReplaceBooleanLiteralSyntax(BooleanLiteralSyntax syntax) + { + var hasChanges = Rewrite(syntax.Literal, out var literal); + + if (!hasChanges) + { + return syntax; + } + + return new BooleanLiteralSyntax(literal, bool.Parse(literal.Text)); + } + void ISyntaxVisitor.VisitBooleanLiteralSyntax(BooleanLiteralSyntax syntax) => ReplaceCurrent(syntax, ReplaceBooleanLiteralSyntax); + + protected virtual StringSyntax ReplaceStringSyntax(StringSyntax syntax) + { + var hasChanges = Rewrite(syntax.StringTokens, out var stringTokens); + hasChanges |= Rewrite(syntax.Expressions, out var expressions); + + if (!hasChanges) + { + return syntax; + } + + var segmentValues = Lexer.TryGetRawStringSegments(stringTokens.ToArray()); + if (segmentValues == null) + { + throw new ArgumentException($"Failed to parse string tokens"); + } + + return new StringSyntax(stringTokens, expressions, segmentValues); + } + void ISyntaxVisitor.VisitStringSyntax(StringSyntax syntax) => ReplaceCurrent(syntax, ReplaceStringSyntax); + + protected virtual ProgramSyntax ReplaceProgramSyntax(ProgramSyntax syntax) + { + var hasChanges = Rewrite(syntax.Children, out var children); + hasChanges |= Rewrite(syntax.EndOfFile, out var endOfFile); + + if (!hasChanges) + { + return syntax; + } + + return new ProgramSyntax(children, endOfFile, Enumerable.Empty()); + } + void ISyntaxVisitor.VisitProgramSyntax(ProgramSyntax syntax) => ReplaceCurrent(syntax, ReplaceProgramSyntax); + + protected virtual IntegerLiteralSyntax ReplaceIntegerLiteralSyntax(IntegerLiteralSyntax syntax) + { + var hasChanges = Rewrite(syntax.Literal, out var literal); + + if (!hasChanges) + { + return syntax; + } + + return new IntegerLiteralSyntax(literal, long.Parse(literal.Text)); + } + void ISyntaxVisitor.VisitIntegerLiteralSyntax(IntegerLiteralSyntax syntax) => ReplaceCurrent(syntax, ReplaceIntegerLiteralSyntax); + + protected virtual NullLiteralSyntax ReplaceNullLiteralSyntax(NullLiteralSyntax syntax) + { + var hasChanges = Rewrite(syntax.NullKeyword, out var nullKeyword); + + if (!hasChanges) + { + return syntax; + } + + return new NullLiteralSyntax(nullKeyword); + } + void ISyntaxVisitor.VisitNullLiteralSyntax(NullLiteralSyntax syntax) => ReplaceCurrent(syntax, ReplaceNullLiteralSyntax); + + protected virtual SkippedTriviaSyntax ReplaceSkippedTriviaSyntax(SkippedTriviaSyntax syntax) + { + var hasChanges = Rewrite(syntax.Elements, out var elements); + + if (!hasChanges) + { + return syntax; + } + + return new SkippedTriviaSyntax(new TextSpan(0, 0), elements, Enumerable.Empty()); + } + void ISyntaxVisitor.VisitSkippedTriviaSyntax(SkippedTriviaSyntax syntax) => ReplaceCurrent(syntax, ReplaceSkippedTriviaSyntax); + + protected virtual ObjectSyntax ReplaceObjectSyntax(ObjectSyntax syntax) + { + var hasChanges = Rewrite(syntax.OpenBrace, out var openBrace); + hasChanges |= Rewrite(syntax.Children, out var children); + hasChanges |= Rewrite(syntax.CloseBrace, out var closeBrace); + + if (!hasChanges) + { + return syntax; + } + + return new ObjectSyntax(openBrace, children, closeBrace); + } + void ISyntaxVisitor.VisitObjectSyntax(ObjectSyntax syntax) => ReplaceCurrent(syntax, ReplaceObjectSyntax); + + protected virtual ObjectPropertySyntax ReplaceObjectPropertySyntax(ObjectPropertySyntax syntax) + { + var hasChanges = Rewrite(syntax.Key, out var key); + hasChanges |= Rewrite(syntax.Colon, out var colon); + hasChanges |= Rewrite(syntax.Value, out var value); + + if (!hasChanges) + { + return syntax; + } + + return new ObjectPropertySyntax(key, colon, value); + } + void ISyntaxVisitor.VisitObjectPropertySyntax(ObjectPropertySyntax syntax) => ReplaceCurrent(syntax, ReplaceObjectPropertySyntax); + + protected virtual ArraySyntax ReplaceArraySyntax(ArraySyntax syntax) + { + var hasChanges = Rewrite(syntax.OpenBracket, out var openBracket); + hasChanges |= Rewrite(syntax.Children, out var children); + hasChanges |= Rewrite(syntax.CloseBracket, out var closeBracket); + + if (!hasChanges) + { + return syntax; + } + + return new ArraySyntax(openBracket, children, closeBracket); + } + void ISyntaxVisitor.VisitArraySyntax(ArraySyntax syntax) => ReplaceCurrent(syntax, ReplaceArraySyntax); + + protected virtual ArrayItemSyntax ReplaceArrayItemSyntax(ArrayItemSyntax syntax) + { + var hasChanges = Rewrite(syntax.Value, out var value); + + if (!hasChanges) + { + return syntax; + } + + return new ArrayItemSyntax(value); + } + void ISyntaxVisitor.VisitArrayItemSyntax(ArrayItemSyntax syntax) => ReplaceCurrent(syntax, ReplaceArrayItemSyntax); + + protected virtual TernaryOperationSyntax ReplaceTernaryOperationSyntax(TernaryOperationSyntax syntax) + { + var hasChanges = Rewrite(syntax.ConditionExpression, out var conditionExpression); + hasChanges |= Rewrite(syntax.Question, out var question); + hasChanges |= Rewrite(syntax.TrueExpression, out var trueExpression); + hasChanges |= Rewrite(syntax.Colon, out var colon); + hasChanges |= Rewrite(syntax.FalseExpression, out var falseExpression); + + if (!hasChanges) + { + return syntax; + } + + return new TernaryOperationSyntax(conditionExpression, question, trueExpression, colon, falseExpression); + } + void ISyntaxVisitor.VisitTernaryOperationSyntax(TernaryOperationSyntax syntax) => ReplaceCurrent(syntax, ReplaceTernaryOperationSyntax); + + protected virtual BinaryOperationSyntax ReplaceBinaryOperationSyntax(BinaryOperationSyntax syntax) + { + var hasChanges = Rewrite(syntax.LeftExpression, out var leftExpression); + hasChanges |= Rewrite(syntax.OperatorToken, out var operatorToken); + hasChanges |= Rewrite(syntax.RightExpression, out var rightExpression); + + if (!hasChanges) + { + return syntax; + } + + return new BinaryOperationSyntax(leftExpression, operatorToken, rightExpression); + } + void ISyntaxVisitor.VisitBinaryOperationSyntax(BinaryOperationSyntax syntax) => ReplaceCurrent(syntax, ReplaceBinaryOperationSyntax); + + protected virtual UnaryOperationSyntax ReplaceUnaryOperationSyntax(UnaryOperationSyntax syntax) + { + var hasChanges = Rewrite(syntax.OperatorToken, out var operatorToken); + hasChanges |= Rewrite(syntax.Expression, out var expression); + + if (!hasChanges) + { + return syntax; + } + + return new UnaryOperationSyntax(operatorToken, expression); + } + void ISyntaxVisitor.VisitUnaryOperationSyntax(UnaryOperationSyntax syntax) => ReplaceCurrent(syntax, ReplaceUnaryOperationSyntax); + + protected virtual ArrayAccessSyntax ReplaceArrayAccessSyntax(ArrayAccessSyntax syntax) + { + var hasChanges = Rewrite(syntax.BaseExpression, out var baseExpression); + hasChanges |= Rewrite(syntax.OpenSquare, out var openSquare); + hasChanges |= Rewrite(syntax.IndexExpression, out var indexExpression); + hasChanges |= Rewrite(syntax.CloseSquare, out var closeSquare); + + if (!hasChanges) + { + return syntax; + } + + return new ArrayAccessSyntax(baseExpression, openSquare, indexExpression, closeSquare); + } + void ISyntaxVisitor.VisitArrayAccessSyntax(ArrayAccessSyntax syntax) => ReplaceCurrent(syntax, ReplaceArrayAccessSyntax); + + protected virtual PropertyAccessSyntax ReplacePropertyAccessSyntax(PropertyAccessSyntax syntax) + { + var hasChanges = Rewrite(syntax.BaseExpression, out var baseExpression); + hasChanges |= Rewrite(syntax.Dot, out var dot); + hasChanges |= Rewrite(syntax.PropertyName, out var propertyName); + + if (!hasChanges) + { + return syntax; + } + + return new PropertyAccessSyntax(baseExpression, dot, propertyName); + } + void ISyntaxVisitor.VisitPropertyAccessSyntax(PropertyAccessSyntax syntax) => ReplaceCurrent(syntax, ReplacePropertyAccessSyntax); + + protected virtual ParenthesizedExpressionSyntax ReplaceParenthesizedExpressionSyntax(ParenthesizedExpressionSyntax syntax) + { + var hasChanges = Rewrite(syntax.OpenParen, out var openParen); + hasChanges |= Rewrite(syntax.Expression, out var expression); + hasChanges |= Rewrite(syntax.CloseParen, out var closeParen); + + if (!hasChanges) + { + return syntax; + } + + return new ParenthesizedExpressionSyntax(openParen, expression, closeParen); + } + void ISyntaxVisitor.VisitParenthesizedExpressionSyntax(ParenthesizedExpressionSyntax syntax) => ReplaceCurrent(syntax, ReplaceParenthesizedExpressionSyntax); + + protected virtual FunctionCallSyntax ReplaceFunctionCallSyntax(FunctionCallSyntax syntax) + { + var hasChanges = Rewrite(syntax.Name, out var name); + hasChanges |= Rewrite(syntax.OpenParen, out var openParen); + hasChanges |= Rewrite(syntax.Arguments, out var arguments); + hasChanges |= Rewrite(syntax.CloseParen, out var closeParen); + + if (!hasChanges) + { + return syntax; + } + + return new FunctionCallSyntax(name, openParen, arguments, closeParen); + } + void ISyntaxVisitor.VisitFunctionCallSyntax(FunctionCallSyntax syntax) => ReplaceCurrent(syntax, ReplaceFunctionCallSyntax); + + protected virtual InstanceFunctionCallSyntax ReplaceInstanceFunctionCallSyntax(InstanceFunctionCallSyntax syntax) + { + var hasChanges = Rewrite(syntax.BaseExpression, out var baseExpression); + hasChanges |= Rewrite(syntax.Dot, out var dot); + hasChanges |= Rewrite(syntax.Name, out var name); + hasChanges |= Rewrite(syntax.OpenParen, out var openParen); + hasChanges |= Rewrite(syntax.Arguments, out var arguments); + hasChanges |= Rewrite(syntax.CloseParen, out var closeParen); + + if (!hasChanges) + { + return syntax; + } + + return new InstanceFunctionCallSyntax(baseExpression, dot, name, openParen, arguments, closeParen); + } + + void ISyntaxVisitor.VisitInstanceFunctionCallSyntax(InstanceFunctionCallSyntax syntax) => ReplaceCurrent(syntax, ReplaceInstanceFunctionCallSyntax); + + protected virtual FunctionArgumentSyntax ReplaceFunctionArgumentSyntax(FunctionArgumentSyntax syntax) + { + var hasChanges = Rewrite(syntax.Expression, out var expression); + hasChanges |= RewriteNullable(syntax.Comma, out var comma); + + if (!hasChanges) + { + return syntax; + } + + return new FunctionArgumentSyntax(expression, comma); + } + void ISyntaxVisitor.VisitFunctionArgumentSyntax(FunctionArgumentSyntax syntax) => ReplaceCurrent(syntax, ReplaceFunctionArgumentSyntax); + + protected virtual VariableAccessSyntax ReplaceVariableAccessSyntax(VariableAccessSyntax syntax) + { + var hasChanges = Rewrite(syntax.Name, out var name); + + if (!hasChanges) + { + return syntax; + } + + return new VariableAccessSyntax(name); + } + void ISyntaxVisitor.VisitVariableAccessSyntax(VariableAccessSyntax syntax) => ReplaceCurrent(syntax, ReplaceVariableAccessSyntax); + + protected virtual IfConditionSyntax ReplaceIfExpressionSyntax(IfConditionSyntax syntax) + { + var hasChanges = Rewrite(syntax.Keyword, out var keyword); + hasChanges |= Rewrite(syntax.ConditionExpression, out var conditionExpression); + hasChanges |= Rewrite(syntax.Body, out var body); + + if (!hasChanges) + { + return syntax; + } + + return new IfConditionSyntax(keyword, conditionExpression, body); + } + void ISyntaxVisitor.VisitIfConditionSyntax(IfConditionSyntax syntax) => ReplaceCurrent(syntax, ReplaceIfExpressionSyntax); + + protected virtual DecoratorSyntax ReplaceDecoratorSyntax(DecoratorSyntax syntax) + { + var hasChanges = Rewrite(syntax.At, out var at); + hasChanges |= Rewrite(syntax.Expression, out var expression); + + if (!hasChanges) + { + return syntax; + } + + return new DecoratorSyntax(at, expression); + } + void ISyntaxVisitor.VisitDecoratorSyntax(DecoratorSyntax syntax) => ReplaceCurrent(syntax, ReplaceDecoratorSyntax); + + protected virtual MissingDeclarationSyntax ReplaceMissingDeclarationSyntax(MissingDeclarationSyntax syntax) + { + var hasChange = Rewrite(syntax.LeadingNodes, out var leadingNodes); + + if (!hasChange) + { + return syntax; + } + + return new MissingDeclarationSyntax(leadingNodes); + } + void ISyntaxVisitor.VisitMissingDeclarationSyntax(MissingDeclarationSyntax syntax) => ReplaceCurrent(syntax, ReplaceMissingDeclarationSyntax); + } +} diff --git a/src/Bicep.Core/Syntax/SyntaxVisitor.cs b/src/Bicep.Core/Syntax/SyntaxVisitor.cs index 327efd832e7..5e65e7774fb 100644 --- a/src/Bicep.Core/Syntax/SyntaxVisitor.cs +++ b/src/Bicep.Core/Syntax/SyntaxVisitor.cs @@ -88,6 +88,7 @@ public virtual void VisitResourceDeclarationSyntax(ResourceDeclarationSyntax syn this.Visit(syntax.Keyword); this.Visit(syntax.Name); this.Visit(syntax.Type); + this.Visit(syntax.ExistingKeyword); this.Visit(syntax.Assignment); this.Visit(syntax.Value); } @@ -187,9 +188,9 @@ public virtual void VisitArrayItemSyntax(ArrayItemSyntax syntax) this.Visit(syntax.Value); } - public virtual void VisitIfConditionSyntax(IfConditionSyntax syntax) - { - this.Visit(syntax.Keyword); + public virtual void VisitIfConditionSyntax(IfConditionSyntax syntax) + { + this.Visit(syntax.Keyword); this.Visit(syntax.ConditionExpression); this.Visit(syntax.Body); } diff --git a/src/Bicep.Core/TypeSystem/Az/AzResourceTypeFactory.cs b/src/Bicep.Core/TypeSystem/Az/AzResourceTypeFactory.cs index 0070c343eb4..211a0c3aa90 100644 --- a/src/Bicep.Core/TypeSystem/Az/AzResourceTypeFactory.cs +++ b/src/Bicep.Core/TypeSystem/Az/AzResourceTypeFactory.cs @@ -66,25 +66,6 @@ private static TypePropertyFlags GetTypePropertyFlags(Azure.Bicep.Types.Concrete return flags; } - private static ObjectType AddBicepResourceProperties(ObjectType objectType, Azure.Bicep.Types.Concrete.ScopeType scope) - { - var properties = objectType.Properties.Values.ToList(); - if (scope.HasFlag(Azure.Bicep.Types.Concrete.ScopeType.Extension) || scope == Azure.Bicep.Types.Concrete.ScopeType.Unknown) - { - var scopeRequiredFlag = (scope == Azure.Bicep.Types.Concrete.ScopeType.Extension) ? TypePropertyFlags.Required : TypePropertyFlags.None; - properties.Add(new TypeProperty("scope", new ResourceReferenceType("resource", ResourceScope.Resource), TypePropertyFlags.WriteOnly | scopeRequiredFlag)); - } - - // TODO: remove 'dependsOn' from the type library and add it here - - return new NamedObjectType( - objectType.Name, - objectType.ValidationFlags, - properties, - objectType.AdditionalPropertiesType, - objectType.AdditionalPropertiesFlags); - } - private TypeSymbol ToTypeSymbol(Azure.Bicep.Types.Concrete.TypeBase typeBase, bool isResourceBodyType) { switch (typeBase) @@ -117,25 +98,7 @@ private TypeSymbol ToTypeSymbol(Azure.Bicep.Types.Concrete.TypeBase typeBase, bo var resourceTypeReference = ResourceTypeReference.Parse(resourceType.Name); var bodyType = GetTypeSymbol(resourceType.Body.Type, true); - switch (bodyType) - { - case ObjectType bodyObjectType: - bodyType = AddBicepResourceProperties(bodyObjectType, resourceType.ScopeType); - break; - case DiscriminatedObjectType bodyDiscriminatedType: - var bodyTypes = bodyDiscriminatedType.UnionMembersByKey.Values.ToList().Select(x => x.Type as ObjectType ?? throw new ArgumentException()); - bodyTypes = bodyTypes.Select(x => AddBicepResourceProperties(x, resourceType.ScopeType)); - bodyType = new DiscriminatedObjectType( - bodyDiscriminatedType.Name, - bodyDiscriminatedType.ValidationFlags, - bodyDiscriminatedType.DiscriminatorKey, - bodyTypes); - break; - default: - throw new ArgumentException(); - } - - return new ResourceType(resourceTypeReference, bodyType); + return new ResourceType(resourceTypeReference, ToResourceScope(resourceType.ScopeType), bodyType); } case Azure.Bicep.Types.Concrete.UnionType unionType: { @@ -183,5 +146,22 @@ private static TypeSymbolValidationFlags GetValidationFlags(bool isResourceBodyT // in all other places, we should allow some wiggle room so that we don't block compilation if there are any swagger inaccuracies return TypeSymbolValidationFlags.WarnOnTypeMismatch; } + + private static ResourceScope ToResourceScope(Azure.Bicep.Types.Concrete.ScopeType input) + { + if (input == Azure.Bicep.Types.Concrete.ScopeType.Unknown) + { + return ResourceScope.Tenant | ResourceScope.ManagementGroup | ResourceScope.Subscription | ResourceScope.ResourceGroup | ResourceScope.Resource; + } + + var output = ResourceScope.None; + output |= input.HasFlag(Azure.Bicep.Types.Concrete.ScopeType.Extension) ? ResourceScope.Resource : ResourceScope.None; + output |= input.HasFlag(Azure.Bicep.Types.Concrete.ScopeType.Tenant) ? ResourceScope.Tenant : ResourceScope.None; + output |= input.HasFlag(Azure.Bicep.Types.Concrete.ScopeType.ManagementGroup) ? ResourceScope.ManagementGroup : ResourceScope.None; + output |= input.HasFlag(Azure.Bicep.Types.Concrete.ScopeType.Subscription) ? ResourceScope.Subscription : ResourceScope.None; + output |= input.HasFlag(Azure.Bicep.Types.Concrete.ScopeType.ResourceGroup) ? ResourceScope.ResourceGroup : ResourceScope.None; + + return output; + } } } \ No newline at end of file diff --git a/src/Bicep.Core/TypeSystem/Az/AzResourceTypeProvider.cs b/src/Bicep.Core/TypeSystem/Az/AzResourceTypeProvider.cs index fb63b65e6c5..e803641f676 100644 --- a/src/Bicep.Core/TypeSystem/Az/AzResourceTypeProvider.cs +++ b/src/Bicep.Core/TypeSystem/Az/AzResourceTypeProvider.cs @@ -1,5 +1,6 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +using System; using System.Collections.Generic; using System.Linq; using Azure.Bicep.Types.Az; @@ -11,31 +12,35 @@ public class AzResourceTypeProvider : IResourceTypeProvider { private readonly ITypeLoader typeLoader; private readonly AzResourceTypeFactory resourceTypeFactory; - private readonly IReadOnlyDictionary> availableResourceTypes; + private readonly IReadOnlyDictionary availableResourceTypes; private readonly IDictionary loadedTypeCache; + private readonly IDictionary loadedExistingTypeCache; public AzResourceTypeProvider() : this(new TypeLoader()) { } - private static IReadOnlyDictionary> GetAvailableResourceTypes(ITypeLoader typeLoader) + private static IReadOnlyDictionary GetAvailableResourceTypes(ITypeLoader typeLoader) { - IReadOnlyDictionary ToResourceReferenceDictionary(IReadOnlyDictionary typeDict) - => typeDict.ToDictionary( - kvp => ResourceTypeReference.Parse(kvp.Key), - kvp => kvp.Value, - ResourceTypeReferenceComparer.Instance); - - var availableResourceTypes = new Dictionary>(); + var typeDict = new Dictionary(ResourceTypeReferenceComparer.Instance); var indexedTypes = typeLoader.GetIndexedTypes(); - availableResourceTypes[ResourceScope.Tenant] = ToResourceReferenceDictionary(indexedTypes.Tenant); - availableResourceTypes[ResourceScope.ManagementGroup] = ToResourceReferenceDictionary(indexedTypes.ManagementGroup); - availableResourceTypes[ResourceScope.Subscription] = ToResourceReferenceDictionary(indexedTypes.Subscription); - availableResourceTypes[ResourceScope.ResourceGroup] = ToResourceReferenceDictionary(indexedTypes.ResourceGroup); - availableResourceTypes[ResourceScope.Resource] = ToResourceReferenceDictionary(indexedTypes.Extension); - return availableResourceTypes; + void ToResourceReferenceDictionary(IReadOnlyDictionary inputDict) + { + foreach (var (key, value) in inputDict) + { + typeDict[ResourceTypeReference.Parse(key)] = value; + } + } + + ToResourceReferenceDictionary(indexedTypes.Tenant); + ToResourceReferenceDictionary(indexedTypes.ManagementGroup); + ToResourceReferenceDictionary(indexedTypes.Subscription); + ToResourceReferenceDictionary(indexedTypes.ResourceGroup); + ToResourceReferenceDictionary(indexedTypes.Extension); + + return typeDict; } public AzResourceTypeProvider(ITypeLoader typeLoader) @@ -44,36 +49,138 @@ public AzResourceTypeProvider(ITypeLoader typeLoader) this.resourceTypeFactory = new AzResourceTypeFactory(); this.availableResourceTypes = GetAvailableResourceTypes(typeLoader); this.loadedTypeCache = new Dictionary(ResourceTypeReferenceComparer.Instance); + this.loadedExistingTypeCache = new Dictionary(ResourceTypeReferenceComparer.Instance); } - public ResourceType GetType(ResourceScope scopeType, ResourceTypeReference typeReference) + private ResourceType GenerateResourceType(ResourceTypeReference typeReference, bool isExistingResource) { - if (loadedTypeCache.TryGetValue(typeReference, out var resourceType)) + if (availableResourceTypes.TryGetValue(typeReference, out var typeLocation)) { - return resourceType; + var serializedResourceType = typeLoader.LoadResourceType(typeLocation); + var resourceType = resourceTypeFactory.GetResourceType(serializedResourceType); + + return SetBicepResourceProperties(resourceType, isExistingResource); } + else + { + var resourceBodyType = new NamedObjectType(typeReference.FormatName(), TypeSymbolValidationFlags.Default, LanguageConstants.CreateResourceProperties(typeReference), null); + var resourceType = new ResourceType(typeReference, ResourceScope.Tenant | ResourceScope.ManagementGroup | ResourceScope.Subscription | ResourceScope.ResourceGroup | ResourceScope.Resource, resourceBodyType); - if (availableResourceTypes[scopeType].TryGetValue(typeReference, out var typeLocation)) + return SetBicepResourceProperties(resourceType, isExistingResource); + } + } + + public static ResourceType SetBicepResourceProperties(ResourceType resourceType, bool isExistingResource) + { + var bodyType = resourceType.Body.Type; + + switch (bodyType) { - // It's important to cache this result because LoadResourceType is an expensive operation, and - // duplicating types means the resourceTypeFactor won't be able to use its cache. - var serializedResourceType = typeLoader.LoadResourceType(typeLocation); - resourceType = resourceTypeFactory.GetResourceType(serializedResourceType); + case ObjectType bodyObjectType: + bodyType = SetBicepResourceProperties(bodyObjectType, resourceType.ValidParentScopes, isExistingResource); + break; + case DiscriminatedObjectType bodyDiscriminatedType: + var bodyTypes = bodyDiscriminatedType.UnionMembersByKey.Values.ToList() + .Select(x => x.Type as ObjectType ?? throw new ArgumentException($"Resource {resourceType.Name} has unexpected body type {bodyType.GetType()}")); + bodyTypes = bodyTypes.Select(x => SetBicepResourceProperties(x, resourceType.ValidParentScopes, isExistingResource)); + bodyType = new DiscriminatedObjectType( + bodyDiscriminatedType.Name, + bodyDiscriminatedType.ValidationFlags, + bodyDiscriminatedType.DiscriminatorKey, + bodyTypes); + break; + default: + // we exhaustively test deserialization of every resource type during CI, and this happens in a deterministic fashion, + // so this exception should never occur in the released product + throw new ArgumentException($"Resource {resourceType.Name} has unexpected body type {bodyType.GetType()}"); + } + + return new ResourceType(resourceType.TypeReference, resourceType.ValidParentScopes, bodyType); + } + + private static ObjectType SetBicepResourceProperties(ObjectType objectType, ResourceScope validParentScopes, bool isExistingResource) + { + var properties = objectType.Properties; + + var scopeRequiredFlag = TypePropertyFlags.WriteOnly; + if (validParentScopes == ResourceScope.Resource) + { + // resource can only be deployed as an extension resource - scope should be required + scopeRequiredFlag |= TypePropertyFlags.Required; + } + + if (isExistingResource) + { + // we can refer to a resource at any scope if it is an existing resource not being deployed by this file + var scopeReference = LanguageConstants.CreateResourceScopeReference(validParentScopes); + properties = properties.SetItem(LanguageConstants.ResourceScopePropertyName, new TypeProperty(LanguageConstants.ResourceScopePropertyName, scopeReference, scopeRequiredFlag)); + + return new NamedObjectType( + objectType.Name, + objectType.ValidationFlags, + ConvertToReadOnly(properties.Values), + objectType.AdditionalPropertiesType, + ConvertToReadOnly(objectType.AdditionalPropertiesFlags)); } else { - var resourceBodyType = new NamedObjectType(typeReference.FormatName(), TypeSymbolValidationFlags.Default, LanguageConstants.CreateResourceProperties(typeReference), null); - resourceType = new ResourceType(typeReference, resourceBodyType); + // we only support scope for extension resources (or resources where the scope is unknown and thus may be an extension resource) + if (validParentScopes.HasFlag(ResourceScope.Resource)) + { + var scopeReference = LanguageConstants.CreateResourceScopeReference(ResourceScope.Resource); + properties = properties.SetItem(LanguageConstants.ResourceScopePropertyName, new TypeProperty(LanguageConstants.ResourceScopePropertyName, scopeReference, scopeRequiredFlag)); + } + + // TODO: remove 'dependsOn' from the type library + properties = properties.SetItem(LanguageConstants.ResourceDependsOnPropertyName, new TypeProperty(LanguageConstants.ResourceDependsOnPropertyName, LanguageConstants.ResourceRefArray, TypePropertyFlags.WriteOnly)); + + return new NamedObjectType( + objectType.Name, + objectType.ValidationFlags, + properties.Values, + objectType.AdditionalPropertiesType, + objectType.AdditionalPropertiesFlags); + } + } + + private static IEnumerable ConvertToReadOnly(IEnumerable properties) + { + foreach (var property in properties) + { + // "name" and "scope" can be set for existing resources - everything else should be read-only + if (property.Name == LanguageConstants.ResourceNamePropertyName || + property.Name == LanguageConstants.ResourceScopePropertyName) + { + yield return property; + } + else + { + yield return new TypeProperty(property.Name, property.TypeReference, ConvertToReadOnly(property.Flags)); + } + } + } + + private static TypePropertyFlags ConvertToReadOnly(TypePropertyFlags typePropertyFlags) + => (typePropertyFlags | TypePropertyFlags.ReadOnly) & ~TypePropertyFlags.Required; + + public ResourceType GetType(ResourceTypeReference typeReference, bool isExistingResource) + { + var typeCache = isExistingResource ? loadedExistingTypeCache : loadedTypeCache; + + // It's important to cache this result because LoadResourceType is an expensive operation + if (!typeCache.TryGetValue(typeReference, out var resourceType)) + { + resourceType = GenerateResourceType(typeReference, isExistingResource); + typeCache[typeReference] = resourceType; } - loadedTypeCache[typeReference] = resourceType; return resourceType; } - public bool HasType(ResourceScope scopeType, ResourceTypeReference typeReference) - => availableResourceTypes[scopeType].ContainsKey(typeReference); + public bool HasType(ResourceTypeReference typeReference) + => availableResourceTypes.ContainsKey(typeReference); - public IEnumerable GetAvailableTypes(ResourceScope scopeType) - => availableResourceTypes[scopeType].Keys; + public IEnumerable GetAvailableTypes() + => availableResourceTypes.Keys; } } \ No newline at end of file diff --git a/src/Bicep.Core/TypeSystem/Az/ManagementGroupScopeType.cs b/src/Bicep.Core/TypeSystem/Az/ManagementGroupScopeType.cs index 636c0d9eab3..1dc46f08095 100644 --- a/src/Bicep.Core/TypeSystem/Az/ManagementGroupScopeType.cs +++ b/src/Bicep.Core/TypeSystem/Az/ManagementGroupScopeType.cs @@ -6,7 +6,7 @@ namespace Bicep.Core.TypeSystem.Az { - public class ManagementGroupScopeType : NamedObjectType, IResourceScopeType + public class ManagementGroupScopeType : NamedObjectType, IScopeReference { public ManagementGroupScopeType(IEnumerable arguments, IEnumerable properties) : base("managementGroup", TypeSymbolValidationFlags.Default, properties, null) @@ -16,6 +16,6 @@ public ManagementGroupScopeType(IEnumerable arguments, I public ImmutableArray Arguments { get; } - public ResourceScope ResourceScopeType => ResourceScope.ManagementGroup; + public ResourceScope Scope => ResourceScope.ManagementGroup; } } \ No newline at end of file diff --git a/src/Bicep.Core/TypeSystem/Az/ResourceGroupScopeType.cs b/src/Bicep.Core/TypeSystem/Az/ResourceGroupScopeType.cs index 954b3865694..d1819f84bb8 100644 --- a/src/Bicep.Core/TypeSystem/Az/ResourceGroupScopeType.cs +++ b/src/Bicep.Core/TypeSystem/Az/ResourceGroupScopeType.cs @@ -6,7 +6,7 @@ namespace Bicep.Core.TypeSystem.Az { - public class ResourceGroupScopeType : NamedObjectType, IResourceScopeType + public class ResourceGroupScopeType : NamedObjectType, IScopeReference { public ResourceGroupScopeType(IEnumerable arguments, IEnumerable properties) : base("resourceGroup", TypeSymbolValidationFlags.Default, properties, null) @@ -16,6 +16,6 @@ public ResourceGroupScopeType(IEnumerable arguments, IEn public ImmutableArray Arguments { get; } - public ResourceScope ResourceScopeType => ResourceScope.ResourceGroup; + public ResourceScope Scope => ResourceScope.ResourceGroup; } } \ No newline at end of file diff --git a/src/Bicep.Core/TypeSystem/Az/SubscriptionScopeType.cs b/src/Bicep.Core/TypeSystem/Az/SubscriptionScopeType.cs index ff7f3de1b82..5590fa4d365 100644 --- a/src/Bicep.Core/TypeSystem/Az/SubscriptionScopeType.cs +++ b/src/Bicep.Core/TypeSystem/Az/SubscriptionScopeType.cs @@ -6,7 +6,7 @@ namespace Bicep.Core.TypeSystem.Az { - public class SubscriptionScopeType : NamedObjectType, IResourceScopeType + public class SubscriptionScopeType : NamedObjectType, IScopeReference { public SubscriptionScopeType(IEnumerable arguments, IEnumerable properties) : base("subscription", TypeSymbolValidationFlags.Default, properties, null) @@ -16,6 +16,6 @@ public SubscriptionScopeType(IEnumerable arguments, IEnu public ImmutableArray Arguments { get; } - public ResourceScope ResourceScopeType => ResourceScope.Subscription; + public ResourceScope Scope => ResourceScope.Subscription; } } \ No newline at end of file diff --git a/src/Bicep.Core/TypeSystem/Az/TenantScopeType.cs b/src/Bicep.Core/TypeSystem/Az/TenantScopeType.cs index d84c9cf2df0..3c7bd0501b4 100644 --- a/src/Bicep.Core/TypeSystem/Az/TenantScopeType.cs +++ b/src/Bicep.Core/TypeSystem/Az/TenantScopeType.cs @@ -6,7 +6,7 @@ namespace Bicep.Core.TypeSystem.Az { - public class TenantScopeType : NamedObjectType, IResourceScopeType + public class TenantScopeType : NamedObjectType, IScopeReference { public TenantScopeType(IEnumerable arguments, IEnumerable properties) : base("tenant", TypeSymbolValidationFlags.Default, properties, null) @@ -16,6 +16,6 @@ public TenantScopeType(IEnumerable arguments, IEnumerabl public ImmutableArray Arguments { get; } - public ResourceScope ResourceScopeType => ResourceScope.Tenant; + public ResourceScope Scope => ResourceScope.Tenant; } } \ No newline at end of file diff --git a/src/Bicep.Core/TypeSystem/DeclaredTypeManager.cs b/src/Bicep.Core/TypeSystem/DeclaredTypeManager.cs index 3417a88fc59..4118848c42a 100644 --- a/src/Bicep.Core/TypeSystem/DeclaredTypeManager.cs +++ b/src/Bicep.Core/TypeSystem/DeclaredTypeManager.cs @@ -104,7 +104,7 @@ public DeclaredTypeManager(IResourceTypeProvider resourceTypeProvider, TypeManag private DeclaredTypeAssignment GetParameterType(ParameterDeclarationSyntax syntax) => new DeclaredTypeAssignment(syntax.GetDeclaredType(), syntax); - private DeclaredTypeAssignment GetResourceType(ResourceDeclarationSyntax syntax) => new DeclaredTypeAssignment(syntax.GetDeclaredType(binder.TargetScope, this.resourceTypeProvider), syntax); + private DeclaredTypeAssignment GetResourceType(ResourceDeclarationSyntax syntax) => new DeclaredTypeAssignment(syntax.GetDeclaredType(this.resourceTypeProvider), syntax); private DeclaredTypeAssignment GetModuleType(ModuleDeclarationSyntax syntax) { diff --git a/src/Bicep.Core/TypeSystem/IResourceTypeProvider.cs b/src/Bicep.Core/TypeSystem/IResourceTypeProvider.cs index f5d3defd6b9..c3af4d256ad 100644 --- a/src/Bicep.Core/TypeSystem/IResourceTypeProvider.cs +++ b/src/Bicep.Core/TypeSystem/IResourceTypeProvider.cs @@ -8,10 +8,10 @@ namespace Bicep.Core.TypeSystem { public interface IResourceTypeProvider { - ResourceType GetType(ResourceScope scopeType, ResourceTypeReference reference); + ResourceType GetType(ResourceTypeReference reference, bool isExistingResource); - bool HasType(ResourceScope scopeType, ResourceTypeReference typeReference); + bool HasType(ResourceTypeReference typeReference); - IEnumerable GetAvailableTypes(ResourceScope scopeType); + IEnumerable GetAvailableTypes(); } } \ No newline at end of file diff --git a/src/Bicep.Core/TypeSystem/IResourceScopeType.cs b/src/Bicep.Core/TypeSystem/IScopeReference.cs similarity index 50% rename from src/Bicep.Core/TypeSystem/IResourceScopeType.cs rename to src/Bicep.Core/TypeSystem/IScopeReference.cs index 2487fc1e30e..65c79476ea8 100644 --- a/src/Bicep.Core/TypeSystem/IResourceScopeType.cs +++ b/src/Bicep.Core/TypeSystem/IScopeReference.cs @@ -1,12 +1,10 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -using Bicep.Core.TypeSystem.Az; - namespace Bicep.Core.TypeSystem { - public interface IResourceScopeType + public interface IScopeReference { - ResourceScope ResourceScopeType { get; } + ResourceScope Scope { get; } } } diff --git a/src/Bicep.Core/TypeSystem/ModuleType.cs b/src/Bicep.Core/TypeSystem/ModuleType.cs index f1aa7def8bb..bd71500799e 100644 --- a/src/Bicep.Core/TypeSystem/ModuleType.cs +++ b/src/Bicep.Core/TypeSystem/ModuleType.cs @@ -3,18 +3,21 @@ namespace Bicep.Core.TypeSystem { - public class ModuleType : TypeSymbol, IResourceScopeType + public class ModuleType : TypeSymbol, IScopeReference { - public ModuleType(string name, ITypeReference body) + public ModuleType(string name, ResourceScope validParentScopes, ITypeReference body) : base(name) { + ValidParentScopes = validParentScopes; Body = body; } public override TypeKind TypeKind => TypeKind.Module; + public ResourceScope ValidParentScopes { get; } + public ITypeReference Body { get; } - public ResourceScope ResourceScopeType => ResourceScope.Module; + public ResourceScope Scope => ResourceScope.Module; } } \ No newline at end of file diff --git a/src/Bicep.Core/TypeSystem/ResourceReferenceType.cs b/src/Bicep.Core/TypeSystem/ResourceScopeType.cs similarity index 50% rename from src/Bicep.Core/TypeSystem/ResourceReferenceType.cs rename to src/Bicep.Core/TypeSystem/ResourceScopeType.cs index f2b720d5659..69f8bbdc3c2 100644 --- a/src/Bicep.Core/TypeSystem/ResourceReferenceType.cs +++ b/src/Bicep.Core/TypeSystem/ResourceScopeType.cs @@ -3,16 +3,16 @@ namespace Bicep.Core.TypeSystem { - public class ResourceReferenceType : TypeSymbol + public class ResourceScopeType : TypeSymbol, IScopeReference { - public ResourceReferenceType(string name, ResourceScope resourceScopeType) + public ResourceScopeType(string name, ResourceScope scopeType) : base(name) { - ResourceScopeType = resourceScopeType; + Scope = scopeType; } public override TypeKind TypeKind => TypeKind.ResourceScopeReference; - public ResourceScope ResourceScopeType { get; } + public ResourceScope Scope { get; } } } diff --git a/src/Bicep.Core/TypeSystem/ResourceType.cs b/src/Bicep.Core/TypeSystem/ResourceType.cs index c93d1708c4f..6a1c656e283 100644 --- a/src/Bicep.Core/TypeSystem/ResourceType.cs +++ b/src/Bicep.Core/TypeSystem/ResourceType.cs @@ -4,12 +4,13 @@ namespace Bicep.Core.TypeSystem { - public class ResourceType : TypeSymbol, IResourceScopeType + public class ResourceType : TypeSymbol, IScopeReference { - public ResourceType(ResourceTypeReference typeReference, ITypeReference body) + public ResourceType(ResourceTypeReference typeReference, ResourceScope validParentScopes, ITypeReference body) : base(typeReference.FormatName()) { TypeReference = typeReference; + ValidParentScopes = validParentScopes; Body = body; } @@ -17,8 +18,10 @@ public ResourceType(ResourceTypeReference typeReference, ITypeReference body) public ResourceTypeReference TypeReference { get; } + public ResourceScope ValidParentScopes { get; } + public ITypeReference Body { get; } - public ResourceScope ResourceScopeType => ResourceScope.Resource; + public ResourceScope Scope => ResourceScope.Resource; } } diff --git a/src/Bicep.Core/TypeSystem/TypeAssignmentVisitor.cs b/src/Bicep.Core/TypeSystem/TypeAssignmentVisitor.cs index e0c2927feab..8c2abcc4681 100644 --- a/src/Bicep.Core/TypeSystem/TypeAssignmentVisitor.cs +++ b/src/Bicep.Core/TypeSystem/TypeAssignmentVisitor.cs @@ -131,7 +131,7 @@ public override void VisitIfConditionSyntax(IfConditionSyntax syntax) public override void VisitResourceDeclarationSyntax(ResourceDeclarationSyntax syntax) => AssignTypeWithDiagnostics(syntax, diagnostics => { - var declaredType = syntax.GetDeclaredType(binder.TargetScope, resourceTypeProvider); + var declaredType = syntax.GetDeclaredType(resourceTypeProvider); this.ValidateDecortors(syntax.Decorators, declaredType, diagnostics); @@ -140,7 +140,7 @@ public override void VisitResourceDeclarationSyntax(ResourceDeclarationSyntax sy return declaredType; } - if (declaredType is ResourceType resourceType && !resourceTypeProvider.HasType(binder.TargetScope, resourceType.TypeReference)) + if (declaredType is ResourceType resourceType && !resourceTypeProvider.HasType(resourceType.TypeReference)) { diagnostics.Write(DiagnosticBuilder.ForPosition(syntax.Type).ResourceTypesUnavailable(resourceType.TypeReference)); } diff --git a/src/Bicep.Core/TypeSystem/TypeValidator.cs b/src/Bicep.Core/TypeSystem/TypeValidator.cs index 9147cf3cdf8..65865ee9b54 100644 --- a/src/Bicep.Core/TypeSystem/TypeValidator.cs +++ b/src/Bicep.Core/TypeSystem/TypeValidator.cs @@ -56,8 +56,9 @@ public static bool AreTypesAssignable(TypeSymbol sourceType, TypeSymbol targetTy // values of all types can be assigned to the "any" type return true; - case TypeSymbol _ when targetType is ResourceReferenceType scopeReference: - return sourceType is IResourceScopeType resourceScopeType && scopeReference.ResourceScopeType.HasFlag(resourceScopeType.ResourceScopeType); + case IScopeReference targetScope: + // checking for valid combinations of scopes happens after type checking. this allows us to provide a richer & more intuitive error message. + return sourceType is IScopeReference; case TypeSymbol _ when sourceType is ResourceType sourceResourceType: // When assigning a resource, we're really assigning the value of the resource body. @@ -148,14 +149,14 @@ private static TypeSymbol NarrowTypeInternal(ITypeManager typeManager, // When assigning a resource, we're really assigning the value of the resource body. var narrowedBody = NarrowTypeInternal(typeManager, expression, targetResourceType.Body.Type, diagnosticWriter, typeMismatchErrorFactory, skipConstantCheck, skipTypeErrors); - return new ResourceType(targetResourceType.TypeReference, narrowedBody); + return new ResourceType(targetResourceType.TypeReference, targetResourceType.ValidParentScopes, narrowedBody); } if (targetType is ModuleType targetModuleType) { var narrowedBody = NarrowTypeInternal(typeManager, expression, targetModuleType.Body.Type, diagnosticWriter, typeMismatchErrorFactory, skipConstantCheck, skipTypeErrors); - return new ModuleType(targetModuleType.Name, narrowedBody); + return new ModuleType(targetModuleType.Name, targetModuleType.ValidParentScopes, narrowedBody); } // TODO: The type of this expression and all subexpressions should be cached diff --git a/src/Bicep.Decompiler.IntegrationTests/Working/modules/main.bicep b/src/Bicep.Decompiler.IntegrationTests/Working/modules/main.bicep index 99b27def56f..ea5f17d4ed0 100644 --- a/src/Bicep.Decompiler.IntegrationTests/Working/modules/main.bicep +++ b/src/Bicep.Decompiler.IntegrationTests/Working/modules/main.bicep @@ -1,68 +1,68 @@ -param location string = resourceGroup().location -param baseUrl string { - metadata: { - description: 'Base URL for the reference templates and scripts' - } - default: 'https://my.base/url' -} - -var armBaseUrl = baseUrl -var module1Url = '${armBaseUrl}/nested/module1.json' -var module2Url = '${armBaseUrl}/nested/module2.json' -var objectVar = { - val1: 'a${location}b' -} -var arrayVar = [ - 'abc' - location -] - -module module1Deploy 'nested/module1.bicep' = { - name: 'module1Deploy' - params: { - location: location - objectParam: objectVar - arrayParam: arrayVar - } -} - -module module2Deploy 'nested/module2.bicep' = { - name: 'module2Deploy' - params: { - location: location - objectParam: objectVar - arrayParam: arrayVar - } -} - -module moduleWithDodgyUri '?' /*TODO: replace with correct path to [concat(parameters('location'), 'abc', variables('module2Url'))]*/ = { -//@[26:29) [BCP085 (Error)] The specified module path contains one ore more invalid path characters. The following are not permitted: """, "*", ":", "<", ">", "?", "\", "|". |'?'| - name: 'moduleWithDodgyUri' - params: { - location: location - objectParam: objectVar - arrayParam: arrayVar - } -} - -module moduleWithRg 'nested/module1.bicep' = { - name: 'moduleWithRg' - scope: resourceGroup('test${module1Url}') - params: {} -//@[2:8) [BCP035 (Error)] The specified "object" declaration is missing the following required properties: "arrayParam", "location", "objectParam". |params| -} - -module moduleWithRgAndSub 'nested/module1.bicep' = { - name: 'moduleWithRgAndSub' - scope: resourceGroup('${module1Url}test', 'test${module1Url}') - params: {} -//@[2:8) [BCP035 (Error)] The specified "object" declaration is missing the following required properties: "arrayParam", "location", "objectParam". |params| -} - -module moduleWithSub 'nested/module1.bicep' = { - name: 'moduleWithSub' - scope: subscription('${module1Url}test') -//@[9:42) [BCP036 (Error)] The property "scope" expected a value of type "resourceGroup" but the provided value is of type "subscription". |subscription('${module1Url}test')| - params: {} -//@[2:8) [BCP035 (Error)] The specified "object" declaration is missing the following required properties: "arrayParam", "location", "objectParam". |params| -} +param location string = resourceGroup().location +param baseUrl string { + metadata: { + description: 'Base URL for the reference templates and scripts' + } + default: 'https://my.base/url' +} + +var armBaseUrl = baseUrl +var module1Url = '${armBaseUrl}/nested/module1.json' +var module2Url = '${armBaseUrl}/nested/module2.json' +var objectVar = { + val1: 'a${location}b' +} +var arrayVar = [ + 'abc' + location +] + +module module1Deploy 'nested/module1.bicep' = { + name: 'module1Deploy' + params: { + location: location + objectParam: objectVar + arrayParam: arrayVar + } +} + +module module2Deploy 'nested/module2.bicep' = { + name: 'module2Deploy' + params: { + location: location + objectParam: objectVar + arrayParam: arrayVar + } +} + +module moduleWithDodgyUri '?' /*TODO: replace with correct path to [concat(parameters('location'), 'abc', variables('module2Url'))]*/ = { +//@[26:29) [BCP085 (Error)] The specified module path contains one ore more invalid path characters. The following are not permitted: """, "*", ":", "<", ">", "?", "\", "|". |'?'| + name: 'moduleWithDodgyUri' + params: { + location: location + objectParam: objectVar + arrayParam: arrayVar + } +} + +module moduleWithRg 'nested/module1.bicep' = { + name: 'moduleWithRg' + scope: resourceGroup('test${module1Url}') + params: {} +//@[2:8) [BCP035 (Error)] The specified "object" declaration is missing the following required properties: "arrayParam", "location", "objectParam". |params| +} + +module moduleWithRgAndSub 'nested/module1.bicep' = { + name: 'moduleWithRgAndSub' + scope: resourceGroup('${module1Url}test', 'test${module1Url}') + params: {} +//@[2:8) [BCP035 (Error)] The specified "object" declaration is missing the following required properties: "arrayParam", "location", "objectParam". |params| +} + +module moduleWithSub 'nested/module1.bicep' = { + name: 'moduleWithSub' + scope: subscription('${module1Url}test') +//@[9:42) [BCP134 (Error)] Scope "subscription" is not valid for this module. Permitted scopes: "resourceGroup". |subscription('${module1Url}test')| + params: {} +//@[2:8) [BCP035 (Error)] The specified "object" declaration is missing the following required properties: "arrayParam", "location", "objectParam". |params| +} diff --git a/src/Bicep.Decompiler.UnitTests/Rewriters/DependsOnRemovalRewriterTests.cs b/src/Bicep.Decompiler.UnitTests/Rewriters/DependsOnRemovalRewriterTests.cs index e30c5489962..3b1207b8068 100644 --- a/src/Bicep.Decompiler.UnitTests/Rewriters/DependsOnRemovalRewriterTests.cs +++ b/src/Bicep.Decompiler.UnitTests/Rewriters/DependsOnRemovalRewriterTests.cs @@ -46,7 +46,7 @@ public void Unneccessary_dependsOn_statements_are_removed() ] }"; - var compilation = CompilationHelper.CreateCompilation(("main.bicep", bicepFile)); + var (_, _, compilation) = CompilationHelper.Compile(("main.bicep", bicepFile)); var rewriter = new DependsOnRemovalRewriter(compilation.GetEntrypointSemanticModel()); var newProgramSyntax = rewriter.Rewrite(compilation.SyntaxTreeGrouping.EntryPoint.ProgramSyntax); @@ -110,7 +110,7 @@ public void Unneccessary_dependsOn_statements_are_removed_for_modules() ] }"; - var compilation = CompilationHelper.CreateCompilation(("main.bicep", bicepFile)); + var (_, _, compilation) = CompilationHelper.Compile(("main.bicep", bicepFile)); var rewriter = new DependsOnRemovalRewriter(compilation.GetEntrypointSemanticModel()); var newProgramSyntax = rewriter.Rewrite(compilation.SyntaxTreeGrouping.EntryPoint.ProgramSyntax); @@ -155,7 +155,7 @@ public void Necessary_dependsOn_statements_are_not_removed() ] }"; - var compilation = CompilationHelper.CreateCompilation(("main.bicep", bicepFile)); + var (_, _, compilation) = CompilationHelper.Compile(("main.bicep", bicepFile)); var rewriter = new DependsOnRemovalRewriter(compilation.GetEntrypointSemanticModel()); var newProgramSyntax = rewriter.Rewrite(compilation.SyntaxTreeGrouping.EntryPoint.ProgramSyntax); @@ -187,7 +187,7 @@ public void Necessary_dependsOn_statements_are_not_removed_for_modules() ] }"; - var compilation = CompilationHelper.CreateCompilation(("main.bicep", bicepFile)); + var (_, _, compilation) = CompilationHelper.Compile(("main.bicep", bicepFile)); var rewriter = new DependsOnRemovalRewriter(compilation.GetEntrypointSemanticModel()); var newProgramSyntax = rewriter.Rewrite(compilation.SyntaxTreeGrouping.EntryPoint.ProgramSyntax); @@ -212,7 +212,7 @@ public void ProgramSyntax_is_not_modified_if_no_changes_are_applied() name: 'resA' }"; - var compilation = CompilationHelper.CreateCompilation(("main.bicep", bicepFile)); + var (_, _, compilation) = CompilationHelper.Compile(("main.bicep", bicepFile)); var rewriter = new DependsOnRemovalRewriter(compilation.GetEntrypointSemanticModel()); var newProgramSyntax = rewriter.Rewrite(compilation.SyntaxTreeGrouping.EntryPoint.ProgramSyntax); diff --git a/src/Bicep.Decompiler.UnitTests/Rewriters/ParentChildResourceNameRewriterTests.cs b/src/Bicep.Decompiler.UnitTests/Rewriters/ParentChildResourceNameRewriterTests.cs index cb28f3f7654..c5c45f02865 100644 --- a/src/Bicep.Decompiler.UnitTests/Rewriters/ParentChildResourceNameRewriterTests.cs +++ b/src/Bicep.Decompiler.UnitTests/Rewriters/ParentChildResourceNameRewriterTests.cs @@ -28,7 +28,7 @@ public void Parent_snytax_common_variable_reference_can_be_replaced() ] }"; - var compilation = CompilationHelper.CreateCompilation(("main.bicep", bicepFile)); + var (_, _, compilation) = CompilationHelper.Compile(("main.bicep", bicepFile)); var rewriter = new ParentChildResourceNameRewriter(compilation.GetEntrypointSemanticModel()); var newProgramSyntax = rewriter.Rewrite(compilation.SyntaxTreeGrouping.EntryPoint.ProgramSyntax); @@ -64,7 +64,7 @@ public void Parent_snytax_common_variable_reference_in_string_can_be_replaced() ] }"; - var compilation = CompilationHelper.CreateCompilation(("main.bicep", bicepFile)); + var (_, _, compilation) = CompilationHelper.Compile(("main.bicep", bicepFile)); var rewriter = new ParentChildResourceNameRewriter(compilation.GetEntrypointSemanticModel()); var newProgramSyntax = rewriter.Rewrite(compilation.SyntaxTreeGrouping.EntryPoint.ProgramSyntax); @@ -109,7 +109,7 @@ public void Parent_snytax_common_multiple_variable_references_in_string_can_be_r ] }"; - var compilation = CompilationHelper.CreateCompilation(("main.bicep", bicepFile)); + var (_, _, compilation) = CompilationHelper.Compile(("main.bicep", bicepFile)); var rewriter = new ParentChildResourceNameRewriter(compilation.GetEntrypointSemanticModel()); var newProgramSyntax = rewriter.Rewrite(compilation.SyntaxTreeGrouping.EntryPoint.ProgramSyntax); @@ -154,7 +154,7 @@ public void Mismatching_resource_type_will_not_be_replaced() ] }"; - var compilation = CompilationHelper.CreateCompilation(("main.bicep", bicepFile)); + var (_, _, compilation) = CompilationHelper.Compile(("main.bicep", bicepFile)); var rewriter = new ParentChildResourceNameRewriter(compilation.GetEntrypointSemanticModel()); var newProgramSyntax = rewriter.Rewrite(compilation.SyntaxTreeGrouping.EntryPoint.ProgramSyntax); diff --git a/src/Bicep.Decompiler.UnitTests/Rewriters/TypeCasingFixerRewriterTests.cs b/src/Bicep.Decompiler.UnitTests/Rewriters/TypeCasingFixerRewriterTests.cs index e9f69ba8efe..ed787016ee5 100644 --- a/src/Bicep.Decompiler.UnitTests/Rewriters/TypeCasingFixerRewriterTests.cs +++ b/src/Bicep.Decompiler.UnitTests/Rewriters/TypeCasingFixerRewriterTests.cs @@ -21,7 +21,7 @@ public void ProgramSyntax_is_not_modified_if_no_changes_are_applied() name: 'resA' }"; - var compilation = CompilationHelper.CreateCompilation(("main.bicep", bicepFile)); + var (_, _, compilation) = CompilationHelper.Compile(("main.bicep", bicepFile)); var rewriter = new TypeCasingFixerRewriter(compilation.GetEntrypointSemanticModel()); var newProgramSyntax = rewriter.Rewrite(compilation.SyntaxTreeGrouping.EntryPoint.ProgramSyntax); @@ -65,7 +65,7 @@ public void Casing_issues_are_corrected() new TypeProperty("pascalCaseEnumUnionProp", UnionType.Create(new StringLiteralType("MyEnum"), new StringLiteralType("BlahBlah")))); var typeProvider = ResourceTypeProviderHelper.CreateMockTypeProvider(typeDefinition.AsEnumerable()); - var compilation = CompilationHelper.CreateCompilation(typeProvider, ("main.bicep", bicepFile)); + var (_, _, compilation) = CompilationHelper.Compile(typeProvider, ("main.bicep", bicepFile)); var rewriter = new TypeCasingFixerRewriter(compilation.GetEntrypointSemanticModel()); var newProgramSyntax = rewriter.Rewrite(compilation.SyntaxTreeGrouping.EntryPoint.ProgramSyntax); @@ -114,7 +114,7 @@ public void Nested_casing_issues_take_multiple_passes_to_correct() }, null))); var typeProvider = ResourceTypeProviderHelper.CreateMockTypeProvider(typeDefinition.AsEnumerable()); - var compilation = CompilationHelper.CreateCompilation(typeProvider, ("main.bicep", bicepFile)); + var (_, _, compilation) = CompilationHelper.Compile(typeProvider, ("main.bicep", bicepFile)); var rewriter = new TypeCasingFixerRewriter(compilation.GetEntrypointSemanticModel()); var newProgramSyntax = rewriter.Rewrite(compilation.SyntaxTreeGrouping.EntryPoint.ProgramSyntax); @@ -133,7 +133,7 @@ public void Nested_casing_issues_take_multiple_passes_to_correct() lowerCaseProp: resA.properties.lowercaseobj.lowerCaseStr }"); - compilation = CompilationHelper.CreateCompilation(typeProvider, ("main.bicep", firstPassBicepFile)); + (_, _, compilation) = CompilationHelper.Compile(typeProvider, ("main.bicep", firstPassBicepFile)); rewriter = new TypeCasingFixerRewriter(compilation.GetEntrypointSemanticModel()); newProgramSyntax = rewriter.Rewrite(compilation.SyntaxTreeGrouping.EntryPoint.ProgramSyntax); diff --git a/src/Bicep.Decompiler/Rewriters/DependsOnRemovalRewriter.cs b/src/Bicep.Decompiler/Rewriters/DependsOnRemovalRewriter.cs index 190eb7bba7b..c1768a801f3 100644 --- a/src/Bicep.Decompiler/Rewriters/DependsOnRemovalRewriter.cs +++ b/src/Bicep.Decompiler/Rewriters/DependsOnRemovalRewriter.cs @@ -134,6 +134,7 @@ protected override ResourceDeclarationSyntax ReplaceResourceDeclarationSyntax(Re syntax.Keyword, syntax.Name, syntax.Type, + syntax.ExistingKeyword, syntax.Assignment, replacementValue); } diff --git a/src/Bicep.Decompiler/Rewriters/ParentChildResourceNameRewriter.cs b/src/Bicep.Decompiler/Rewriters/ParentChildResourceNameRewriter.cs index a556e90f835..ece2b006b89 100644 --- a/src/Bicep.Decompiler/Rewriters/ParentChildResourceNameRewriter.cs +++ b/src/Bicep.Decompiler/Rewriters/ParentChildResourceNameRewriter.cs @@ -120,6 +120,7 @@ protected override ResourceDeclarationSyntax ReplaceResourceDeclarationSyntax(Re syntax.Keyword, syntax.Name, syntax.Type, + syntax.ExistingKeyword, syntax.Assignment, replacementValue); } diff --git a/src/Bicep.Decompiler/TemplateConverter.cs b/src/Bicep.Decompiler/TemplateConverter.cs index 870f2106403..a56418676df 100644 --- a/src/Bicep.Decompiler/TemplateConverter.cs +++ b/src/Bicep.Decompiler/TemplateConverter.cs @@ -902,6 +902,7 @@ public SyntaxBase ParseResource(JToken value) SyntaxHelpers.CreateToken(TokenType.Identifier, "resource"), SyntaxHelpers.CreateIdentifier(identifier), ParseString($"{typeString}@{apiVersionString}"), + null, SyntaxHelpers.CreateToken(TokenType.Assignment, "="), ProcessCondition(resource, body)); } diff --git a/src/Bicep.LangServer/Completions/BicepCompletionProvider.cs b/src/Bicep.LangServer/Completions/BicepCompletionProvider.cs index 3ee5bc3d92e..383759cc800 100644 --- a/src/Bicep.LangServer/Completions/BicepCompletionProvider.cs +++ b/src/Bicep.LangServer/Completions/BicepCompletionProvider.cs @@ -169,7 +169,7 @@ private IEnumerable GetResourceTypeCompletions(SemanticModel mod // we need to ensure that Microsoft.Compute/virtualMachines@whatever comes before Microsoft.Compute/virtualMachines/extensions@whatever // similarly, newest api versions should be shown first - return model.Compilation.ResourceTypeProvider.GetAvailableTypes(model.TargetScope) + return model.Compilation.ResourceTypeProvider.GetAvailableTypes() .OrderBy(rt => rt.FullyQualifiedType, StringComparer.OrdinalIgnoreCase) .ThenByDescending(rt => rt.ApiVersion) .Select((reference, index) => CreateResourceTypeCompletion(reference, index, context.ReplacementRange)) diff --git a/src/Bicep.LangServer/SemanticTokenVisitor.cs b/src/Bicep.LangServer/SemanticTokenVisitor.cs index 3c016937dbd..bd9c2916b5e 100644 --- a/src/Bicep.LangServer/SemanticTokenVisitor.cs +++ b/src/Bicep.LangServer/SemanticTokenVisitor.cs @@ -39,9 +39,12 @@ public static void BuildSemanticTokens(SemanticTokensBuilder builder, SyntaxTree } } - private void AddTokenType(IPositionable positionable, SemanticTokenType tokenType) + private void AddTokenType(IPositionable? positionable, SemanticTokenType tokenType) { - tokens.Add((positionable, tokenType)); + if (positionable is not null) + { + tokens.Add((positionable, tokenType)); + } } public override void VisitArrayAccessSyntax(ArrayAccessSyntax syntax) @@ -162,6 +165,7 @@ public override void VisitResourceDeclarationSyntax(ResourceDeclarationSyntax sy { AddTokenType(syntax.Keyword, SemanticTokenType.Keyword); AddTokenType(syntax.Name, SemanticTokenType.Variable); + AddTokenType(syntax.ExistingKeyword, SemanticTokenType.Keyword); base.VisitResourceDeclarationSyntax(syntax); } @@ -172,10 +176,10 @@ public override void VisitModuleDeclarationSyntax(ModuleDeclarationSyntax syntax base.VisitModuleDeclarationSyntax(syntax); } - public override void VisitIfConditionSyntax(IfConditionSyntax syntax) - { - AddTokenType(syntax.Keyword, SemanticTokenType.Keyword); - base.VisitIfConditionSyntax(syntax); + public override void VisitIfConditionSyntax(IfConditionSyntax syntax) + { + AddTokenType(syntax.Keyword, SemanticTokenType.Keyword); + base.VisitIfConditionSyntax(syntax); } public override void VisitSkippedTriviaSyntax(SkippedTriviaSyntax syntax) diff --git a/src/Bicep.Wasm/LanguageHelpers/SemanticTokenVisitor.cs b/src/Bicep.Wasm/LanguageHelpers/SemanticTokenVisitor.cs index 762f59fafa8..aba5a902bed 100644 --- a/src/Bicep.Wasm/LanguageHelpers/SemanticTokenVisitor.cs +++ b/src/Bicep.Wasm/LanguageHelpers/SemanticTokenVisitor.cs @@ -36,9 +36,12 @@ public static IEnumerable BuildSemanticTokens(SyntaxTree syntaxTr } } - private void AddTokenType(IPositionable positionable, SemanticTokenType tokenType) + private void AddTokenType(IPositionable? positionable, SemanticTokenType tokenType) { - tokens.Add((positionable, tokenType)); + if (positionable is not null) + { + tokens.Add((positionable, tokenType)); + } } public override void VisitArrayAccessSyntax(ArrayAccessSyntax syntax) @@ -159,6 +162,7 @@ public override void VisitResourceDeclarationSyntax(ResourceDeclarationSyntax sy { AddTokenType(syntax.Keyword, SemanticTokenType.Keyword); AddTokenType(syntax.Name, SemanticTokenType.Variable); + AddTokenType(syntax.ExistingKeyword, SemanticTokenType.Keyword); base.VisitResourceDeclarationSyntax(syntax); }