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 604f3f7693d..5a7f8f71580 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 471418ae523..a38b4e2ddc2 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidModulesSubscription_LF/main.diagnostics.bicep and b/src/Bicep.Core.Samples/Files/InvalidModulesSubscription_LF/main.diagnostics.bicep differ diff --git a/src/Bicep.Core.Samples/Files/InvalidModules_LF/main.diagnostics.bicep b/src/Bicep.Core.Samples/Files/InvalidModules_LF/main.diagnostics.bicep index 5419b440c11..73de5ae2f13 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidModules_LF/main.diagnostics.bicep and b/src/Bicep.Core.Samples/Files/InvalidModules_LF/main.diagnostics.bicep differ 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 2726781fa9b..471a0ef1f26 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/arrayPlusSymbols.json and b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/arrayPlusSymbols.json differ diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/cleanupPreferencesPlusSymbols.json b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/cleanupPreferencesPlusSymbols.json index 845e0055cf2..ea1e5577f28 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/cleanupPreferencesPlusSymbols.json and b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/cleanupPreferencesPlusSymbols.json differ 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 305ff08417a..75cc86df6a2 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/cliPropertyAccessIndexesPlusSymbols.json and b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/cliPropertyAccessIndexesPlusSymbols.json differ diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/createModeIndexPlusSymbols.json b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/createModeIndexPlusSymbols.json index 058ae99774d..9e53ec58283 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/createModeIndexPlusSymbols.json and b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/createModeIndexPlusSymbols.json differ 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 5474b94efef..4c54070de9f 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/defaultCreateModeIndexes.json and b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/defaultCreateModeIndexes.json differ 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 2018be5376b..c27728eb772 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/deploymentScriptKindsPlusSymbols.json and b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/deploymentScriptKindsPlusSymbols.json differ diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/missingDiscriminatorPropertyIndexPlusSymbols.json b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/missingDiscriminatorPropertyIndexPlusSymbols.json index 6772279f7ed..6bf0d0f7d3a 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/missingDiscriminatorPropertyIndexPlusSymbols.json and b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/missingDiscriminatorPropertyIndexPlusSymbols.json differ 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 e5fc28b6b9d..681aa3f9c15 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/objectPlusSymbols.json and b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/objectPlusSymbols.json differ diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/symbols.json b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/symbols.json index 8d4bb061a27..689428d1e03 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/symbols.json and b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/Completions/symbols.json differ 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 cd75d240fe4..41dd07cb119 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.diagnostics.bicep and b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.diagnostics.bicep differ 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 ca674025021..410c08cc24a 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.formatted.bicep and b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.formatted.bicep differ 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 9c866762fcc..e6b77ff4d44 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.syntax.bicep and b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.syntax.bicep differ diff --git a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.tokens.bicep b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.tokens.bicep index cd31f0abc13..c63726720c7 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.tokens.bicep and b/src/Bicep.Core.Samples/Files/InvalidResources_CRLF/main.tokens.bicep differ diff --git a/src/Bicep.Core.Samples/Files/InvalidVariables_LF/Completions/objectVarTopLevelIndexes.json b/src/Bicep.Core.Samples/Files/InvalidVariables_LF/Completions/objectVarTopLevelIndexes.json index c0718556d1f..fa55aafb265 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidVariables_LF/Completions/objectVarTopLevelIndexes.json and b/src/Bicep.Core.Samples/Files/InvalidVariables_LF/Completions/objectVarTopLevelIndexes.json differ diff --git a/src/Bicep.Core.Samples/Files/InvalidVariables_LF/Completions/symbols.json b/src/Bicep.Core.Samples/Files/InvalidVariables_LF/Completions/symbols.json index 0827fbe6c0e..3e881fbc40d 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidVariables_LF/Completions/symbols.json and b/src/Bicep.Core.Samples/Files/InvalidVariables_LF/Completions/symbols.json differ diff --git a/src/Bicep.Core.Samples/Files/InvalidVariables_LF/Completions/twoIndexPlusSymbols.json b/src/Bicep.Core.Samples/Files/InvalidVariables_LF/Completions/twoIndexPlusSymbols.json index 261eef09522..99c820a865b 100644 Binary files a/src/Bicep.Core.Samples/Files/InvalidVariables_LF/Completions/twoIndexPlusSymbols.json and b/src/Bicep.Core.Samples/Files/InvalidVariables_LF/Completions/twoIndexPlusSymbols.json differ diff --git a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.bicep b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.bicep index db70855ad9c..e5831399467 100644 --- a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.bicep +++ b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.bicep @@ -251,3 +251,18 @@ resource extensionDependencies 'My.Rp/mockResource@2020-01-01' = { res3runtime: extension2.properties.something } } + +resource existing1 'Mock.Rp/existingExtensionResource@2020-01-01' existing = { + name: 'existing1' + scope: extension1 +} + +resource existing2 'Mock.Rp/existingExtensionResource@2020-01-01' existing = { + name: 'existing2' + scope: existing1 +} + +resource extension3 'My.Rp/extensionResource@2020-12-01' = { + name: 'extension3' + scope: existing1 +} \ No newline at end of file diff --git a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.diagnostics.bicep b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.diagnostics.bicep index 75c712a472b..a66e1c92b2f 100644 Binary files a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.diagnostics.bicep and b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.diagnostics.bicep differ diff --git a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.formatted.bicep b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.formatted.bicep index dc406df4a3a..c453254757c 100644 Binary files a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.formatted.bicep and b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.formatted.bicep differ diff --git a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.json b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.json index d95432768ef..bc3d0211154 100644 Binary files a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.json and b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.json differ 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 fcb8715f7b7..131b662804e 100644 Binary files a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.syntax.bicep and b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.syntax.bicep differ 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 e051ab740ab..1fa759badad 100644 Binary files a/src/Bicep.Core.Samples/Files/Resources_CRLF/main.tokens.bicep and b/src/Bicep.Core.Samples/Files/Resources_CRLF/main.tokens.bicep differ 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); }