diff --git a/ClearScript/Exports/VersionSymbols.h b/ClearScript/Exports/VersionSymbols.h index 98d3cd163..bec8a407a 100644 --- a/ClearScript/Exports/VersionSymbols.h +++ b/ClearScript/Exports/VersionSymbols.h @@ -5,7 +5,7 @@ #pragma once -#define CLEARSCRIPT_VERSION_STRING "7.3.0" -#define CLEARSCRIPT_VERSION_COMMA_SEPARATED 7,3,0 -#define CLEARSCRIPT_VERSION_STRING_INFORMATIONAL "7.3.0" +#define CLEARSCRIPT_VERSION_STRING "7.3.1" +#define CLEARSCRIPT_VERSION_COMMA_SEPARATED 7,3,1 +#define CLEARSCRIPT_VERSION_STRING_INFORMATIONAL "7.3.1" #define CLEARSCRIPT_FILE_FLAGS 0L diff --git a/ClearScript/HostItem.cs b/ClearScript/HostItem.cs index dcab404a8..98b732f03 100644 --- a/ClearScript/HostItem.cs +++ b/ClearScript/HostItem.cs @@ -537,6 +537,12 @@ private bool BindSpecialTarget(out T specialTarget) where T : class return specialTarget != null; } + if (Target.Type.IsAssignableToGenericType(typeof(IReadOnlyList<>), out typeArgs)) + { + specialTarget = typeof(ReadOnlyHostList<>).MakeGenericType(typeArgs).CreateInstance(Engine, Target.InvokeTarget) as T; + return specialTarget != null; + } + specialTarget = null; return false; } @@ -1542,7 +1548,7 @@ private object GetHostProperty(PropertyInfo property, BindingFlags invokeFlags, var getMethod = property.GetMethod; if ((getMethod == null) || !getMethod.IsAccessible(AccessContext) || getMethod.IsBlockedFromScript(DefaultAccess, false)) { - throw new UnauthorizedAccessException("Property get method is unavailable or inaccessible"); + throw new UnauthorizedAccessException("The property get method is unavailable or inaccessible"); } var result = property.GetValue(Target.InvokeTarget, invokeFlags, Type.DefaultBinder, args, culture); @@ -1628,7 +1634,7 @@ private object SetHostProperty(string name, BindingFlags invokeFlags, object[] a { if (field.IsLiteral || field.IsInitOnly || field.IsReadOnlyForScript(DefaultAccess)) { - throw new UnauthorizedAccessException("Field is read-only"); + throw new UnauthorizedAccessException("The field is read-only"); } var value = args[0]; @@ -1651,13 +1657,13 @@ private object SetHostProperty(PropertyInfo property, BindingFlags invokeFlags, { if (property.IsReadOnlyForScript(DefaultAccess)) { - throw new UnauthorizedAccessException("Property is read-only"); + throw new UnauthorizedAccessException("The property is read-only"); } var setMethod = property.SetMethod; if ((setMethod == null) || !setMethod.IsAccessible(AccessContext) || setMethod.IsBlockedFromScript(DefaultAccess, false)) { - throw new UnauthorizedAccessException("Property set method is unavailable or inaccessible"); + throw new UnauthorizedAccessException("The property set method is unavailable or inaccessible"); } var value = args[args.Length - 1]; diff --git a/ClearScript/HostList.cs b/ClearScript/HostList.cs index eac8cbd8a..c2647828b 100644 --- a/ClearScript/HostList.cs +++ b/ClearScript/HostList.cs @@ -72,4 +72,29 @@ public object this[int index] #endregion } + + internal sealed class ReadOnlyHostList : IHostList + { + private readonly ScriptEngine engine; + private readonly IReadOnlyList list; + + public ReadOnlyHostList(ScriptEngine engine, IReadOnlyList list) + { + this.engine = engine; + this.list = list; + } + + #region IHostList implementation + + public int Count => list.Count; + + public object this[int index] + { + get => engine.PrepareResult(list[index], ScriptMemberFlags.None, true); + + set => throw new UnauthorizedAccessException("The object is read-only"); + } + + #endregion + } } diff --git a/ClearScript/HostTypeCollection.cs b/ClearScript/HostTypeCollection.cs index ffd7a3809..24d6ca666 100644 --- a/ClearScript/HostTypeCollection.cs +++ b/ClearScript/HostTypeCollection.cs @@ -5,7 +5,6 @@ using System.Collections.Generic; using System.Linq; using System.Reflection; -using System.Runtime.InteropServices; using System.Runtime.InteropServices.ComTypes; using Microsoft.ClearScript.Util; using Microsoft.ClearScript.Util.COM; @@ -232,7 +231,7 @@ private PropertyBag AddEnumTypeInfoInternal(ITypeInfo typeInfo) if (varDescScope.Value.varkind == VARKIND.VAR_CONST) { var name = typeInfo.GetMemberName(varDescScope.Value.memid); - node.SetPropertyNoCheck(name, Marshal.GetObjectForNativeVariant(varDescScope.Value.desc.lpvarValue)); + node.SetPropertyNoCheck(name, MiscHelpers.GetObjectForVariant(varDescScope.Value.desc.lpvarValue)); } } } diff --git a/ClearScript/Properties/AssemblyInfo.Core.cs b/ClearScript/Properties/AssemblyInfo.Core.cs index 9f525e63e..8ce353e82 100644 --- a/ClearScript/Properties/AssemblyInfo.Core.cs +++ b/ClearScript/Properties/AssemblyInfo.Core.cs @@ -18,15 +18,15 @@ [assembly: InternalsVisibleTo("ClearScriptTest")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.0")] -[assembly: AssemblyFileVersion("7.3.0")] -[assembly: AssemblyInformationalVersion("7.3.0")] +[assembly: AssemblyVersion("7.3.1")] +[assembly: AssemblyFileVersion("7.3.1")] +[assembly: AssemblyInformationalVersion("7.3.1")] namespace Microsoft.ClearScript.Properties { internal static class ClearScriptVersion { - public const string Triad = "7.3.0"; - public const string Informational = "7.3.0"; + public const string Triad = "7.3.1"; + public const string Informational = "7.3.1"; } } diff --git a/ClearScript/Properties/AssemblyInfo.V8.ICUData.cs b/ClearScript/Properties/AssemblyInfo.V8.ICUData.cs index 9c25ff42b..867785ca6 100644 --- a/ClearScript/Properties/AssemblyInfo.V8.ICUData.cs +++ b/ClearScript/Properties/AssemblyInfo.V8.ICUData.cs @@ -15,6 +15,6 @@ [assembly: InternalsVisibleTo("ClearScript.V8")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.0")] -[assembly: AssemblyFileVersion("7.3.0")] -[assembly: AssemblyInformationalVersion("7.3.0")] +[assembly: AssemblyVersion("7.3.1")] +[assembly: AssemblyFileVersion("7.3.1")] +[assembly: AssemblyInformationalVersion("7.3.1")] diff --git a/ClearScript/Properties/AssemblyInfo.V8.cs b/ClearScript/Properties/AssemblyInfo.V8.cs index f36f12caa..e6cd7b385 100644 --- a/ClearScript/Properties/AssemblyInfo.V8.cs +++ b/ClearScript/Properties/AssemblyInfo.V8.cs @@ -15,6 +15,6 @@ [assembly: InternalsVisibleTo("ClearScriptTest")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.0")] -[assembly: AssemblyFileVersion("7.3.0")] -[assembly: AssemblyInformationalVersion("7.3.0")] +[assembly: AssemblyVersion("7.3.1")] +[assembly: AssemblyFileVersion("7.3.1")] +[assembly: AssemblyInformationalVersion("7.3.1")] diff --git a/ClearScript/Properties/AssemblyInfo.Windows.Core.cs b/ClearScript/Properties/AssemblyInfo.Windows.Core.cs index 0908c5927..85d44b19d 100644 --- a/ClearScript/Properties/AssemblyInfo.Windows.Core.cs +++ b/ClearScript/Properties/AssemblyInfo.Windows.Core.cs @@ -16,6 +16,6 @@ [assembly: InternalsVisibleTo("ClearScriptTest")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.0")] -[assembly: AssemblyFileVersion("7.3.0")] -[assembly: AssemblyInformationalVersion("7.3.0")] +[assembly: AssemblyVersion("7.3.1")] +[assembly: AssemblyFileVersion("7.3.1")] +[assembly: AssemblyInformationalVersion("7.3.1")] diff --git a/ClearScript/Properties/AssemblyInfo.Windows.cs b/ClearScript/Properties/AssemblyInfo.Windows.cs index 9921c4867..7f5835372 100644 --- a/ClearScript/Properties/AssemblyInfo.Windows.cs +++ b/ClearScript/Properties/AssemblyInfo.Windows.cs @@ -15,6 +15,6 @@ [assembly: InternalsVisibleTo("ClearScriptTest")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.0")] -[assembly: AssemblyFileVersion("7.3.0")] -[assembly: AssemblyInformationalVersion("7.3.0")] +[assembly: AssemblyVersion("7.3.1")] +[assembly: AssemblyFileVersion("7.3.1")] +[assembly: AssemblyInformationalVersion("7.3.1")] diff --git a/ClearScript/ScriptEngine.cs b/ClearScript/ScriptEngine.cs index 72880d99e..4d0a62b1f 100644 --- a/ClearScript/ScriptEngine.cs +++ b/ClearScript/ScriptEngine.cs @@ -293,10 +293,31 @@ public bool DisableExtensionMethods /// Some script languages support one or more special non-null values that represent /// nonexistent, missing, unknown, or undefined data. When such a value is marshaled to the /// host, the script engine maps it to the value of this property. The default value is - /// . + /// Undefined.Value. /// public object UndefinedImportValue { get; set; } = Undefined.Value; + /// + /// Gets or sets the engine's null export value. + /// + /// + /// + /// When a null object reference is marshaled to script code, the script engine maps it to + /// the value of this property. The default value is simply null, which corresponds + /// to null or its closest equivalent in the script language. Other useful + /// possibilities include + /// Undefined.Value and + /// Nothing.Value. + /// + /// + /// Note that , + /// , and + /// MarshalNullAsDispatch + /// all take precedence over this property. + /// + /// + public object NullExportValue { get; set; } + /// /// Gets or sets the engine's void result export value. /// @@ -306,7 +327,7 @@ public bool DisableExtensionMethods /// as a C# /// void /// method), the script engine returns the value of this property as a dummy result. The - /// default value is . + /// default value is VoidResult.Value. /// public object VoidResultValue { get; set; } = VoidResult.Value; diff --git a/ClearScript/Util/COM/DispatchHelpers.cs b/ClearScript/Util/COM/DispatchHelpers.cs index 585054985..e1f2a2f2a 100644 --- a/ClearScript/Util/COM/DispatchHelpers.cs +++ b/ClearScript/Util/COM/DispatchHelpers.cs @@ -42,7 +42,7 @@ public static object GetProperty(this IDispatch dispatch, string name, params ob { var dispArgs = new DISPPARAMS { cArgs = args.Length, rgvarg = argVariantArrayBlock.Addr, cNamedArgs = 0, rgdispidNamedArgs = IntPtr.Zero }; HResult.Check(dispatch.Invoke(dispid, ref iid, 0, DispatchFlags.PropertyGet, ref dispArgs, resultVariantBlock.Addr, out _, out _)); - return Marshal.GetObjectForNativeVariant(resultVariantBlock.Addr); + return MiscHelpers.GetObjectForVariant(resultVariantBlock.Addr); } } } @@ -92,7 +92,7 @@ public static object Invoke(this IDispatch dispatch, params object[] args) { var dispArgs = new DISPPARAMS { cArgs = args.Length, rgvarg = argVariantArrayBlock.Addr, cNamedArgs = 0, rgdispidNamedArgs = IntPtr.Zero }; HResult.Check(dispatch.Invoke(SpecialDispIDs.Default, ref iid, 0, DispatchFlags.Method, ref dispArgs, resultVariantBlock.Addr, out _, out _)); - return Marshal.GetObjectForNativeVariant(resultVariantBlock.Addr); + return MiscHelpers.GetObjectForVariant(resultVariantBlock.Addr); } } } @@ -111,7 +111,7 @@ public static object InvokeMethod(this IDispatch dispatch, string name, params o { var dispArgs = new DISPPARAMS { cArgs = args.Length, rgvarg = argVariantArrayBlock.Addr, cNamedArgs = 0, rgdispidNamedArgs = IntPtr.Zero }; HResult.Check(dispatch.Invoke(dispid, iid, 0, DispatchFlags.Method, ref dispArgs, resultVariantBlock.Addr, out _, out _)); - return Marshal.GetObjectForNativeVariant(resultVariantBlock.Addr); + return MiscHelpers.GetObjectForVariant(resultVariantBlock.Addr); } } } @@ -185,7 +185,7 @@ public static object GetProperty(this IDispatchEx dispatchEx, string name, bool { var dispArgs = new DISPPARAMS { cArgs = args.Length, rgvarg = argVariantArrayBlock.Addr, cNamedArgs = 0, rgdispidNamedArgs = IntPtr.Zero }; HResult.Check(dispatchEx.InvokeEx(dispid, 0, DispatchFlags.PropertyGet, ref dispArgs, resultVariantBlock.Addr, out _)); - return Marshal.GetObjectForNativeVariant(resultVariantBlock.Addr); + return MiscHelpers.GetObjectForVariant(resultVariantBlock.Addr); } } } @@ -240,7 +240,7 @@ public static object Invoke(this IDispatchEx dispatchEx, bool asConstructor, par { var dispArgs = new DISPPARAMS { cArgs = args.Length, rgvarg = argVariantArrayBlock.Addr, cNamedArgs = 0, rgdispidNamedArgs = IntPtr.Zero }; HResult.Check(dispatchEx.InvokeEx(SpecialDispIDs.Default, 0, asConstructor ? DispatchFlags.Construct : DispatchFlags.Method, ref dispArgs, resultVariantBlock.Addr, out _)); - return Marshal.GetObjectForNativeVariant(resultVariantBlock.Addr); + return MiscHelpers.GetObjectForVariant(resultVariantBlock.Addr); } } } @@ -259,7 +259,7 @@ public static object InvokeMethod(this IDispatchEx dispatchEx, string name, bool { var dispArgs = new DISPPARAMS { cArgs = args.Length, rgvarg = argVariantArrayBlock.Addr, cNamedArgs = 0, rgdispidNamedArgs = IntPtr.Zero }; HResult.Check(dispatchEx.InvokeEx(dispid, 0, DispatchFlags.Method, ref dispArgs, resultVariantBlock.Addr, out _)); - return Marshal.GetObjectForNativeVariant(resultVariantBlock.Addr); + return MiscHelpers.GetObjectForVariant(resultVariantBlock.Addr); } } } diff --git a/ClearScript/Util/CoTaskMemBlock.cs b/ClearScript/Util/CoTaskMemBlock.cs index a756fe4dd..5ab6800f4 100644 --- a/ClearScript/Util/CoTaskMemBlock.cs +++ b/ClearScript/Util/CoTaskMemBlock.cs @@ -200,7 +200,7 @@ protected override void Dispose(bool disposing) for (var index = 0; index < args.Length; index++) { var pArg = GetAddrInternal(args.Length + index); - args[index] = Marshal.GetObjectForNativeVariant(pArg); + args[index] = MiscHelpers.GetObjectForVariant(pArg); NativeMethods.VariantClear(pArg); } } diff --git a/ClearScript/Util/MiscHelpers.cs b/ClearScript/Util/MiscHelpers.cs index 2d57240a0..a89f2bf18 100644 --- a/ClearScript/Util/MiscHelpers.cs +++ b/ClearScript/Util/MiscHelpers.cs @@ -586,6 +586,18 @@ public static bool ProcessorArchitectureIsArm() } } + public static object GetObjectForVariant(IntPtr pVariant) + { + var result = Marshal.GetObjectForNativeVariant(pVariant); + + if ((result == null) && (Marshal.ReadInt16(pVariant) == (short)VarEnum.VT_BSTR)) + { + return string.Empty; + } + + return result; + } + #endregion } } diff --git a/ClearScript/Util/TypeHelpers.cs b/ClearScript/Util/TypeHelpers.cs index be5b436b6..693682c01 100644 --- a/ClearScript/Util/TypeHelpers.cs +++ b/ClearScript/Util/TypeHelpers.cs @@ -18,7 +18,7 @@ namespace Microsoft.ClearScript.Util { internal static partial class TypeHelpers { - private static readonly string[] importBlackList = + private static readonly string[] importDenyList = { // ReSharper disable StringLiteralTypo @@ -75,7 +75,7 @@ public static bool IsImportable(this Type type) if (!type.IsNested && !type.IsSpecialName && !type.IsCompilerGenerated()) { var locator = type.GetLocator(); - return !importBlackList.Contains(locator) && IsValidLocator(locator); + return !importDenyList.Contains(locator) && IsValidLocator(locator); } return false; @@ -785,7 +785,7 @@ private static Type GetPropertyIndexType(object bindArg) return bindArg.GetType(); } - throw new InvalidOperationException("Property index value must not be null"); + throw new InvalidOperationException("The property index value must not be null"); } private static PropertyInfo SelectProperty(PropertyInfo[] candidates, BindingFlags bindFlags, object[] bindArgs) diff --git a/ClearScript/V8/SplitProxy/IV8SplitProxyNative.cs b/ClearScript/V8/SplitProxy/IV8SplitProxyNative.cs index 21ff27a86..e253709bd 100644 --- a/ClearScript/V8/SplitProxy/IV8SplitProxyNative.cs +++ b/ClearScript/V8/SplitProxy/IV8SplitProxyNative.cs @@ -144,7 +144,7 @@ internal interface IV8SplitProxyNative void V8Isolate_SetEnableInterruptPropagation(V8Isolate.Handle hIsolate, bool value); bool V8Isolate_GetDisableHeapSizeViolationInterrupt(V8Isolate.Handle hIsolate); void V8Isolate_SetDisableHeapSizeViolationInterrupt(V8Isolate.Handle hIsolate, bool value); - void V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit); + void V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize); void V8Isolate_GetStatistics(V8Isolate.Handle hIsolate, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts); void V8Isolate_CollectGarbage(V8Isolate.Handle hIsolate, bool exhaustive); bool V8Isolate_BeginCpuProfile(V8Isolate.Handle hIsolate, string name, bool recordSamples); @@ -180,7 +180,7 @@ internal interface IV8SplitProxyNative void V8Context_SetEnableIsolateInterruptPropagation(V8Context.Handle hContext, bool value); bool V8Context_GetDisableIsolateHeapSizeViolationInterrupt(V8Context.Handle hContext); void V8Context_SetDisableIsolateHeapSizeViolationInterrupt(V8Context.Handle hContext, bool value); - void V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit); + void V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize); void V8Context_GetIsolateStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts); void V8Context_GetStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong moduleCount, out ulong moduleCacheSize); void V8Context_CollectGarbage(V8Context.Handle hContext, bool exhaustive); diff --git a/ClearScript/V8/SplitProxy/V8ContextProxyImpl.cs b/ClearScript/V8/SplitProxy/V8ContextProxyImpl.cs index f293520c4..6a1600eb1 100644 --- a/ClearScript/V8/SplitProxy/V8ContextProxyImpl.cs +++ b/ClearScript/V8/SplitProxy/V8ContextProxyImpl.cs @@ -194,17 +194,21 @@ public override V8RuntimeHeapInfo GetIsolateHeapInfo() var totalHeapSize = 0UL; var totalHeapSizeExecutable = 0UL; var totalPhysicalSize = 0UL; + var totalAvailableSize = 0UL; var usedHeapSize = 0UL; var heapSizeLimit = 0UL; - V8SplitProxyNative.Invoke(instance => instance.V8Context_GetIsolateHeapStatistics(Handle, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit)); + var totalExternalSize = 0UL; + V8SplitProxyNative.Invoke(instance => instance.V8Context_GetIsolateHeapStatistics(Handle, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize)); return new V8RuntimeHeapInfo { TotalHeapSize = totalHeapSize, TotalHeapSizeExecutable = totalHeapSizeExecutable, TotalPhysicalSize = totalPhysicalSize, + TotalAvailableSize = totalAvailableSize, UsedHeapSize = usedHeapSize, - HeapSizeLimit = heapSizeLimit + HeapSizeLimit = heapSizeLimit, + TotalExternalSize = totalExternalSize }; } diff --git a/ClearScript/V8/SplitProxy/V8IsolateProxyImpl.cs b/ClearScript/V8/SplitProxy/V8IsolateProxyImpl.cs index 61b223c94..5181550fe 100644 --- a/ClearScript/V8/SplitProxy/V8IsolateProxyImpl.cs +++ b/ClearScript/V8/SplitProxy/V8IsolateProxyImpl.cs @@ -162,17 +162,21 @@ public override V8RuntimeHeapInfo GetHeapInfo() var totalHeapSize = 0UL; var totalHeapSizeExecutable = 0UL; var totalPhysicalSize = 0UL; + var totalAvailableSize = 0UL; var usedHeapSize = 0UL; var heapSizeLimit = 0UL; - V8SplitProxyNative.Invoke(instance => instance.V8Isolate_GetHeapStatistics(Handle, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit)); + var totalExternalSize = 0UL; + V8SplitProxyNative.Invoke(instance => instance.V8Isolate_GetHeapStatistics(Handle, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize)); return new V8RuntimeHeapInfo { TotalHeapSize = totalHeapSize, TotalHeapSizeExecutable = totalHeapSizeExecutable, TotalPhysicalSize = totalPhysicalSize, + TotalAvailableSize = totalAvailableSize, UsedHeapSize = usedHeapSize, - HeapSizeLimit = heapSizeLimit + HeapSizeLimit = heapSizeLimit, + TotalExternalSize = totalExternalSize }; } diff --git a/ClearScript/V8/SplitProxy/V8SplitProxyNative.Common.tt b/ClearScript/V8/SplitProxy/V8SplitProxyNative.Common.tt index 1faafed3e..efc884248 100644 --- a/ClearScript/V8/SplitProxy/V8SplitProxyNative.Common.tt +++ b/ClearScript/V8/SplitProxy/V8SplitProxyNative.Common.tt @@ -568,9 +568,9 @@ namespace Microsoft.ClearScript.V8.SplitProxy V8Isolate_SetDisableHeapSizeViolationInterrupt(hIsolate, value); } - void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Isolate_GetStatistics(V8Isolate.Handle hIsolate, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -803,9 +803,9 @@ namespace Microsoft.ClearScript.V8.SplitProxy V8Context_SetDisableIsolateHeapSizeViolationInterrupt(hContext, value); } - void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Context_GetIsolateStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -1081,7 +1081,7 @@ namespace Microsoft.ClearScript.V8.SplitProxy [DllImport("<#= fileName #>", CallingConvention = CallingConvention.StdCall)] private static extern void V8Environment_InitializeICU( [In] IntPtr pICUData, - [In] uint size + [In] uint size ); #endregion @@ -1622,8 +1622,10 @@ namespace Microsoft.ClearScript.V8.SplitProxy [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("<#= fileName #>", CallingConvention = CallingConvention.StdCall)] @@ -1845,8 +1847,10 @@ namespace Microsoft.ClearScript.V8.SplitProxy [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("<#= fileName #>", CallingConvention = CallingConvention.StdCall)] diff --git a/ClearScript/V8/SplitProxy/V8SplitProxyNative.Generated.cs b/ClearScript/V8/SplitProxy/V8SplitProxyNative.Generated.cs index 379a24965..078233406 100644 --- a/ClearScript/V8/SplitProxy/V8SplitProxyNative.Generated.cs +++ b/ClearScript/V8/SplitProxy/V8SplitProxyNative.Generated.cs @@ -610,9 +610,9 @@ void IV8SplitProxyNative.V8Isolate_SetDisableHeapSizeViolationInterrupt(V8Isolat V8Isolate_SetDisableHeapSizeViolationInterrupt(hIsolate, value); } - void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Isolate_GetStatistics(V8Isolate.Handle hIsolate, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -845,9 +845,9 @@ void IV8SplitProxyNative.V8Context_SetDisableIsolateHeapSizeViolationInterrupt(V V8Context_SetDisableIsolateHeapSizeViolationInterrupt(hContext, value); } - void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Context_GetIsolateStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -1123,7 +1123,7 @@ [In] IntPtr pMethodTable [DllImport("ClearScriptV8.win-x86.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Environment_InitializeICU( [In] IntPtr pICUData, - [In] uint size + [In] uint size ); #endregion @@ -1664,8 +1664,10 @@ private static extern void V8Isolate_GetHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.win-x86.dll", CallingConvention = CallingConvention.StdCall)] @@ -1887,8 +1889,10 @@ private static extern void V8Context_GetIsolateHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.win-x86.dll", CallingConvention = CallingConvention.StdCall)] @@ -2640,9 +2644,9 @@ void IV8SplitProxyNative.V8Isolate_SetDisableHeapSizeViolationInterrupt(V8Isolat V8Isolate_SetDisableHeapSizeViolationInterrupt(hIsolate, value); } - void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Isolate_GetStatistics(V8Isolate.Handle hIsolate, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -2875,9 +2879,9 @@ void IV8SplitProxyNative.V8Context_SetDisableIsolateHeapSizeViolationInterrupt(V V8Context_SetDisableIsolateHeapSizeViolationInterrupt(hContext, value); } - void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Context_GetIsolateStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -3153,7 +3157,7 @@ [In] IntPtr pMethodTable [DllImport("ClearScriptV8.win-x64.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Environment_InitializeICU( [In] IntPtr pICUData, - [In] uint size + [In] uint size ); #endregion @@ -3694,8 +3698,10 @@ private static extern void V8Isolate_GetHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.win-x64.dll", CallingConvention = CallingConvention.StdCall)] @@ -3917,8 +3923,10 @@ private static extern void V8Context_GetIsolateHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.win-x64.dll", CallingConvention = CallingConvention.StdCall)] @@ -4670,9 +4678,9 @@ void IV8SplitProxyNative.V8Isolate_SetDisableHeapSizeViolationInterrupt(V8Isolat V8Isolate_SetDisableHeapSizeViolationInterrupt(hIsolate, value); } - void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Isolate_GetStatistics(V8Isolate.Handle hIsolate, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -4905,9 +4913,9 @@ void IV8SplitProxyNative.V8Context_SetDisableIsolateHeapSizeViolationInterrupt(V V8Context_SetDisableIsolateHeapSizeViolationInterrupt(hContext, value); } - void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Context_GetIsolateStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -5183,7 +5191,7 @@ [In] IntPtr pMethodTable [DllImport("ClearScriptV8.win-arm64.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Environment_InitializeICU( [In] IntPtr pICUData, - [In] uint size + [In] uint size ); #endregion @@ -5724,8 +5732,10 @@ private static extern void V8Isolate_GetHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.win-arm64.dll", CallingConvention = CallingConvention.StdCall)] @@ -5947,8 +5957,10 @@ private static extern void V8Context_GetIsolateHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.win-arm64.dll", CallingConvention = CallingConvention.StdCall)] @@ -6700,9 +6712,9 @@ void IV8SplitProxyNative.V8Isolate_SetDisableHeapSizeViolationInterrupt(V8Isolat V8Isolate_SetDisableHeapSizeViolationInterrupt(hIsolate, value); } - void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Isolate_GetStatistics(V8Isolate.Handle hIsolate, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -6935,9 +6947,9 @@ void IV8SplitProxyNative.V8Context_SetDisableIsolateHeapSizeViolationInterrupt(V V8Context_SetDisableIsolateHeapSizeViolationInterrupt(hContext, value); } - void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Context_GetIsolateStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -7213,7 +7225,7 @@ [In] IntPtr pMethodTable [DllImport("ClearScriptV8.linux-x64.so", CallingConvention = CallingConvention.StdCall)] private static extern void V8Environment_InitializeICU( [In] IntPtr pICUData, - [In] uint size + [In] uint size ); #endregion @@ -7754,8 +7766,10 @@ private static extern void V8Isolate_GetHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.linux-x64.so", CallingConvention = CallingConvention.StdCall)] @@ -7977,8 +7991,10 @@ private static extern void V8Context_GetIsolateHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.linux-x64.so", CallingConvention = CallingConvention.StdCall)] @@ -8730,9 +8746,9 @@ void IV8SplitProxyNative.V8Isolate_SetDisableHeapSizeViolationInterrupt(V8Isolat V8Isolate_SetDisableHeapSizeViolationInterrupt(hIsolate, value); } - void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Isolate_GetStatistics(V8Isolate.Handle hIsolate, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -8965,9 +8981,9 @@ void IV8SplitProxyNative.V8Context_SetDisableIsolateHeapSizeViolationInterrupt(V V8Context_SetDisableIsolateHeapSizeViolationInterrupt(hContext, value); } - void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Context_GetIsolateStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -9243,7 +9259,7 @@ [In] IntPtr pMethodTable [DllImport("ClearScriptV8.linux-arm64.so", CallingConvention = CallingConvention.StdCall)] private static extern void V8Environment_InitializeICU( [In] IntPtr pICUData, - [In] uint size + [In] uint size ); #endregion @@ -9784,8 +9800,10 @@ private static extern void V8Isolate_GetHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.linux-arm64.so", CallingConvention = CallingConvention.StdCall)] @@ -10007,8 +10025,10 @@ private static extern void V8Context_GetIsolateHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.linux-arm64.so", CallingConvention = CallingConvention.StdCall)] @@ -10760,9 +10780,9 @@ void IV8SplitProxyNative.V8Isolate_SetDisableHeapSizeViolationInterrupt(V8Isolat V8Isolate_SetDisableHeapSizeViolationInterrupt(hIsolate, value); } - void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Isolate_GetStatistics(V8Isolate.Handle hIsolate, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -10995,9 +11015,9 @@ void IV8SplitProxyNative.V8Context_SetDisableIsolateHeapSizeViolationInterrupt(V V8Context_SetDisableIsolateHeapSizeViolationInterrupt(hContext, value); } - void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Context_GetIsolateStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -11273,7 +11293,7 @@ [In] IntPtr pMethodTable [DllImport("ClearScriptV8.linux-arm.so", CallingConvention = CallingConvention.StdCall)] private static extern void V8Environment_InitializeICU( [In] IntPtr pICUData, - [In] uint size + [In] uint size ); #endregion @@ -11814,8 +11834,10 @@ private static extern void V8Isolate_GetHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.linux-arm.so", CallingConvention = CallingConvention.StdCall)] @@ -12037,8 +12059,10 @@ private static extern void V8Context_GetIsolateHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.linux-arm.so", CallingConvention = CallingConvention.StdCall)] @@ -12790,9 +12814,9 @@ void IV8SplitProxyNative.V8Isolate_SetDisableHeapSizeViolationInterrupt(V8Isolat V8Isolate_SetDisableHeapSizeViolationInterrupt(hIsolate, value); } - void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Isolate_GetStatistics(V8Isolate.Handle hIsolate, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -13025,9 +13049,9 @@ void IV8SplitProxyNative.V8Context_SetDisableIsolateHeapSizeViolationInterrupt(V V8Context_SetDisableIsolateHeapSizeViolationInterrupt(hContext, value); } - void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Context_GetIsolateStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -13303,7 +13327,7 @@ [In] IntPtr pMethodTable [DllImport("ClearScriptV8.osx-x64.dylib", CallingConvention = CallingConvention.StdCall)] private static extern void V8Environment_InitializeICU( [In] IntPtr pICUData, - [In] uint size + [In] uint size ); #endregion @@ -13844,8 +13868,10 @@ private static extern void V8Isolate_GetHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.osx-x64.dylib", CallingConvention = CallingConvention.StdCall)] @@ -14067,8 +14093,10 @@ private static extern void V8Context_GetIsolateHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.osx-x64.dylib", CallingConvention = CallingConvention.StdCall)] @@ -14820,9 +14848,9 @@ void IV8SplitProxyNative.V8Isolate_SetDisableHeapSizeViolationInterrupt(V8Isolat V8Isolate_SetDisableHeapSizeViolationInterrupt(hIsolate, value); } - void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Isolate_GetStatistics(V8Isolate.Handle hIsolate, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -15055,9 +15083,9 @@ void IV8SplitProxyNative.V8Context_SetDisableIsolateHeapSizeViolationInterrupt(V V8Context_SetDisableIsolateHeapSizeViolationInterrupt(hContext, value); } - void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Context_GetIsolateStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -15333,7 +15361,7 @@ [In] IntPtr pMethodTable [DllImport("ClearScriptV8.osx-arm64.dylib", CallingConvention = CallingConvention.StdCall)] private static extern void V8Environment_InitializeICU( [In] IntPtr pICUData, - [In] uint size + [In] uint size ); #endregion @@ -15874,8 +15902,10 @@ private static extern void V8Isolate_GetHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.osx-arm64.dylib", CallingConvention = CallingConvention.StdCall)] @@ -16097,8 +16127,10 @@ private static extern void V8Context_GetIsolateHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.osx-arm64.dylib", CallingConvention = CallingConvention.StdCall)] diff --git a/ClearScript/V8/SplitProxy/V8SplitProxyNative.UWP.Generated.cs b/ClearScript/V8/SplitProxy/V8SplitProxyNative.UWP.Generated.cs index 3c3fbc868..be5eb2254 100644 --- a/ClearScript/V8/SplitProxy/V8SplitProxyNative.UWP.Generated.cs +++ b/ClearScript/V8/SplitProxy/V8SplitProxyNative.UWP.Generated.cs @@ -566,9 +566,9 @@ void IV8SplitProxyNative.V8Isolate_SetDisableHeapSizeViolationInterrupt(V8Isolat V8Isolate_SetDisableHeapSizeViolationInterrupt(hIsolate, value); } - void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Isolate_GetStatistics(V8Isolate.Handle hIsolate, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -801,9 +801,9 @@ void IV8SplitProxyNative.V8Context_SetDisableIsolateHeapSizeViolationInterrupt(V V8Context_SetDisableIsolateHeapSizeViolationInterrupt(hContext, value); } - void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Context_GetIsolateStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -1079,7 +1079,7 @@ [In] IntPtr pMethodTable [DllImport("ClearScriptV8.win-x86.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Environment_InitializeICU( [In] IntPtr pICUData, - [In] uint size + [In] uint size ); #endregion @@ -1620,8 +1620,10 @@ private static extern void V8Isolate_GetHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.win-x86.dll", CallingConvention = CallingConvention.StdCall)] @@ -1843,8 +1845,10 @@ private static extern void V8Context_GetIsolateHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.win-x86.dll", CallingConvention = CallingConvention.StdCall)] @@ -2596,9 +2600,9 @@ void IV8SplitProxyNative.V8Isolate_SetDisableHeapSizeViolationInterrupt(V8Isolat V8Isolate_SetDisableHeapSizeViolationInterrupt(hIsolate, value); } - void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Isolate_GetStatistics(V8Isolate.Handle hIsolate, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -2831,9 +2835,9 @@ void IV8SplitProxyNative.V8Context_SetDisableIsolateHeapSizeViolationInterrupt(V V8Context_SetDisableIsolateHeapSizeViolationInterrupt(hContext, value); } - void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Context_GetIsolateStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -3109,7 +3113,7 @@ [In] IntPtr pMethodTable [DllImport("ClearScriptV8.win-x64.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Environment_InitializeICU( [In] IntPtr pICUData, - [In] uint size + [In] uint size ); #endregion @@ -3650,8 +3654,10 @@ private static extern void V8Isolate_GetHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.win-x64.dll", CallingConvention = CallingConvention.StdCall)] @@ -3873,8 +3879,10 @@ private static extern void V8Context_GetIsolateHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.win-x64.dll", CallingConvention = CallingConvention.StdCall)] @@ -4626,9 +4634,9 @@ void IV8SplitProxyNative.V8Isolate_SetDisableHeapSizeViolationInterrupt(V8Isolat V8Isolate_SetDisableHeapSizeViolationInterrupt(hIsolate, value); } - void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Isolate_GetHeapStatistics(V8Isolate.Handle hIsolate, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Isolate_GetHeapStatistics(hIsolate, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Isolate_GetStatistics(V8Isolate.Handle hIsolate, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -4861,9 +4869,9 @@ void IV8SplitProxyNative.V8Context_SetDisableIsolateHeapSizeViolationInterrupt(V V8Context_SetDisableIsolateHeapSizeViolationInterrupt(hContext, value); } - void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong usedHeapSize, out ulong heapSizeLimit) + void IV8SplitProxyNative.V8Context_GetIsolateHeapStatistics(V8Context.Handle hContext, out ulong totalHeapSize, out ulong totalHeapSizeExecutable, out ulong totalPhysicalSize, out ulong totalAvailableSize, out ulong usedHeapSize, out ulong heapSizeLimit, out ulong totalExternalSize) { - V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out usedHeapSize, out heapSizeLimit); + V8Context_GetIsolateHeapStatistics(hContext, out totalHeapSize, out totalHeapSizeExecutable, out totalPhysicalSize, out totalAvailableSize, out usedHeapSize, out heapSizeLimit, out totalExternalSize); } void IV8SplitProxyNative.V8Context_GetIsolateStatistics(V8Context.Handle hContext, out ulong scriptCount, out ulong scriptCacheSize, out ulong moduleCount, out ulong[] postedTaskCounts, out ulong[] invokedTaskCounts) @@ -5139,7 +5147,7 @@ [In] IntPtr pMethodTable [DllImport("ClearScriptV8.win-arm64.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Environment_InitializeICU( [In] IntPtr pICUData, - [In] uint size + [In] uint size ); #endregion @@ -5680,8 +5688,10 @@ private static extern void V8Isolate_GetHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.win-arm64.dll", CallingConvention = CallingConvention.StdCall)] @@ -5903,8 +5913,10 @@ private static extern void V8Context_GetIsolateHeapStatistics( [Out] out ulong totalHeapSize, [Out] out ulong totalHeapSizeExecutable, [Out] out ulong totalPhysicalSize, + [Out] out ulong totalAvailableSize, [Out] out ulong usedHeapSize, - [Out] out ulong heapSizeLimit + [Out] out ulong heapSizeLimit, + [Out] out ulong totalExternalSize ); [DllImport("ClearScriptV8.win-arm64.dll", CallingConvention = CallingConvention.StdCall)] diff --git a/ClearScript/V8/V8RuntimeHeapInfo.cs b/ClearScript/V8/V8RuntimeHeapInfo.cs index 01c348f2b..c4f6524e0 100644 --- a/ClearScript/V8/V8RuntimeHeapInfo.cs +++ b/ClearScript/V8/V8RuntimeHeapInfo.cs @@ -27,6 +27,11 @@ internal V8RuntimeHeapInfo() /// public ulong TotalPhysicalSize { get; internal set; } + /// + /// Gets the total available memory size in bytes. + /// + public ulong TotalAvailableSize { get; internal set; } + /// /// Gets the used heap size in bytes. /// @@ -36,5 +41,10 @@ internal V8RuntimeHeapInfo() /// Gets the heap size limit in bytes. /// public ulong HeapSizeLimit { get; internal set; } + + /// + /// Gets the total external memory size in bytes. + /// + public ulong TotalExternalSize { get; internal set; } } } diff --git a/ClearScript/V8/V8ScriptEngine.InitScript.cs b/ClearScript/V8/V8ScriptEngine.InitScript.cs index b772f29f3..f1023a218 100644 --- a/ClearScript/V8/V8ScriptEngine.InitScript.cs +++ b/ClearScript/V8/V8ScriptEngine.InitScript.cs @@ -9,6 +9,6 @@ namespace Microsoft.ClearScript.V8 { public sealed partial class V8ScriptEngine { - private const string initScript = "Object.defineProperty(this,'EngineInternal',{value:(b=>{let a=a=>a.bind();function d(){return new this(...arguments)}let e=b.isHostObjectKey;delete b.isHostObjectKey;let c=a=>!!a&& !0===a[e],f=Promise,g=Symbol(),h=b.toJson;return delete b.toJson,Object.freeze({commandHolder:{},getCommandResult:a(a=>null==a?a:'function'!=typeof a.hasOwnProperty?'Module'===a[Symbol.toStringTag]?'[module]':'[external]':!0===a[e]?a:'function'!=typeof a.toString?'['+typeof a+']':a.toString()),invokeConstructor:a((a,b)=>{if('function'!=typeof a)throw new Error('Function expected');return d.apply(a,Array.from(b))}),invokeMethod:a((b,a,c)=>{if('function'!=typeof a)throw new Error('Function expected');return a.apply(b,Array.from(c))}),createPromise:a(function(){return new f(...arguments)}),isPromise:a(a=>a instanceof f),isHostObject:a(c),completePromiseWithResult:a((a,b,c)=>{try{b(a())}catch(d){c(d)}}),completePromise:a((a,b,c)=>{try{a(),b()}catch(d){c(d)}}),throwValue:a(a=>{throw a}),getStackTrace:a(()=>{try{throw new Error('[stack trace]')}catch(a){return a.stack}return''}),toIterator:a(function*(a){try{for(;a.MoveNext();)yield a.Current}finally{a.Dispose()}}),toAsyncIterator:a(async function*(a){try{for(;await a.MoveNextPromise();)yield a.Current}finally{await a.DisposePromise()}}),checkpoint:a(()=>{let a=b[g];if(a)throw a}),toJson:a((b,a)=>h?JSON.parse(h(b,a)):a)})})(this)})"; + private const string initScript = "Object.defineProperty(this,'EngineInternal',{value:(b=>{let a=a=>a.bind();function d(){return new this(...arguments)}let e=b.isHostObjectKey;delete b.isHostObjectKey;let c=a=>!!a&& !0===a[e],f=Promise,g=Symbol(),h=b.toJson;return delete b.toJson,Object.freeze({commandHolder:{},getCommandResult:a(a=>null==a?a:'function'!=typeof a.hasOwnProperty?'Module'===a[Symbol.toStringTag]?'[module]':'[external]':!0===a[e]?a:'function'!=typeof a.toString?'['+typeof a+']':a.toString()),invokeConstructor:a((a,b)=>{if('function'!=typeof a)throw new Error('Function expected');return d.apply(a,Array.from(b))}),invokeMethod:a((b,a,c)=>{if('function'!=typeof a)throw new Error('Function expected');return a.apply(b,Array.from(c))}),createPromise:a(function(){return new f(...arguments)}),isPromise:a(a=>a instanceof f),isHostObject:a(c),completePromiseWithResult:a((a,b,c)=>{try{b(a())}catch(d){c(d)}}),completePromise:a((a,b,c)=>{try{a(),b()}catch(d){c(d)}}),throwValue:a(a=>{throw a}),getStackTrace:a(()=>{try{throw new Error('[stack trace]')}catch(a){return a.stack}}),toIterator:a(function*(a){try{for(;a.MoveNext();)yield a.Current}finally{a.Dispose()}}),toAsyncIterator:a(async function*(a){try{for(;await a.MoveNextPromise();)yield a.Current}finally{await a.DisposePromise()}}),checkpoint:a(()=>{let a=b[g];if(a)throw a}),toJson:a((b,a)=>h?JSON.parse(h(b,a)):a)})})(this)})"; } } diff --git a/ClearScript/V8/V8ScriptEngine.InitScript.js b/ClearScript/V8/V8ScriptEngine.InitScript.js index 29a29ec93..f20001c1c 100644 --- a/ClearScript/V8/V8ScriptEngine.InitScript.js +++ b/ClearScript/V8/V8ScriptEngine.InitScript.js @@ -96,7 +96,6 @@ Object.defineProperty(this, 'EngineInternal', { value: (globalObject => { catch (exception) { return exception.stack; } - return ''; }), toIterator: bind(function* (enumerator) { diff --git a/ClearScript/V8/V8ScriptEngine.cs b/ClearScript/V8/V8ScriptEngine.cs index 1040a88d5..4cbcf0f4a 100644 --- a/ClearScript/V8/V8ScriptEngine.cs +++ b/ClearScript/V8/V8ScriptEngine.cs @@ -1290,11 +1290,21 @@ internal override object MarshalToScript(object obj, HostItemFlags flags) { const long maxIntInDouble = (1L << 53) - 1; + if (obj == null) + { + obj = NullExportValue; + } + if (obj == null) { return DBNull.Value; } + if (obj is DBNull) + { + return obj; + } + if (obj is Undefined) { return null; diff --git a/ClearScript/V8/V8ScriptEngineFlags.cs b/ClearScript/V8/V8ScriptEngineFlags.cs index 9bf536592..df1ab0ff1 100644 --- a/ClearScript/V8/V8ScriptEngineFlags.cs +++ b/ClearScript/V8/V8ScriptEngineFlags.cs @@ -47,7 +47,7 @@ public enum V8ScriptEngineFlags /// Date /// objects. This conversion is bidirectional and lossy. A DateTime object /// constructed from a JavaScript Date object always represents a Coordinated - /// Universal Timestamp (UTC) and has its property set to + /// Universal Time (UTC) and has its property set to /// . /// EnableDateTimeConversion = 0x00000010, @@ -85,30 +85,18 @@ public enum V8ScriptEngineFlags /// EnableTaskPromiseConversion = 0x00000100, - #if NETFRAMEWORK || UWP - /// /// Specifies that the script engine is to perform automatic conversion from - /// .NET ValueTask and ValueTask<TResult> structures to JavaScript + /// .NET + /// ValueTask and + /// ValueTask<TResult> + /// structures to JavaScript /// promises. /// This conversion is unidirectional and lossy. This option is ignored if /// is not specified. /// EnableValueTaskPromiseConversion = 0x00000200, - #else - - /// - /// Specifies that the script engine is to perform automatic conversion from - /// .NET and structures to JavaScript - /// promises. - /// This conversion is unidirectional and lossy. This option is ignored if - /// is not specified. - /// - EnableValueTaskPromiseConversion = 0x00000200, - - #endif - /// /// Specifies that access to host object and class members is to be case-insensitive. This /// option can introduce ambiguity if the host resource has distinct members whose names diff --git a/ClearScript/Windows/Core/WindowsScriptEngine.cs b/ClearScript/Windows/Core/WindowsScriptEngine.cs index 9e2852391..dbbd84232 100644 --- a/ClearScript/Windows/Core/WindowsScriptEngine.cs +++ b/ClearScript/Windows/Core/WindowsScriptEngine.cs @@ -300,9 +300,19 @@ private object MarshalToScriptInternal(object obj, HostItemFlags flags, HashSet< return nullDispatch; } + obj = NullExportValue; + } + + if (obj == null) + { return DBNull.Value; } + if (obj is DBNull) + { + return obj; + } + if (obj is Undefined) { return null; @@ -679,7 +689,7 @@ internal sealed override object ExecuteRaw(UniqueDocumentInfo documentInfo, stri { const ScriptTextFlags flags = ScriptTextFlags.IsExpression; Parse(documentInfo, code, flags, resultVariantBlock.Addr); - return Marshal.GetObjectForNativeVariant(resultVariantBlock.Addr); + return MiscHelpers.GetObjectForVariant(resultVariantBlock.Addr); } } diff --git a/ClearScript/Windows/WindowsScriptEngineFlags.cs b/ClearScript/Windows/WindowsScriptEngineFlags.cs index 04e3b6f9a..712f96cfd 100644 --- a/ClearScript/Windows/WindowsScriptEngineFlags.cs +++ b/ClearScript/Windows/WindowsScriptEngineFlags.cs @@ -22,7 +22,7 @@ public enum WindowsScriptEngineFlags EnableDebugging = 0x00000001, /// - /// Specifies that Just-In-Timestamp script debugging is to be enabled. This option is ignored + /// Specifies that Just-In-Time script debugging is to be enabled. This option is ignored /// if is not specified. /// EnableJITDebugging = 0x00000002, diff --git a/ClearScript/doc/Reference.chm b/ClearScript/doc/Reference.chm index a45ebac64..4a6ea5bea 100644 Binary files a/ClearScript/doc/Reference.chm and b/ClearScript/doc/Reference.chm differ diff --git a/ClearScriptBenchmarks/Properties/AssemblyInfo.cs b/ClearScriptBenchmarks/Properties/AssemblyInfo.cs index 55470f765..b6468f3bf 100644 --- a/ClearScriptBenchmarks/Properties/AssemblyInfo.cs +++ b/ClearScriptBenchmarks/Properties/AssemblyInfo.cs @@ -11,6 +11,6 @@ [assembly: AssemblyCopyright("(c) Microsoft Corporation")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.0")] -[assembly: AssemblyFileVersion("7.3.0")] -[assembly: AssemblyInformationalVersion("7.3.0")] +[assembly: AssemblyVersion("7.3.1")] +[assembly: AssemblyFileVersion("7.3.1")] +[assembly: AssemblyInformationalVersion("7.3.1")] diff --git a/ClearScriptConsole/Properties/AssemblyInfo.cs b/ClearScriptConsole/Properties/AssemblyInfo.cs index 3f1f953cf..011b62192 100644 --- a/ClearScriptConsole/Properties/AssemblyInfo.cs +++ b/ClearScriptConsole/Properties/AssemblyInfo.cs @@ -11,6 +11,6 @@ [assembly: AssemblyCopyright("(c) Microsoft Corporation")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.0")] -[assembly: AssemblyFileVersion("7.3.0")] -[assembly: AssemblyInformationalVersion("7.3.0")] +[assembly: AssemblyVersion("7.3.1")] +[assembly: AssemblyFileVersion("7.3.1")] +[assembly: AssemblyInformationalVersion("7.3.1")] diff --git a/ClearScriptTest/HostListTest.cs b/ClearScriptTest/HostListTest.cs index 0434afa3a..04a174da0 100644 --- a/ClearScriptTest/HostListTest.cs +++ b/ClearScriptTest/HostListTest.cs @@ -104,6 +104,47 @@ public void HostList_TypeRestriction() Assert.AreEqual("[HostObject:DayOfWeek]", engine.ExecuteCommand("list.Item(2)")); } + [TestMethod, TestCategory("ReadOnlyHostList")] + public void ReadOnlyHostList_List() + { + IReadOnlyList list = new List { DayOfWeek.Monday, DayOfWeek.Tuesday, DayOfWeek.Wednesday }; + engine.AddRestrictedHostObject("list", list); + Assert.AreEqual(3, engine.Evaluate("list.Count")); + Assert.AreEqual(DayOfWeek.Tuesday, engine.Evaluate("list[1]")); + Assert.AreEqual("[HostObject:IConvertible]", engine.ExecuteCommand("list[2]")); + TestUtil.AssertException(() => engine.Execute("list[1] = list[2]")); + } + + [TestMethod, TestCategory("ReadOnlyHostList")] + public void ReadOnlyHostList_Custom() + { + var list = new BogusReadOnlyCustomList(DayOfWeek.Monday, DayOfWeek.Tuesday, DayOfWeek.Wednesday); + engine.Script.list = list; + Assert.AreEqual(3, engine.Evaluate("list.Count")); + Assert.AreEqual(DayOfWeek.Tuesday, engine.Evaluate("list[1]")); + Assert.AreEqual("[HostObject:IConvertible]", engine.ExecuteCommand("list[2]")); + TestUtil.AssertException(() => engine.Execute("list[1] = list[2]")); + } + + [TestMethod, TestCategory("ReadOnlyHostList")] + public void ReadOnlyHostList_TypeRestriction() + { + var list = new BogusReadOnlyCustomList(DayOfWeek.Monday, DayOfWeek.Tuesday, DayOfWeek.Wednesday); + engine.Script.list = list; + Assert.AreEqual(3, engine.Evaluate("list.Count")); + Assert.AreEqual("[HostObject:IConvertible]", engine.ExecuteCommand("list[2]")); + Assert.AreEqual("[HostObject:IConvertible]", engine.ExecuteCommand("list.Item(2)")); + engine.DisableListIndexTypeRestriction = true; + Assert.AreEqual("[HostObject:DayOfWeek]", engine.ExecuteCommand("list[2]")); + Assert.AreEqual("[HostObject:IConvertible]", engine.ExecuteCommand("list.Item(2)")); + engine.DisableListIndexTypeRestriction = false; + Assert.AreEqual("[HostObject:IConvertible]", engine.ExecuteCommand("list[2]")); + Assert.AreEqual("[HostObject:IConvertible]", engine.ExecuteCommand("list.Item(2)")); + engine.DisableTypeRestriction = true; + Assert.AreEqual("[HostObject:DayOfWeek]", engine.ExecuteCommand("list[2]")); + Assert.AreEqual("[HostObject:DayOfWeek]", engine.ExecuteCommand("list.Item(2)")); + } + // ReSharper restore InconsistentNaming #endregion @@ -122,6 +163,10 @@ public interface ICustomList : IList { } + public interface IReadOnlyCustomList : IReadOnlyList + { + } + public interface IBogusCustomList : IBogus, ICustomList { } @@ -130,6 +175,10 @@ public interface IBogusCustomList : IBogus, ICustomList { } + public interface IBogusReadOnlyCustomList : IBogus, IReadOnlyCustomList + { + } + public class BogusCustomListBase : IBogusCustomList { private readonly IList list = new ArrayList(); @@ -207,7 +256,7 @@ public IEnumerator GetEnumerator() IEnumerator IEnumerable.GetEnumerator() { - return ((IEnumerable)list).GetEnumerator(); + return GetEnumerator(); } public void Add(T item) @@ -261,6 +310,30 @@ public T this[int index] } } + public class BogusReadOnlyCustomListBase : IBogusReadOnlyCustomList + { + private readonly IReadOnlyList list; + + public BogusReadOnlyCustomListBase(params T[] items) + { + list = new List(items); + } + + public IEnumerator GetEnumerator() + { + return list.GetEnumerator(); + } + + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + + public int Count => list.Count; + + public T this[int index] => list[index]; + } + public class BogusCustomList : BogusCustomListBase { } @@ -269,6 +342,14 @@ public class BogusCustomList : BogusCustomListBase { } + public class BogusReadOnlyCustomList : BogusReadOnlyCustomListBase + { + public BogusReadOnlyCustomList(params T[] items) + : base(items) + { + } + } + #endregion } } diff --git a/ClearScriptTest/JScriptCoreEngineTest.cs b/ClearScriptTest/JScriptCoreEngineTest.cs index 45f94d305..f0f0b8617 100644 --- a/ClearScriptTest/JScriptCoreEngineTest.cs +++ b/ClearScriptTest/JScriptCoreEngineTest.cs @@ -2556,6 +2556,19 @@ public void JScriptCoreEngine_UndefinedImportValue() Assert.AreEqual(123, engine.Evaluate("undefined")); } + [TestMethod, TestCategory("JScriptCoreEngine")] + public void JScriptCoreEngine_NullExportValue() + { + engine.Script.foo = new Func(() => null); + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("foo() === null"))); + + engine.NullExportValue = Undefined.Value; + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("foo() === undefined"))); + + engine.NullExportValue = null; + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("foo() === null"))); + } + [TestMethod, TestCategory("JScriptCoreEngine")] public void JScriptCoreEngine_VoidResultValue() { diff --git a/ClearScriptTest/JScriptEngineTest.cs b/ClearScriptTest/JScriptEngineTest.cs index 80fe1d871..f431f8a81 100644 --- a/ClearScriptTest/JScriptEngineTest.cs +++ b/ClearScriptTest/JScriptEngineTest.cs @@ -2607,6 +2607,19 @@ public void JScriptEngine_UndefinedImportValue() Assert.AreEqual(123, engine.Evaluate("undefined")); } + [TestMethod, TestCategory("JScriptEngine")] + public void JScriptEngine_NullExportValue() + { + engine.Script.foo = new Func(() => null); + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("foo() === null"))); + + engine.NullExportValue = Undefined.Value; + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("foo() === undefined"))); + + engine.NullExportValue = null; + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("foo() === null"))); + } + [TestMethod, TestCategory("JScriptEngine")] public void JScriptEngine_VoidResultValue() { diff --git a/ClearScriptTest/Properties/AssemblyInfo.cs b/ClearScriptTest/Properties/AssemblyInfo.cs index b3861475d..4df44632d 100644 --- a/ClearScriptTest/Properties/AssemblyInfo.cs +++ b/ClearScriptTest/Properties/AssemblyInfo.cs @@ -11,6 +11,6 @@ [assembly: AssemblyCopyright("(c) Microsoft Corporation")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.0")] -[assembly: AssemblyFileVersion("7.3.0")] -[assembly: AssemblyInformationalVersion("7.3.0")] +[assembly: AssemblyVersion("7.3.1")] +[assembly: AssemblyFileVersion("7.3.1")] +[assembly: AssemblyInformationalVersion("7.3.1")] diff --git a/ClearScriptTest/V8ScriptEngineTest.cs b/ClearScriptTest/V8ScriptEngineTest.cs index 616ca10fc..d1797251e 100644 --- a/ClearScriptTest/V8ScriptEngineTest.cs +++ b/ClearScriptTest/V8ScriptEngineTest.cs @@ -3193,6 +3193,19 @@ public void V8ScriptEngine_UndefinedImportValue() Assert.AreEqual(123, engine.Evaluate("undefined")); } + [TestMethod, TestCategory("V8ScriptEngine")] + public void V8ScriptEngine_NullExportValue() + { + engine.Script.foo = new Func(() => null); + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("foo() === null"))); + + engine.NullExportValue = Undefined.Value; + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("foo() === undefined"))); + + engine.NullExportValue = null; + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("foo() === null"))); + } + [TestMethod, TestCategory("V8ScriptEngine")] public void V8ScriptEngine_VoidResultValue() { @@ -3882,6 +3895,26 @@ public void V8ScriptEngine_StringifyEnhancements() TestUtil.AssertException(() => engine.Evaluate("JSON.stringify(hostObject)")); } + [TestMethod, TestCategory("V8ScriptEngine")] + public void V8ScriptEngine_TotalExternalSize() + { + engine.Execute("arr = new Uint8Array(1234567)"); + Assert.AreEqual(1234567UL, engine.GetRuntimeHeapInfo().TotalExternalSize); + } + + [TestMethod, TestCategory("V8ScriptEngine")] + public void V8ScriptEngine_Runtime_TotalExternalSize() + { + using (var runtime = new V8Runtime()) + { + using (var tempEngine = runtime.CreateScriptEngine()) + { + tempEngine.Execute("arr = new Uint8Array(7654321)"); + Assert.AreEqual(7654321UL, runtime.GetHeapInfo().TotalExternalSize); + } + } + } + // ReSharper restore InconsistentNaming #endregion diff --git a/ClearScriptTest/VBScriptCoreEngineTest.cs b/ClearScriptTest/VBScriptCoreEngineTest.cs index b3f96f72b..58f6ee4b5 100644 --- a/ClearScriptTest/VBScriptCoreEngineTest.cs +++ b/ClearScriptTest/VBScriptCoreEngineTest.cs @@ -2721,6 +2721,19 @@ public void VBScriptCoreEngine_UndefinedImportValue() Assert.AreEqual(123, engine.Evaluate("nothing")); } + [TestMethod, TestCategory("VBScriptCoreEngine")] + public void VBScriptCoreEngine_NullExportValue() + { + engine.Script.foo = new Func(() => null); + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("IsNull(foo())"))); + + engine.NullExportValue = Windows.Nothing.Value; + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("foo() is nothing"))); + + engine.NullExportValue = null; + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("IsNull(foo())"))); + } + [TestMethod, TestCategory("VBScriptCoreEngine")] public void VBScriptCoreEngine_VoidResultValue() { diff --git a/ClearScriptTest/VBScriptEngineTest.cs b/ClearScriptTest/VBScriptEngineTest.cs index 894d540e8..8fd67585a 100644 --- a/ClearScriptTest/VBScriptEngineTest.cs +++ b/ClearScriptTest/VBScriptEngineTest.cs @@ -2781,6 +2781,19 @@ public void VBScriptEngine_UndefinedImportValue() Assert.AreEqual(123, engine.Evaluate("nothing")); } + [TestMethod, TestCategory("VBScriptEngine")] + public void VBScriptEngine_NullExportValue() + { + engine.Script.foo = new Func(() => null); + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("IsNull(foo())"))); + + engine.NullExportValue = Nothing.Value; + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("foo() is nothing"))); + + engine.NullExportValue = null; + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("IsNull(foo())"))); + } + [TestMethod, TestCategory("VBScriptEngine")] public void VBScriptEngine_VoidResultValue() { diff --git a/ClearScriptV8/V8ContextImpl.cpp b/ClearScriptV8/V8ContextImpl.cpp index 99b8b56f3..76a522c32 100644 --- a/ClearScriptV8/V8ContextImpl.cpp +++ b/ClearScriptV8/V8ContextImpl.cpp @@ -278,7 +278,7 @@ V8ContextImpl::V8ContextImpl(SharedPtr&& spIsolateImpl, const Std m_hStackKey = CreatePersistent(CreateString("stack")); m_hObjectNotInvocable = CreatePersistent(CreateString("The object does not support invocation")); m_hMethodOrPropertyNotFound = CreatePersistent(CreateString("Method or property not found")); - m_hPropertyValueNotInvocable = CreatePersistent(CreateString("Property value does not support invocation")); + m_hPropertyValueNotInvocable = CreatePersistent(CreateString("The property value does not support invocation")); m_hInvalidModuleRequest = CreatePersistent(CreateString("Invalid module load request")); hGetIteratorFunction = CreateFunctionTemplate(GetHostObjectIterator, hContextImpl); @@ -1234,7 +1234,7 @@ V8Value V8ContextImpl::InvokeV8ObjectMethod(void* pvObject, const StdString& nam FROM_MAYBE_CATCH - throw V8Exception(V8Exception::Type::General, m_Name, StdString(SL("Property value does not support invocation")), EXECUTION_STARTED); + throw V8Exception(V8Exception::Type::General, m_Name, StdString(SL("The property value does not support invocation")), EXECUTION_STARTED); FROM_MAYBE_END } diff --git a/ClearScriptV8/V8IsolateImpl.cpp b/ClearScriptV8/V8IsolateImpl.cpp index 47171f1f4..6d5bbdce3 100644 --- a/ClearScriptV8/V8IsolateImpl.cpp +++ b/ClearScriptV8/V8IsolateImpl.cpp @@ -1756,7 +1756,7 @@ void V8IsolateImpl::ConnectDebugClient() { if (pIsolateImpl->m_upInspector && !pIsolateImpl->m_upInspectorSession) { - pIsolateImpl->m_upInspectorSession = pIsolateImpl->m_upInspector->connect(s_ContextGroupId, pIsolateImpl, v8_inspector::StringView()); + pIsolateImpl->m_upInspectorSession = pIsolateImpl->m_upInspector->connect(s_ContextGroupId, pIsolateImpl, v8_inspector::StringView(), v8_inspector::V8Inspector::ClientTrustLevel::kFullyTrusted); } }); } diff --git a/ClearScriptV8/V8SplitProxyNative.cpp b/ClearScriptV8/V8SplitProxyNative.cpp index df87060a2..24d552eca 100644 --- a/ClearScriptV8/V8SplitProxyNative.cpp +++ b/ClearScriptV8/V8SplitProxyNative.cpp @@ -958,13 +958,15 @@ NATIVE_ENTRY_POINT(void) V8Isolate_SetDisableHeapSizeViolationInterrupt(const V8 //----------------------------------------------------------------------------- -NATIVE_ENTRY_POINT(void) V8Isolate_GetHeapStatistics(const V8IsolateHandle& handle, uint64_t& totalHeapSize, uint64_t& totalHeapSizeExecutable, uint64_t& totalPhysicalSize, uint64_t& usedHeapSize, uint64_t& heapSizeLimit) noexcept +NATIVE_ENTRY_POINT(void) V8Isolate_GetHeapStatistics(const V8IsolateHandle& handle, uint64_t& totalHeapSize, uint64_t& totalHeapSizeExecutable, uint64_t& totalPhysicalSize, uint64_t& totalAvailableSize, uint64_t& usedHeapSize, uint64_t& heapSizeLimit, uint64_t& totalExternalSize) noexcept { totalHeapSize = 0UL; totalHeapSizeExecutable = 0UL; totalPhysicalSize = 0UL; + totalAvailableSize = 0UL; usedHeapSize = 0UL; heapSizeLimit = 0UL; + totalExternalSize = 0UL; auto spIsolate = handle.GetEntity(); if (!spIsolate.IsEmpty()) @@ -975,8 +977,10 @@ NATIVE_ENTRY_POINT(void) V8Isolate_GetHeapStatistics(const V8IsolateHandle& hand totalHeapSize = statistics.total_heap_size(); totalHeapSizeExecutable = statistics.total_heap_size_executable(); totalPhysicalSize = statistics.total_physical_size(); + totalAvailableSize = statistics.total_available_size(); usedHeapSize = statistics.used_heap_size(); heapSizeLimit = statistics.heap_size_limit(); + totalExternalSize = statistics.external_memory(); } } @@ -1408,13 +1412,15 @@ NATIVE_ENTRY_POINT(void) V8Context_SetDisableIsolateHeapSizeViolationInterrupt(c //----------------------------------------------------------------------------- -NATIVE_ENTRY_POINT(void) V8Context_GetIsolateHeapStatistics(const V8ContextHandle& handle, uint64_t& totalHeapSize, uint64_t& totalHeapSizeExecutable, uint64_t& totalPhysicalSize, uint64_t& usedHeapSize, uint64_t& heapSizeLimit) noexcept +NATIVE_ENTRY_POINT(void) V8Context_GetIsolateHeapStatistics(const V8ContextHandle& handle, uint64_t& totalHeapSize, uint64_t& totalHeapSizeExecutable, uint64_t& totalPhysicalSize, uint64_t& totalAvailableSize, uint64_t& usedHeapSize, uint64_t& heapSizeLimit, uint64_t& totalExternalSize) noexcept { totalHeapSize = 0UL; totalHeapSizeExecutable = 0UL; totalPhysicalSize = 0UL; + totalAvailableSize = 0UL; usedHeapSize = 0UL; heapSizeLimit = 0UL; + totalExternalSize = 0UL; auto spContext = handle.GetEntity(); if (!spContext.IsEmpty()) @@ -1425,8 +1431,10 @@ NATIVE_ENTRY_POINT(void) V8Context_GetIsolateHeapStatistics(const V8ContextHandl totalHeapSize = statistics.total_heap_size(); totalHeapSizeExecutable = statistics.total_heap_size_executable(); totalPhysicalSize = statistics.total_physical_size(); + totalAvailableSize = statistics.total_available_size(); usedHeapSize = statistics.used_heap_size(); heapSizeLimit = statistics.heap_size_limit(); + totalExternalSize = statistics.external_memory(); } } diff --git a/ClearScriptV8/V8SplitProxyNative.h b/ClearScriptV8/V8SplitProxyNative.h index 3f62b5bba..27dfb13c5 100644 --- a/ClearScriptV8/V8SplitProxyNative.h +++ b/ClearScriptV8/V8SplitProxyNative.h @@ -246,7 +246,7 @@ NATIVE_ENTRY_POINT(StdBool) V8Isolate_GetEnableInterruptPropagation(const V8Isol NATIVE_ENTRY_POINT(void) V8Isolate_SetEnableInterruptPropagation(const V8IsolateHandle& handle, StdBool value) noexcept; NATIVE_ENTRY_POINT(StdBool) V8Isolate_GetDisableHeapSizeViolationInterrupt(const V8IsolateHandle& handle) noexcept; NATIVE_ENTRY_POINT(void) V8Isolate_SetDisableHeapSizeViolationInterrupt(const V8IsolateHandle& handle, StdBool value) noexcept; -NATIVE_ENTRY_POINT(void) V8Isolate_GetHeapStatistics(const V8IsolateHandle& handle, uint64_t& totalHeapSize, uint64_t& totalHeapSizeExecutable, uint64_t& totalPhysicalSize, uint64_t& usedHeapSize, uint64_t& heapSizeLimit) noexcept; +NATIVE_ENTRY_POINT(void) V8Isolate_GetHeapStatistics(const V8IsolateHandle& handle, uint64_t& totalHeapSize, uint64_t& totalHeapSizeExecutable, uint64_t& totalPhysicalSize, uint64_t& totalAvailableSize, uint64_t& usedHeapSize, uint64_t& heapSizeLimit, uint64_t& totalExternalSize) noexcept; NATIVE_ENTRY_POINT(void) V8Isolate_GetStatistics(const V8IsolateHandle& handle, uint64_t& scriptCount, uint64_t& scriptCacheSize, uint64_t& moduleCount, std::vector& postedTaskCounts, std::vector& invokedTaskCounts) noexcept; NATIVE_ENTRY_POINT(void) V8Isolate_CollectGarbage(const V8IsolateHandle& handle, StdBool exhaustive) noexcept; NATIVE_ENTRY_POINT(StdBool) V8Isolate_BeginCpuProfile(const V8IsolateHandle& handle, const StdString& name, StdBool recordSamples) noexcept; @@ -278,7 +278,7 @@ NATIVE_ENTRY_POINT(StdBool) V8Context_GetEnableIsolateInterruptPropagation(const NATIVE_ENTRY_POINT(void) V8Context_SetEnableIsolateInterruptPropagation(const V8ContextHandle& handle, StdBool value) noexcept; NATIVE_ENTRY_POINT(StdBool) V8Context_GetDisableIsolateHeapSizeViolationInterrupt(const V8ContextHandle& handle) noexcept; NATIVE_ENTRY_POINT(void) V8Context_SetDisableIsolateHeapSizeViolationInterrupt(const V8ContextHandle& handle, StdBool value) noexcept; -NATIVE_ENTRY_POINT(void) V8Context_GetIsolateHeapStatistics(const V8ContextHandle& handle, uint64_t& totalHeapSize, uint64_t& totalHeapSizeExecutable, uint64_t& totalPhysicalSize, uint64_t& usedHeapSize, uint64_t& heapSizeLimit) noexcept; +NATIVE_ENTRY_POINT(void) V8Context_GetIsolateHeapStatistics(const V8ContextHandle& handle, uint64_t& totalHeapSize, uint64_t& totalHeapSizeExecutable, uint64_t& totalPhysicalSize, uint64_t& totalAvailableSize, uint64_t& usedHeapSize, uint64_t& heapSizeLimit, uint64_t& totalExternalSize) noexcept; NATIVE_ENTRY_POINT(void) V8Context_GetIsolateStatistics(const V8ContextHandle& handle, uint64_t& scriptCount, uint64_t& scriptCacheSize, uint64_t& moduleCount, std::vector& postedTaskCounts, std::vector& invokedTaskCounts) noexcept; NATIVE_ENTRY_POINT(void) V8Context_GetStatistics(const V8ContextHandle& handle, uint64_t& scriptCount, uint64_t& moduleCount, uint64_t& moduleCacheSize) noexcept; NATIVE_ENTRY_POINT(void) V8Context_CollectGarbage(const V8ContextHandle& handle, StdBool exhaustive) noexcept; diff --git a/UWP/ClearScript.Core/ClearScript.Core.csproj b/UWP/ClearScript.Core/ClearScript.Core.csproj index a392f208d..b6529cc3e 100644 --- a/UWP/ClearScript.Core/ClearScript.Core.csproj +++ b/UWP/ClearScript.Core/ClearScript.Core.csproj @@ -11,7 +11,7 @@ ClearScript.Core en-US UAP - 10.0.19041.0 + 10.0.20348.0 10.0.17763.0 14 512 diff --git a/UWP/ClearScript.V8/ClearScript.V8.csproj b/UWP/ClearScript.V8/ClearScript.V8.csproj index 291b304a3..8ec870ee3 100644 --- a/UWP/ClearScript.V8/ClearScript.V8.csproj +++ b/UWP/ClearScript.V8/ClearScript.V8.csproj @@ -11,7 +11,7 @@ ClearScript.V8 en-US UAP - 10.0.19041.0 + 10.0.20348.0 10.0.17763.0 14 512 diff --git a/UWP/ClearScriptConsole/ClearScriptConsole.csproj b/UWP/ClearScriptConsole/ClearScriptConsole.csproj index b8f532c41..15067db81 100644 --- a/UWP/ClearScriptConsole/ClearScriptConsole.csproj +++ b/UWP/ClearScriptConsole/ClearScriptConsole.csproj @@ -18,7 +18,7 @@ ClearScriptConsole en-US UAP - 10.0.19041.0 + 10.0.20348.0 10.0.17763.0 14 512 diff --git a/UWP/ClearScriptTest/ClearScriptTest.csproj b/UWP/ClearScriptTest/ClearScriptTest.csproj index 3856f4eaa..7e6bf64ef 100644 --- a/UWP/ClearScriptTest/ClearScriptTest.csproj +++ b/UWP/ClearScriptTest/ClearScriptTest.csproj @@ -11,7 +11,7 @@ ClearScriptTest en-US UAP - 10.0.19041.0 + 10.0.20348.0 10.0.17763.0 14 512 diff --git a/Unix/V8Update.sh b/Unix/V8Update.sh index 484fba7b7..6b59b17e3 100644 --- a/Unix/V8Update.sh +++ b/Unix/V8Update.sh @@ -1,8 +1,8 @@ #!/bin/bash -v8testedrev=10.2.154.5 +v8testedrev=10.3.174.17 v8testedcommit= -v8cherrypicks=6cf7330a611a5d97a772743d7e626e162b26828e +v8cherrypicks= v8linuxbuildcommit=3d9590754d5d23e62d15472c5baf6777ca59df20 if [[ $v8testedcommit == "" ]]; then diff --git a/V8/V8Patch.txt b/V8/V8Patch.txt index 202465c78..8c66f3a15 100644 --- a/V8/V8Patch.txt +++ b/V8/V8Patch.txt @@ -1,8 +1,8 @@ diff --git a/BUILD.gn b/BUILD.gn -index 988c907d96..2d10728dcb 100644 +index 9ddff70ab9..10cbbd27e2 100644 --- a/BUILD.gn +++ b/BUILD.gn -@@ -1006,7 +1006,7 @@ config("toolchain") { +@@ -1021,7 +1021,7 @@ config("toolchain") { visibility = [ "./*" ] defines = [] @@ -12,7 +12,7 @@ index 988c907d96..2d10728dcb 100644 if (v8_current_cpu == "arm") { diff --git a/include/v8-initialization.h b/include/v8-initialization.h -index 3d59c73f7c..fb629278c9 100644 +index 48c7fb6b48..31e1668098 100644 --- a/include/v8-initialization.h +++ b/include/v8-initialization.h @@ -139,6 +139,7 @@ class V8_EXPORT V8 { @@ -52,10 +52,10 @@ index 29b94d8dea..5d8a605958 100644 // Keep prototypes in slow-mode. Let them be lazily turned fast later on. // TODO(dcarney): is this necessary? diff --git a/src/api/api.cc b/src/api/api.cc -index a0ab21d71a..1b70382204 100644 +index 8423f288ef..aabaef39d3 100644 --- a/src/api/api.cc +++ b/src/api/api.cc -@@ -1978,6 +1978,17 @@ void ObjectTemplate::SetImmutableProto() { +@@ -2000,6 +2000,17 @@ void ObjectTemplate::SetImmutableProto() { self->set_immutable_proto(true); } @@ -73,7 +73,7 @@ index a0ab21d71a..1b70382204 100644 bool ObjectTemplate::IsCodeLike() const { return Utils::OpenHandle(this)->code_like(); } -@@ -6166,6 +6177,10 @@ bool v8::V8::InitializeICU(const char* icu_data_file) { +@@ -6198,6 +6209,10 @@ bool v8::V8::InitializeICU(const char* icu_data_file) { return i::InitializeICU(icu_data_file); } @@ -85,10 +85,10 @@ index a0ab21d71a..1b70382204 100644 const char* icu_data_file) { return i::InitializeICUDefaultLocation(exec_path, icu_data_file); diff --git a/src/ast/ast.cc b/src/ast/ast.cc -index 804a6840c1..ad2f6556f4 100644 +index 97db02225f..d413a93530 100644 --- a/src/ast/ast.cc +++ b/src/ast/ast.cc -@@ -880,8 +880,11 @@ static bool MatchLiteralCompareTypeof(Expression* left, Token::Value op, +@@ -884,8 +884,11 @@ static bool MatchLiteralCompareTypeof(Expression* left, Token::Value op, return false; } @@ -101,7 +101,7 @@ index 804a6840c1..ad2f6556f4 100644 MatchLiteralCompareTypeof(right_, op(), left_, expr, literal); } diff --git a/src/base/platform/platform.h b/src/base/platform/platform.h -index e801ec78c2..c6b49f7647 100644 +index ac010509bd..2da5a0ae61 100644 --- a/src/base/platform/platform.h +++ b/src/base/platform/platform.h @@ -47,6 +47,8 @@ @@ -114,13 +114,13 @@ index e801ec78c2..c6b49f7647 100644 #if V8_CC_MSVC && V8_HOST_ARCH_IA32 // __readfsdword is supposed to be declared in intrin.h but it is missing from diff --git a/src/builtins/builtins-async-module.cc b/src/builtins/builtins-async-module.cc -index 7128ad7e9d..46d6e2b958 100644 +index 1d7b6fc766..a085edec59 100644 --- a/src/builtins/builtins-async-module.cc +++ b/src/builtins/builtins-async-module.cc -@@ -12,7 +12,8 @@ namespace internal { - BUILTIN(CallAsyncModuleFulfilled) { - HandleScope handle_scope(isolate); - Handle module(args.at(0)); +@@ -15,7 +15,8 @@ BUILTIN(CallAsyncModuleFulfilled) { + SourceTextModule::cast(isolate->context().get( + SourceTextModule::ExecuteAsyncModuleContextSlots::kModule)), + isolate); - SourceTextModule::AsyncModuleExecutionFulfilled(isolate, module); + Handle result(args.at(1)); + SourceTextModule::AsyncModuleExecutionFulfilled(isolate, module, result); @@ -128,7 +128,7 @@ index 7128ad7e9d..46d6e2b958 100644 } diff --git a/src/codegen/code-stub-assembler.cc b/src/codegen/code-stub-assembler.cc -index e6ff700927..c2d2c98d1e 100644 +index 5df5842692..6da81107da 100644 --- a/src/codegen/code-stub-assembler.cc +++ b/src/codegen/code-stub-assembler.cc @@ -1898,6 +1898,10 @@ TNode CodeStubAssembler::LoadMapBitField3(TNode map) { @@ -142,7 +142,7 @@ index e6ff700927..c2d2c98d1e 100644 TNode CodeStubAssembler::LoadMapInstanceType(TNode map) { return LoadObjectField(map, Map::kInstanceTypeOffset); } -@@ -13598,6 +13602,11 @@ TNode CodeStubAssembler::Typeof(TNode value) { +@@ -13644,6 +13648,11 @@ TNode CodeStubAssembler::Typeof(TNode value) { GotoIf(InstanceTypeEqual(instance_type, ODDBALL_TYPE), &if_oddball); @@ -155,10 +155,10 @@ index e6ff700927..c2d2c98d1e 100644 Word32And(LoadMapBitField(map), Int32Constant(Map::Bits1::IsCallableBit::kMask | diff --git a/src/codegen/code-stub-assembler.h b/src/codegen/code-stub-assembler.h -index bccdc34b74..51c975dcf9 100644 +index 30bbd9c732..ecfc83d732 100644 --- a/src/codegen/code-stub-assembler.h +++ b/src/codegen/code-stub-assembler.h -@@ -1400,6 +1400,8 @@ class V8_EXPORT_PRIVATE CodeStubAssembler +@@ -1404,6 +1404,8 @@ class V8_EXPORT_PRIVATE CodeStubAssembler TNode LoadMapBitField2(TNode map); // Load bit field 3 of a map. TNode LoadMapBitField3(TNode map); @@ -247,10 +247,10 @@ index d50767421a..f3fa0f3a70 100644 // Unprotect reserved page. DWORD old_protect; diff --git a/src/execution/isolate.h b/src/execution/isolate.h -index 6284da66ba..d7e46e96c5 100644 +index f075555ba4..f48edc88a0 100644 --- a/src/execution/isolate.h +++ b/src/execution/isolate.h -@@ -630,7 +630,6 @@ class V8_EXPORT_PRIVATE Isolate final : private HiddenFactory { +@@ -635,7 +635,6 @@ class V8_EXPORT_PRIVATE Isolate final : private HiddenFactory { // Returns the isolate inside which the current thread is running. V8_INLINE static Isolate* Current() { Isolate* isolate = TryGetCurrent(); @@ -275,10 +275,10 @@ index 90e46ea793..cf38c2d7f4 100644 set_jslimit(SimulatorStack::JsLimitFromCLimit(isolate, limit)); real_climit_ = limit; diff --git a/src/heap/factory.cc b/src/heap/factory.cc -index 1ddacae0a5..1a5c795855 100644 +index 32e5309881..8fcacabb42 100644 --- a/src/heap/factory.cc +++ b/src/heap/factory.cc -@@ -1870,6 +1870,7 @@ Map Factory::InitializeMap(Map map, InstanceType type, int instance_size, +@@ -1874,6 +1874,7 @@ Map Factory::InitializeMap(Map map, InstanceType type, int instance_size, Map::Bits3::ConstructionCounterBits::encode(Map::kNoSlackTracking) | Map::Bits3::IsExtensibleBit::encode(true); map.set_bit_field3(bit_field3); @@ -287,7 +287,7 @@ index 1ddacae0a5..1a5c795855 100644 ReadOnlyRoots ro_roots(roots); HeapObject raw_null_value = ro_roots.null_value(); diff --git a/src/heap/setup-heap-internal.cc b/src/heap/setup-heap-internal.cc -index 34e6c1b433..8c26277e02 100644 +index 2b005732e8..7fd32c09ee 100644 --- a/src/heap/setup-heap-internal.cc +++ b/src/heap/setup-heap-internal.cc @@ -181,6 +181,7 @@ AllocationResult Heap::AllocatePartialMap(InstanceType instance_type, @@ -363,7 +363,7 @@ index 87baefd277..50a27d3b4d 100644 platform_ = platform; v8::base::SetPrintStackTrace(platform_->GetStackTracePrinter()); diff --git a/src/objects/intl-objects.h b/src/objects/intl-objects.h -index 0541cd0ba5..78feeeaacc 100644 +index c136479388..2ce7e172f7 100644 --- a/src/objects/intl-objects.h +++ b/src/objects/intl-objects.h @@ -285,7 +285,7 @@ class Intl { @@ -394,10 +394,10 @@ index 955370b7ba..f501148e16 100644 if (maybe_resolve_locale.IsNothing()) { THROW_NEW_ERROR(isolate, NewRangeError(MessageTemplate::kIcuError), diff --git a/src/objects/js-objects.cc b/src/objects/js-objects.cc -index 3f806f5a09..047f7ed846 100644 +index b606f87633..b4f4379ac6 100644 --- a/src/objects/js-objects.cc +++ b/src/objects/js-objects.cc -@@ -5026,6 +5026,13 @@ void JSObject::SetImmutableProto(Handle object) { +@@ -5069,6 +5069,13 @@ void JSObject::SetImmutableProto(Handle object) { object->set_map(*new_map, kReleaseStore); } @@ -412,10 +412,10 @@ index 3f806f5a09..047f7ed846 100644 JavaScriptArguments* args, uint32_t arg_count, diff --git a/src/objects/js-objects.h b/src/objects/js-objects.h -index d6a96a8fe2..707cc919be 100644 +index 0a2773b127..79a2edada4 100644 --- a/src/objects/js-objects.h +++ b/src/objects/js-objects.h -@@ -725,6 +725,8 @@ class JSObject : public TorqueGeneratedJSObject { +@@ -730,6 +730,8 @@ class JSObject : public TorqueGeneratedJSObject { // Never called from JavaScript static void SetImmutableProto(Handle object); @@ -425,10 +425,10 @@ index d6a96a8fe2..707cc919be 100644 // the caller to initialize object header. Fill the pre-allocated fields with // undefined_value and the rest with filler_map. diff --git a/src/objects/map-inl.h b/src/objects/map-inl.h -index f77f5f6339..39238b72e7 100644 +index 4e65b2f746..56063e17a0 100644 --- a/src/objects/map-inl.h +++ b/src/objects/map-inl.h -@@ -113,6 +113,9 @@ BIT_FIELD_ACCESSORS(Map, bit_field3, may_have_interesting_symbols, +@@ -114,6 +114,9 @@ BIT_FIELD_ACCESSORS(Map, bit_field3, may_have_interesting_symbols, BIT_FIELD_ACCESSORS(Map, relaxed_bit_field3, construction_counter, Map::Bits3::ConstructionCounterBits) @@ -439,7 +439,7 @@ index f77f5f6339..39238b72e7 100644 DCHECK(has_named_interceptor()); FunctionTemplateInfo info = GetFunctionTemplateInfo(cage_base); diff --git a/src/objects/map.cc b/src/objects/map.cc -index 7336fe8574..e3317daa07 100644 +index f8bd209dcf..bb23f90e44 100644 --- a/src/objects/map.cc +++ b/src/objects/map.cc @@ -1169,6 +1169,7 @@ Handle Map::RawCopy(Isolate* isolate, Handle src_handle, @@ -450,7 +450,7 @@ index 7336fe8574..e3317daa07 100644 raw.clear_padding(); } Handle prototype(src_handle->prototype(), isolate); -@@ -1294,6 +1295,12 @@ Handle Map::TransitionToImmutableProto(Isolate* isolate, Handle map) { +@@ -1293,6 +1294,12 @@ Handle Map::TransitionToImmutableProto(Isolate* isolate, Handle map) { return new_map; } @@ -524,10 +524,10 @@ index a8b367ff82..98637087ee 100644 prototype: JSReceiver|Null; constructor_or_back_pointer_or_native_context: Object; diff --git a/src/objects/objects.cc b/src/objects/objects.cc -index 4616ef7ab7..82dab5a60e 100644 +index b3404cadfc..dd201f7ee9 100644 --- a/src/objects/objects.cc +++ b/src/objects/objects.cc -@@ -880,6 +880,12 @@ Handle Object::TypeOf(Isolate* isolate, Handle object) { +@@ -882,6 +882,12 @@ Handle Object::TypeOf(Isolate* isolate, Handle object) { if (object->IsString()) return isolate->factory()->string_string(); if (object->IsSymbol()) return isolate->factory()->symbol_string(); if (object->IsBigInt()) return isolate->factory()->bigint_string(); @@ -541,7 +541,7 @@ index 4616ef7ab7..82dab5a60e 100644 return isolate->factory()->object_string(); } diff --git a/src/objects/source-text-module.cc b/src/objects/source-text-module.cc -index 3dfcfac10d..edab093679 100644 +index 532fbab4b9..c2ee45cd4a 100644 --- a/src/objects/source-text-module.cc +++ b/src/objects/source-text-module.cc @@ -737,7 +737,7 @@ MaybeHandle SourceTextModule::Evaluate( @@ -581,10 +581,10 @@ index 3dfcfac10d..edab093679 100644 } } diff --git a/src/objects/source-text-module.h b/src/objects/source-text-module.h -index 9894973d9d..d793491d72 100644 +index c91accba0c..987d1e2a4e 100644 --- a/src/objects/source-text-module.h +++ b/src/objects/source-text-module.h -@@ -56,7 +56,8 @@ class SourceTextModule +@@ -57,7 +57,8 @@ class SourceTextModule // Used by builtins to fulfill or reject the promise associated // with async SourceTextModules. static void AsyncModuleExecutionFulfilled(Isolate* isolate, diff --git a/V8Update.cmd b/V8Update.cmd index 013dc50bf..e0c1ffd71 100644 --- a/V8Update.cmd +++ b/V8Update.cmd @@ -1,7 +1,7 @@ @echo off setlocal -set v8testedrev=10.2.154.5 +set v8testedrev=10.3.174.17 set v8testedcommit= if not "%v8testedcommit%"=="" goto ProcessArgs diff --git a/Version.tt b/Version.tt index 88c583f47..98cefb57a 100644 --- a/Version.tt +++ b/Version.tt @@ -1,5 +1,5 @@ <# - var version = new Version(7, 3, 0); + var version = new Version(7, 3, 1); var versionSuffix = string.Empty; new Random(versionSuffix.Length); // suppress "versionSuffix not used" warning #> diff --git a/docs/Reference/WebKI.xml b/docs/Reference/WebKI.xml index 96edfbaab..6e2361d6b 100644 --- a/docs/Reference/WebKI.xml +++ b/docs/Reference/WebKI.xml @@ -297,8 +297,8 @@ - + @@ -363,8 +363,8 @@ - + @@ -614,8 +614,8 @@ - + @@ -795,6 +795,7 @@ + @@ -899,6 +900,7 @@ + @@ -1020,6 +1022,8 @@ + + @@ -1124,6 +1128,8 @@ + + @@ -1187,16 +1193,16 @@ - - + + - + @@ -1220,14 +1226,14 @@ - + - + @@ -1241,8 +1247,8 @@ - + diff --git a/docs/Reference/WebTOC.xml b/docs/Reference/WebTOC.xml index 24134d72a..6cb2b97d3 100644 --- a/docs/Reference/WebTOC.xml +++ b/docs/Reference/WebTOC.xml @@ -1,28 +1,28 @@  - - + + - + - + - - + + - + - + - + @@ -30,8 +30,8 @@ - - + + @@ -39,12 +39,12 @@ - - + + - + @@ -55,13 +55,13 @@ - + - + - + @@ -69,9 +69,9 @@ - + - + @@ -79,8 +79,8 @@ - - + + @@ -88,41 +88,41 @@ - + - + - - + + - + - - + + - - + + - + - + - + - + @@ -130,45 +130,45 @@ - - - + + + - + - + - + - + - + - + - + - + @@ -177,12 +177,12 @@ - + - + @@ -200,22 +200,22 @@ - + - - + + - - + + @@ -223,14 +223,14 @@ - - + + - + @@ -239,22 +239,22 @@ - + - + - - + + - - + + @@ -265,30 +265,30 @@ - + - + - - + + - + - + @@ -297,17 +297,17 @@ - + - - + + - + @@ -326,13 +326,14 @@ + - - + + @@ -342,7 +343,7 @@ - + @@ -352,11 +353,11 @@ - + - + @@ -367,34 +368,34 @@ - + - + - + - + - + - + @@ -405,47 +406,47 @@ - - + + - + - + - - + + - + - + - - + + @@ -455,84 +456,84 @@ - + - - + + - + - - + + - + - + - - + + - + - + - + - - + + - + - - + + - + - - - + + + - + - + @@ -540,15 +541,15 @@ - - + + - + - + @@ -556,27 +557,27 @@ - + - - + + - + - + - - - + + + @@ -589,30 +590,30 @@ - - + + - + - - + + - + - - + + @@ -626,15 +627,15 @@ - + - + - - + + @@ -642,8 +643,8 @@ - - + + @@ -657,7 +658,7 @@ - + @@ -668,14 +669,14 @@ - - + + - + @@ -686,7 +687,7 @@ - + @@ -697,7 +698,7 @@ - + @@ -711,9 +712,9 @@ - + - + @@ -724,9 +725,11 @@ - - + + + + @@ -735,17 +738,17 @@ - - + + - + - - + + @@ -759,7 +762,7 @@ - + @@ -772,8 +775,8 @@ - - + + @@ -781,7 +784,7 @@ - + @@ -792,7 +795,7 @@ - + @@ -803,14 +806,14 @@ - + - + - + @@ -821,140 +824,140 @@ - - + + - - - + + + - + - - + + - - + + - + - + - - + + - + - - + + - + - + - + - + - - - + + + - + - - + + - + - + - - + + - + - + - - + + - + - + - + - + - + - + diff --git a/docs/Reference/fti/FTI_100.json b/docs/Reference/fti/FTI_100.json index feb2f8a94..d74eea084 100644 --- a/docs/Reference/fti/FTI_100.json +++ b/docs/Reference/fti/FTI_100.json @@ -1 +1 @@ -{"destinationindex":[10289157,11337733,19988485],"disposable":[7798787],"disablebackgroundwork":[44302337],"dimensions":[6750209],"dialogs":[3604481,23789570,26935297,35717121,37027841,38404097,38797313,39976961,41222145,41287681,42336257,42467329,47448065,47841283,48627713,48955393,49414145,49610753,49807361],"defaults":[5767169,6619137,6750209,7864321,8454145,9568257,31916033,46530561],"default":[1,1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3538945,3670017,3735553,3801089,3866625,4194306,4259843,4390913,5046275,5177347,5242883,5636097,5701635,6291457,7602179,7667715,11796481,12320769,12648449,12845057,13303809,16056321,21495811,23068673,27590658,29491202,31653889,31719425,31916034,33685505,33882113,34013185,34799618,34996225,35258369,35454978,35586049,35717121,35913729,36241409,36700161,37027841,37486598,37552129,38076418,38404097,38862849,38928385,39124993,39190529,39649281,39845889,39976961,40501249,40566785,41287681,41353217,41418753,41615362,41877505,42139649,42205186,42336257,42532865,42729473,42795009,42991619,43057153,43450369,43778049,43843585,44040193,44302337,44498945,44695553,45154305,45219841,45350913,45481985,45678593,45875201,46071809,46202881,46530563,46596097,46727169,46858241,46989313,47382531,47316993,47448068,47579137,47644673,48037889,48168962,48234497,48300033,48365569,48431108,48496641,48562177,48627716,48693249,48758788,48824321,48955396,49020929,49086468,49217537,49348609,49414148,49545217,49610756,49741825,49807364],"date":[48824322,49676290],"derived":[1245187,1835011,2162691,2228233,2490369,2686979,2818051,3080195,3866633,29687809,30932993,31653889,31784961,31981569,33685505,40501257,42532868,43843588,46530564,47382532,48037892,49217537,49348612,49741833],"directory":[32768001,34406401,36044801,36372481,40960001,45350913],"documentsettings":[1572867,4653058,4718598,4784130,5111810,5373958,5505026,6094853,31916033,32309250,32899074,33423362,33751052,33816578,34013185,34406402,34996225,35717121,35782657,35979266,36044803,37027841,38207500,38404097,38731778,39976961,41287681,42336257,45350921,46202881,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"documentname":[14942213,15532037,17432581,18153477,20709381,21102597,21233669,21757957,21954565,22544389],"dispatches":[2228225,3866625,40501249,49741825],"distinct":[43515905,48824321],"disablesourcemanagement":[49676289],"documentflags":[31916033,35127303,40894469],"disablelistindextyperestriction":[34013185,34996225,35717121,37027841,38404097,39976961,41287681,42336257,47448065,47972357,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"demand":[44761090],"dynamicmetaobject":[2228226,3866626,40501250,49741826],"double":[3407873,9895942,12648449,17432577,44761094,45023233,46596097,48300033],"disconnects":[1441793,1769473,5308417,41418753,42139649],"directaccess":[40304641],"dictt":[5767170,6029314],"documentinfo":[4063239,4325383,4259842,4390915,5046274,5177346,5242882,5373958,5570563,5701634,6094853,7602178,7667714,14221323,17694732,18743307,19136517,19529739,21495813,24838156,25886732,27262977,28246017,30081027,31260683,31916033,32702465,33226764,34537474,35061763,35127298,35389446,35586050,35651587,36175874,36831234,37617665,37748743,38141953,40173579,40370181,40828932,41680906,42008581,46006274,46202883,46923782,47448066,48496641,48627714,48758789,48955394,49086466,49414146,49610754,49807362],"drives":[7864322],"details":[20250625,20643841,21692417],"dispatcher":[39976962,41287682,42336258,44367884,48627715,48955395,49610755],"debugport":[17760261,18219013,19070981,20054021,20185093,20840453,22609925,23592965,24707077,27918341],"dummy":[36700161,49020929],"dynamically":[34013185,34668546,34996225,35717121,37027841,38273026,38404097,39976961,41287681,41746434,42336257,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"direct":[1900546,1966082,2031618,2359298,2424834,10551297,10878977,11862017,12255233,26869762,27328514,40304641,41943042,42598402,43974658,45023234,47710210],"downloadstring":[9568257],"download":[9568257],"dimension":[7340033,8912897],"decrement":[2228225,3866625,40501249,49741825],"destination":[10289158,11337734,13893633,15007745,15859713,16252929,19988486],"describing":[34734081,39518209,46989313],"dimensional":[21692417],"discardcacheddocuments":[1507329,4915206,42991617],"document":[1179651,1507332,1572870,4063234,4259854,4325378,4390927,4521993,4587544,4653075,4784135,4980742,5046286,5111814,5177358,5242894,5373969,5505029,5701646,6094864,7602190,7667726,9568257,14221314,14286851,14745603,14876676,14942214,15269892,15532036,15728645,15990789,16384002,16515074,17235972,17432582,17694722,18153476,18284548,18743298,19136513,19202052,19529730,19857411,19922946,20119554,20512772,20578307,20709378,21102594,21233666,21364739,21495837,21757954,21954562,22151171,22544386,23134210,23330819,23920642,24051716,24838146,24903684,25427969,25886722,27262980,27983875,28246020,28835843,30081030,30277635,30867465,31064066,31195138,31260674,31916044,32112642,32309249,32374789,32702466,33095681,33226754,33423361,33619969,33751041,33816577,34013185,34144261,34537473,34603010,34734082,34996225,35061763,35127297,35389442,35454978,35586050,35651590,35717121,35782657,35979270,36044804,36175873,36503553,36569097,37027841,37486593,37617668,37748737,38076419,38141956,38207489,38404097,38731777,39124994,39845891,39976961,40173569,40370179,40828929,40894466,41025537,41287681,41484289,41680902,42008579,42336257,42991623,43188227,43515907,43646979,44105729,44498956,45350924,46137347,46202896,46923779,46989314,47317004,47448079,48496642,48627727,48758814,48955407,49086479,49414159,49610767,49676289,49807375],"documentloadcallback":[31916033,33423367,42008581],"dump":[9568257],"delegat":[10551298,11862018,22872066,30015490],"displaying":[38797313,42467329,47841281],"defaultarg":[5767169,6619137,6750209,7864321,8454145,9568257],"debugger":[14942210,15138817,15532034,15597569,16384001,16515073,17432578,17629185,17760259,18153474,18219010,18677761,19070978,19398658,20054018,20185089,20709377,20840449,21102593,21168129,21233665,21495809,21626881,21757953,21954561,22085633,22413313,22544385,22609921,22675457,22806529,23003137,23199745,23265281,23592962,23724033,23855105,24379393,24707073,25034753,25821185,26476545,27525121,27656193,27918338,28377089,28770305,29097985,29425665,30343169,33488897,48758785,48824321],"depends":[47972353],"disabletyperestriction":[34013185,34996225,35717121,37027841,38404097,39976961,41287681,42336257,47448065,47972353,48168965,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"delegates":[31916033,34013185,34471938,34996225,35717121,37027841,38404097,39976961,41287681,42336257,47448065,48627714,48758786,48955394,49086465,49414145,49610754,49807361],"distinction":[14221313,14286849,14745601,14876673,14942209,15269889,15532033,15728641,15990785,16384001,16515073,17432577,18153473,18743297],"declared":[48168961,49479681,49676289],"documentcategory":[1376259,1572866,4259844,4390918,4784134,5046276,5111814,5177348,5242884,5373958,5701636,6094853,7602180,7667716,14876678,15269894,15728646,15990790,17235974,18284550,19202054,19857414,20512774,20578310,21364742,21495818,22151174,23330822,24051718,24903686,27983874,28835842,30277638,30867462,31916033,33095686,33619974,34603011,35979266,36569094,39845895,43515906,44105736,45350914,46006279,46202886,47448068,48627716,48758794,48955396,49086468,49414148,49610756,49807364],"del":[3407873,6488065,6684678,12648449,46596097,48300033],"detailed":[31129601,35848193,36306945,38010881,42860545,43122689,47251457,49217537,49283073],"delay":[41549825],"desktop":[26935300,44630017,47448065,48627714,48955394,49414145,49610754,49807361],"debugging":[17629186,17760258,18219010,19398658,25952257,37814273,39452673,47906818,48824322,49676290],"disconnect":[1441793,1769473,5308421,41418753,42139649],"debug":[4390914,17760257,18219009,19070977,20054017,20185089,20840449,22609921,23592961,24707073,27721730,27918337,28508164,29556740,46202886,48758788],"data":[393217,2490369,3014657,4390924,13893634,15007746,15859714,16252930,17694724,18284548,18808836,19202052,19726340,19857412,20512772,20774916,21102596,21233668,21299204,21364740,21495820,21954564,22151172,22544388,23134212,23920644,24838148,24903684,25886724,29818881,29884417,30081030,30277636,30867462,31195140,32112644,32768001,33226756,35258369,35651590,35848193,36569094,43646977,45219841,45547526,46202892,48758796,49217540,49283074],"defaultaccess":[34013185,34996225,35717121,37027841,38404097,39976961,41287681,42336257,46858245,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"documents":[1507329,4653058,4784130,4915201,5111810,5505026,34406401,36044801,38076417,39124995,42991617,43515905,45350913],"dynamicobject":[2228247,3866647,31916033,40501277,49741852],"deleteproperty":[3866626,17891334,18546694,27131907,49741826],"documen":[4653057,4784129,5111809,5505025,19136513,32374785,34144257,35061763,35586049,36831233,37224449,41680899,43646977,44498945,46006273,47316993],"declare":[44892161],"dictionary":[5767170,6029317,8454148],"disablefloatnarrowing":[34013185,34996225,35717121,37027841,38404097,39976961,41287681,42336257,47448065,47644677,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"directly":[2228225,3866625,6029313,40501249,49741825],"documentloader":[1507331,4521986,4587522,4915202,5373954,6094850,6422534,31916033,33816583,35454979,37486600,38076419,42991625,43515905],"discarded":[15532033,16384001,16515073,18153473,40894465],"discard":[14942215,17432583],"dynamichostobject":[2228227,5439490,5898246,31916033,40501257],"disableglobalmembers":[48824321],"deprecated":[33882113],"disableextensionmethods":[34013185,34996225,35717121,37027841,38404097,39976961,41287681,42336257,47120389,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"defined":[4128769,6619137,6553601,7208961,12648449,15663105,17432577,24969217,25952257,35848193,42729473,46596097,49217537],"defines":[7798785,8257537,25427972,26148871,26935297,31916041,39124993,40304641,40894465,40960001,41943041,43974657,44302337,45547521,45744129,46137345,46399489,46792705,47185921,47251457,47906817,48365569,48562177,48824321,48889857,49479681,49676289],"discarding":[4259842,5046274,5177346,5242882,5701634,7602178,7667714,14942210,17432578,21495810,27262977,28246017,37617665,38141953,47448066,48627714,48758786,48955394,49086466,49414146,49610754,49807362],"delegate":[1900546,1966082,2031618,2228225,2359298,2424834,3407876,3866625,3932162,6291458,6684677,6881285,7733253,8060933,10551301,10878981,11862021,12255237,12648451,22872066,26607618,26869762,27328514,29163522,29949954,30015490,30146562,30998530,31916033,40370181,40501249,41943042,42008581,42139649,42598402,43778049,43974658,44957701,45023234,45678593,46596099,47710210,48300036,49152002,49545218,49741825],"delegating":[6684673,7733249,8060929],"dynamic":[2228237,3407883,3866637,6946819,7471107,7929857,7995395,8126468,8192004,8585221,8650756,8781827,8847363,9437187,10092548,12648459,17432577,21692417,25231362,26673153,27197442,27787266,38338561,40304641,40501262,40697857,45416449,46465025,46596107,47906817,48300043,48824321,49741838],"display":[26935297,35717121,37027841,38404097,39976961,41222145,41287681,42336257,47448065,47841281,48627713,48955393,49414145,49610753,49807361],"delete":[2228226,3866626,40501250,49741826],"documentcontextcallback":[1572865,4259842,4390915,4784134,5046274,5177346,5242882,5373958,5701634,6094853,7602178,7667714,15728646,15990790,17235974,18284550,19202054,20512774,21495813,24051718,24903686,27983873,28835841,30867459,31916033,32309255,34537479,35979265,36569091,40370181,45350913,46202883,47448066,48627714,48758789,48955394,49086466,49414146,49610754,49807362],"delivered":[38928385,44695553],"different":[4587521,17629185,17760257,18219009,19398657,40566785,48627713,48955393,49610753],"delimited":[15597569,23265281,23724033,25034753,27525121,29425665,30343169,32768001,32899073,34406401,36044802,36372481,40960001,45350914],"deeply":[46268417],"differ":[48824321],"disabled":[15204353,33882113,41353217,44302338,46071809,48824321,49676289],"description":[196609,262145,327681,393217,458753,589825,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,4259841,4390913,4849665,5046273,5177345,5242881,5570561,5636097,5701633,6291457,7602177,7667713,8454145,12648449,21495809,25231361,25296897,25427970,25559041,25624577,25690113,26017793,26083329,26148867,26279937,26411009,26607617,26673153,26738689,26804225,26869761,26935299,27131905,27197441,27262977,27328513,27394050,27459585,27590657,27721729,27787265,27983873,28049409,28180481,28246017,28311553,28508161,28704769,28835841,28901377,28966913,29229057,29294593,29360129,29491201,29556737,29687809,29818881,29884417,29949953,30081025,30408705,30474241,30539777,30605313,30736385,30867457,30932993,30998529,31064065,31129601,31326209,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916037,31981569,32047105,32243713,32374785,32440321,32505857,32571393,32636929,32702465,32964609,33030145,33161217,33685505,34013185,34144257,34275329,34603009,34734081,34930689,34996225,35061761,35192833,35389441,35454977,35651585,35717121,35782657,35848193,35979265,36044801,36306945,36372481,36438017,36569089,36962305,37027841,37617665,38141953,38404097,38797313,39124993,39845890,39976961,40304641,40501250,40894465,40960001,41287681,41418753,41680899,41943042,42139649,42336257,42532867,42598402,42729476,42795009,42991619,43450370,43778049,43843587,43974658,44302337,44498947,44630017,45023234,45219842,45350915,45481986,45547521,45744129,45875202,46137345,46202883,46399489,46465026,46530563,46596098,46792705,46989314,47185921,47251457,47316995,47382531,47448067,47579139,47710210,47775746,47841282,47906817,48037891,48103425,48234498,48300034,48365569,48431108,48496642,48562177,48627715,48693250,48758787,48824321,48889857,48955395,49020930,49086467,49152001,49217540,49283075,49348611,49414147,49479681,49545218,49610755,49676289,49741826,49807363],"disable":[17629185,17760257,18219009,19398657,48365569],"disposing":[13631496,21889032,25362440],"downloaded":[39124993],"disablejitcompilation":[44302337],"disposes":[7798785],"describes":[35848193,49217537],"determine":[45809665],"dispose":[3735553,4259842,4390913,5046274,5177346,5242882,5701634,7602179,7667714,7798786,9568257,13631499,15400971,18415626,21495811,21889035,25362443,26804227,28442633,32047108,36962308,46202881,47448067,48496641,48627714,48758787,48955394,49086466,49414146,49610754,49807362],"determines":[1114113,1179649,1376257,1441793,1507329,1572865,1638401,1769473,2097153,2228226,2293762,2490369,2555906,2621442,2752513,2949121,3145729,3276801,3342337,3407877,3538945,3670017,3735553,3801089,3866625,3932161,4259841,4390913,5046274,5177346,5242882,5439489,5636097,5701634,6291458,7077889,7536641,7602178,7667714,8257538,8716289,12648453,13107201,21495809,24313857,25690114,28573697,29622273,39845889,40501250,41418753,42139649,42729474,42795009,42991617,43450369,43778049,44498945,45219841,45350913,45481985,45875201,46202881,46465026,46596101,46989313,47316993,47448066,47579137,48234497,48300037,48431106,48496641,48627714,48693249,48758785,48955394,49020929,49086465,49152001,49217537,49414146,49545218,49610754,49741825,49807362],"documentaccessflags":[31916033,38731783,39124997],"discards":[1507329,4915201,42991617],"defaultscriptusageattribute":[1245187,3997703,4194311,31653889,31719430,31916033,33685507,43057154,46530571,46858241,47382534],"datetimeoffset":[43843585],"datetime":[43843585,48824322,49676289],"donotenablevtablepatching":[49676289],"decimal":[3407873,9175046,12648449,46596097,48300033,49676289],"dataview":[25427969,42598401],"disables":[3604481,23789569,33882113,34013196,34275329,34471937,34996233,35520513,35717129,35782658,35913729,36241409,36372481,37027849,37814273,38404105,38928385,39190529,39452673,39649281,39976969,40960001,41287689,41549825,42336265,44695553,46202882,47120385,47448073,47644673,47841281,47972353,48168961,48627721,48758796,48889857,48955401,49086473,49414153,49610761,49807369],"demonstrates":[6684673,7274497,7733249,8060929,8454145,9568257],"dll":[131073,720897,655361,786433,851969,917505,983041,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4587521,4653057,4718593,4784129,4915201,4980737,5111809,5308417,5373953,5439489,5505025,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25362433,25493505,25755649,25821185,25886721,25952257,26214401,26345473,26476545,26542081,27000833,27066369,27525121,27656193,27852801,27918337,28114945,28377089,28442625,28573697,28639233,28770305,29032449,29097985,29163521,29425665,29622273,29753345,30015489,30146561,30212097,30277633,30343169,30670849,30801921,31195137,31260673,31391745,32112641,32178177,32309249,32768001,32833537,32899073,33095681,33226753,33292289,33423361,33488897,33554433,33619969,33751041,33816577,33882113,33947649,34078721,34209793,34340865,34406401,34471937,34537473,34668545,34799617,34865153,35127297,35258369,35323905,35520513,35586049,35913729,36110337,36175873,36241409,36503553,36634625,36700161,36765697,36831233,36896769,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38207489,38273025,38338561,38469633,38535169,38600705,38666241,38731777,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,47054849,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361],"dict":[5767172,6029314,8454148]} \ No newline at end of file +{"destinationindex":[10289157,10485765,11665413],"disposable":[6291459],"disablebackgroundwork":[41943041],"dimensions":[4259841],"dialogs":[3276801,23134210,24772609,31260673,33357825,34078721,36634625,38010881,38076417,38404097,38469633,39845889,43974657,49348609,49545219,49676289,49807361,49938433,50003969],"defaults":[4259841,5111809,5898241,8650753,9895937,13369345,24903681,44367873],"default":[1,851969,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,2949121,917505,2818049,3211265,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6029314,6225921,6422529,7798787,8060931,8257539,8716289,10158081,10223617,10878977,11272193,11927555,12386305,13041665,13762561,14155777,15007747,15335427,24707075,24903682,25100290,27590658,28311553,28442625,29753345,30474241,30539777,30867458,31260673,31457281,32505862,33357825,33423361,33816577,33947649,34078721,34406402,34537475,34603009,34668545,34734081,34930689,36241409,36306946,36634625,36962306,37027841,37093377,37814273,38010881,38928385,38993921,39190529,39714817,39845889,39976961,40501249,40632321,41091073,41222145,41418753,41615361,41680897,41943041,42270721,42860545,42926081,43057155,43188225,43253761,43515905,43581441,43712514,43974660,44040193,44105729,44236801,44302337,44367875,44498945,44957697,45023233,45154305,45416449,45744129,45809665,46071809,46202883,46333953,46465025,46727170,47054849,47185921,47513604,47906820,47972353,48037889,48103425,48431105,48824321,48889857,49086465,49152001,49217537,49283073,49348612,49414148,49676292,49741825,49807364,49872897,49938436,50003972],"date":[41746434,48889858],"derived":[983043,1376259,1703945,1769475,1966081,3211267,3801091,4325379,10158089,28311553,28442625,28508161,29032449,29097985,29949953,40501252,41222145,41680905,42860548,43057156,43253764,43515913,44105732,44367876],"directory":[32374785,32440321,42270721,42795009,46923777,47644673],"documentsettings":[1114115,3670018,3866630,4718594,4915205,4980738,7012354,7667718,24903681,30146561,30539777,30932994,31260673,31457281,31719426,32374786,33357825,34078721,35258380,36634625,38010881,39256066,39845889,40042498,40435714,42270729,42532866,43974657,44040193,46923779,47120396,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"documentname":[17956869,19005445,19988485,20185093,21168133,22151173,25034757,26083333,46792709,47579141],"dispatches":[1703937,10158081,41680897,43515905],"distinct":[35782657,48889857],"disablesourcemanagement":[41746433],"documentflags":[24903681,37421063,40108037],"disablelistindextyperestriction":[30539777,31260673,31457281,33357825,33554437,34078721,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"demand":[40828930],"dynamicmetaobject":[1703938,10158082,41680898,43515906],"double":[2883585,9568262,10223617,25034753,40697857,40828934,41615361,42926081],"disconnects":[1245185,3997697,4653057,44302337,45023233],"directaccess":[42401793],"dictt":[8650754,8585218],"documentinfo":[3014659,3407879,3866630,4390915,4521991,4915205,7798786,8060930,8257538,11927557,13828107,14024715,15007746,15335426,15532037,16777227,17301516,18546700,18743307,21495820,22347788,24707074,24903681,25886721,26411009,26607617,26738691,27197441,27787267,29687809,30474242,31129602,31784966,31850498,34537474,35913730,36765698,37421058,39059461,39583749,40370187,40763396,40894474,41091073,41287687,42205190,43974658,44040195,46268419,47513605,49348610,49414146,49676290,49807362,49938434,50003970],"drives":[5898242],"details":[15400961,15663105,27852801],"dispatcher":[31260674,34078722,39845890,43843596,49676291,49938435,50003971],"debugport":[18284549,18415621,18612229,18874373,20054021,20381701,20643845,22544389,45613061,47448069],"dummy":[47054849,49283073],"dynamically":[30539777,31260673,31457281,33357825,34078721,36634625,38010881,39124994,39321602,39845889,43974657,45219842,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"direct":[1310722,1507330,1638402,2031618,3604482,8912897,9109505,9961473,15073281,40697858,42401793,42467330,42663938,43646978,44433410,45088770,47710210],"downloadstring":[13369345],"download":[13369345],"dimension":[5963777,24641537],"decrement":[1703937,10158081,41680897,43515905],"destination":[10289158,10485766,10551297,11206657,11665414,14548993,16515073],"describing":[30736385,35323905,48824321],"dimensional":[27852801],"discardcacheddocuments":[917505,6553606,46202881],"document":[851971,917508,1114118,3407874,3670022,3866641,3932184,4390927,4521986,4718597,4915216,4980743,7012371,7798798,8060942,8192006,8257550,9240585,11927581,12976131,13303813,13369345,13500420,13697027,13828098,14024706,15007758,15335438,15532033,16187394,16384004,16711684,16777218,16908291,17039363,17104898,17301506,17694724,17891330,17956866,18022403,18546690,18743298,18939907,19005442,19333122,19398658,19529732,19726340,19988482,20185090,20250626,20578308,21168130,21495810,21626883,22151170,22347778,22740995,24707086,24903692,25034758,25624577,25886724,25952259,26083332,26411012,26607620,26738694,27000835,27131909,27197444,27394050,27656194,27787270,27918345,28770313,29491205,29687810,30015490,30146561,30474242,30539777,30736386,30867459,30932993,31064067,31129601,31260673,31457281,31719425,31784963,32505857,32833537,32964611,33357825,33488897,34078721,34537486,35127297,35258369,35782659,36110337,36634625,36765697,36896769,37289988,37421057,38010881,38141957,38862850,38928387,39059459,39256065,39583747,39845889,40042497,40108034,40370177,40566785,40763393,40894470,41091074,41287681,41746433,42139651,42205186,42270732,42532870,43581452,43974671,44040208,45154316,45809666,46202887,46268419,46727170,46792710,46923780,47120385,47513630,47579140,48824322,49348623,49414159,49676303,49807375,49938447,50003983],"documentloadcallback":[24903681,30932999,39059461],"dump":[13369345],"delegat":[9961474,15073282,21889026,30343170],"displaying":[38076417,38469633,49545217],"defaultarg":[4259841,5111809,5898241,8650753,9895937,13369345],"debugger":[11927553,16646145,17432577,17563650,17629185,17760257,17956865,18219009,18284546,18415619,18612226,18677761,18808833,18874369,19005441,19202049,19988481,20054017,20185089,20381698,20643841,20774913,20840449,20905985,21168129,21692417,21757953,22151169,22478849,22544386,22675457,22806529,23658497,23986177,25034754,26083330,27656193,32243713,32899073,34013185,35389441,38862849,39452673,39911425,40239105,45613057,46399489,46530561,46792706,47448066,47513601,47579138,48889857],"depends":[33554433],"disabletyperestriction":[30539777,31260673,31457281,33357825,33554433,34078721,34406405,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"delegates":[24903681,30539777,31260673,31457281,33357825,34078721,36438018,36634625,38010881,39845889,43974657,47513602,49348609,49414145,49676290,49807361,49938434,50003970],"distinction":[12976129,13303809,13500417,13697025,13828097,14024705,25034753,26083329,27656193,37289985,38141953,38862849,46792705,47579137],"declared":[34406401,41746433,43778049],"documentcategory":[1114114,3145731,3670022,3866630,4390918,4915205,4980742,7798788,8060932,8257540,11927562,13303814,13500422,15007748,15335428,16384006,16711686,16908294,17039366,17694726,18022406,18939910,19529734,19726342,20578310,21626886,22740998,24707076,24903681,25952258,27000834,27394051,27918342,28770310,32833542,33488902,34537476,35127304,35782658,35913735,37289990,38141958,38928391,42270722,42532866,43974660,44040198,47513610,49348612,49414148,49676292,49807364,49938436,50003972],"del":[2883585,5046273,9306118,10223617,41615361,42926081],"detailed":[28835841,29556737,30212097,32571393,35192833,41222145,42074113,43122689,48365569],"delay":[37224449],"desktop":[24772612,37945345,43974657,49348609,49676290,49807361,49938434,50003970],"debugging":[17563650,17760258,18415618,18612226,23003137,33619969,41746434,45547522,48627713,48889858],"disconnect":[1245185,3997701,4653057,44302337,45023233],"debug":[4390914,18284545,18415617,18612225,18874369,20054017,20381697,20643841,22544385,26869764,28573698,29622276,44040198,45613057,47448065,47513604],"data":[655361,1966081,2162689,4390924,10551298,11206658,11927564,14548994,16515074,16711684,17039364,17104900,17235972,17301508,17694724,17891332,18022404,18546692,19005444,19333124,19529732,19988484,20119556,20185092,20250628,20512772,20578308,21168132,21430276,21495812,21626884,22347780,22740996,25559041,26738694,27787270,27918342,28246017,28770310,28835841,31064065,32440321,41222148,42074114,44040204,44236801,44761094,45744129,47513612],"defaultaccess":[30539777,31260673,31457281,33357825,33947653,34078721,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"documents":[917505,3670018,4718594,4980738,6553601,7012354,30867457,32374785,35782657,42270721,45809667,46202881,46923777],"dynamicobject":[1703959,10158103,24903681,41680924,43515933],"deleteproperty":[10158082,26017795,41680898,46858246,47382534],"documen":[3670017,4718593,4980737,7012353,15532033,27131905,29491201,30474241,31064065,31850497,35913729,40894467,41025537,43581441,45154305,46268419],"declare":[32702465],"dictionary":[8650754,8585221,9895940],"disablefloatnarrowing":[30539777,31260673,31457281,33357825,34078721,36634625,38010881,39845889,43974657,47513601,48103429,49348609,49414145,49676289,49807361,49938433,50003969],"directly":[1703937,8585217,10158081,41680897,43515905],"documentloader":[917507,3866626,3932162,4915202,5373958,6553602,9240578,24903681,30867459,31719431,32505864,35782657,46202889,46727171],"discarded":[26083329,27656193,38862849,40108033,47579137],"discard":[25034759,46792711],"dynamichostobject":[1703939,4128770,4456454,24903681,43515913],"disableglobalmembers":[48889857],"deprecated":[33816577],"disableextensionmethods":[30539777,31260673,31457281,33357825,34078721,36634625,38010881,39845889,43974657,47316997,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"defined":[2883585,4194305,4587521,5111809,5242881,22282241,23003137,25034753,28835841,41222145,42926081,44498945,48562177],"defines":[5636097,6291457,23920647,24772609,24903689,25624580,40108033,41484289,41746433,41943041,42139649,42401793,42598401,42795009,43122689,43450369,43778049,44433409,44761089,45547521,45809665,47710209,47775745,48431105,48889857,49020929,49152001],"discarding":[7798786,8060930,8257538,11927554,15007746,15335426,24707074,25034754,25886721,26411009,26607617,27197441,34537474,43974658,46792706,47513602,49348610,49414146,49676290,49807362,49938434,50003970],"delegate":[1310722,1507330,1638402,1703937,2031618,2752514,2883587,3604482,5701634,6094853,8912901,9109509,9306117,9961477,10158081,10223620,13893637,14090245,15073285,20971522,21889026,24969218,24903681,27525122,28966914,29884418,30343170,33423361,38600709,39059461,39583749,40632321,40697858,41615364,41680897,42467330,42663938,42926083,43515905,43646978,44433410,45023233,45088770,47710210,49479682,49872898],"delegating":[9306113,13893633,14090241],"dynamic":[1703949,2883595,5570563,5767169,5832708,6160388,6356995,6488067,6684675,7274501,7995396,8388612,8978435,10158093,10223627,14876675,24051714,25034753,25755650,27852801,34340865,37683201,41353217,41615371,41680910,41811970,42336257,42401793,42926091,43515918,45547521,48889857,48955393],"display":[24772609,31260673,33357825,34078721,36634625,38010881,38404097,39845889,43974657,49348609,49545217,49676289,49807361,49938433,50003969],"delete":[1703938,10158082,41680898,43515906],"documentcontextcallback":[1114113,3866630,4390915,4915205,4980742,7798786,8060930,8257538,11927557,13303814,15007746,15335426,16384006,16711686,17694726,19529734,19726342,20578310,24707074,24903681,25952257,27000833,27918339,28770307,34537474,36765703,38141958,39583749,40042503,42270721,42532865,43974658,44040195,47513605,49348610,49414146,49676290,49807362,49938434,50003970],"delivered":[47972353,48037889],"different":[3932161,17563649,17760257,18415617,18612225,34734081,49676289,49938433,50003969],"delimited":[17432577,22478849,22806529,32374785,32440321,34013185,35389441,39911425,40239105,40435713,42270722,42795009,46923778,47644673],"deeply":[33161217],"differ":[48889857],"disabled":[33816577,37027841,41746433,41943042,48300033,48889857,49217537],"description":[65537,131073,196609,262145,327681,393217,458753,655361,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1507329,1638401,1703937,1769473,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,3145729,3014657,3080193,2949121,2883585,2818049,3211265,3276801,3604481,3735553,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,7798785,8060929,8257537,8716289,9895937,10158081,10223617,11927553,12386305,15007745,15335425,23724033,23920643,24051713,24182785,24379393,24707073,24772611,24903685,24969217,25100289,25165825,25231362,25362433,25493505,25559041,25624578,25755649,25886721,25952257,26017793,26148865,26214401,26279937,26345473,26411009,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27721729,27787265,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28704769,28770305,28835841,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29818881,29949953,30015489,30081025,30146561,30212097,30277633,30408705,30539777,30670849,30736385,31260673,31326209,31457281,31916033,33357825,34078721,34537473,36241409,36634625,37945345,38010881,38469633,38928386,38993922,39714817,39845889,40108033,40501251,40632321,40697858,40894467,40960002,41091074,41156609,41222148,41353217,41418754,41484289,41615362,41680898,41746433,41811969,41943041,42008577,42074115,42139649,42205185,42270723,42336258,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860547,42926082,42991617,43057155,43122689,43253763,43319297,43450369,43515906,43581443,43646978,43778049,43974659,44040195,44105731,44236802,44302337,44367875,44433410,44498948,44630017,44761089,44826625,44957699,45023233,45088770,45154307,45285377,45416450,45547521,45809665,46202883,46268417,46727169,46923777,47513603,47644673,47710210,47775745,47906820,48431105,48824322,48889857,49020929,49086466,49152001,49283074,49348611,49414147,49479681,49545218,49610753,49676291,49741826,49807363,49872898,49938435,50003971],"disable":[17563649,17760257,18415617,18612225,49152001],"disposing":[13238280,22085640,22872072],"downloaded":[45809665],"disablejitcompilation":[41943041],"disposes":[6291457],"describes":[28835841,41222145],"determine":[34144257],"dispose":[2621441,4390913,6291458,7798786,8060930,8257538,11927555,13238283,13369345,15007746,15335426,17367050,22085643,22872075,23199753,24707074,25362435,27459588,29229060,34537475,41091073,43974658,44040193,45875211,47513603,49348611,49414146,49676290,49807362,49938434,50003970],"determines":[851969,917505,1114113,1245185,1703938,1900546,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686978,3145729,2949121,2752513,2818049,2883589,4063233,4128769,4390913,4653057,5636098,5701634,6225922,6422529,7077889,7471105,7798786,8060930,8257537,8716289,10158081,10223621,11075585,11927553,12386305,15007746,15335426,23330817,23592961,24182786,24510465,24707074,28901377,34537474,38928385,38993921,39714817,40632321,41091073,41222145,41418753,41615365,41680897,42270721,42336258,42926085,43515906,43581441,43974658,44040193,44236801,44302337,44498946,44957697,45023233,45154305,45416449,46202881,47513601,47906818,48824321,49086465,49283073,49348610,49479681,49414145,49676290,49741825,49807362,49872898,49938434,50003970],"documentaccessflags":[24903681,39256071,45809669],"discards":[917505,6553601,46202881],"defaultscriptusageattribute":[983043,3473415,6029319,24903681,28311553,28442627,33947649,34930690,36241414,43057158,44367883],"datetimeoffset":[40501249],"datetime":[40501249,41746433,48889858],"donotenablevtablepatching":[41746433],"decimal":[2883585,6750214,10223617,41615361,41746433,42926081],"dataview":[25624577,45088769],"disables":[3276801,23134209,30146562,30539785,31260681,31457292,31916033,33357833,33554433,33619969,33751041,33816577,34078729,34406401,34668545,36438017,36634633,37224449,38010889,39190529,39845897,39976961,42795009,43974665,44040194,46465025,47316993,47513612,47644673,47972353,48037889,48103425,48627713,49020929,49348617,49414153,49545217,49676297,49807369,49938441,50003977],"demonstrates":[5439489,9306113,9895937,13369345,13893633,14090241],"dll":[524289,720897,786433,1441793,1835009,2228225,3342337,3407873,3473409,3538945,3670017,3866625,3932161,3997697,4128769,4194305,4259841,4456449,4521985,4587521,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6291457,6356993,6488065,6553601,6619137,6684673,6750209,6815745,6881281,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7864321,7929857,7995393,8126465,8192001,8323073,8388609,8454145,8519681,8585217,8650753,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11993089,12058625,12124161,12189697,12255233,12320769,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23789569,23855105,23986177,24117249,24248321,24313857,24444929,24510465,24576001,24641537,24838145,25034753,25296897,25427969,25690113,25821185,26083329,26476545,27656193,27852801,28639233,28901377,29753345,29884417,30343169,30474241,30605313,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31391745,31522817,31588353,31653889,31719425,31784961,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34144257,34209793,34275329,34340865,34406401,34471937,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36306945,36372481,36438017,36503553,36569089,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,38076417,38141953,38207489,38273025,38338561,38404097,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41222145,41287681,41418753,41484289,41549825,41615361,41680897,41746433,41877505,41943041,42074113,42139649,42270721,42336257,42401793,42598401,42795009,42860545,42926081,43057153,43122689,43188225,43253761,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44695553,44761089,44892161,44957697,45023233,45088769,45154305,45219841,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46333953,46399489,46465025,46530561,46596097,46661633,46792705,46858241,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"dict":[8585218,8650756,9895940]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_101.json b/docs/Reference/fti/FTI_101.json index 565458a4c..2d49206bf 100644 --- a/docs/Reference/fti/FTI_101.json +++ b/docs/Reference/fti/FTI_101.json @@ -1 +1 @@ -{"enablevaluetaskpromiseconversion":[48824321],"enabledatetimeconversion":[48824321],"external":[7405569,7929857,8650753,9371649,36241409,41353217,46071809],"executed":[14745601,15269889,15990785,17235969,17694721,18087937,18284545,18808833,19202049,19529729,19726337,19857409,19922945,20119553,20512769,20578305,20709377,20774913,21102593,21233665,21299201,21364737,21757953,21954561,22151169,22544385,23134209,23330817,23920641,24051713,24838145,24903681,25886721,26148865,26345473,30277633,31195137,31260673,32112641,33226753,41549825,48496641],"enforceanonymoustypeaccess":[34013185,34996225,35717121,36241413,37027841,38404097,39976961,41287681,42336257,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"enhancements":[48824322],"enableautohostvariables":[34013185,34471941,34996225,35717121,37027841,38404097,39976961,41287681,42336257,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"empty":[3407873,7929859,12648449,15663105,17432577,18874369,22347777,24969217,25952258,26673153,26935297,46596097,48300033,48693250],"example":[6553601,7208961,7274497,37158913,37879809,38666241,39256065,42729473],"extensions":[1703938,6160386,6356994,6815746,7012354,7733249,15597570,23265282,23724034,25034754,25559042,26017794,27525122,29294593,29425666,30343170,30539777,31588353,31916033,32636929,32899073,33161217,36044801,45350913,47185926,47448065,48627713,48955393,49086465,49414145,49610753,49676289,49807361],"exhausting":[44761089],"evaluated":[14286849,14876673,15728641],"evaluates":[4259847,5046279,5177351,5242887,5701639,7602183,7667719,14221313,14286849,14876673,15728641,16384001,17432577,18153473,21495816,22740993,27262980,27983875,37617669,47448071,48627719,48758792,48955399,49086471,49414151,49610759,49807367],"engine":[1703938,3211268,3932162,4128769,4259844,4390918,5046278,5177350,5242886,5701638,6291458,6815751,7012359,7602182,7667718,8323073,8388609,9043969,9175041,9240577,9306113,9764871,9895937,10027009,10420225,10944513,11010049,11403265,12517383,12976135,13631489,14352391,14942209,15138817,15204353,15400965,15597569,15663106,15925255,16121857,17235969,17432578,17629188,17694721,17760260,18087937,18219012,18284545,18677763,18808833,19202049,19398660,19529729,19726337,19857409,19922945,20119553,20512769,20578305,20709377,21037057,21233665,21364737,21495813,21692417,21823490,21889025,21954561,22020098,22085634,22151169,22216706,22478851,22609922,22675458,22806530,22937601,23003137,23134209,23199746,23265282,23330817,23461889,23527425,23592962,23724034,23855105,23920641,24051713,24117250,24313858,24379393,24576001,24707074,24903681,24969218,25034754,25100289,25362433,25559041,25755649,25821185,25952258,26017793,26148867,26214401,26476545,26542081,26804226,26935299,27000833,27066369,27394051,27525122,27656193,27721734,27852801,27918338,28377089,28573698,28639233,28966916,29097985,29294594,29425666,29556748,29622274,30277633,30343170,30539781,30670849,31129601,31195137,31326210,31391745,31588357,31916034,32047106,32178177,32112641,32636933,32833537,33161221,33226753,33488897,33947649,34013185,34340865,34471937,34865153,34996226,35258369,35717122,35848193,35913729,36306945,36700161,36962306,37027842,37355521,37814273,38404098,39190529,39649281,39976963,40304641,41091078,41287683,42074113,42336259,43515905,44367873,44630017,44761089,44892161,44957697,45678593,45744132,45809666,46202886,46268417,46465025,47185922,47251458,47448073,47644673,48168961,48300033,48627728,48693249,48758804,48824326,48955408,49086472,49152003,49217537,49283073,49414158,49545218,49610763,49676289,49741826,49807374],"exceeding":[41353217,44761089,46071809],"executecommand":[4259841,5046274,5177346,5242882,5701634,7602177,7667713,19267590,21495810,23986182,24182790,24772614,25755654,31391750,47448065,48627714,48758786,48955394,49086465,49414146,49610753,49807362],"expansion":[31457281,44761091,47579137],"extends":[31916033,40501249],"enableallloading":[39124993],"enablestandardsmode":[49676290],"enumerablet":[6488066,6684674,7733249],"extendedhostfunctions":[5767171,5963782,6029315,6488068,6553603,6619138,6684675,6750210,7143426,7208963,7274498,7340034,7405570,7733251,7798786,7864323,8060930,8257538,8323074,8388610,8454146,8519682,9043970,9175042,9240578,9306114,9568259,9895938,10027010,10420226,10485762,10944514,11010050,11206658,11403266,12648451,25296898,31916033,36438018,46596105,48300033],"expressions":[14221313,14286849,14745601,14876673,14942209,15269889,15532033,15728641,15990785,16384001,16515073,17432577,18153473,18743297,25755649,31391745],"expose":[13172737,13697025,13828098,14417921,14548993,15335425,16056321,21692419,22282241,23068673,23658497,24510466,25165825,32309249,34537473,36241409,42729473,44892161,48300033],"elementt":[8388610,8323074,9043970,9175042,9240578,9306114,9895938,10027010,10420226,10944514,11010050,11403266],"enums":[17432577,43843585,46530561,47382529],"explicitly":[36700161,39124993,49020929],"enumerations":[6619139,12648449,26148865,26935297,31916033,46596097],"enabling":[41353217,46071809],"element":[2555907,3407877,6750210,6946820,7340035,7995397,8388610,8323074,8847364,8912898,9043970,9175042,9240578,9306114,9895938,10027010,10420226,10944514,11010050,11403266,11534338,12648453,17301506,19988482,26083330,30474241,45023233,46465028,46596101,48300037],"exact":[17432577],"event":[851972,1441793,1638401,1769473,2097153,5308417,5832706,6225922,21692417,31916036,41418754,42139651,42532868,42795010,43778051,48037892,48627713,48758785,48955393,49348612,49610753],"enableinterruptpropagation":[35782657,38928389,46202881],"enablemodeless":[3604481,23789573,47841281],"execute":[4259844,5046276,5177348,5242884,5701636,7602180,7667716,14942215,15532039,16515079,18743303,19267585,21495813,23396359,23986177,24182785,24772609,25755649,28246021,31391745,38141958,47448068,48627717,48758789,48955397,49086468,49414148,49610757,49807364],"executedocument":[4259843,5046275,5177347,5242883,5701635,7602179,7667715,14745606,15269894,15990790,21495811,28835844,47448067,48627715,48758787,48955395,49086467,49414147,49610755,49807363],"ending":[33030145,38469633,45875201],"exceeds":[41353217,46071809],"exits":[9568257],"equivalent":[47644673],"enumerates":[31326210,35323905,42663937,49741826],"externally":[17694721,19202049,19726337,20512769,21102593,21299201,21954561,22151169,23920641,25886721,30277633,32112641],"efficient":[9764865,33882113,45547521],"enablefileloading":[39124993],"effect":[8716289,14942209,17432577,33882113,37552129,38862849,39190529,40566785,41549825,44040193,46858241,47382529,48037889,48562177,49676289],"enabledynamicmoduleimports":[47906817,48824321],"enforcerelativeprefix":[39124993],"entry":[8454145],"earlier":[36241409,47972353],"encounter":[44302337],"executes":[4259848,5046280,5177352,5242888,5701640,7602184,7667720,14745601,14942209,15269889,15532033,15990785,16515073,18743297,19267585,21495817,23396353,23986177,24182785,24772609,25755651,28246020,28835843,31391747,38141957,47448072,48627720,48758793,48955400,49086472,49414152,49610760,49807368],"equal":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4259841,4390913,5046273,5177345,5242881,5570561,5636097,5701633,6291457,7602177,7667713,12648449,21495809,39845889,40501249,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47448065,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48627713,48693251,48758785,48955393,49020929,49086465,49217537,49348609,49414145,49545217,49610753,49741825,49807361],"endtimestamp":[33030145,38469637,45875201],"enabletoplevelawait":[34275329,41549829,44302337,48889857],"experimental":[47906817,48824321],"exempt":[47972353],"enabletaskpromiseconversion":[48824322],"ecmascript":[31064065,33619969,41549825,46137345],"enumerator":[2555905,46465025],"evaluatedocument":[4259843,5046275,5177347,5242883,5701635,7602179,7667715,14286854,14876678,15728646,21495811,27983876,47448067,48627715,48758787,48955395,49086467,49414147,49610755,49807363],"encapsulated":[2228225,3866625,40501249,49741825],"execution":[4259843,5046275,5177347,5242883,5701635,7602179,7667715,14942210,15532033,16121857,16384001,16515073,17432578,18153473,19267585,21037057,21495813,23986177,24182785,24772609,25755649,26542081,27262977,28246017,29097985,29753345,31129601,31391745,31916035,34013186,34996225,35717121,35782657,35848193,36306945,37027841,37617665,38141953,38404097,38535169,38928385,39976961,41287681,41353217,41877505,42336257,43319297,43581441,44695553,44957698,45809667,46071809,46202881,46727169,47251457,47448068,48365570,48627716,48758792,48955396,49086468,49217538,49283074,49414148,49610756,49807364],"enforced":[41877505,46727169],"enumeration":[2228225,3866625,26148865,26935297,31916033,34013186,39124994,39190530,39649282,40304642,40501249,40894466,44302338,45547522,46399490,47906818,48365570,48562178,48758786,48824322,49479682,49676290,49741825],"explicit":[21692418],"enforce":[36241409,45154305,47448065,49414145,49545217,49807361],"excessive":[41353217,41877505,46071809,46727169],"enginename":[17760261,18677765,19398661,31129601,34340869,34865159,35848193,36306945,37355527,47251457,49217537,49283073],"exceptions":[2490369,3407873,9568258,12648449,46596097,48300033,48824321,49217537],"expression":[14221313,14286849,14876673,15728641,16384001,17432577,18153473,19267585,23986177,24182785,24772609,25755650,31391746],"extension":[6160386,6356994,6815746,7012354,11599874,12189698,12517378,12976130,13434882,14352386,15073282,15925250,16711682,21692418,25427969,31916033,34013187,34996226,35717122,37027842,37289985,38404098,39190532,39387137,39976962,40042497,41287682,42336258,43253761,43712513,45088769,45744129,47120385,47185921,47448066,48627714,48758787,48955394,49086466,49414146,49610754,49807362],"exposed":[2883585,5767169,6029313,6488065,6553601,6684673,7208961,7274497,7340033,7405569,7733249,7798785,7864321,7929857,8060929,8257537,8323073,8388609,8454145,8519681,9043969,9175041,9240577,9306113,9568257,9764867,9895937,10027009,10420225,10485761,10944513,11010049,11206657,11403265,12386305,12713985,13172737,13238273,13828097,14548993,15335425,16056321,21692420,23068673,23658497,24510465,25165825,31916036,34013186,34996226,35717122,36765697,37027842,38404098,39190530,39649282,39976962,40304645,40566785,41287682,42336258,42532865,43843585,44892161,46530561,46792706,46858241,47448066,48168961,48300033,48627714,48758786,48955394,49086466,49348609,49414146,49610754,49807362],"exposes":[196609,262145,327681,393217,458753,589825,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,4259870,4390913,4849665,5046302,5177374,5242910,5570561,5636097,5701662,6291457,7602206,7667742,12451841,12582913,12648449,12910593,13041665,13172737,13369345,13500417,13565953,13697025,13828097,13959169,14024705,14090241,14417921,14548993,14614529,14680065,15335425,16056321,20381697,20905985,20971521,21495838,21561345,21692417,22282241,23068673,23658497,24510465,25165825,26411016,26738690,27590664,29360129,29687809,30408712,30474241,30736385,30932993,31064065,31129601,31326209,31457281,31522817,31653889,31784961,31850497,31981569,32243713,32374785,32440322,32505857,32571393,32702465,32964609,33030145,33685505,34013185,34144257,34275329,34603009,34734081,34996225,35061761,35192833,35454977,35717121,35782657,35848193,36044801,36306945,36372481,37027841,38404097,38797313,39845889,39976961,40501249,40960001,41287681,41418753,41680897,41943041,42139649,42336257,42532865,42598401,42729473,42795009,42991617,43450369,43778049,43843586,43974657,44498945,45023233,45219841,45350913,45481985,45744129,45875201,46137345,46202881,46465025,46530561,46596097,46792705,46989313,47251457,47316993,47382529,47448094,47579137,47710209,47775745,47841281,48037889,48103425,48234497,48300033,48431105,48496641,48627742,48693249,48758814,48889857,48955422,49020929,49086494,49152001,49217537,49283073,49348609,49414174,49545217,49610782,49741825,49807390],"evaluation":[41549825],"exists":[40566785,46858241,47382529,48037889,48562177],"endcpuprofile":[4390913,18874373,21495809,22347781,46202881,48758785],"eval":[25755649,31391745],"enable":[17629185,17760257,18219009,19398657,23789574,36241409,41549825],"executing":[10551297,10878977,11862017,12255233,15663105,24969217,25952257,37814273,39452673,48824321],"enablejitdebugging":[49676289],"eventsource":[1638403,2097155,5832706,6225922,21692417,31916034,42795016,43778060],"effective":[37093377,40108033,41353217,45547522,46071809,48365570],"entered":[33357825],"exposeruntimetype":[48168961,49479681],"expensive":[9764865,45547522],"expect":[36700161,49020929],"enableruntimeinterruptpropagation":[34013185,44695557,48758785],"enumerable":[6488066,6553602,6684673,7208962,7733249,39190529,39649281],"exposing":[31916034,40304641,49479681],"enablewebloading":[39124993],"environments":[47448065,49414145,49807361],"events":[196610,393218,458754,21692417,42532865,42729473,48037889,48431105,49217537,49348609],"expected":[5373953,6094849],"errordetails":[31129601,35848193,36306945,38010887,42860551,43122693,47251457,49217537,49283073],"engines":[9764865,14942209,17432577,19267585,21102593,21299201,23986177,24182785,24772609,25427969,25755649,25886721,26935299,27394050,31391745,31916035,40304641,40894465,43515905,44630019,45744129,46268418,47185921,47448065,47841281,49086465,49545217,49610753],"enhance":[49676289],"extract":[7274497],"enablesamplecollection":[46399489],"extended":[31916034,45350913,46596097,49348609],"equals":[1114113,1179649,1245186,1376257,1441793,1507329,1572865,1638401,1769473,1835010,2097153,2162690,2228225,2293761,2490369,2621441,2686978,2752513,2818050,2949121,3080194,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4259841,4390913,5046273,5177345,5242881,5570561,5636097,5701633,6291457,7602177,7667713,12648449,21495809,35520513,39845889,40501249,41418753,41680897,42139649,42532866,42729473,42795009,42991617,43450369,43778049,43843586,44498945,45219841,45350913,45481985,45875201,46202881,46530562,46596097,46989313,47316993,47382530,47448065,47579137,47775745,48037890,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48955393,49020929,49086465,49217537,49348610,49414145,49479681,49545217,49610753,49741825,49807361],"easy":[44630017],"eligible":[39124993],"end":[39845889,40501249,40960001,41418753,41680897,41943041,42139649,42532865,42598401,42729473,42795009,42991617,43450369,43778049,43843585,43974657,44498945,45023233,45219841,45350913,45481985,45744129,45875201,46137345,46202881,46465025,46530561,46596097,46792705,46989313,47185921,47251457,47316993,47382529,47448065,47579137,47710209,47775745,47841281,48037889,48103425,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49545217,49610753,49741825,49807361],"existing":[4587521,6553601,12648449,36438017,46596097],"engin":[3932162,6291458,10485761,11206657,22872066,29163522,29949954,30015490,30146562,30998530,32309249,33751041,34013188,34537473,34668545,34996228,35258369,35717124,36700161,37027844,37289985,38273025,38338561,38404100,39387137,40042497,39976964,40304641,40697857,41287684,41746433,42336260,43253761,43712513,45088769,45416449,47448068,48627716,48758788,48955396,49086468,49152002,49414148,49545218,49610756,49807364],"executable":[31457281,32243713,37158917,40763393,47579137,48234497],"environment":[26935300,31916033,40501249,44630017,48627714,48955394,49610754],"executionstarted":[31129601,35848193,36306945,38535175,43319303,43581445,47251457,49217537,49283073],"enforces":[3932161,5046273,5177345,5242881,5701633,6291457,7602177,7667713,23003137,23265281,23461889,23724033,24576001,25100289,25821185,26476545,27066369,27394049,27525121,30670849,32178177,32833537,33488897,47448065,48627713,48955393,49152002,49414145,49545217,49610753,49807361],"enum":[39124994,40304642,40894466,42532868,44302338,45547522,46399490,46530564,47382532,47906818,48037892,48365570,48562178,48824322,49479682,49676290],"equality":[35520513,43843586,49479681],"enablenullresultwrapping":[8716290,34013185,34996225,35520517,35717121,37027841,38404097,39976961,41287681,42336257,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"enabledebugging":[47906818,48824323,49676291],"export":[34013185,34996225,35717121,36700161,37027841,38404097,39976961,41287681,42336257,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"exception":[393220,2490374,3014657,4259841,5046273,5177345,5242881,5701633,7274497,7602177,7667713,8519681,9568263,10485761,11206657,12779529,14155778,16121857,16580610,16777225,21037057,21495809,23396353,26542081,29818882,29884418,31129606,31916035,35848211,36306948,38535169,38928385,39059457,39583746,43319297,43581441,43909121,44433410,44564488,44695553,44826625,45613058,45678595,45809665,47251463,47448065,48365571,48627714,48758785,48824322,48955394,49086465,49217569,49283080,49414145,49610754,49807361],"extensionattribute":[6160387,6356995,6815747,7012355,11599875,12189699,12517379,12976131,13434883,14352387,15073283,15925251,16711683,45744131,47185923],"exemption":[47972353],"exceeded":[48365570],"enableremotedebugging":[47906817,48824321],"error":[524290,9568257,11993090,12779522,16318466,16777218,29818882,29884418,31129604,31916033,35848195,36306946,38010881,39059457,42860545,43122689,43909121,44171265,44826625,45285377,47251460,48365569,48824322,49217542,49283076],"enhanced":[31916033,40501249],"elements":[2359298,2555905,11534340,14221313,14286849,14745601,14876673,14942209,15269889,15532033,15728641,15990785,16384001,16515073,17432577,18153473,18743297,19988484,30474241,34013185,34996225,35717121,37027841,38404097,39976961,41287681,42336257,45023234,46465026,47448065,47972354,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"enablestringifyenhancements":[48824321],"encoding":[19791873,21430273,32374787,34144258,37224462,43646991,44498947,47316994],"examples":[5767169,6029313,6488065,6553601,6684673,7077889,7208961,7274497,7340033,7405569,7733249,7798785,7864321,7929857,8060929,8257537,8323073,8388609,8454145,8519681,9043969,9175041,9240577,9306113,9568257,9895937,10027009,10420225,10485762,10944513,11010049,11206657,11403265],"errors":[41353217,41877505,46071809,46727169],"evaluate":[4259844,5046276,5177348,5242884,5701636,6881281,7602180,7667716,14221320,14286849,14876673,15728641,16384008,17432583,18153480,19267585,21495813,22741000,23396353,23986177,24182785,24772609,25755649,27262981,31391745,37617670,47448068,48627716,48758789,48955396,49086468,49414148,49610756,49741825,49807364],"exhaustive":[14811142,18939910,24641543,30801927],"exposehostobjectstaticmembers":[34013185,34996225,35717121,36765701,37027841,38404097,39976961,41287681,42336257,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"enabled":[17629185,17760257,18219009,19398657,25952257,37093377,40108033,41549829,43843585,44302337,46399489,47906819,48824324,49676292],"enables":[3604481,23789569,33882113,34013196,34275329,34471937,34996233,35520513,35717129,35782658,35913729,36241409,36372481,37027849,37814273,38404105,38928385,39190529,39452673,39649281,39976969,40960001,41287689,41353217,41549826,42336265,44695553,44761089,46071809,46202882,47120385,47448073,47644673,47841281,47972353,48168961,48627721,48758796,48889857,48955401,49086473,49414153,49610761,49807369],"excluded":[39190529,39649281],"eventconnection":[1441795,1769476,5308418,5832710,6225926,31916034,41418760,42139661]} \ No newline at end of file +{"enablevaluetaskpromiseconversion":[48889857],"enabledatetimeconversion":[48889857],"external":[5767169,5832705,6619137,9043969,31326209,34668545,37027841,46989313,49086465,49217537],"executed":[13697025,16187393,16384001,16711681,16777217,16908289,17039361,17104897,17235969,17301505,17694721,17956865,17891329,18022401,18546689,18743297,18939905,19005441,19136513,19333121,19398657,19464193,19529729,19726337,19988481,20119553,20185089,20250625,20512769,20578305,21168129,21430273,21495809,21626881,22151169,22347777,22740993,23920641,37224449,37289985,38141953,41091073],"enforceanonymoustypeaccess":[30539777,31260673,31457281,33357825,34078721,34668549,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"enhancements":[48889858],"enableautohostvariables":[30539777,31260673,31457281,33357825,34078721,36438021,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"empty":[2883585,5767171,10223617,18087937,22282241,22609921,23003138,24772609,25034753,41353217,41615361,42926081,48562177,49741826],"example":[4587521,5242881,5439489,43909121,44498945,44564481,44892161,45350913],"extensions":[1048578,4849666,5177346,5308418,5505026,14090241,17432578,22478850,22806530,23724034,24379394,24903681,26935297,27066369,27328513,27721729,28377089,34013186,35389442,39911426,40239106,40435713,41746433,42270721,43450374,43974657,46923777,49348609,49414145,49676289,49807361,49938433,50003969],"exhausting":[40828929],"evaluated":[12976129,13303809,13500417],"evaluates":[7798791,8060935,8257543,11927560,12976129,13303809,13500417,14024705,15007751,15335431,19857409,24707079,25034753,25886724,25952259,26083329,26411013,27656193,34537479,43974663,47513608,49348615,49414151,49676295,49807367,49938439,50003975],"engine":[1048578,2752514,3080196,4194305,4390918,5308423,5505031,5701634,6750209,6815745,7208961,7340033,7536641,7798790,8060934,8126465,8257540,9175047,9568257,10027009,10092551,10616839,11862017,11927557,12648455,13107207,13238273,13631489,14221313,14614529,14942209,15007750,15335430,16187393,16384001,16646145,16711681,16777217,16908289,16973827,17039361,17104897,17235969,17301505,17432577,17563652,17694721,17760260,17956865,17891329,18022401,18415620,18546689,18612228,18677761,18939905,19005441,19136513,19202051,19333121,19398657,19529729,19726337,19922946,19988481,20119553,20250625,20381698,20643842,20578305,20709377,20774914,20840450,20905985,21037058,21233666,21299201,21626881,21692417,21757954,22020097,22085633,22216705,22282242,22413313,22478850,22544386,22675457,22740993,22806530,22872065,22937601,23003138,23068673,23265281,23330818,23527425,23461889,23592962,23658497,23724033,23920643,23986177,24248321,24313857,24379393,24707078,24772611,24903682,25034754,25231363,25362434,26869772,26935301,27066373,27328514,27459586,27721733,27852801,28377093,28573702,28835841,28901378,29229058,29556737,30212097,30277634,30539778,30801921,31260675,31457281,31588353,31981569,32243713,32702465,32899073,33161217,33357826,33423361,33619969,33685505,34013186,34078723,34144258,34406401,34471937,34537478,34603009,35389442,35520518,35782657,36438017,36634626,37945345,38010882,38600705,39190529,39387138,39452673,39518209,39911426,39845891,39976961,40239106,40828929,41222145,41484292,41615361,41680898,41746433,42074113,42336257,42401793,43122690,43319300,43450370,43843585,43974670,44040198,45613058,45744129,45875205,45940737,46399490,46465025,46792705,47054849,47513620,47841281,48103425,48234497,48300033,48562178,48693249,48889862,49348617,49414152,49479683,49676304,49741825,49807374,49872898,49938448,50003979],"exceeding":[37027841,40828929,49217537],"executecommand":[7798785,8060930,8257537,11927554,14417926,15007746,15335426,21102598,21561350,23461894,24313862,24707074,34537473,43974658,45481990,47513602,49348609,49414145,49676290,49807362,49938434,50003969],"expansion":[30670849,40828931,44957697],"extends":[24903681,43515905],"enableallloading":[45809665],"enablestandardsmode":[41746434],"enumerablet":[5046274,9306114,14090241],"extendedhostfunctions":[2883587,4259842,4587523,5046276,5111810,5242883,5439490,5636098,5898243,5963778,6291458,6750210,6815746,6881282,7143430,7208962,7340034,7405570,7536642,7864322,8126466,8585219,8650755,9043970,9306115,9568258,9895938,10027010,11862018,13369347,13631490,13893634,14090243,14614530,14942210,24838146,24903681,41615361,42729474,42926089,42991618],"expressions":[12976129,13303809,13500417,13697025,13828097,14024705,23461889,24313857,25034753,26083329,27656193,37289985,38141953,38862849,46792705,47579137],"expose":[12320769,12582913,12779521,13041665,13172738,13434881,24576002,25690113,27852803,28639233,29753345,32702465,34668545,36765697,40042497,41615361,44498945,46137345,47251457],"elementt":[6750210,6815746,7208962,7340034,7536642,8126466,9568258,10027010,11862018,13631490,14614530,14942210],"enums":[25034753,40501249,43057153,44367873],"explicitly":[45809665,47054849,49283073],"enumerations":[2883585,5111811,23920641,24772609,24903681,42926081],"enabling":[37027841,49217537],"element":[1900547,2883589,4259842,5963779,6488068,6750210,6815746,7208962,7340034,7536642,8126466,8978437,9568258,10027010,10223621,10747906,11665410,11862018,13631490,14614530,14876676,14942210,18350082,24641538,29818881,40697857,41156610,41615365,42336260,42926085],"exact":[25034753],"event":[786436,1245185,2818049,3997697,4063233,4653057,4784130,7602178,24903684,27852801,39714818,40632323,42860548,43253764,44105732,44302338,45023235,47513601,49676289,49938433,50003969],"enableinterruptpropagation":[30146561,44040193,48037893],"enablemodeless":[3276801,23134213,49545217],"execute":[7798788,8060932,8257540,11927557,13828103,14417921,15007748,15335428,20447239,21102593,21561345,23461889,24313857,24707076,26607621,27197446,34537476,38862855,43974660,45481985,46792711,47513605,47579143,49348612,49414148,49676293,49807364,49938437,50003973],"executedocument":[7798787,8060931,8257539,11927555,13697030,15007747,15335427,24707075,27000836,34537475,37289990,38141958,43974659,47513603,49348611,49414147,49676291,49807363,49938435,50003971],"ending":[30081025,41549825,45416449],"exceeds":[37027841,49217537],"exits":[13369345],"equivalent":[34603009,48103425],"enumerates":[30277634,34996225,39649281,41680898],"externally":[16711681,17235969,17891329,18022401,18546689,19988481,20250625,20578305,21168129,21430273,22347777,22740993],"efficient":[9175041,33816577,44761089],"enablefileloading":[45809665],"effect":[7077889,25034753,33816577,33947649,34734081,37224449,37814273,39190529,41746433,43057153,44105729,46333953,46792705,47185921,48431105],"enabledynamicmoduleimports":[45547521,48889857],"enforcerelativeprefix":[45809665],"entry":[9895937],"earlier":[33554433,34668545],"encounter":[41943041],"executes":[7798792,8060936,8257544,11927561,13697025,13828097,14417921,15007752,15335432,20447233,21102593,21561345,23461891,24313859,24707080,26607620,27000835,27197445,34537480,37289985,38141953,38862849,43974664,45481985,46792705,47513609,47579137,49348616,49414152,49676296,49807368,49938440,50003976],"equal":[851969,917505,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,3211265,2818049,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,7798785,8060929,8257537,8716289,10158081,10223617,11927553,12386305,15007745,15335425,24707073,34537473,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,42270721,42860545,42926081,43057153,43253761,43515905,43581441,43974657,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48824321,49086465,49283073,49348609,49414145,49676289,49741827,49807361,49872897,49938433,50003969],"endtimestamp":[30081025,41549829,45416449],"enabletoplevelawait":[31916033,37224453,41943041,49020929],"experimental":[45547521,48889857],"exempt":[33554433],"enabletaskpromiseconversion":[48889858],"ecmascript":[30015489,33488897,37224449,42139649],"enumerator":[1900545,42336257],"evaluatedocument":[7798787,8060931,8257539,11927555,12976134,13303814,13500422,15007747,15335427,24707075,25952260,34537475,43974659,47513603,49348611,49414147,49676291,49807363,49938435,50003971],"encapsulated":[1703937,10158081,41680897,43515905],"execution":[7798787,8060931,8257539,11927557,14221313,14417921,15007747,15335427,18677761,19267585,21102593,21561345,23068673,23527425,23461889,24313857,24707075,24903683,25034754,25886721,26083329,26411009,26607617,27197441,27656193,28835841,29556737,30146561,30212097,30539777,31260673,31457282,33226753,33357825,34078721,34144259,34275329,34537475,35979265,36634625,37027841,37093377,38010881,38600706,38862849,39845889,41222146,42074114,43122689,43974660,44040193,45481985,46071809,46792706,47513608,47579137,47972353,48037889,49152002,49217537,49348612,49414148,49676292,49807364,49938436,50003972],"enforced":[37093377,46071809],"enumeration":[1703937,10158081,23920641,24772609,24903681,31457282,39190530,39976962,40108034,41680897,41746434,41943042,42401794,43515905,43778050,44761090,45547522,45809666,47513602,47775746,48431106,48889858,49152002],"explicit":[27852802],"enforce":[34668545,43188225,43974657,49348609,49807361,49872897],"excessive":[37027841,37093377,46071809,49217537],"enginename":[17563653,18415621,19202053,28835841,29556737,30212097,31981575,34471941,41222145,42074113,43122689,47841287],"exceptions":[1966081,2883585,10223617,13369346,41222145,41615361,42926081,48889857],"expression":[12976129,13303809,13500417,14024705,14417921,21102593,21561345,23461890,24313858,25034753,26083329,27656193,45481985],"extension":[4849666,5177346,5308418,5505026,9371650,9437186,9633794,9764866,10092546,10354690,10616834,12648450,13107202,24903681,25624577,27852802,30539778,31260674,31457283,33357826,34078722,36175873,36634626,37158913,37879809,38010882,38666241,39190532,39845890,41484289,43384833,43450369,43974658,47316993,47513603,48496641,49348610,49414146,49676290,49807362,49938434,50003970],"exposed":[1179649,4587521,5046273,5242881,5439489,5636097,5767169,5898241,5963777,6291457,6750209,6815745,7208961,7340033,7405569,7536641,7864321,8126465,8650753,8585217,9043969,9175043,9306113,9568257,9895937,10027009,10944513,11403265,11862017,12320769,12582913,12779521,13041665,13172737,13369345,13434881,13631489,13893633,14090241,14614529,14942209,24576001,24838145,24903684,25690113,27852804,29753345,30539778,31195137,31260674,31457282,32702465,33357826,33947649,34078722,34406401,34734081,35586049,36634626,38010882,39190530,39845890,39976962,40501249,41615361,42401797,42598402,42860545,43253761,43974658,44367873,47513602,49348610,49414146,49676290,49807362,49938434,50003970],"exposes":[65537,131073,196609,262145,327681,393217,458753,655361,851969,917505,983041,1114113,1179649,1245185,1310721,1376257,1507329,1638401,1703937,1769473,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,3145729,3014657,3080193,2949121,2883585,2818049,3211265,3276801,3604481,3735553,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,7798814,8060958,8257566,8716289,10158081,10223617,11534337,11730945,11796481,11927582,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12582913,12713985,12779521,12910593,13041665,13172737,13434881,15007774,15335454,15728641,16449537,24444929,24576001,24707102,25165826,25427969,25493512,25690113,26214408,26673154,27131905,27394049,27590664,27852801,28049409,28114945,28180481,28311553,28442625,28508161,28639233,28704769,28835841,29032449,29097985,29294593,29360129,29425665,29491201,29556737,29687809,29753345,29818881,29949953,30015489,30081025,30146561,30212097,30277633,30408705,30539777,30670849,30736385,31260673,31326209,31457281,31916033,33357825,34078721,34537502,36634625,37355521,38010881,38338561,38469633,38928385,38993921,39714817,39845889,40501250,40632321,40697857,40894465,40960001,41091073,41222145,41418753,41484289,41615361,41680897,42074113,42139649,42270721,42336257,42598401,42795009,42860545,42926081,43057153,43122689,43253761,43515905,43581441,43646977,43974686,44040193,44105729,44236801,44302337,44367873,44433409,44498945,44957697,45023233,45088769,45154305,45416449,46137345,46202881,46268417,46727169,46923777,47251457,47513630,47644673,47710209,47906817,48824321,49020929,49086465,49283073,49348638,49414174,49479681,49545217,49610753,49676318,49741825,49807390,49872897,49938462,50003998],"evaluation":[37224449],"exists":[33947649,34734081,43057153,44105729,48431105],"endcpuprofile":[4390913,11927553,18087941,22609925,44040193,47513601],"eval":[23461889,24313857],"enable":[17563649,17760257,18415617,18612225,23134214,34668545,37224449],"executing":[8912897,9109505,9961473,15073281,22282241,23003137,33619969,48562177,48627713,48889857],"enablejitdebugging":[41746433],"eventsource":[2818051,4063235,4784130,7602178,24903682,27852801,39714824,40632332],"effective":[36831233,37027841,37748737,44761090,49152002,49217537],"entered":[27983873],"exposeruntimetype":[34406401,43778049],"expensive":[9175041,44761090],"expect":[47054849,49283073],"enableruntimeinterruptpropagation":[31457281,47513601,47972357],"enumerable":[4587522,5046274,5242882,9306113,14090241,39190529,39976961],"exposing":[24903682,42401793,43778049],"enablewebloading":[45809665],"environments":[43974657,49348609,49807361],"events":[262146,393218,655362,27852801,41222145,42860545,43253761,44105729,44498945,47906817],"expected":[3866625,4915201],"errordetails":[28835841,29556737,30212097,32571399,35192837,41222145,42074113,43122689,48365575],"engines":[9175041,14417921,21102593,21168129,21430273,21561345,22347777,23461889,24313857,24772611,24903683,25034753,25231362,25624577,33161218,35782657,37945347,40108033,41484289,42401793,43450369,45481985,46792705,49348609,49414145,49545217,49872897,50003969],"enhance":[41746433],"extract":[5439489],"enablesamplecollection":[47775745],"extended":[24903682,42270721,42926081,43253761],"equals":[851969,917505,983042,1114113,1245185,1376258,1703937,1769474,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,3211266,2818049,2883585,3801090,4063233,4325378,4390913,4653057,5701633,6225921,6422529,6946817,7798785,8060929,8257537,8716289,10158081,10223617,11927553,12386305,15007745,15335425,24707073,33751041,34537473,38928385,38993921,39714817,40501250,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,42270721,42860546,42926081,43057154,43253762,43515905,43581441,43778049,43974657,44040193,44105730,44236801,44302337,44367874,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48824321,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"easy":[37945345],"eligible":[45809665],"end":[38928385,38993921,39714817,40501249,40632321,40697857,40894465,40960001,41091073,41222145,41418753,41484289,41615361,41680897,42074113,42139649,42270721,42336257,42598401,42795009,42860545,42926081,43057153,43122689,43253761,43450369,43515905,43581441,43646977,43974657,44040193,44105729,44236801,44302337,44367873,44433409,44498945,44957697,45023233,45088769,45154305,45416449,46202881,47513601,47710209,47906817,48824321,49020929,49086465,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"existing":[2883585,3932161,4587521,42729473,42926081],"engin":[2752514,5701634,7864321,20971522,21889026,24838145,27525122,28966914,29884418,30343170,30539781,31260677,31457285,33357829,34078725,34340865,34603009,35258369,36175873,36634629,36765697,37158913,37683201,37879809,38010885,38666241,39124993,39321601,39845893,40042497,42401793,43384833,43974661,45219841,45744129,47054849,47513605,48496641,48955393,49348613,49414149,49479682,49676293,49807365,49872898,49938437,50003973],"executable":[30670849,31326209,37617665,43909125,44957697,49086465],"environment":[24772612,24903681,37945345,43515905,49676290,49938434,50003970],"executionstarted":[28835841,29556737,30212097,33226759,34275335,35979269,41222145,42074113,43122689],"enforces":[2752513,5701633,7798785,8060929,15007745,15335425,20709377,20905985,21299201,21692417,22020097,22216705,22413313,22478849,22675457,22806529,22937601,23658497,24248321,24707073,25231361,34537473,39911425,43974657,49348609,49479682,49676289,49807361,49872897,49938433,50003969],"enum":[40108034,41746434,41943042,42401794,42860548,43057156,43778050,44105732,44367876,44761090,45547522,45809666,47775746,48431106,48889858,49152002],"equality":[33751041,40501250,43778049],"enablenullresultwrapping":[7077890,30539777,31260673,31457281,33357825,33751045,34078721,34603009,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"enabledebugging":[41746435,45547522,48889859],"export":[30539778,31260674,31457282,33357826,34078722,34603009,36634626,38010882,39845890,43974658,47054849,47513602,49348610,49414146,49676290,49807362,49938434,50003970],"exception":[655364,1966086,2162689,5439489,7405569,7798785,7864321,8060929,8257537,11337737,11927553,13369351,14221313,15007745,15138818,15335425,19660809,20447233,23068673,23527425,24707073,24838145,24903683,25559042,28246018,28835859,29556740,30212102,31391746,31653896,32047106,32309249,33226753,33423363,33882113,34144257,34275329,34537473,34799618,35061761,35848194,35979265,41222177,42074120,43122695,43974657,47513601,47972353,48037889,48889858,49152003,49348609,49414145,49676290,49807361,49938434,50003970],"extensionattribute":[4849667,5177347,5308419,5505027,9371651,9437187,9633795,9764867,10092547,10354691,10616835,12648451,13107203,41484291,43450371],"exemption":[33554433],"exceeded":[49152002],"enableremotedebugging":[45547521,48889857],"error":[589826,10682370,11337730,13369345,14352386,19660802,24903681,25559042,28246018,28835843,29556738,30212100,30998529,32309249,32571393,32768001,33882113,35061761,35192833,41222150,42074116,43122692,48365569,48889858,49152001],"enhanced":[24903681,43515905],"elements":[1900545,3604482,10747908,11665412,12976129,13303809,13500417,13697025,13828097,14024705,25034753,26083329,27656193,29818881,30539777,31260673,31457281,33357825,33554434,34078721,36634625,37289985,38010881,38141953,38862849,39845889,40697858,42336258,43974657,46792705,47513601,47579137,49348609,49414145,49676289,49807361,49938433,50003969],"enablestringifyenhancements":[48889857],"encoding":[17825793,23789569,27131906,29491203,31064079,41025550,43581443,45154306],"examples":[4587521,5046273,5242881,5439489,5636097,5767169,5898241,5963777,6291457,6750209,6815745,7208961,7340033,7405569,7471105,7536641,7864321,8126465,8650753,8585217,9043969,9306113,9568257,9895937,10027009,11862017,13369345,13631489,13893633,14090241,14614529,14942209,24838146],"errors":[37027841,37093377,46071809,49217537],"evaluate":[6094849,7798788,8060932,8257540,11927557,12976129,13303809,13500417,14024712,14417921,15007748,15335428,19857416,20447233,21102593,21561345,23461889,24313857,24707076,25034759,25886725,26083336,26411014,27656200,34537476,41680897,43974660,45481985,47513605,49348612,49414148,49676292,49807364,49938436,50003972],"exhaustive":[12845062,16056326,20316167,21954567],"exposehostobjectstaticmembers":[30539777,31260673,31457281,33357825,34078721,35586053,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"enabled":[17563649,17760257,18415617,18612225,23003137,36831233,37224453,37748737,40501249,41746436,41943041,45547523,47775745,48889860],"enables":[3276801,23134209,30146562,30539785,31260681,31457292,31916033,33357833,33554433,33619969,33751041,33816577,34078729,34406401,34668545,36438017,36634633,37027841,37224450,38010889,39190529,39845897,39976961,40828929,42795009,43974665,44040194,46465025,47316993,47513612,47644673,47972353,48037889,48103425,48627713,49020929,49217537,49348617,49414153,49545217,49676297,49807369,49938441,50003977],"excluded":[39190529,39976961],"eventconnection":[1245187,3997698,4653060,4784134,7602182,24903682,44302344,45023245]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_102.json b/docs/Reference/fti/FTI_102.json index c7251a148..310af6c55 100644 --- a/docs/Reference/fti/FTI_102.json +++ b/docs/Reference/fti/FTI_102.json @@ -1 +1 @@ -{"fail":[35520513,44761089,49479681],"fully":[3473409,5570561,6029313,6488065,9502721,10158081,13828097,14548993,24510465,25165825,41680897,47775745],"frame":[38928386,44695554],"fields":[262146,327682,589826,1048578,1310722,42532865,45219841,47775745,48037889,48562177,48693249,49020929,49348609,49545217],"filesystemobject":[7864322],"finallyfunc":[9568264],"fso":[7864322],"floating":[8519681,34013185,34996225,35717121,37027841,38404097,39976961,41287681,42336257,47448065,47644674,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"float64array":[45023233],"format":[5767169,6488065,7864321,12451841,12582913,12910593,13041665,13369345,13565953,15663105,19791873,20250625,20381697,20905985,21430273,23265281,23724033,24969217,25034753,25952257,27525121,29425665,30343169,37814273,39452673],"files":[32768002,34013185,34996225,35717121,36372481,37027841,37289985,38404097,39387137,40042497,39976961,40960001,41287681,42336257,43253761,43712513,45088769,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"finished":[15400961,18415617,28442625],"file":[7274497,15597570,23265282,23724034,25034754,27525122,29294593,29425666,30343170,30539777,31588353,32636929,32899073,33161217,34013185,34996225,35717121,35848193,36044801,37027841,37289985,38404097,39124993,39387137,40042497,39976961,41287681,42336257,43253761,43712513,45088769,45350913,47448066,48627714,48758785,48955394,49086466,49217537,49414146,49610754,49807362],"f093":[5767169,7864321,12451841,12582913,12910593,13041665,13369345,13565953,20381697,20905985],"finally":[9568257],"filenameextension":[34013186,34996225,35717122,37027842,37289989,38404097,39387142,40042502,39976962,41287682,42336257,43253766,43712518,45088774,47448065,48627714,48758786,48955394,49086465,49414146,49610753,49807362],"free":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4390913,5570561,5636097,6291457,12648449,39845889,40501249,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48693249,49020929,49217537,49348609,49545217,49741825],"features":[25427969,25952257,44630017,47906817,48824321,49676290],"formatting":[34013185,34996225,35717121,35782657,37027841,37814274,38404097,39452674,39976961,41287681,42336257,46202881,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"functionality":[4128769,33882113,49676289],"float32array":[45023233],"feature":[33882116,41549829,47906817,48824321],"favor":[14811137,18939905,24641537,30801921],"fatal":[31129601,35848193,36306945,39059457,43909121,44826625,47251457,49217537,49283073],"flags":[3407873,7274504,12451845,12648449,12910597,13041669,13172741,13565957,13697029,13959173,14614533,16973829,17498117,17629189,17760261,17956869,18022405,18219013,18350085,19070981,19398661,19464197,20054021,20185093,20447237,20840453,20971525,21561349,21692421,22020101,22413317,22609925,22806533,23003141,23068677,23199749,23265285,23527429,23592965,23724037,24117253,24379397,24510469,24707077,25034757,25100293,25165829,26476549,27000837,27525125,27918341,28377093,28639237,28770309,29425669,30343173,30932993,32833541,35061761,35127301,39911429,41680897,46596097,48300033,49348609],"float":[44761089,45023233],"fallback":[34013185,34996225,35717121,35913729,37027841,38404097,39976961,41287681,42336257,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"filenameextensions":[15138820,15597573,23265285,23724037,25034757,27525125,29425669,30343173,32899077,36044801,45350913],"func":[1900545,1966081,2031617,2359297,2424833,3407874,3932161,6291457,6488065,6881287,7733256,10551307,11862027,12648449,22872075,26607619,26869761,27328513,29949953,30015503,30998529,41943041,42598401,43974657,45023233,46596097,47710209,48300034,49152001,49545217],"functional":[21692417],"flag":[3407873,7274502,12648449,46596097,48300033],"final":[9568257],"field":[131074,720898,655362,786434,917506,983042,8716289,21692417,34013186,34996226,35520514,35717122,37027842,38404098,39976962,41287682,42336258,42532868,47448066,48037892,48168961,48627714,48758786,48955394,49086466,49348612,49414146,49479682,49610754,49676289,49807362],"following":[196609,262145,327681,393217,458753,589825,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,4259841,4390913,4849665,5046273,5177345,5242881,5570561,5636097,5701633,5767169,6029313,6291457,6488065,6553601,6684673,7208961,7274497,7340033,7405569,7602177,7667713,7733249,7798785,7864321,7929857,8060929,8257537,8323073,8388609,8454146,8519681,9043969,9175041,9240577,9306113,9568257,9895937,10027009,10420225,10485761,10944513,11010049,11206657,11403265,12648449,17432577,21495809,21692417,29360129,29687809,30474241,30736385,30932993,31064065,31129601,31326209,31457281,31522817,31653889,31784961,31850497,31981569,32243713,32374785,32505857,32571393,32702465,32964609,33030145,33685505,34013185,34144257,34275329,34603009,34734081,34996225,35061761,35192833,35454977,35717121,35782657,35848193,36044801,36306945,36372481,37027841,38404097,38797313,39845889,39976961,40501249,40960001,41287681,41418753,41680897,41943041,42139649,42336257,42532865,42598401,42729473,42795009,42991617,43450369,43778049,43843585,43974657,44498945,45023234,45219841,45350913,45481985,45744129,45875201,46137345,46202881,46465025,46530561,46596097,46792705,46989313,47251457,47316993,47382529,47448065,47579137,47710209,47775745,47841281,48037889,48103425,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49545217,49610753,49741825,49807361],"facilitate":[37814273,39452673],"f414c260":[23265281,23724033,25034753,27525121,29425665,30343169],"foreach":[6684675,8060930],"follow":[1],"false":[4128769,4587522,5439490,7077889,8257537,8716289,8847361,9437185,9568258,10092545,10485761,11206657,11730945,12320769,12386305,12845057,13107201,13631490,13762561,14811137,14942209,16187393,17367041,17432577,17891329,18022401,18284545,18546689,18808833,18939905,19857409,20774913,21233665,21364737,21889026,22544385,23134209,23789569,24313857,24641537,24838145,24903681,25362434,27852801,28573697,28639233,29622273,30801921,31195137,33226753,44957697,45809665],"funcname":[16842757],"framework":[11599873,12517377,15073281,15925249,33882113],"forwards":[17432577],"formatcode":[34013185,34996225,35717121,35782657,37027841,37814277,38404097,39452677,39976961,41287681,42336257,46202881,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"functionname":[34734081,37945349,46989313],"flagsattribute":[39124996,40304644,40894468,44302340,46399492,47906820,48824324,49479684,49676292],"friendly":[48365569],"finalize":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4259842,4390913,5046273,5177345,5242881,5570561,5636097,5701633,6291457,7602177,7667713,12648449,13631490,15204361,21495809,21889026,25362434,39845889,40501249,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47448065,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48955393,49020929,49086466,49217537,49348609,49414145,49545217,49610753,49741825,49807361],"function":[1114113,1179649,1376257,1441794,1507329,1572865,1638402,1769474,2097154,2228225,2293761,2490369,2621441,2752513,2949121,3145729,3276801,3342337,3407877,3538945,3670017,3735553,3801089,3866625,4128769,4259842,4390913,4521985,4587521,5046274,5177346,5308417,5242882,5373953,5439489,5636097,5701634,5767169,5832707,6029313,6094849,6160385,6225923,6291457,6356993,6488066,6553601,6619137,6684680,6750209,6815745,6881286,6946818,7012353,7077890,7143425,7208961,7274498,7340033,7405570,7471106,7536642,7602178,7667714,7733256,7798788,7864321,7929858,7995394,8060936,8126466,8192002,8257540,8323074,8388610,8454145,8519682,8585218,8650754,8716290,8781826,8847362,8912897,9043970,9175042,9240578,9306114,9371650,9437186,9568265,9895938,10027010,10092546,10223617,10289153,10420226,10485763,10551297,10682369,10944514,11010050,11075585,11141121,11206659,11337729,11403266,11534337,11599873,11665409,11730945,11862017,12124161,12189697,12386305,12517377,12648452,12976129,13107201,13434881,13762561,14155777,14221313,14286849,14352385,14876673,15073281,15663105,15728641,15925249,16187393,16384001,16580609,16711681,16842756,16908289,17235969,17367041,17432577,17629185,17694721,17760257,17891329,18022401,18087937,18153473,18219009,18284545,18546689,18677761,18808833,18874369,19005441,19202049,19267585,19333121,19398657,19529729,19595265,19660801,19726337,19857409,19922945,19988481,20119553,20250625,20512769,20578305,20709377,20774913,21102593,21233665,21299201,21364737,21495810,21757953,21954561,22151169,22347777,22478849,22544385,22740993,22872065,23134209,23330817,23920641,23986177,24051713,24182785,24248321,24313857,24444929,24772609,24838145,24903681,24969217,25493505,25755649,25886721,25952257,26345473,26607618,27852801,28573697,28639233,29032449,29622273,30015489,30277633,31195137,31260673,31391745,31916034,32112641,33226753,34734086,37421057,37945345,38600705,39518209,39780353,39845889,40370177,40501249,41025537,41418755,41484289,41549825,42139651,42729473,42795010,42991617,43450369,43778050,44498945,44957697,45219841,45350913,45481985,45875201,46202881,46596100,46989319,47316993,47448066,47579137,48234497,48300037,48431105,48496641,48627714,48693249,48758786,48955394,49020929,49086466,49217537,49414146,49545217,49610754,49741825,49807362],"form":[6029313,6488065,7143425,8585217,13172737,13828097,14548993,15335425,16056321,17432577,23068673,23658497,24510465,25165825],"first":[2555905,6160385,6356993,6815745,7012353,7733249,8060929,10289154,11075586,11337730,11534338,11599873,12124162,12189697,12517377,12976129,13434881,14352385,15073281,15925249,16711681,19988482,32309249,34537473,38862849,41549825,46465025,48824321],"foo":[5767169,8454145],"finalization":[15204353],"fails":[3407873,7798785,8519681,12648449,35913729,46596097,48300033],"functions":[31916034,34013185,34471938,34668545,34996225,35717121,37027841,38273025,38404097,39976961,41287681,41746433,42336257,46596097,47448065,48300033,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"filter":[9633798,9699334,9830406,10747910],"formatted":[15663105,24969217,25952257],"future":[47906817,48824321],"frames":[35848193,49217537]} \ No newline at end of file +{"fail":[33751041,40828929,43778049],"fully":[3014657,5046273,6946817,8323073,8585217,8847361,12779521,13172737,24576001,25690113,40894465,40960001],"frame":[47972354,48037890],"fields":[65538,131074,196610,327682,458754,40960001,42860545,43253761,44105729,44236801,48431105,49283073,49741825,49872897],"filesystemobject":[5898242],"finallyfunc":[13369352],"fso":[5898242],"floating":[7405569,30539777,31260673,31457281,33357825,34078721,36634625,38010881,39845889,43974657,47513601,48103426,49348609,49414145,49676289,49807361,49938433,50003969],"float64array":[40697857],"format":[5046273,5898241,8650753,11534337,12189697,12255233,12451841,12713985,15400961,16449537,17825793,22282241,22478849,22806529,23003137,23789569,24444929,33619969,34013185,35389441,38338561,39911425,40239105,48562177,48627713],"files":[30539777,31260673,31457281,32440322,33357825,34078721,36175873,36634625,37158913,37879809,38010881,38666241,39845889,42795009,43384833,43974657,47513601,47644673,48496641,49348609,49414145,49676289,49807361,49938433,50003969],"finished":[17367041,23199745,45875201],"file":[5439489,17432578,22478850,22806530,26935297,27066369,27328513,27721729,28377089,28835841,30539777,31260673,31457281,33357825,34013186,34078721,35389442,36175873,36634625,37158913,37879809,38010881,38666241,39911426,39845889,40239106,40435713,41222145,42270721,43384833,43974658,45809665,46923777,47513601,48496641,49348610,49414146,49676290,49807362,49938434,50003970],"f093":[5898241,8650753,11534337,12189697,12255233,12451841,12713985,16449537,24444929,38338561],"finally":[13369345],"filenameextension":[30539777,31260674,31457282,33357826,34078721,36175877,36634626,37158918,37879814,38010881,38666246,39845890,43384838,43974658,47513602,48496646,49348609,49414145,49676290,49807362,49938434,50003969],"free":[851969,917505,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,3211265,2818049,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,8716289,10158081,10223617,12386305,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,42270721,42860545,42926081,43057153,43253761,43515905,43581441,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47906817,48824321,49086465,49283073,49741825,49872897],"features":[23003137,25624577,37945345,41746434,45547521,48889857],"formatting":[30146561,30539777,31260673,31457281,33357825,33619970,34078721,36634625,38010881,39845889,43974657,44040193,47513601,48627714,49348609,49414145,49676289,49807361,49938433,50003969],"functionality":[4194305,33816577,41746433],"float32array":[40697857],"feature":[33816580,37224453,45547521,48889857],"favor":[12845057,16056321,20316161,21954561],"fatal":[28835841,29556737,30212097,32309249,33882113,35061761,41222145,42074113,43122689],"flags":[2883585,5439496,10223617,11534341,11796485,12124165,12189701,12713989,12779525,13172741,13434885,14483461,14745605,15466501,16121861,17563653,17629189,17760261,18153477,18284549,18415621,18612229,18874373,19595269,20054021,20381701,20643845,20774917,21037061,21233669,21692421,21757957,22020101,22478853,22544389,22806533,22937605,23265285,23658501,25296901,25427973,27852805,29753349,29949953,31588357,32899077,34013189,35389445,37355525,37421061,38338565,39452677,39911429,40239109,40894465,41615361,42926081,43253761,45613061,45678597,46137349,46268417,46530565,47448069,48693253],"float":[40697857,40828929],"fallback":[30539777,31260673,31457281,33357825,34078721,36634625,38010881,39845889,43974657,46465025,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"filenameextensions":[16646148,17432581,22478853,22806533,34013189,35389445,39911429,40239109,40435717,42270721,46923777],"func":[1310721,1507329,1638401,2031617,2752513,2883585,3604481,5046273,5701633,6094855,9961483,10223618,14090248,15073291,21889039,24969219,27525121,28966913,30343179,40697857,41615362,42467329,42663937,42926081,43646977,44433409,45088769,47710209,49479681,49872897],"functional":[27852801],"flag":[2883585,5439494,10223617,41615361,42926081],"final":[13369345],"field":[524290,720898,1441794,1835010,2228226,3342338,7077889,27852801,30539778,31260674,31457282,33357826,33751042,34078722,34406401,36634626,38010882,39845890,41746433,42860548,43253764,43778050,43974658,44105732,47513602,49348610,49414146,49676290,49807362,49938434,50003970],"following":[65537,131073,196609,262145,327681,393217,458753,655361,851969,917505,983041,1114113,1179649,1245185,1310721,1376257,1507329,1638401,1703937,1769473,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,3145729,3014657,3080193,2949121,2883585,2818049,3211265,3276801,3604481,3735553,3801089,4063233,4325377,4390913,4587521,4653057,5046273,5242881,5439489,5636097,5701633,5767169,5898241,5963777,6225921,6291457,6422529,6750209,6815745,6946817,7208961,7340033,7405569,7536641,7798785,7864321,8060929,8126465,8257537,8650753,8585217,8716289,9043969,9306113,9568257,9895938,10027009,10158081,10223617,11862017,11927553,12386305,13369345,13631489,13893633,14090241,14614529,14942209,15007745,15335425,24707073,24838145,25034753,27131905,27394049,27852801,28049409,28114945,28180481,28311553,28442625,28508161,28704769,28835841,29032449,29097985,29294593,29360129,29425665,29491201,29556737,29687809,29818881,29949953,30015489,30081025,30146561,30212097,30277633,30408705,30539777,30670849,30736385,31260673,31326209,31457281,31916033,33357825,34078721,34537473,36634625,38010881,38469633,38928385,38993921,39714817,39845889,40501249,40632321,40697858,40894465,40960001,41091073,41222145,41418753,41484289,41615361,41680897,42074113,42139649,42270721,42336257,42598401,42795009,42860545,42926081,43057153,43122689,43253761,43515905,43581441,43646977,43974657,44040193,44105729,44236801,44302337,44367873,44433409,44498945,44957697,45023233,45088769,45154305,45416449,46202881,46268417,46727169,46923777,47513601,47644673,47710209,47906817,48824321,49020929,49086465,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"facilitate":[33619969,48627713],"f414c260":[22478849,22806529,34013185,35389441,39911425,40239105],"foreach":[9306115,13893634],"follow":[1],"false":[3932162,4128770,4194305,5636097,6356993,6488065,7077889,7471105,7864321,8388609,10420225,10944513,11075585,11272193,12845057,13238274,13369346,13565953,13762561,15925249,16056321,16121857,16318465,17039361,17104897,17301505,17694721,19005441,19333121,19529729,20119553,20185089,20316161,20512769,21495809,21626881,21954561,22085634,22872066,23134209,23330817,23592961,24838145,25034753,28901377,34144257,38600705,46792705,46858241,47382529,48234497,48693249],"funcname":[15990789],"framework":[9437185,9764865,10616833,13107201,33816577],"forwards":[25034753],"formatcode":[30146561,30539777,31260673,31457281,33357825,33619973,34078721,36634625,38010881,39845889,43974657,44040193,47513601,48627717,49348609,49414145,49676289,49807361,49938433,50003969],"functionname":[30736385,36044805,48824321],"flagsattribute":[40108036,41746436,41943044,42401796,43778052,45547524,45809668,47775748,48889860],"friendly":[49152001],"finalize":[851969,917505,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,3211265,2818049,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,7798785,8060929,8257538,8716289,10158081,10223617,11927553,12386305,13238274,15007745,15335425,22085634,22872066,24707073,34537473,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,42270721,42860545,42926081,43057153,43253761,43515905,43581441,43974657,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48300041,48824321,49086465,49283073,49348609,49414146,49676289,49741825,49807361,49872897,49938433,50003969],"function":[851969,1114113,1245186,1703937,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,2949121,917505,2818050,2883588,3866625,3932161,3997697,4063234,4128769,4194305,4259841,4390913,4587521,4653058,4784131,4849665,4915201,5046274,5111809,5177345,5242881,5308417,5439490,5505025,5570562,5636100,5701633,5767170,5832706,5898241,5963777,6094854,6160386,6225921,6291460,6356994,6422529,6488066,6619138,6684674,6750210,6815746,6881281,7077890,7208962,7274498,7340034,7405570,7471106,7536642,7602179,7798786,7864323,7995394,8060930,8126466,8257538,8388610,8585217,8650753,8716289,8978434,9043970,9240577,9306120,9371649,9437185,9568258,9633793,9764865,9830401,9895937,9961473,10027010,10092545,10158081,10223621,10354689,10289153,10420225,10485761,10616833,10747905,10944513,11010049,11075585,11141121,11468801,11599873,11665409,11862018,11927554,12386305,12648449,12976129,13107201,13303809,13369353,13500417,13565953,13631490,13893640,14024705,14090248,14417921,14614530,14876674,14942210,15007746,15073281,15138817,15335426,15400961,15925249,15990788,16121857,16187393,16252929,16318465,16384001,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17563649,17694721,17760257,17956865,17891329,18022401,18087937,18415617,18546689,18612225,18743297,18939905,19005441,19136513,19202049,19333121,19398657,19464193,19529729,19726337,19857409,19988481,20119553,20185089,20250625,20512769,20578305,21102593,21168129,21430273,21495809,21561345,21626881,21823489,21889025,22151169,22282241,22347777,22609921,22740993,23003137,23330817,23396353,23461889,23592961,23855105,24117249,24313857,24510466,24641537,24707074,24838147,24969218,24903682,25034753,26083329,27656193,28901377,30343169,30736390,34537474,34799617,34865153,35323905,35454977,35651585,35717121,36044801,36110337,36896769,37224449,38600705,38928385,38993921,39583745,39714818,40632322,41091073,41222145,41418753,41615365,41680897,42270721,42926084,43515905,43581441,43974658,44040193,44236801,44302339,44498945,44957697,45023235,45154305,45481985,45416449,46202881,46858241,47382529,47513602,47906817,48168961,48234497,48562177,48693249,48758785,48824327,49086465,49283073,49348610,49414146,49676290,49741825,49807362,49872897,49938434,50003970],"form":[5046273,6881281,7274497,8585217,12320769,12582913,12779521,13041665,13172737,13434881,24576001,25034753,25690113,29753345],"first":[1900545,4849665,5177345,5308417,5505025,9371649,9437185,9633793,9764865,10092545,10289154,10354689,10485762,10616833,10747906,11010050,11141122,11665410,12648449,13107201,13893633,14090241,36765697,37224449,37814273,40042497,42336257,48889857],"foo":[8650753,9895937],"finalization":[48300033],"fails":[2883585,6291457,7405569,10223617,41615361,42926081,46465025],"functions":[24903682,30539777,31260673,31457281,33357825,34078721,36438018,36634625,38010881,39124993,39321601,39845889,41615361,42926081,43974657,45219841,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"filter":[8781830,12517382,13959174,21364742],"formatted":[22282241,23003137,48562177],"future":[45547521,48889857],"frames":[28835841,41222145]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_103.json b/docs/Reference/fti/FTI_103.json index fbdb8e0a0..33f53fe97 100644 --- a/docs/Reference/fti/FTI_103.json +++ b/docs/Reference/fti/FTI_103.json @@ -1 +1 @@ -{"grow":[34013185,35782657,41877505,46202881,46727169,48758785],"general":[524289,6946817,7995393,8847361,48168961],"globalmembers":[40304641,48824321],"getnamespacenode":[2293761,11141125,42729473],"garbage":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4259842,4390914,5046274,5177346,5242882,5570561,5636097,5701634,6291457,7602178,7667714,12648449,14811138,15204355,15400961,18415617,18939906,21495810,24641538,28442625,30801922,39845889,40501249,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44302337,44498945,45154305,45219841,45350913,45481985,45875201,46202882,46530561,46596097,46989313,47316993,47382529,47448066,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48627714,48693249,48758786,48955394,49020929,49086466,49217537,49348609,49414146,49545217,49610754,49741825,49807362],"getruntimeheapinfo":[21495809,24444933,48758785],"guid":[4259848,5046280,5177352,5242888,5701640,5767169,7602184,7667720,7864321,12451841,12582913,12910593,13041665,13369345,13500422,13565953,13959174,14024710,14090246,14614534,14680070,20381697,20905985,20971526,21495816,21561350,23265281,23724033,25034753,26411012,27525121,29425665,30343169,30408708,47448072,48627720,48758792,48955400,49086472,49414152,49610760,49807368],"getunderlyingobject":[4849665,24248325,48103425],"getheapinfo":[4390913,19333125,46202881],"given":[1114113,2949121,4128769,4390913,9764865,19791873,20643841,21430273,21495809,40304641,45481985,45875201,46202881,48758786],"groups":[7077889,10485761],"generate":[8060929,45547522],"getelement":[3407873,6946821,12648449,46596097,48300033],"giving":[1900546,1966082,2031618,2359298,2424834,10551297,10878977,11862017,12255233,26869762,27328514,41943042,42598402,43843585,43974658,45023234,47710210],"generally":[8454145],"generated":[4390918,17694722,18284546,18808834,19202050,19726338,19857410,20512770,20774914,21102594,21233666,21299202,21364738,21495814,21954562,22151170,22544386,23134210,23920642,24838146,24903682,25886722,30081027,30277634,30867459,31195138,32112642,33226754,35651587,36569091,45547521,46202886,48758790],"generates":[19791873,21430273],"gets":[131073,786433,1114113,1179649,1310722,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2555905,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407878,3473409,3538945,3670017,3735553,3801089,3866627,4259842,4390913,5046274,5177346,5242882,5570561,5636097,5701634,6291457,6946817,7471105,7602178,7667714,8126465,10485761,11206657,12648454,15663105,19005441,19595265,21495810,24969217,25231362,25952257,27459586,28049410,28180482,29360132,29687809,30474245,30736388,30932996,31064066,31129608,31326211,31457286,31522817,31653890,31784962,31850499,31981570,32243717,32309249,32374787,32505859,32571396,32702466,32768001,32899073,32964612,33030149,33095681,33292289,33423361,33554433,33619969,33685506,33751041,33816577,33947649,34013196,34078721,34144259,34209793,34275329,34340865,34406401,34537473,34603010,34734090,34799617,34865153,34996232,35061766,35127297,35192834,35258369,35454978,35586049,35717129,35782663,35848205,36044806,36110337,36175873,36306949,36372482,36503553,36634625,36700161,36831233,36896769,37027849,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37683201,37748737,37879809,37945345,38010881,38076417,38207489,38404105,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38993921,39059457,39256065,39321601,39387137,39518209,39583745,39714817,39780353,39845891,39911425,39976970,40042497,40108033,40173569,40239105,40435713,40501249,40566785,40632321,40763393,40828929,40960002,41025537,41091073,41156609,41222145,41287690,41353217,41418753,41484289,41615361,41680903,41811969,41877505,41943043,42074113,42139649,42205185,42270721,42336266,42401793,42467329,42532867,42598403,42729477,42795009,42860545,42926081,42991619,43057153,43122689,43188225,43253761,43319297,43384833,43450371,43515905,43581441,43646977,43712513,43778049,43843586,43909121,43974660,44040193,44105729,44171265,44236801,44367873,44433409,44498948,44564481,44761089,44826625,45023236,45088769,45154305,45219841,45285377,45350919,45481985,45613057,45809665,45875206,45940737,46006273,46071809,46137346,46202888,46268418,46333953,46465030,46530563,46596102,46661633,46727169,46858241,46923777,47054849,46989323,47251464,47316996,47382531,47448075,47513601,47579143,47710209,47775747,47841281,48037891,48234502,48300038,48431109,48496643,48627724,48693249,48758798,48889857,48955404,49020929,49086474,49217550,49283077,49348613,49414155,49545217,49610764,49741830,49807371],"getvalue":[21692417],"guide":[6160385,6356993,6815745,7012353,11599873,12189697,12517377,12976129,13434881,14352385,15073281,15925249,16711681],"getbaseexception":[2490369,9568257,49217537],"gethashcode":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4259841,4390913,5046273,5177345,5242881,5570561,5636097,5701633,6291457,7602177,7667713,12648449,21495809,39845889,40501249,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47448065,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48955393,49020929,49086465,49217537,49348609,49414145,49545217,49610753,49741825,49807361],"getcacheddocument":[1507329,4521990,42991617],"getting":[2228225,3866625,40501249,49741825],"gain":[8585217],"gadgets":[6553603,7208963,42729475],"greater":[37158913,37879809,38666241,39256065,44761089,48824321],"globalflags":[34275329,38862853,48889857],"getobjectdata":[2490370,3014657,13893639,16252934,49217538,49283073],"generating":[4390918,17694721,19202049,19726337,20512769,21102593,21299201,21495814,21954561,22151169,23920641,25886721,30081027,30277633,30867459,32112641,35651587,36569091,46202886,48758790],"getstacktrace":[4259841,5046273,5177345,5242881,5701633,7602178,7667713,15663109,21495810,24969222,25952262,47448066,48627713,48758786,48955393,49086465,49414145,49610753,49807361],"global":[4259841,5046273,5177345,5242881,5701633,7602177,7667713,12451841,12582913,12910593,13041665,13172737,13369345,13500417,13565953,13697025,13828097,13959169,14024705,14090241,14417921,14548993,14614529,14680065,15335425,16056321,16842754,20381697,20905985,20971521,21495809,21561345,21692417,22282241,23068673,23658497,24510465,25165825,26148865,31916033,32309249,34013186,34275329,34537473,34668545,34996225,35717121,37027841,37814273,38273025,38338566,38404098,38862850,39452673,39976961,40304641,40697863,40960001,41287681,41746433,42336257,44302337,45416455,47448067,48627714,48758787,48824321,48889857,48955394,49086466,49414146,49610754,49676289,49807362],"getcomponents":[7274497],"gettype":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4259841,4390913,5046273,5177345,5242881,5570561,5636097,5701633,6291457,7602177,7667713,12648449,21495809,39845889,40501249,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45678594,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47448065,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48955393,49020929,49086465,49217537,49348609,49414145,49545217,49610753,49741825,49807361],"getproperty":[3407874,3866626,7471110,8126470,12648450,19005446,19595270,25231363,27459587,46596098,48300034,49741826],"getenumerator":[2555905,7864321,46465025],"generic":[1769473,2097153,2359297,4128769,6029317,6356993,6488066,6619137,6684673,6750209,7012353,7077889,7143425,7274497,7340033,7405569,7536641,7733249,7798785,8257537,8388609,8323073,8454146,8519681,9043969,9175041,9240577,9306113,9502721,9895937,10027009,10158081,10420225,10485761,10551297,10944513,11010049,11206657,11403265,11862017,12845057,13172737,13303809,13434881,13697025,13828098,14352385,14417921,14548994,15073281,15335425,15925249,16056321,21692418,22872065,23068673,23658497,24510466,25165826,30015489,30736385,42139649,43778049,45023233],"getmetaobject":[2228225,3866625,40501249,49741825],"getbytes":[1900545,1966081,2031617,2359297,2424833,10223621,11665413,41943041,42598401,43974657,45023233,47710209],"getdynamicmembernames":[2228225,3866625,40501249,49741825]} \ No newline at end of file +{"grow":[30146561,31457281,37093377,44040193,46071809,47513601],"general":[589825,6488065,8978433,14876673,34406401],"globalmembers":[42401793,48889857],"getnamespacenode":[2686977,34865157,44498945],"garbage":[851969,917505,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,3211265,2818049,2883585,3801089,4063233,4325377,4390914,4653057,5701633,6225921,6422529,6946817,7798786,8060930,8257538,8716289,10158081,10223617,11927554,12386305,12845058,15007746,15335426,16056322,17367041,20316162,21954562,23199745,24707074,34537474,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,41943041,42270721,42860545,42926081,43057153,43188225,43253761,43515905,43581441,43974658,44040194,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,45875201,46202881,47513602,47906817,48300035,48824321,49086465,49283073,49348610,49414146,49676290,49741825,49807362,49872897,49938434,50003970],"getruntimeheapinfo":[11927553,21823493,47513601],"guid":[5898241,7798792,8060936,8257544,8650753,11534337,11730950,11796486,11927560,12058630,12124166,12189697,12255233,12451841,12713985,12910598,15007752,15335432,15728646,16449537,22478849,22806529,24444929,24707080,25427974,25493508,26214404,34013185,34537480,35389441,37355526,38338561,39911425,40239105,43974664,47513608,49348616,49414152,49676296,49807368,49938440,50003976],"getunderlyingobject":[3735553,23855109,49610753],"getheapinfo":[4390913,17170437,44040193],"given":[2097153,2359297,4194305,4390913,9175041,11927553,15663105,17825793,23789569,38993921,42401793,44040193,45416449,47513602],"groups":[7471105,24838145],"generate":[13893633,44761090],"getelement":[2883585,10223617,14876677,41615361,42926081],"giving":[1310722,1507330,1638402,2031618,3604482,8912897,9109505,9961473,15073281,40501249,40697858,42467330,42663938,43646978,44433410,45088770,47710210],"generally":[9895937],"generated":[4390918,11927558,16711682,17039362,17104898,17235970,17301506,17694722,17891330,18022402,18546690,19005442,19333122,19529730,19988482,20119554,20185090,20250626,20512770,20578306,21168130,21430274,21495810,21626882,22347778,22740994,26738691,27787267,27918339,28770307,44040198,44761089,47513606],"generates":[17825793,23789569],"gets":[131074,720897,851969,983041,1114113,1245185,1376257,1441793,1703937,1769473,1900545,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,917505,3211265,2818049,2883590,3801089,4063233,4325377,4390913,4653057,5570561,5701633,6160385,6225921,6422529,6946817,7798786,7864321,8060930,8257538,8716289,10158083,10223622,11927554,12386305,14876673,15007746,15335426,22282241,23003137,24707074,24838145,25755650,26148866,26279938,27131907,27394050,28049412,28114945,28180483,28311554,28442626,28508161,28704772,28835853,29032450,29097986,29294594,29360132,29425668,29491203,29556741,29687810,29818885,29949956,30015490,30081029,30146567,30212104,30277635,30408707,30474241,30539785,30670854,30736394,30867457,30932993,30998529,31064065,31129601,31260683,31326215,31391745,31457293,31522817,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32309249,32374785,32440321,32505857,32571393,32636929,32768001,32833537,32964609,33095681,33161218,33226753,33292289,33357834,33488897,33685505,33882113,33947649,34078731,34144257,34209793,34275329,34471937,34537474,34603009,34734081,34930689,35061761,35127297,35192833,35258369,35323905,35454977,35520513,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36306945,36372481,36503553,36569089,36634634,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37421057,37486593,37552129,37617665,37748737,37814273,37879809,38010890,38076417,38207489,38273025,38404097,38469633,38535169,38666241,38731777,38797313,38928387,38993921,39256065,39518209,39714817,39780353,39845899,40042497,40173569,40304641,40370177,40435713,40501250,40566785,40632321,40697860,40763393,40828929,40894471,40960003,41025537,41091075,41222158,41287681,41418755,41549825,41615366,41680902,41877505,42074117,42139650,42270727,42336262,42795010,42860547,42926086,43057155,43122696,43188225,43253765,43384833,43515905,43581444,43646977,43712513,43843585,43909121,43974668,44040200,44105731,44171265,44236801,44302337,44367875,44433411,44498949,44564481,44630018,44695553,44892161,44957703,45023233,45088771,45154308,45350913,45416454,45678593,45744129,46006273,46071809,46202883,46268422,46333953,46596097,46661633,46727170,46923782,46989313,47054849,47120385,47185921,47513615,47644674,47710212,47841281,47906821,48168961,48365569,48496641,48562177,48758785,48824331,49020929,49086472,49217537,49283073,49348620,49414155,49545217,49676301,49741825,49807372,49872897,49938445,50003981],"getvalue":[27852801],"guide":[4849665,5177345,5308417,5505025,9371649,9437185,9633793,9764865,10092545,10354689,10616833,12648449,13107201],"getbaseexception":[1966081,13369345,41222145],"gethashcode":[851969,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,917505,3211265,2818049,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,7798785,8060929,8257537,8716289,10158081,10223617,11927553,12386305,15007745,15335425,24707073,34537473,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,42270721,42860545,42926081,43057153,43253761,43515905,43581441,43974657,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48824321,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"getcacheddocument":[917505,9240582,46202881],"getting":[1703937,10158081,41680897,43515905],"gain":[7274497],"gadgets":[4587523,5242883,44498947],"greater":[40828929,43909121,44564481,44892161,45350913,48889857],"globalflags":[31916033,37814277,49020929],"getobjectdata":[1966082,2162689,10551303,14548998,41222146,42074113],"generating":[4390918,11927558,16711681,17235969,17891329,18022401,18546689,19988481,20250625,20578305,21168129,21430273,22347777,22740993,26738691,27787267,27918339,28770307,44040198,47513606],"getstacktrace":[7798785,8060929,8257537,11927554,15007745,15335425,22282246,23003142,24707073,34537474,43974657,47513602,48562181,49348610,49414145,49676289,49807361,49938433,50003969],"global":[7798785,8060929,8257537,11534337,11730945,11796481,11927553,12058625,12124161,12189697,12255233,12320769,12451841,12582913,12713985,12779521,12910593,13041665,13172737,13434881,15007745,15335425,15728641,15990786,16449537,23920641,24444929,24576001,24707073,24903681,25427969,25690113,27852801,28639233,29753345,30539777,31260673,31457282,31916033,33357825,33619969,34078721,34340870,34537473,36634625,36765697,37355521,37683207,37814274,38010882,38338561,39124993,39321601,39845889,40042497,41746433,41943041,42401793,42795009,43974658,45219841,46137345,47251457,47513603,48627713,48889857,48955399,49020929,49348611,49414146,49676290,49807362,49938434,50003970],"getcomponents":[5439489],"gettype":[851969,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,917505,3211265,2818049,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,7798785,8060929,8257537,8716289,10158081,10223617,11927553,12386305,15007745,15335425,24707073,33423362,34537473,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,42270721,42860545,42926081,43057153,43253761,43515905,43581441,43974657,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48824321,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"getproperty":[2883586,5570566,6160390,10158082,10223618,25755651,26279939,41615362,41680898,42926082,48168966,48758790],"getenumerator":[1900545,5898241,42336257],"generic":[2818049,3604481,4194305,4259841,4653057,5046274,5111809,5177345,5308417,5439489,5636097,5963777,6291457,6750209,6815745,6881281,7208961,7340033,7405569,7471105,7536641,7864321,8126465,8323073,8585221,8847361,9043969,9306113,9568257,9633793,9764865,9895938,9961473,10027009,11862017,12320769,12582913,12648449,12779522,13041665,13107201,13172738,13434881,13631489,13762561,14090241,14155777,14614529,14942209,15073281,21889025,24510465,24576002,24838145,25690114,27852802,29360129,29753345,30343169,40632321,40697857,45023233,46137345,47251457],"getmetaobject":[1703937,10158081,41680897,43515905],"getbytes":[1310721,1507329,1638401,2031617,3604481,11468805,11599877,40697857,43646977,44433409,45088769,47710209],"getdynamicmembernames":[1703937,10158081,41680897,43515905]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_104.json b/docs/Reference/fti/FTI_104.json index 666d884a5..598bf95f8 100644 --- a/docs/Reference/fti/FTI_104.json +++ b/docs/Reference/fti/FTI_104.json @@ -1 +1 @@ -{"handled":[9568257,38928385,44695553],"handler":[1441793,1638401,1769473,2097153,5308417,5832705,6225921,31916034,41418754,42139651,42795009,43778050],"hitlines":[34734081,39321605,46989313],"heapsizeviolationpolicy":[35782657,40632325,41353217,46202881],"hierarchical":[6553601,7208961,42729473],"handle":[3407873,5832705,6225921,9568257,12648449,38797313,42467329,46596097,47841281,48300033],"hidden":[48824321],"hosts":[37158913,37879809,38666241,39256065],"hresult":[31129602,35848194,44171270,47251458,49217538],"hierarchy":[39845889,40501249,40960001,41418753,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45744129,45875201,46137345,46202881,46530561,46596097,46989313,47185921,47316993,47382529,47448065,47579137,48037889,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48889857,48955393,49020929,49086465,49217537,49283073,49348609,49414145,49545217,49610753,49741825,49807361],"hostexception":[48824321],"hitline":[131074,786434,1310723,3473411,26148865,39321606,47775750],"hostsettings":[31916033,32768002,33292290,33882114,36372483,40960007],"hash":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4259841,4390913,5046273,5177345,5242881,5570561,5636097,5701633,6291457,7602177,7667713,12648449,21495809,39845889,40501249,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47448065,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48955393,49020929,49086465,49217537,49348609,49414145,49545217,49610753,49741825,49807361],"handling":[9568257],"host":[1441793,1638401,1703940,1769473,2097153,2293768,2883585,3407896,4259853,5046285,5177357,5242893,5308417,5701645,5767171,5832705,6029325,6160387,6225921,6356995,6488077,6553612,6619139,6684680,6750212,6815748,6946818,7012356,7077891,7143430,7208967,7274503,7340039,7405574,7471106,7536643,7602189,7667725,7733253,7798790,7864323,7929862,7995394,8060934,8126466,8192002,8257542,8323078,8388614,8454158,8519686,8585218,8650754,8781826,8847362,8912899,8978433,9043974,9109505,9175046,9240582,9306118,9371652,9437186,9502721,9568264,9633793,9699329,9764867,9830401,9895942,9961473,10027014,10092546,10158081,10354689,10420230,10485768,10616833,10747905,10813441,10944518,11010054,11141121,11206663,11403270,12320769,12451841,12582913,12648478,12910593,13041665,13172739,13369345,13500417,13565953,13697026,13828099,13959169,14024705,14090241,14417922,14548995,14614529,14680065,15335427,16056323,17432581,20381697,20905985,20971521,21495821,21561345,21692424,22282242,23068675,23396353,23658499,24510467,25165827,25231362,25296899,25559042,25624579,25690114,26017794,26083330,26279941,26673155,26738690,27197442,27590664,27787266,28180482,28704772,31129601,31916042,32309249,32440322,32768001,34013189,34471938,34537473,34668545,34996230,35258369,35717125,36438019,36700161,36765697,37027845,38273025,38338561,38404101,38928385,39190530,39649282,39976965,40304644,40697857,41287685,41418754,41746433,41877505,42139650,42336261,42729490,42795010,43778050,44564481,44695553,44892163,45416449,46268419,46596127,46727169,46792706,47185924,47251457,47448082,48168961,48300056,48365570,48627730,48758802,48824325,48955410,49020930,49086483,49283073,49414162,49610770,49676289,49807378],"hidehostexceptions":[48824321],"hostwindow":[35717121,37027841,38404097,39976961,41222149,41287681,42336257,47448065,47841281,48627713,48955393,49414145,49610753,49807361],"hosttypecollection":[196611,2293763,6553611,6619146,7208965,8978434,9109510,9502722,9633794,9699334,9830406,9961474,10158082,10354694,10616834,10747906,10813446,11141122,12648449,25624578,26279943,28704770,29360131,31916033,36438017,42729484,46596097,48431105],"hidedynamicmembers":[40304641],"heapsizelimit":[32243713,39714821,48234497],"holds":[8454145,15007745,15859713],"hasmember":[2228225,5439494,40501249],"heapsizesampleinterval":[35782657,40108037,46202881],"handlers":[48627713,48758785,48955393,49610753],"hostitemflags":[4259854,5046286,5177358,5242894,5701646,7602190,7667726,12451847,12582913,12910599,13041671,13172743,13369345,13500417,13565959,13697031,13828097,13959175,14024705,14090241,14417921,14548993,14614535,14680065,15335425,16056321,20381697,20905985,20971527,21495822,21561351,21692422,22282241,23068679,23658497,24510471,25165831,26411012,26738689,27590660,30408708,31916033,32440321,40304645,47448078,48627726,48758798,48955406,49086478,49414158,49610766,49807374],"hitcount":[131077,1310721,34734081,38600709,46989313,47775745],"hit":[131073,1310721,34734082,38600705,39321602,46989314,47775745],"hosttypeargs":[6029317,6488069],"hands":[40304641],"helplink":[35848193,49217537],"htm":[7274497],"halt":[34013185,34996225,35717121,37027841,38404097,39976961,41287681,42336257,45809665,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"honor":[14942209,17432577,40894465],"hos":[3604481,23789570,26935297,40304641,47841282],"high":[26148865,44630017],"hostfunctions":[3407875,6684674,6881283,6946818,7077890,7274498,7340035,7405570,7471106,7536642,7733251,7798786,7929859,7995394,8060931,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912899,9043970,9175042,9240578,9306114,9371650,9437186,9568258,9895938,10027010,10092546,10420226,10485762,10944514,11010050,11206658,11403266,11927558,12648489,21692417,25231362,25690114,26083330,26607618,26673154,27197442,27787266,28180482,31916033,34471937,35520513,46596142,48300042],"help":[35848193,44761089,49217537],"heap":[4390913,19791875,21430275,21495809,31457285,32243716,34013187,35782659,36896769,37093378,37158917,37683201,37879809,38666241,39256065,39714817,40108034,40239105,40632321,40763393,41353222,44761093,45154305,46071814,46202884,47579141,48234500,48758788],"http":[7274497,9568257],"heapexpansionmultiplier":[31457281,44761093,47579137]} \ No newline at end of file +{"handled":[13369345,47972353,48037889],"handler":[1245185,2818049,3997697,4063233,4653057,4784129,7602177,24903682,39714817,40632322,44302338,45023235],"hitlines":[30736385,36569093,48824321],"heapsizeviolationpolicy":[30146561,37027841,37486597,44040193],"hierarchical":[4587521,5242881,44498945],"handle":[2883585,4784129,7602177,10223617,13369345,38076417,38469633,41615361,42926081,49545217],"hidden":[48889857],"hosts":[43909121,44564481,44892161,45350913],"hresult":[28835842,30212098,30998534,41222146,43122690],"hierarchy":[38928385,38993921,39714817,40501249,40632321,41091073,41222145,41418753,41484289,41615361,41680897,42074113,42139649,42270721,42795009,42860545,42926081,43057153,43253761,43450369,43515905,43581441,43974657,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48824321,49020929,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"hostexception":[48889857],"hitline":[131075,720898,1441794,6946819,23920641,36569094,40960006],"hostsettings":[24903681,32440322,33095682,33816578,42795015,47644675],"hash":[851969,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,917505,3211265,2818049,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,7798785,8060929,8257537,8716289,10158081,10223617,11927553,12386305,15007745,15335425,24707073,34537473,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,42270721,42860545,42926081,43057153,43253761,43515905,43581441,43974657,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48824321,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"handling":[13369345],"host":[1048580,1179649,1245185,2686984,2883614,2818049,3997697,4063233,4259844,4587532,4653057,4784129,4849667,5046285,5111811,5177347,5242887,5308420,5439495,5505028,5570562,5636102,5767174,5832706,5963783,5898243,6160386,6291462,6356994,6488066,6619140,6684674,6750214,6815750,6881286,7208966,7274498,7340038,7405574,7471107,7536646,7602177,7733249,7798797,7864327,7929857,7995394,8060941,8126470,8257549,8323073,8388610,8454145,8585229,8650755,8781825,8847361,8978434,9043974,9175043,9306120,9568262,9699329,9895950,10027014,10223640,11272193,11534337,11730945,11796481,11862022,11927565,11993089,12058625,12124161,12189697,12255233,12320771,12451841,12517377,12582915,12713985,12779523,12910593,13041667,13172739,13369352,13434883,13631494,13893638,13959169,14090245,14614534,14680065,14876674,14942214,15007757,15335437,15728641,16449537,20447233,21364737,23724034,24051714,24182786,24379394,24444929,24510467,24576003,24641539,24707085,24838152,24903690,25034757,25165826,25427969,25690115,25755650,26673154,27590664,27852808,28639234,29753347,30212097,30539782,31260677,31457285,31653889,32440321,32702467,33161219,33357829,34078725,34340865,34406401,34537485,34865153,35586049,36438018,36634629,36765697,37093377,37355521,37683201,38010885,38338561,39124993,39190530,39321601,39714818,39845893,39976962,40042497,40632322,41156610,41353219,41615384,41746433,41811970,42008581,42074113,42401796,42598402,42729475,42926111,42991619,43122689,43450372,43974674,44302338,44498962,44630018,44826628,45023234,45219841,45285379,45744129,46137346,46071809,47054849,47251458,47513618,47972353,48037889,48889861,48955393,49152002,49283074,49348626,49414163,49676306,49807378,49938450,50003986],"hidehostexceptions":[48889857],"hostwindow":[31260673,33357825,34078721,36634625,38010881,38404101,39845889,43974657,49348609,49545217,49676289,49807361,49938433,50003969],"hosttypecollection":[262147,2686979,2883585,4587531,5111818,5242885,7733250,7929858,8323074,8454150,8781826,8847362,9699330,11993094,12517382,13959174,14680070,21364738,24903681,28049411,34865154,42008583,42729473,42926081,44498956,44826626,45285378,47906817],"hidedynamicmembers":[42401793],"heapsizelimit":[31326209,46006277,49086465],"holds":[9895937,11206657,16515073],"hasmember":[1703937,4128774,43515905],"heapsizesampleinterval":[30146561,36831237,44040193],"handlers":[47513601,49676289,49938433,50003969],"hostitemflags":[7798798,8060942,8257550,11534343,11730945,11796487,11927566,12058625,12124167,12189703,12255233,12320769,12451841,12582913,12713991,12779527,12910593,13041665,13172743,13434887,15007758,15335438,15728641,16449537,24444929,24576001,24707086,24903681,25165825,25427975,25493508,25690113,26214404,26673153,27590660,27852806,28639233,29753351,34537486,37355527,38338567,42401797,43974670,46137351,47251457,47513614,49348622,49414158,49676302,49807374,49938446,50003982],"hitcount":[131073,1441797,30736385,35651589,40960001,48824321],"hit":[131073,1441793,30736386,35651585,36569090,40960001,48824322],"hosttypeargs":[5046277,8585221],"hands":[42401793],"helplink":[28835841,41222145],"htm":[5439489],"halt":[30539777,31260673,31457281,33357825,34078721,34144257,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"honor":[25034753,40108033,46792705],"hos":[3276801,23134210,24772609,42401793,49545218],"high":[23920641,37945345],"hostfunctions":[2883625,5439490,5570562,5636098,5767171,5832706,5963779,6094851,6160386,6291458,6356994,6488066,6619138,6684674,6750210,6815746,7077890,7208962,7274498,7340034,7405570,7471106,7536642,7864322,7995394,8126466,8388610,8519686,8978434,9043970,9306114,9568258,9895938,10027010,10223619,11862018,13369346,13631490,13893635,14090243,14614530,14876674,14942210,24051714,24182786,24510466,24641539,24838146,24969218,24903681,25755650,27852801,33751041,36438017,41156610,41353218,41615370,41811970,42926126,44630018],"help":[28835841,40828929,41222145],"heap":[4390913,11927553,17825795,23789571,30146563,30670853,31326212,31457283,36700161,36831234,37027846,37486593,37617665,37748738,38535169,38797313,40828933,43188225,43909125,44040196,44564481,44892161,44957701,45350913,46006273,47513604,49086468,49217542],"http":[5439489,13369345],"heapexpansionmultiplier":[30670849,40828933,44957697]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_105.json b/docs/Reference/fti/FTI_105.json index 92c6a6c1a..9d972ffbb 100644 --- a/docs/Reference/fti/FTI_105.json +++ b/docs/Reference/fti/FTI_105.json @@ -1 +1 @@ -{"importers":[41549825],"implements":[851969,3407881,6946817,7471105,7798785,7995393,8126465,8192001,8257537,8585217,8781825,8847361,9437185,10092545,11730945,12058625,12648457,13107201,13762561,13893633,15204353,15400961,18415617,21692417,25231362,27197442,27787266,28442625,28573697,29163521,30015489,30670849,33554433,34209793,34799617,34865153,37355521,38010881,38535169,39059457,39583745,42860545,43319297,43909121,44433409,46202881,46465025,46596105,48300042,48431105,48496641,49086465,49217537,49283073,49545217],"int32array":[45023233],"inherit":[4128774,40501249,42139649,42532865,42729473,43778049,43843585,44498945,46530561,46596097,47382529,47448065,48037889,48627713,48758785,48955393,49217537,49283073,49348609,49414145,49610753,49741825,49807361],"idisposable":[7798786,15400961,18415617,28442625,46202884,48496644,49086468],"internal":[33882113,36241410,48758785],"interrupt":[4259841,5046273,5177345,5242881,5701633,7602178,7667713,16121861,21037062,21495811,26542086,29753346,34013185,35782657,38928386,44695554,44957697,46202881,47448066,48365571,48627713,48758788,48955393,49086465,49414145,49610753,49807361],"invocable":[6029313,6488065,7143425,13172737,13828097,14548993,15335425,16056321,23068673,23658497,24510465,25165825,39190529,39649281],"ignorecase":[5439494],"inadvertent":[37158913,37879809,38666241,39256065],"interfere":[49676289],"isfatal":[31129601,35848193,36306945,39059463,43909127,44826629,47251457,49217537,49283073],"invocations":[9764865],"idisposablet":[7798786],"instantiate":[7864321,12451841,12582913,13041665,13369345,13500417,14090241,20971521,21561345],"invoke":[2228226,3866627,3932162,4128769,4259841,5046273,5177345,5242881,5701633,6291458,7602177,7667713,8454145,9568258,10551297,10878977,11862017,12255233,16187398,16842758,16908289,21495809,21692417,22872071,29163529,29949955,30015497,30146567,30998531,40501250,45678593,47448065,48627713,48758785,48955393,49086465,49152002,49414145,49545218,49610753,49741827,49807361],"indicates":[1245187,1835011,2162691,2686979,2818051,3080195,3473409,5570561,31129602,35848194,36306946,37421057,38535169,39059457,39780353,40894466,41680897,42532867,43319297,43581441,43843587,43909121,44826625,46530563,47251458,47382531,47775745,48037891,49217538,49283074,49348611],"instances":[17235969,17432577,17629186,17694721,17760258,18087937,18219010,18284545,18677761,18808833,19202049,19398658,19529729,19726337,19857409,19922945,20119553,20512769,20578305,20709377,21233665,21364737,21954561,22151169,22478849,23134209,23330817,23920641,24051713,24903681,30277633,31195137,31916033,32112641,33226753,37224449,39387137,40042497,43253761,43712513,43843586,45088769,48758786],"ienumerable":[2555905,35323910,42663942,46465033,48431112],"invocation":[16187394,16842753,16908290,46268417],"icustomattributeprovider":[4128774],"itypedarray":[2031619,2359299,10682370,11534338,19988482,25427970,30736388,32964611,43974662,45023255,47513602],"icomparable":[8257538],"indicating":[30474241,46465025],"initial":[8454145,38076417,43515905],"interprets":[14221313,14286849,14745601,14876673,14942209,15269889,15532033,15728641,15990785,16384001,16515073,17432577,18153473,18743297,48693249],"inherits":[40501249,42139649,42532865,42598401,42729473,43778049,43843585,43974657,44498945,45023233,46465025,46530561,46596097,47382529,47448065,48037889,48627713,48758785,48955393,49217537,49283073,49348609,49414145,49610753,49741825,49807361],"info":[13893638,15007749,15859717,16252934,19136517,32374786,34144257,37748742,40370181,42008581,44498946,46923781,47316993],"indices":[6946822,7995398,8847366,21692417,31326209,42663937,49741825],"invalidoperationexception":[49217541],"individual":[2228225,3866625,40501249,46530561,46858241,47382529,49741825],"invokewithdirectaccess":[1900546,1966082,2031618,2359298,2424834,10551302,10878982,11862022,12255238,26869763,27328515,41943042,42598402,43974658,45023234,47710210],"int16":[3407873,10944518,12648449,46596097,48300033],"interactive":[37814273,39452673],"iscriptableobject":[2883587,9764866,31916033,46792710,48300036,48431108],"initvalue":[8454151],"iserializable":[13893633],"int16array":[45023233],"interval":[34013186,35782658,37093377,37552129,40108033,44040193,46202882,48758786],"import":[5767170,6029314,6488066,6553601,6684673,6750210,7143425,7208961,7274497,7733249,8323073,8388609,8454145,9043969,9175041,9240577,9306113,9568257,9895937,10027009,10420225,10944513,11010049,11403265,12910593,13565954,13959169,14024705,14614530,14680066,20381697,20905986,31916033,32309249,34013185,34537473,34996225,35258369,35717121,37027841,38404097,39976961,41287681,42336257,46596097,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"includes":[6684673,17432579,21692417,37814273,39452673],"imports":[4259848,5046280,5177352,5242888,5701640,5767170,6029314,6488066,6553602,6619137,6750209,7143425,7208962,7405569,7602184,7667720,12648456,12910593,13565953,13959169,14024705,14614529,14680065,20381697,20905985,21495816,25296899,26411016,36438018,46596104,47448072,47906817,48627720,48758792,48824321,48955400,49086472,49414152,49610760,49807368],"isyncinvoker":[983045,3932163,22872066,23003142,23265285,23461890,23724038,24576006,25100294,25821190,26476550,27394050,27525126,28573697,29163521,29622274,29949954,30015489,30146562,30539781,30670849,31588357,32178182,32833542,33488902,35717121,37027841,38404097,39976961,41287681,42074119,42336257,47448066,48627713,48955393,49152006,49414151,49545221,49610753,49807367],"idataview":[2424835,25427969,32505859,42598406],"immutablevalueattribute":[1835011,11272198,29687811,31916033,43843593],"ipropertybag":[2555907,3407878,7471111,7929857,8781831,9437191,12648454,25231362,27197442,27787266,30474243,31916034,46465030,46596102,48300038,48431109],"interface":[1900545,1966081,2031617,2359297,2424833,2555905,2883585,3604481,3932161,4849665,7929857,9764865,10223617,10289153,10551297,10682369,10878977,11075585,11337729,11534337,11665409,11862017,12124161,12255233,13697025,14417921,19988481,22872065,23461889,23789569,24248321,25427969,26869761,26935298,27328513,27394049,29622273,29949953,30146561,30474241,30736385,31129601,31522817,31850497,31916033,32505857,32964609,34340865,35717121,37027841,38338561,38404097,38797313,39976961,40697857,41222145,41287681,41943045,42336257,42467329,42532868,42598406,43122689,43581441,43974662,44171265,44564481,44826625,45023240,45285377,45416449,45613057,45940737,46202881,46333953,46465035,46530564,46661633,46792709,47054849,47251461,47382532,47448065,47513601,47710213,47841286,48037892,48103429,48300033,48431111,48496641,48627713,48955393,49086465,49152005,49217537,49283073,49414145,49545217,49610753,49807361],"intended":[2228228,3866628,17432577,33882113,37814273,39452673,40501252,49741828],"ihostwindow":[3604483,23789570,26935297,38797315,41222151,42467330,47841286],"importable":[44892161],"ignores":[7536641],"ignored":[7536641,47906817,48824324,49676290],"index":[2228228,2555905,3866628,10289153,11075585,11337729,11534343,12124161,16646150,17891334,19005446,19988487,21692417,34013185,34996225,35717121,37027841,38404097,39976961,40501252,41287681,41615367,42336257,46465025,47448065,47972353,48627713,48758785,48955393,49086465,49414145,49610753,49741828,49807361],"iwindowsscriptobject":[4849667,24248322,26935297,48103430],"introduced":[47972353],"instance":[262145,327682,589825,720897,655361,917505,983046,1048577,1114113,1179649,1245189,1376257,1441793,1507329,1572865,1638401,1769473,1835013,2097153,2162693,2228226,2293761,2490369,2686981,2621441,2752513,2818053,2949121,3080197,3145729,3211273,3276801,3342337,3407885,3473412,3538945,3670017,3735553,3801089,3866626,3997697,4194305,4259841,4390919,4456449,4718593,4980737,5046273,5177345,5242881,5373953,5570564,5636097,5701633,5767170,5898241,5963777,6029313,6094849,6160386,6291457,6356994,6422529,6488065,6619137,6553601,6684673,6815746,7012354,7208961,7274497,7340033,7405570,7602177,7667713,7733249,7798785,7864322,7929857,8060929,8257537,8323074,8388610,8454145,8519681,9043970,9175042,9240578,9306114,9568257,9895938,10027010,10420226,10485761,10944514,11010050,11206657,11272193,11403266,11468801,11599875,11927553,12189699,12517379,12648461,12976131,13434883,14352387,14483457,15073283,15138818,15466497,15597570,15794177,15925251,16449537,16711683,16973825,17039361,17104897,17170433,17498113,17563649,17629187,17760260,17825793,17956865,18219011,18350081,18612225,18677764,19070978,19136513,19398660,19464194,20054019,20185090,20316161,20447233,20840449,21168130,21495809,21626883,21823490,22020098,22085635,22216706,22413315,22478851,22609922,22675459,22806531,22937601,23003139,23199747,23265283,23527425,23592963,23724035,23855106,24117250,24379394,24576002,24707074,25034754,25100290,25821187,25952257,26148868,26214401,26476547,26935299,27000833,27394050,27525123,27656194,27721734,27918339,28114946,28377090,28508172,28770306,28901378,28966920,29294594,29425666,29556748,29818881,29884417,30343170,30539781,30605320,31129601,31588357,31719426,32178178,32636933,32833538,33161221,33488899,33947649,34013186,34340865,34865153,34996225,35717121,35782657,35848194,36306945,36503553,37027841,37355521,38404097,38928385,39649284,39845889,39976961,40501251,41287681,41418753,41680900,42139649,42270721,42336257,42532871,42729473,42795009,42991618,43450369,43778049,43843590,44498946,44695553,45219843,45350914,45481986,45744137,45875201,46202901,46530567,46596110,46989313,47251457,47316994,47382534,47448067,47579138,47775748,47906817,48037894,48234497,48300048,48431105,48496641,48627721,48693251,48758801,48824321,48955401,49020931,49086468,49217540,49283074,49348621,49414152,49545219,49610756,49676290,49741826,49807368],"including":[17432577],"interrupted":[31916033,38928386,44695554,49283073],"invokes":[1900546,1966082,2031618,2359298,2424834,3407876,3866626,3932162,4259841,5046273,5177345,5242881,5701633,6291458,6684674,6881282,7602177,7667713,7733250,8060930,9568257,10551298,10878978,11862018,12255234,12648451,13631490,16187393,16842753,16908289,21495809,21889026,22872065,25362434,26607618,26869762,27328514,29163522,29949954,30015490,30146561,30998530,36700161,41943042,42598402,43974658,45023234,45809665,46596099,47448065,47710210,48300036,48627713,48758785,48955393,49020929,49086465,49152002,49414145,49545218,49610753,49741826,49807361],"invoker":[23003137,23265281,23724033,26476545,27525121,30539778,31588354,47448065,49414146,49807362],"invoked":[3407878,4653057,4784129,5111809,5505025,7077889,7405569,7536641,9371649,9568257,10485761,11206657,12648454,15204353,16842753,25690114,26673154,28180482,32309249,34537473,46596102,48300038,48758785],"int8array":[45023233],"imported":[5767169,6029314,6488066,6619138,6750209,7143426,7208961,47644673],"inference":[21692417],"iarraybufferview":[1966083,2031621,2359301,2424837,10223618,10289154,10878978,11075586,11862018,25427969,26869762,30736387,31850499,32505859,32964611,41943046,42598412,43974668,45023244,45940738,46333954,46661634],"inherited":[196609,393217,1114118,1179654,1245192,1376262,1441798,1507334,1572870,1638406,1769479,1835016,2031621,2097158,2162696,2228244,2293773,2359301,2424837,2490374,2555914,2621446,2686984,2752517,2818056,2949126,3080200,3145734,3276806,3342342,3407878,3473414,3538950,3670021,3735558,3801094,3866644,4259845,4390918,5046329,5177401,5242937,5570566,5636101,5701689,6291462,7602228,7667770,12648495,21495859,29360132,29687809,30474245,30736388,30932994,31653890,31784961,31981570,32047105,32505859,32964611,33685505,34013202,35717142,35848200,36962305,37027862,37617668,38141956,38404115,39845894,39976983,40501268,41287703,41418758,41680902,42139655,42336279,42532873,42598408,42729490,42795014,42991622,43450374,43778054,43843593,43974664,44498950,45023241,45219845,45350918,45481990,45875206,46202886,46465039,46530569,46596143,46989318,47316998,47382538,47448135,47579142,47775750,48037898,48234502,48300038,48431110,48496646,48627792,48693253,48758853,48955472,49020933,49086469,49217551,49348618,49414223,49545222,49610833,49741844,49807439],"include":[4128769,7274497,17432577],"increment":[2228225,3866625,40501249,49741825],"intptr":[1900546,1966082,2031618,2359298,2424834,10551302,10878982,11862022,12255238,26869762,27328514,41943042,42467334,42598402,43974658,45023234,47710210],"iscomparable":[8257537],"initialize":[2228225,3866625,9699329,9830401,10354689,10813441,40501249,49741825],"innerexception":[12779525,16777221,31129601,35848193,44564485,47251457,49217537],"icollection":[2555914,30474246,33554439,34209799,46465044,48431108],"idispatchex":[49676289],"ilist":[21692417],"iequalitycomparer":[12845062,13303814,29491202,34078726,48431106],"inspector":[20250626,20643841],"implementers":[2228225,3866625,9764865,40501249,49741825],"indentation":[37814273,39452673],"iscriptengineexception":[31129603,31916033,34340866,34865153,37355521,38010881,38535169,39059457,39583745,42860545,43122690,43319297,43581442,43909121,44171266,44433409,44564482,44826626,45285378,45613058,47251462,49217540,49283076],"indexing":[2228225,3866625,6946817,7995393,8847361,40501249,49741825],"implementation":[2228236,3866636,4128769,26935297,27394050,28573697,29163521,30015489,30670849,31916037,32309249,34537473,35717121,36503553,37027841,38404097,39976961,40501260,41287681,41418753,42074113,42336257,42795009,44498945,44892161,47448067,48431105,48627713,48955393,49086465,49414146,49545217,49610754,49741836,49807362],"intvalue":[8519681],"invoking":[2228225,3866625,6881281,17432577,21692417,34996225,40501249,46268419,49086465,49741825],"involvement":[40304641],"information":[4259842,4390916,5046274,5177346,5242882,5373953,5701634,6029313,6094849,6160385,6356993,6488065,6815745,6881281,7012353,7143425,7340033,7405569,7602178,7667714,8912897,9371649,11599873,12189697,12451841,12517377,12582913,12910593,12976129,13041665,13172737,13369345,13434881,13500417,13565953,13697025,13828097,13959169,14024705,14090241,14221315,14286849,14352385,14417921,14548993,14614529,14680065,14876673,15007745,15073281,15335425,15728641,15859713,15925249,16056321,16384001,16711681,17694722,18153473,18743298,19136513,19333122,19529730,20381697,20905985,20971521,21495813,21561345,22282241,22740993,23068673,23658497,24444930,24510465,24838145,25165825,25886722,26148865,27262977,28246017,30081027,31260674,31916034,32309250,32374785,32702465,33226754,34144257,34537474,35520513,35651586,35848193,37617665,37748737,38141953,40173569,40370179,41353217,41680897,42008578,44498945,46071809,46202884,46923777,47316993,47448066,48234497,48496641,48627714,48758789,48955394,49086466,49217537,49414146,49479681,49610754,49807362],"inside":[2228225,3866625,40501249,49741825],"invokemethod":[3866625,16908293,49741825],"isreadonly":[12320773,12845061,30474241,46465025],"int32":[3407877,3866627,4390914,6488065,6684673,6750209,6881283,7340035,7405569,7733251,8060930,8323078,8519681,8912899,12648451,16646146,17432577,17760258,17891330,18219010,19005442,19070978,20054018,20185090,20840450,22609922,23592962,24707074,26083330,26607618,27131905,27459585,27721730,27918338,28049409,28311553,28508164,29556740,31326209,37158913,37879809,38666241,39256065,41615362,42663937,44171265,46202886,46596099,48300037,48758788,49741828],"interchangeable":[8454145],"inotifypropertychanged":[851969,48431108],"interfaces":[14942209,15138817,15532033,15597569,17432577,17760257,18153473,18677761,19070977,19398657,20054017,20709377,21102593,21168129,21233665,21626881,21757953,21954561,22085633,22413313,22544385,22675457,22806529,23003137,23199745,23265281,23592961,23724033,23855105,24379393,25034753,25427969,25821185,26476545,26935297,27394049,27525121,27656193,27918337,28377089,28770305,29425665,30343169,31916033,33488897,45023233,46530561,47382529],"items":[2555905,40304641,46465025],"integers":[6553601,6684673,7208961,7340033,8912897,48824322],"increases":[44761089],"infrastructure":[2228225,3866625,40501249,49741825],"icomparablet":[8257538],"identical":[18284545,18808833,19857409,20774913,21233665,21364737,22544385,23134209,24838145,24903681,31195137,33226753],"indexers":[21692418],"identify":[6946817,7995393,8847361],"insensitive":[5439489,48824321],"int32t":[6488066,6684674,8519682],"initializes":[3997697,4063233,4194305,4325377,4456449,4718593,4980737,5898241,5963777,6422529,9109505,9699329,9830401,10354689,10813441,11272193,11468801,11796481,11927553,11993089,12320769,12779521,12845057,13303809,14483457,15007745,15138817,15466497,15597569,15794177,15859713,16318465,16449537,16777217,16973825,17039361,17104897,17170433,17498113,17563649,17825793,17956865,18350081,18612225,19070977,19136513,19464193,20054017,20185089,20316161,20447233,20840449,21168129,21626881,21823489,22020097,22085633,22216705,22413313,22609921,22675457,22806529,22937601,23003137,23199745,23265281,23527425,23592961,23724033,23855105,24117249,24379393,24576001,24707073,25034753,25100289,25821185,26214401,26279941,26476545,27000833,27525121,27656193,27918337,28114945,28377089,28508172,28770305,28901378,29294594,29425665,29491204,29556748,29818884,29884420,30343169,30539781,30605320,31588357,31719426,32178177,32636933,32833537,33161221,33488897,35389442,40501249,41680898,42532866,42729477,42991617,43843585,44498945,45350913,45481985,46202892,46530562,46596097,47316993,47382529,47448065,47579137,48037889,48300033,48431108,48627717,48758796,48955397,49086466,49217540,49283076,49348616,49414149,49610753,49807365],"iconvertible":[8323077,8388613,9043973,9175045,9240581,9306117,9895941,10027013,10420229,10944517,11010053,11403269],"int64":[786434,3407873,9306118,12648449,37421058,39780354,41025538,46596097,48300033],"initonly":[720897,655361,917505,983041],"instantiation":[3407873,7405569,7929857,8650756,9371650,12648449,26673153,35586049,36831233,46596097,48300033,48627713,48955393,49610753],"istypeobj":[3407874,7077895,7536647,12648450,25690115,46596098,48300034],"int":[6750211,6881283,7340035,7733251,8060931,8912899,16646147,17760259,17891331,18219011,19005443,19070979,20054019,20185091,20840451,22609923,23592963,24707075,27918339,37158917,37552131,37879813,38076419,38666245,39256069,41615364,42663940,43515907,44040195,44171268,45023233],"implemented":[29687809,30932993,31653889,31784961,31981569,33685505,42532865,43843585,45023233,46530561,47382529,48037889,49348609],"idictionary":[2555911,11730945,12058625,13107201,13762561,30474245,33554433,34209793,34799617,40370181,46465040,48431108],"iarraybuffer":[1900547,10551298,11337730,11665410,12124162,12255234,25427969,27328514,31522819,45940742,47054850,47710214],"instead":[15138820,21692417,35520513,39256068,40828932,49479681],"idynamicmetaobjectprovider":[3407882,6946822,7995398,8126471,8192007,8585222,8650758,8847366,10092551,12648458,25231362,26673153,27197442,27787266,40304641,46596106,48300042],"ievent":[851970],"integer":[6750209,6881281,7340033,7733249,8060929,8519681,8912897,16646145,17760257,17891329,18219009,19005441,19070977,20054017,20185089,20840449,22609921,23592961,24707073,27918337,37158913,37879809,38666241,39256065,41615361,42663937,44171265],"inheritance":[39845889,40501249,40960001,41418753,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45744129,45875201,46137345,46202881,46530561,46596097,46989313,47185921,47316993,47382529,47448065,47579137,48037889,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48889857,48955393,49020929,49086465,49217537,49283073,49348609,49414145,49545217,49610753,49741825,49807361],"immutable":[31916033,43843585],"identifier":[4259856,4653063,4784135,5046288,5111815,5177360,5242896,5505031,5701648,5767170,7602192,7667728,7864322,12451843,12582915,12910595,13041667,13369347,13500418,13565955,13959170,14024706,14090242,14614530,14680066,20381699,20905987,20971522,21495824,21561346,23265282,23724035,25034755,26411016,27525123,29425667,29687809,30343170,30408712,30539777,30932993,31588353,31653889,31784961,31981569,32636929,33161217,33685505,34734082,40435713,41025537,42532865,43843585,46530561,46989314,47382529,47448080,48037889,48627729,48758800,48955409,49086480,49348609,49414161,49610768,49807377],"introduce":[48824321],"istype":[3407873,8257542,12648449,46596097,48300033],"indexer":[21692417],"indexed":[3866627,16646145,17891329,19005441,27131905,27459585,28049409,28311553,31326209,41615361,47972353,49741828],"instantiating":[38862849,41549825],"isnull":[3407873,8716293,12648449,35520514,46596097,48300033,49479681],"interrupts":[4259841,5046273,5177345,5242881,5701633,7602177,7667713,16121857,21037057,21495809,26542081,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"iterates":[2555905,46465025],"implement":[21692417,40304641,46465025],"ireadonlylist":[36634630,39321606,42401798],"issues":[44302337],"initializing":[26148866,26935297,47906817,48824321,49676289],"itemname":[12451845,12582917,12910597,13041669,13172741,13369349,13500421,13565957,13697029,13828101,13959173,14024709,14090245,14417925,14548997,14614533,14680069,15335429,20381701,20905989,20971525,21561349,21692421,22282245,24510469,25165829],"isdefaultattribute":[1245185,1835009,2162689,2686977,2818049,3080193,42532865,43843585,46530561,47382529,48037889,49348609],"immediate":[35848193,49217537],"item":[2555905,7929859,12451841,12582913,12910593,13041665,13172737,13369345,13500417,13565953,13697025,13828097,13959169,14024705,14090241,14417921,14548993,14614529,14680065,15335425,16056321,20381697,20905985,20971521,21561345,21692418,22282241,23068673,23658497,24510465,25165825,28049411,29360129,30474241,31326210,32571393,34799621,41615364,42205188,42729473,46465026,48431105,48824321,49741826],"istransient":[40894465]} \ No newline at end of file +{"importers":[37224449],"implements":[786433,2883593,5570561,5636097,6160385,6291457,6356993,6488065,6684673,7274497,7995393,8388609,8978433,10223625,10420225,10551297,11075585,13565953,14876673,17367041,20971521,21889025,22413313,23199745,23592961,24051714,25755650,27852801,30605313,31981569,32047105,32571393,33226753,33882113,34275329,35061761,35848193,41091073,41222145,41615370,41811970,42074113,42336257,42926089,43712513,44040193,44171265,44695553,45875201,47841281,47906817,48300033,48365569,49414145,49872897],"int32array":[40697857],"inherit":[4194310,40501249,40632321,41222145,41680897,42074113,42860545,42926081,43057153,43253761,43515905,43581441,43974657,44105729,44367873,44498945,45023233,47513601,49348609,49676289,49807361,49938433,50003969],"idisposable":[6291458,17367041,23199745,41091076,44040196,45875201,49414148],"internal":[33816577,34668546,47513601],"interrupt":[7798785,8060929,8257537,11927555,14221317,15007745,15335425,19267586,23068678,23527430,24707073,30146561,31457281,34537474,38600705,43974657,44040193,47513604,47972354,48037890,49152003,49348610,49414145,49676289,49807361,49938433,50003969],"invocable":[5046273,6881281,8585217,12320769,12582913,12779521,13041665,13172737,13434881,24576001,25690113,29753345,39190529,39976961],"ignorecase":[4128774],"inadvertent":[43909121,44564481,44892161,45350913],"interfere":[41746433],"isfatal":[28835841,29556737,30212097,32309253,33882119,35061767,41222145,42074113,43122689],"invocations":[9175041],"idisposablet":[6291458],"instantiate":[5898241,11534337,11730945,11796481,12058625,12451841,24444929,37355521,38338561],"invoke":[1703938,2752514,4194305,5701634,7798785,8060929,8257537,8912897,9109505,9895937,9961473,10158083,11927553,13369346,15007745,15073281,15335425,15925254,15990790,16842753,20971529,21889033,24707073,27525123,27852801,28966915,29884423,30343175,33423361,34537473,41680899,43515906,43974657,47513601,49348609,49479682,49414145,49676289,49807361,49872898,49938433,50003969],"indicates":[983043,1376259,1769475,3014657,3211267,3801091,4325379,6946817,28835842,29556738,30212098,32309249,33226753,33882113,34275329,35061761,35454977,35717121,35979265,40108034,40501251,40894465,40960001,41222146,42074114,42860547,43057155,43122690,43253763,44105731,44367875],"instances":[16187393,16384001,16711681,16777217,16908289,16973825,17039361,17104897,17235969,17301505,17563650,17694721,17760258,17956865,17891329,18022401,18415618,18546689,18612226,18939905,19005441,19136513,19202049,19333121,19398657,19529729,19726337,19988481,20119553,20250625,20578305,21626881,22740993,24903681,25034753,37158913,37879809,38666241,40501250,41025537,43384833,47513602,48496641],"ienumerable":[1900545,34996230,39649286,42336265,47906824],"invocation":[15925250,15990785,16842754,33161217],"icustomattributeprovider":[4194310],"itypedarray":[1638403,3604483,9830402,10747906,11665410,25624578,28704771,29360132,32112642,40697879,47710214],"icomparable":[5636098],"indicating":[29818881,42336257],"initial":[9895937,30867457,35782657],"interprets":[12976129,13303809,13500417,13697025,13828097,14024705,25034753,26083329,27656193,37289985,38141953,38862849,46792705,47579137,49741825],"inherits":[40501249,40632321,40697857,41222145,41680897,42074113,42336257,42860545,42926081,43057153,43253761,43515905,43581441,43974657,44105729,44367873,44498945,45023233,45088769,47513601,47710209,49348609,49676289,49807361,49938433,50003969],"info":[10551302,11206661,14548998,15532037,16515077,27131905,29491202,31784965,39059461,39583749,41287686,43581442,45154305],"indices":[6488070,8978438,14876678,27852801,30277633,34996225,41680897],"invalidoperationexception":[41222149],"individual":[1703937,10158081,33947649,41680897,43057153,43515905,44367873],"invokewithdirectaccess":[1310722,1507330,1638402,2031618,3604482,8912902,9109510,9961478,15073286,40697858,42467331,42663939,43646978,44433410,45088770,47710210],"int16":[2883585,6815750,10223617,41615361,42926081],"interactive":[33619969,48627713],"iscriptableobject":[1179651,9175042,24903681,41615364,42598406,47906820],"initvalue":[9895943],"iserializable":[10551297],"int16array":[40697857],"interval":[30146562,31457282,36831233,37748737,44040194,46333953,47185921,47513602],"import":[4259842,4587521,5046274,5242881,5439489,6750209,6815745,6881281,7208961,7340033,7536641,8126465,8585218,8650754,9306113,9568257,9895937,10027009,11862017,12124162,12189698,12255234,12713985,12910593,13369345,13631489,14090241,14614529,14942209,15728642,16449537,24903681,25427969,30539777,31260673,31457281,33357825,34078721,36634625,36765697,38010881,39845889,40042497,42926081,43974657,45744129,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"includes":[9306113,25034755,27852801,33619969,48627713],"imports":[2883592,4259841,4587522,5046274,5111809,5242882,6881281,7798792,8060936,8257544,8585218,8650754,9043969,11927560,12124161,12189697,12255233,12713985,12910593,15007752,15335432,15728641,16449537,24707080,25427969,26214408,34537480,42729474,42926088,42991619,43974664,45547521,47513608,48889857,49348616,49414152,49676296,49807368,49938440,50003976],"isyncinvoker":[2228229,2752515,20709378,20905990,20971521,21299206,21692422,21889025,22020102,22216710,22413313,22478854,22675462,22806534,22937606,23592961,23658502,25231362,26935301,27525122,28377093,28901378,29884418,30343170,31260673,33357825,34078721,36634625,38010881,39518215,39911429,39845889,43974663,49348610,49479686,49676289,49807367,49872901,49938433,50003969],"idataview":[1507331,25624577,28180483,45088774],"immutablevalueattribute":[1376259,9502726,24903681,28508163,40501257],"ipropertybag":[1900547,2883590,5570567,5767169,6356999,6684679,10223622,24051714,24903682,25755650,29818883,41615366,41811970,42336262,42926086,47906821],"interface":[1179649,1310721,1507329,1638401,1900545,2031617,2752513,3276801,3604481,3735553,5767169,8912897,9109505,9175041,9830401,9961473,10289153,10485761,10747905,11010049,11141121,11468801,11599873,11665409,15073281,20709377,23134209,23855105,24772610,24903681,25231361,25624577,27525121,28114945,28180481,28704769,28901377,29360129,29818881,29884417,30212097,30343169,30408705,30998529,31260673,31391745,31522817,31653889,32112641,32178177,32309249,32636929,32768001,33292289,33357825,34078721,34340865,34471937,35192833,35979265,36634625,37683201,38010881,38076417,38404097,38469633,39845889,40697864,41091073,41222145,41615361,42074113,42336267,42467329,42598405,42663937,42860548,43057156,43122693,43646981,43974657,44040193,44105732,44367876,44433413,45088774,46137345,47251457,47710214,47906823,48955393,49348609,49414145,49479685,49545222,49610757,49676289,49807361,49872897,49938433,50003969],"intended":[1703940,10158084,25034753,33619969,33816577,41680900,43515908,48627713],"ihostwindow":[3276803,23134210,24772609,38076418,38404103,38469635,49545222],"importable":[32702465],"ignores":[24510465],"ignored":[24510465,41746434,45547521,48889860],"index":[1703940,1900545,10158084,10289153,10485761,10747911,11010049,11141121,11665415,17498118,27852801,30539777,31260673,31457281,33357825,33554433,34078721,36306951,36634625,38010881,39845889,41680900,42336257,43515908,43974657,46858246,47513601,48168966,49348609,49414145,49676289,49807361,49938433,50003969],"iwindowsscriptobject":[3735555,23855106,24772609,49610758],"introduced":[33554433],"instance":[65537,196609,327682,458753,524289,851969,983045,1114113,1245185,1376261,1703938,1769477,1835009,1966081,2097153,2228230,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014660,3080201,2949121,3211269,917505,2818049,2883597,3342337,3473409,3538945,3801093,3866625,4063233,4325381,4390919,4456449,4587521,4653057,4849666,4915201,5046273,5111809,5177346,5242881,5308418,5373953,5439489,5505026,5636097,5701633,5767169,5898242,5963777,6029313,6225921,6291457,6422529,6750210,6815746,6946820,7143425,7208962,7340034,7405569,7536642,7667713,7798785,7864321,8060929,8126466,8192001,8257537,8519681,8650754,8585217,8716289,9043970,9306113,9371651,9437187,9502721,9568258,9633795,9764867,9895937,10027010,10092547,10158082,10223629,10354691,10616835,10813441,11862018,11927553,12386305,12648451,13107203,13369345,13631490,13893633,14090241,14286849,14483457,14614530,14745601,14811137,14942210,15007745,15204353,15269889,15335425,15466497,15532033,15597569,15794177,15859713,16646146,16973827,17432578,17563652,17629186,17760259,18153474,18219010,18284546,18415620,18481153,18612227,18808835,18874370,19070978,19202052,19595265,19922946,20054017,20381699,20643842,20774915,20840451,20905987,21037058,21233666,21299202,21692419,21757955,22020098,22216706,22478851,22544387,22675459,22806531,22937602,23003137,23265281,23658499,23920644,23986178,24707073,24772611,24838145,25231362,25296897,25559041,25821185,26476545,26804226,26869772,26935301,27066373,27328514,27721733,28246017,28377093,28573702,28835842,29163528,29556737,29622284,30146561,30212097,30539777,30801921,31260673,31457282,31588353,31981569,32243714,32899074,33030145,33357825,33685505,34013186,34078721,34471937,34537473,35389442,36241410,36634625,38010881,38928385,38993922,39387138,39452674,39714817,39911427,39845889,39976964,40239106,40501254,40566785,40632321,40894468,40960004,41091073,41222148,41418753,41484297,41615376,41680898,41746434,42074114,42270722,42860551,42926094,43057158,43122689,43253773,43319304,43515907,43581442,43974664,44040213,44105734,44236803,44302337,44367879,44498945,44957698,45023233,45154306,45416449,45547521,45613058,45940737,46202882,46399491,46530563,46661633,47448067,47513617,47841281,47906817,47972353,48037889,48824321,48889857,49086465,49283075,49348611,49414148,49676297,49741827,49807368,49872899,49938441,50003972],"including":[25034753],"interrupted":[24903681,42074113,47972354,48037890],"invokes":[1310722,1507330,1638402,2031618,2752514,2883587,3604482,5701634,6094850,7798785,8060929,8257537,8912898,9109506,9306114,9961474,10158082,10223620,11927553,13238274,13369345,13893634,14090242,15007745,15073282,15335425,15925249,15990785,16842753,20971522,21889026,22085634,22872066,24707073,24969218,27525122,28966914,29884417,30343169,34144257,34537473,40697858,41615364,41680898,42467330,42663938,42926083,43646978,43974657,44433410,45088770,47054849,47513601,47710210,49283073,49348609,49479682,49414145,49676289,49807361,49872898,49938433,50003969],"invoker":[21692417,22478849,22806529,23658497,26935298,28377090,39911425,43974658,49348609,49807362],"invoked":[2883590,3670017,4718593,4980737,6619137,7012353,7471105,7864321,9043969,10223622,13369345,15990785,24182786,24510465,24838145,36765697,40042497,41353218,41615366,42926086,44630018,47513601,48300033],"int8array":[40697857],"imported":[4259841,5046274,5111810,5242881,6881282,8585218,8650753,48103425],"inference":[27852801],"iarraybufferview":[1507333,1638405,2031619,3604485,8912898,9961474,10485762,11141122,11468802,25624577,28180483,28704771,29360131,30408707,32178178,32636930,33292290,40697868,42467330,44433414,45088780,47710220],"inherited":[262145,655361,851974,917510,983048,1114118,1245190,1376264,1507333,1638405,1703956,1769480,1900554,1966086,2097158,2293766,2359302,2424838,2490374,2555910,2686989,2621446,3145734,3014662,2949126,3211272,2818054,2883631,3604485,3801096,4063238,4325384,4390918,4653063,5701638,6225926,6422533,6946822,7798842,8060985,8257541,8716293,10158100,10223622,11927603,12386309,15007801,15335481,24707129,26411012,27197444,27459585,28049412,28180483,28311554,28442625,28508161,28704771,28835848,29032450,29097985,29229057,29360132,29818885,29949954,31260696,31457299,33357847,34078744,34537524,36634647,38010900,38928390,38993926,39714822,39845912,40501257,40632326,40697865,40894470,40960006,41091078,41222159,41418758,41615366,41680916,42270726,42336271,42860553,42926127,43057162,43253770,43515924,43581446,43974736,44040198,44105738,44236805,44302342,44367881,44498962,44957702,45023239,45088776,45154310,45416454,46202886,47513670,47710216,47906822,48824326,49086470,49283077,49348680,49414149,49676369,49741829,49807440,49872902,49938513,50004050],"include":[4194305,5439489,25034753,34603009],"increment":[1703937,10158081,41680897,43515905],"intptr":[1310722,1507330,1638402,2031618,3604482,8912902,9109510,9961478,15073286,38076422,40697858,42467330,42663938,43646978,44433410,45088770,47710210],"iscomparable":[5636097],"initialize":[1703937,8454145,10158081,12517377,13959169,14680065,41680897,43515905],"innerexception":[11337733,19660805,28835841,30212097,31653893,41222145,43122689],"icollection":[1900554,29818886,42336276,44171271,44695559,47906820],"idispatchex":[41746433],"ilist":[27852801],"iequalitycomparer":[13762566,14155782,25100290,34209798,47906818],"inspector":[15400962,15663105],"implementers":[1703937,9175041,10158081,41680897,43515905],"indentation":[33619969,48627713],"iscriptengineexception":[24903681,30212099,30998530,31391746,31653890,31981569,32047105,32309250,32571393,32768002,33226753,33882113,34275329,34471938,35061761,35192834,35848193,35979266,41222148,42074116,43122694,47841281,48365569],"indexing":[1703937,6488065,8978433,10158081,14876673,41680897,43515905],"implementation":[1703948,4194305,10158092,20971521,21889025,22413313,23592961,24772609,24903685,25231362,31260673,32702465,33357825,34078721,36634625,36765697,38010881,39518209,39714817,39845889,40042497,40566785,41680908,43515916,43581441,43974658,44302337,47906817,49348611,49414145,49676289,49807362,49872897,49938433,50003970],"intvalue":[7405569],"invoking":[1703937,6094849,10158081,25034753,27852801,30539777,33161219,41680897,43515905,49414145],"involvement":[42401793],"information":[3866625,4390916,4849665,4915201,5046273,5177345,5308417,5505025,5963777,6094849,6619137,6881281,7798786,8060930,8257538,8585217,9043969,9371649,9437185,9633793,9764865,10092545,10354689,10616833,11206657,11534337,11730945,11796481,11927557,12058625,12124161,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12910593,12976129,13041665,13107201,13172737,13303809,13434881,13500417,13828098,14024707,15007746,15335426,15532033,15728641,16449537,16515073,16777218,17170434,17301506,18546690,18743298,19857409,21495809,21823490,22347778,23920641,24444929,24576001,24641537,24707074,24903682,25427969,25690113,25886721,26083329,26411009,26607617,26738691,27131905,27197441,27656193,27787266,28639233,28835841,29491201,29687809,29753345,31784961,33751041,34537474,36765698,37027841,37355521,38338561,39059458,39583747,40042498,40370177,40894465,41091073,41222145,41287681,43581441,43778049,43974658,44040196,45154305,46137345,47251457,47513605,49086465,49217537,49348610,49414146,49676290,49807362,49938434,50003970],"inside":[1703937,10158081,41680897,43515905],"invokemethod":[10158081,16842757,41680897],"isreadonly":[11272197,13762565,29818881,42336257],"int32":[2883587,4259841,4390914,5046273,5963779,6094851,7208966,7405569,9043969,9306113,10158083,10223621,13893634,14090243,17498114,18284546,18415618,18612226,18874370,20054018,20381698,20643842,22544386,24641539,24969218,25034753,26017793,26148865,26279937,26542081,26869764,28573698,29622276,30277633,30998529,34996225,36306946,41156610,41615365,41680900,42926083,43909121,44040198,44564481,44892161,45350913,45613058,46858242,47448066,47513604,48168962],"interchangeable":[9895937],"inotifypropertychanged":[786433,47906820],"interfaces":[16646145,17432577,17563649,17629185,17956865,18219009,18284545,18415617,18808833,19005441,19202049,19988481,20185089,20381697,20774913,20840449,20905985,21168129,21692417,21757953,22151169,22478849,22544385,22675457,22806529,23658497,23986177,24772609,24903681,25034753,25231361,25624577,26083329,32243713,32899073,34013185,35389441,39452673,39911425,40239105,40697857,43057153,44367873,46399489,46530561,46792705,47448065,47579137],"items":[1900545,42336257,42401793],"integers":[4587521,5242881,5963777,9306113,24641537,48889858],"increases":[40828929],"infrastructure":[1703937,10158081,41680897,43515905],"icomparablet":[5636098],"identical":[17039361,17104897,17301505,17694721,19005441,19333121,19529729,20119553,20185089,20512769,21495809,21626881],"indexers":[27852802],"identify":[6488065,8978433,14876673],"insensitive":[4128769,48889857],"int32t":[5046274,7405570,9306114],"initializes":[3407873,3473409,3538945,4456449,4521985,5373953,6029313,7143425,7667713,8192001,8454145,8519681,9502721,10682369,10813441,10878977,11206657,11272193,11337729,11993089,12517377,13762561,13959169,14155777,14286849,14352385,14483457,14680065,14745601,14811137,15204353,15269889,15466497,15532033,15597569,15794177,15859713,16515073,16646145,17432577,17629185,18153473,18219009,18284545,18481153,18808833,18874369,19070977,19595265,19660801,19922945,20054017,20381697,20643841,20774913,20840449,20905985,21037057,21233665,21299201,21692417,21757953,22020097,22216705,22478849,22544385,22675457,22806529,22937601,23265281,23658497,23986177,25100292,25296897,25559044,25821185,26476545,26804226,26869772,26935301,27066373,27328514,27721733,28246020,28377093,29163528,29622284,30801921,31588353,32243713,32899073,33030145,34013185,35389441,36241410,38993921,39387137,39452673,39911425,40239105,40501249,40894466,41222148,41615361,42008581,42074116,42205186,42270721,42860546,42926081,43057153,43253768,43515905,43581441,43974661,44040204,44105729,44367874,44498949,44957697,45154305,45613057,45940737,46202881,46399489,46530561,47448065,47513612,47906820,49348609,49414146,49676293,49807365,49938437,50003969],"iconvertible":[6750213,6815749,7208965,7340037,7536645,8126469,9568261,10027013,11862021,13631493,14614533,14942213],"int64":[720898,2883585,10223617,14942214,35454978,35717122,36110338,41615361,42926081],"initonly":[524289,1835009,2228225,3342337],"instantiation":[2883585,5767169,5832708,6619138,9043969,10223617,30474241,31850497,41353217,41615361,42926081,49676289,49938433,50003969],"istypeobj":[2883586,7471111,10223618,24182787,24510471,41615362,42926082],"int":[4259843,5963779,6094851,13893635,14090243,17498115,18284547,18415619,18612227,18874371,20054019,20381699,20643843,22544387,24641539,30867459,30998532,34996228,35782659,36306948,40697857,43909125,44564485,44892165,45350917,45613059,46333955,46858243,47185923,47448067,48168963],"implemented":[28311553,28442625,28508161,29032449,29097985,29949953,40501249,40697857,42860545,43057153,43253761,44105729,44367873],"idictionary":[1900551,10420225,11075585,13565953,29818885,30605313,39583749,42336272,43712513,44171265,44695553,47906820],"iarraybuffer":[1310723,9109506,10289154,11010050,11599874,15073282,25624577,28114947,31522818,32178182,42663938,43646982],"instead":[16646148,27852801,33751041,40763396,43778049,45350916],"idynamicmetaobjectprovider":[2883594,5832710,6160391,6488070,7274502,7995399,8388615,8978438,10223626,14876678,24051714,25755650,41353217,41615370,41811970,42401793,42926090],"ievent":[786434],"integer":[4259841,5963777,6094849,7405569,13893633,14090241,17498113,18284545,18415617,18612225,18874369,20054017,20381697,20643841,22544385,24641537,30998529,34996225,36306945,43909121,44564481,44892161,45350913,45613057,46858241,47448065,48168961],"inheritance":[38928385,38993921,39714817,40501249,40632321,41091073,41222145,41418753,41484289,41615361,41680897,42074113,42139649,42270721,42795009,42860545,42926081,43057153,43253761,43450369,43515905,43581441,43974657,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48824321,49020929,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"immutable":[24903681,40501249],"identifier":[3670023,4718599,4980743,5898242,7012359,7798800,8060944,8257552,8650754,11534339,11730946,11796482,11927568,12058626,12124162,12189699,12255235,12451843,12713987,12910594,15007760,15335440,15728642,16449539,22478851,22806531,24444931,24707088,25427970,25493512,26214408,26935297,27066369,27721729,28311553,28377089,28442625,28508161,29032449,29097985,29949953,30736386,34013187,34537488,35389442,36110337,36503553,37355522,38338563,39911426,40239107,40501249,42860545,43057153,43253761,43974673,44105729,44367873,47513616,48824322,49348624,49414160,49676305,49807377,49938449,50003984],"introduce":[48889857],"istype":[2883585,5636102,10223617,41615361,42926081],"indexer":[27852801],"indexed":[10158083,17498113,26017793,26148865,26279937,26542081,30277633,33554433,36306945,41680900,46858241,48168961],"instantiating":[37224449,37814273],"isnull":[2883585,7077893,10223617,33751042,41615361,42926081,43778049],"interrupts":[7798785,8060929,8257537,11927553,14221313,15007745,15335425,23068673,23527425,24707073,34537473,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"iterates":[1900545,42336257],"implement":[27852801,42336257,42401793],"ireadonlylist":[36372486,36569094,38207494],"issues":[41943041],"initializing":[23920642,24772609,41746433,45547521,48889857],"itemname":[11534341,11730949,11796485,12058629,12124165,12189701,12255237,12451845,12582917,12713989,12779525,12910597,13172741,13434885,15728645,16449541,24444933,24576005,25427973,25690117,27852805,28639237,37355525,38338565,46137349,47251461],"isdefaultattribute":[983041,1376257,1769473,3211265,3801089,4325377,40501249,42860545,43057153,43253761,44105729,44367873],"immediate":[28835841,41222145],"item":[1900545,5767171,11534337,11730945,11796481,12058625,12124161,12189697,12255233,12320769,12451841,12582913,12713985,12779521,12910593,13041665,13172737,13434881,15728641,16449537,24444929,24576001,25427969,25690113,26148867,27852802,28049409,28639233,29425665,29753345,29818881,30277634,36306948,36962308,37355521,38338561,41680898,42336258,43712517,44498945,46137345,47251457,47906817,48889857],"istransient":[40108033]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_106.json b/docs/Reference/fti/FTI_106.json index 141b0694e..9ea45a2ff 100644 --- a/docs/Reference/fti/FTI_106.json +++ b/docs/Reference/fti/FTI_106.json @@ -1 +1 @@ -{"javascriptextensions":[3211267,11599874,12189698,12517378,12976130,13434882,14352386,15073282,15925250,16711682,25427969,28966914,45744135],"javascript":[1900545,1966081,2031617,2359297,2424833,3211265,5767169,6029314,6488065,6553601,6684673,7208961,7274497,7340033,7405569,7733249,7798785,7864321,7929857,8060929,8257537,8323073,8388609,8454145,8519681,9043969,9175041,9240577,9306113,9568257,9895937,10027009,10223618,10289154,10420225,10485761,10551298,10682370,10878978,10944513,11010049,11075586,11206657,11337730,11403265,11534338,11599874,11665410,11862018,12124162,12189698,12255234,12517378,12976130,13434882,14352386,15073282,15925250,16711682,19988482,25427977,26148867,26869761,27328513,28966913,30736385,31064065,31522817,31850497,32309249,32505857,32964609,33095682,33619970,34537473,38928385,41943042,42598403,43974659,44630020,44695553,45023236,45154305,45744132,45940738,46137348,46333954,46661634,47054850,47513602,47710211,48365569,48758785,48824326],"jscript":[22937601,23527425,23855105,24379393,24576001,25034754,25100289,25821185,26476545,26935298,27394050,27525122,30539781,32636933,44630018,48627718,48693249,49414150,49676291],"javascrip":[17432577,35520513,49479681],"json":[2949122,19791873,20250627,20643842,21430273,45875202,48824322],"just":[44302338,49676289],"jscriptengine":[5242883,5701635,22937606,23527430,23855110,24182787,24379398,24576006,24772611,25034758,25100294,25821190,26476550,26935297,27394049,27525126,30539783,32636935,35717123,39387139,39976963,43253763,47448065,48627724,49414156,49610753,49676290]} \ No newline at end of file +{"javascriptextensions":[3080195,9371650,9437186,9633794,9764866,10092546,10354690,10616834,12648450,13107202,25624577,41484295,43319298],"javascript":[1310721,1507329,1638401,2031617,3080193,3604481,4587521,5046273,5242881,5439489,5636097,5767169,5898241,5963777,6291457,6750209,6815745,7208961,7340033,7405569,7536641,7864321,8126465,8650753,8585218,8912898,9043969,9109506,9306113,9371650,9437186,9568257,9633794,9764866,9830402,9895937,9961474,10027009,10092546,10354690,10289154,10485762,10616834,10747906,11010050,11141122,11468802,11599874,11665410,11862017,12648450,13107202,13369345,13631489,13893633,14090241,14614529,14942209,15073282,23920643,24838145,25624585,28114945,28180481,28704769,29360129,30015489,30408705,31522818,32112642,32178178,32636930,32833538,33292290,33488898,36765697,37945348,40042497,40697860,41484292,42139652,42467329,42663937,43188225,43319297,43646979,44433410,45088771,47513601,47710211,47972353,48037889,48889862,49152001],"jscript":[20905985,21692417,22216705,22806530,22937601,23265281,23986177,24772610,25231362,27066373,28377093,37945346,39452673,40239106,41746435,45940737,49676294,49741825,49807366],"javascrip":[25034753,33751041,43778049],"json":[2097154,15400963,15663106,17825793,23789569,45416450,48889858],"just":[41746433,41943042],"jscriptengine":[8060931,20905990,21561347,21692422,22216710,22806534,22937606,23265286,23986182,24707075,24772609,25231361,27066375,28377095,33357827,37158915,38666243,39452678,39845891,40239110,41746434,45481987,45940742,49348609,49676300,49807372,50003969]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_107.json b/docs/Reference/fti/FTI_107.json index 7d0777b4d..5069cdbab 100644 --- a/docs/Reference/fti/FTI_107.json +++ b/docs/Reference/fti/FTI_107.json @@ -1 +1 @@ -{"keyword":[17432577],"kind":[17694721,18284545,18808833,19202049,19726337,19857409,20512769,20774913,21102593,21233665,21299201,21364737,21954561,22151169,22544385,23134209,23920641,24838145,24903681,25886721,30277633,31195137,32112641,33226753,48824321],"key":[2555908,11730950,12058630,13107206,13762566,30474241,34799622,35848193,46465029,49217537],"keys":[29360129,30474242,32571393,33554439,42729473,46465026,48431105],"keyvaluepair":[2555910,30474242,46465040,48431112]} \ No newline at end of file +{"keyword":[25034753],"kind":[16711681,17039361,17104897,17235969,17301505,17694721,17891329,18022401,18546689,19005441,19333121,19529729,19988481,20119553,20185089,20250625,20512769,20578305,21168129,21430273,21495809,21626881,22347777,22740993,48889857],"key":[1900548,10420230,11075590,13565958,28835841,29818881,30605318,41222145,42336261,43712518],"keys":[28049409,29425665,29818882,42336258,44171271,44498945,47906817],"keyvaluepair":[1900550,29818882,42336272,47906824]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_108.json b/docs/Reference/fti/FTI_108.json index ae4a88216..6923a2f50 100644 --- a/docs/Reference/fti/FTI_108.json +++ b/docs/Reference/fti/FTI_108.json @@ -1 +1 @@ -{"list":[7864321,8388614,8323078,9043974,9175046,9240582,9306118,9895942,10027014,10420230,10944518,11010054,11403270,15597570,21692417,23265282,23724034,25034754,25231361,25296897,25559041,25624577,25690113,26017793,26083329,26279937,26411009,26607617,26673153,26738689,26804225,26869761,27131905,27197441,27262977,27328513,27459585,27525122,27590657,27721729,27787265,27983873,28049409,28180481,28246017,28311553,28508161,28704769,28835841,28901377,28966913,29229057,29294594,29425666,29491201,29556737,29818881,29884417,29949953,30081025,30343170,30408705,30539778,30605313,30867457,30998529,31588354,31719425,32047105,32440321,32636930,32768001,32899073,33161218,34013185,34406401,34930689,34996225,35389441,35651585,35717121,35979265,36044802,36372481,36438017,36569089,36962305,37027841,37617665,38141953,38404097,39976961,40960001,41287681,42336257,45350914,47448066,47972354,48627714,48758785,48955394,49086466,49414146,49610754,49807362],"loaddocument":[1507329,5373958,42991617],"locks":[48758785],"leaks":[41353217,46071809],"loaddocumentasync":[1507329,6094853,42991617],"long":[131074,786436,10289160,11075592,11337736,11534344,12124168,19988488,36896772,37421062,38469636,38600708,39714820,39780358,40239108,40435718,40763396,41025544,41156612,43384836,44236804,45023233,45154310,46333956,46661636,47054852,47513604,48824322],"loade":[35454977,38076417,42991617],"loads":[1114113,1507330,4128770,4259846,4390921,5046278,5177350,5242886,5373953,5701638,6094849,7602182,7667718,14286849,14745601,14876673,15269889,15728641,15990785,17235969,18284545,19202049,19857409,19922945,20119553,20512769,20578305,21364737,21495823,22151169,23134209,23330817,23920641,24051713,24903681,27983875,28835843,30277633,30867465,31195137,32112641,36569097,42991618,45481985,46202889,47448070,48627718,48758799,48955398,49086470,49414150,49610758,49807366],"lists":[45023233],"listt":[8388610,8323074,9043970,9175042,9240578,9306114,9895938,10027010,10420226,10944514,11010050,11403266],"label":[7929857,14942209,15138817,15532033,15597569,17432577,17760257,18153473,18677761,19070977,19398657,20054017,20709377,21102593,21168129,21233665,21626881,21757953,21954561,22085633,22413313,22544385,22675457,22806529,23003137,23199745,23265281,23592961,23724033,23855105,24379393,25034753,25821185,26476545,27525121,27656193,27918337,28377089,28770305,29425665,30343169,33488897],"loadcustomattributes":[1114113,4128774,45481985],"like":[21692417],"line":[131074,786433,1310722,26148865,34734082,39321601,39780354,46989314,47775747,48824321],"listen":[17760257,18219009,19070977,20054017,20185089,20840449,22609921,23592961,24707073,27918337],"limited":[19267585,23986177,24182785,24772609,25755649,31391745],"legacy":[33882113,35913729],"linq":[6488065,6553601,6684673,7208961,7733251],"leave":[45154305],"lines":[37814273,39321601,39452673],"longer":[33357825,41549828],"languag":[21692417,46465025],"leading":[37814273,39452673],"local":[7864321],"let":[5767169,6619137,6750209,7864321,8454145,9568257],"language":[2228226,3866626,17432577,34471937,36700161,40501250,49020929,49676289,49741826],"length":[11534341,19988485,30736386,32964610,43974658,45023234,47513606],"locating":[32768001],"leaf":[6553601,7208961,42729473],"loaded":[4653057,4784129,5111809,5373955,5505025,6094851,14286850,14745602,14876674,15269890,15728642,15990786,17235969,18284545,19202049,19857409,19922945,20119553,20512769,20578305,21364737,22151169,23134209,23330817,23920641,24051713,24903681,30277633,31195137,31916033,32112641,33423361,36044801,39124994,42008577,45350913],"lossy":[48824323],"location":[39124993],"link":[1,35848193,49217537],"lib":[6553609,7208967,12648450,36438019,46596098],"leaves":[15400961,18415617,28442625],"lengths":[7340038,8912902],"load":[524289,4128770,5373953,6094849],"loader":[4653057,4784129,5111809,5505025,31916034,33292289,33816582,35454977,36044802,36372481,37486593,38076418,40960001,42991618,45350914,45481985],"level":[34275329,39124993,41549831,44302337,48889857,49676289],"locates":[2293761,11141121,42729473],"look":[8454145],"linenumber":[786437,1310721,34734081,39780357,46989313,47775745],"loadcallback":[33423365,36044801,45350913],"languages":[6946817,7405569,7471105,7929857,7995393,8126465,8192001,8650753,8781825,8847361,9371649,9437185,10092545,14221313,14286849,14745601,14876673,14942209,15269889,15532033,15728641,15990785,16384001,16515073,17432577,18153473,18743297,35258369,36700161,45219841,46465025,49020929],"loaders":[5373953,6094849,43515905,45350913],"low":[49676289],"library":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619139,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648450,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432578,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692418,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630019,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219842,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596098,46661633,46727169,46792705,46858241,46923777,47054849,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824322,48889857,48955393,49020930,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676290,49741825,49807361],"lower":[41353217,46071809],"loading":[33882113],"looking":[33357825],"likely":[38338561,40697857,45416449,47644673],"locate":[11141121,13107201,13762561,33357825],"larger":[45547521],"limit":[32243713,34013185,35782657,37158913,37879809,38666241,39256065,39714817,41353218,41877505,44761089,45154305,46071810,46202881,46727169,48234497,48365570,48758785],"looks":[2293761,2621441,13762561,42729473,48431105]} \ No newline at end of file +{"list":[5898241,6750214,6815750,7208966,7340038,7536646,8126470,9568262,10027014,11862022,13631494,14614534,14942214,17432578,22478850,22806530,23724033,24051713,24182785,24379393,24969217,25100289,25165825,25362433,25493505,25559041,25755649,25886721,25952257,26017793,26148865,26214401,26279937,26345473,26411009,26542081,26607617,26673153,26738689,26804225,26869761,26935298,27000833,27066370,27197441,27262977,27328514,27459585,27525121,27590657,27721730,27787265,27852801,27918337,28246017,28377090,28573697,28770305,28966913,29163521,29229057,29622273,30539777,31260673,31457281,32374785,32440321,33357825,33554434,34013186,34078721,35389442,36241409,36634625,38010881,39911426,39845889,40239106,40435713,41156609,41353217,41811969,42008577,42205185,42270722,42467329,42532865,42663937,42729473,42795009,42991617,43319297,43974658,44630017,44826625,45285377,46923778,47513601,47644673,49348610,49414146,49676290,49807362,49938434,50003970],"loaddocument":[917505,3866630,46202881],"locks":[47513601],"leaks":[37027841,49217537],"loaddocumentasync":[917505,4915205,46202881],"long":[720900,1441794,10289160,10485768,10747912,11010056,11141128,11665416,31522820,32112644,32636932,33292292,35454982,35651588,35717126,36110344,36503558,36700164,37617668,38273028,38797316,39780356,40304644,40697857,41549828,43188230,46006276,46596100,46989316,48889858],"loade":[30867457,46202881,46727169],"loads":[2359297,917506,3866625,4194306,4390921,4915201,7798790,8060934,8257542,11927567,12976129,13303809,13500417,13697025,15007750,15335430,16187393,16384001,16711681,16908289,17039361,17104897,17694721,17891329,18022401,18939905,19333121,19398657,19529729,19726337,20250625,20578305,21626881,22740993,24707078,25952259,27000835,27918345,28770313,34537478,37289985,38141953,38993921,43974662,44040201,46202882,47513615,49348614,49414150,49676294,49807366,49938438,50003974],"lists":[40697857],"listt":[6750210,6815746,7208962,7340034,7536642,8126466,9568258,10027010,11862018,13631490,14614530,14942210],"label":[5767169,16646145,17432577,17563649,17629185,17956865,18219009,18284545,18415617,18808833,19005441,19202049,19988481,20185089,20381697,20774913,20840449,20905985,21168129,21692417,21757953,22151169,22478849,22544385,22675457,22806529,23658497,23986177,25034753,26083329,32243713,32899073,34013185,35389441,39452673,39911425,40239105,46399489,46530561,46792705,47448065,47579137],"loadcustomattributes":[2359297,4194310,38993921],"like":[27852801],"line":[131074,720897,1441794,23920641,30736386,35717122,36569089,40960003,48824322,48889857],"listen":[18284545,18415617,18612225,18874369,20054017,20381697,20643841,22544385,45613057,47448065],"limited":[14417921,21102593,21561345,23461889,24313857,45481985],"legacy":[33816577,46465025],"linq":[4587521,5046273,5242881,9306113,14090243],"leave":[43188225],"lines":[33619969,36569089,48627713],"longer":[27983873,37224452],"languag":[27852801,42336257],"leading":[33619969,48627713],"local":[5898241],"let":[4259841,5111809,5898241,8650753,9895937,13369345],"language":[1703938,10158082,25034753,34603009,36438017,41680898,41746433,43515906,47054849,49283073],"length":[10747909,11665413,28704770,29360130,32112646,40697858,47710210],"locating":[32440321],"leaf":[4587521,5242881,44498945],"loaded":[3670017,3866627,4718593,4915203,4980737,7012353,12976130,13303810,13500418,13697026,16187393,16384001,16711681,16908289,17039361,17104897,17694721,17891329,18022401,18939905,19333121,19398657,19529729,19726337,20250625,20578305,21626881,22740993,24903681,30932993,37289986,38141954,39059457,42270721,45809666,46923777],"lossy":[48889859],"location":[45809665],"link":[1,28835841,41222145],"lib":[2883586,4587529,5242887,42729475,42926082],"leaves":[17367041,23199745,45875201],"lengths":[5963782,24641542],"load":[589825,3866625,4194306,4915201],"loader":[3670017,4718593,4980737,7012353,24903682,30867458,31719430,32505857,33095681,38993921,42270722,42795009,46202882,46727169,46923778,47644673],"level":[31916033,37224455,41746433,41943041,45809665,49020929],"locates":[2686977,34865153,44498945],"look":[9895937],"linenumber":[131073,720901,30736385,35717125,40960001,48824321],"loadcallback":[30932997,42270721,46923777],"languages":[5570561,5767169,5832705,6160385,6356993,6488065,6619137,6684673,7995393,8388609,8978433,9043969,12976129,13303809,13500417,13697025,13828097,14024705,14876673,25034753,26083329,27656193,37289985,38141953,38862849,42336257,44236801,45744129,46792705,47054849,47579137,49283073],"loaders":[3866625,4915201,35782657,42270721],"low":[41746433],"library":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883586,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111811,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034754,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852802,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945347,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746434,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926082,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236802,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889858,48955393,49020929,49086465,49152001,49217537,49283074,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"lower":[37027841,49217537],"loading":[33816577],"looking":[27983873],"likely":[34340865,37683201,48103425,48955393],"locate":[10420225,11075585,27983873,34865153],"larger":[44761089],"limit":[30146561,31326209,31457281,37027842,37093377,40828929,43188225,43909121,44040193,44564481,44892161,45350913,46006273,46071809,47513601,49086465,49152002,49217538],"looks":[2686977,6225921,10420225,44498945,47906817]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_109.json b/docs/Reference/fti/FTI_109.json index db3c8d400..96a306bc6 100644 --- a/docs/Reference/fti/FTI_109.json +++ b/docs/Reference/fti/FTI_109.json @@ -1 +1 @@ -{"marshalalllongasbigint":[48824322],"manner":[8585217],"memory":[4390913,10551299,10878979,11862019,12255235,15400961,18415617,19333122,21495809,24444930,26148865,28442625,31457281,31916033,32243713,41156609,41353219,44498945,44761089,45154306,46071811,46202881,47579137,48234498,48758785],"method":[2228238,3866639,4128770,4521985,4587521,4653058,4784130,4915201,5111810,5308417,5373953,5439489,5505026,5767169,5832705,6029313,6094849,6160389,6225921,6356997,6488065,6553601,6619137,6684673,6750209,6815749,6881281,6946817,7012357,7077889,7143425,7208961,7274497,7340033,7405570,7471105,7536642,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454147,8519681,8585217,8650753,8716290,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9764867,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10420225,10485761,10551298,10616833,10682369,10747905,10878978,10944513,11010049,11075585,11141121,11206657,11337729,11403265,11534337,11599878,11665409,11730945,11862018,12058625,12124161,12189701,12255234,12386305,12451841,12517382,12582913,12713985,12910593,12976133,13041665,13107201,13172737,13238273,13369345,13434885,13500417,13565953,13631493,13697026,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221314,14286850,14352389,14417922,14548993,14614529,14680065,14745602,14811137,14876674,14942210,15073286,15204356,15269890,15335425,15400961,15532034,15663106,15728642,15925254,15990786,16056322,16121858,16187393,16252929,16384002,16515074,16580609,16646145,16711685,16842753,16908292,17235969,17301505,17367041,17432580,17629186,17694721,17760258,17891329,18022401,18087937,18153474,18219010,18284545,18415617,18481153,18546689,18677762,18743298,18808833,18874369,18939905,19005441,19202049,19267587,19333121,19398658,19529729,19595265,19660802,19726337,19791874,19857409,19922945,19988481,20119553,20250625,20381697,20512769,20578305,20643841,20709377,20774913,20905985,20971521,21037058,21102593,21233665,21299201,21364737,21430274,21561345,21692426,21757953,21889029,21954561,22151169,22282241,22347777,22478850,22544385,22740993,22872065,23068674,23134209,23330817,23396354,23461889,23658498,23789569,23920641,23986180,24051713,24182788,24248321,24313857,24444929,24510465,24641537,24772612,24838145,24903681,24969218,25165825,25231361,25296897,25362437,25493506,25559041,25624577,25690113,25755652,25886721,25952259,26017793,26083329,26345473,26411009,26542082,26607617,26673153,26738689,26804225,26869761,27066369,27131905,27197441,27262977,27328513,27459585,27590657,27721729,27787265,27852801,27983873,28180481,28246017,28311553,28442625,28573698,28639233,28704769,28835841,28966913,29032450,29097986,29163522,29229057,29622273,29753346,29949953,30015490,30081025,30146561,30212097,30277633,30408705,30670850,30801921,30867457,30998529,31195137,31260673,31391748,31916037,32047105,32112641,32440321,33226753,33423361,34013190,34930689,34996228,35520514,35651585,35717124,35848193,35913732,35979265,36044801,36438017,36569089,36700162,36962305,37027844,37617665,38141953,38404100,39190529,39649281,39976964,40370177,40501262,40566786,41287684,42008577,42336260,42532868,44957697,45350913,45678593,46792705,46858242,47120385,47382530,47448068,47644673,48037894,48168962,48562178,48627716,48758790,48955396,49020931,49086468,49217537,49348612,49414148,49479682,49610756,49676292,49741839,49807364],"maxruntimestackusage":[34013185,46727173,48758785],"make":[12320770,12845058],"multiplier":[31457281,44761090,47579137],"mutable":[131073,786433,42008577],"maxoldspacesize":[31457281,37158916,38666245,41353217,46071809,47579137],"mustinherit":[39845889,40501249,41418753,42795009,42991617,47316993,47448065,48496641,49086465,49610753,49741825],"marshal":[23396353],"mscorlib":[6553601,7208961],"maxarraybufferallocation":[31457281,41353217,45154309,46071809,47579137],"meta":[4259842,4390915,5046274,5177346,5242882,5373953,5701634,6094849,7602178,7667714,14221314,17694722,18743298,19136513,19529730,21495812,24838145,25886722,27262977,28246017,30081027,31260674,31916033,32309250,32374785,32702465,33226754,34144257,34537474,35651586,37617665,37748737,38141953,40173569,40370177,41680897,42008578,44498945,46202883,46923777,47316993,47448066,48496641,48627714,48758788,48955394,49086466,49414146,49610754,49807362],"manage":[5373953,6094849],"microsoft":[131076,196611,262147,327683,393219,458755,589827,720900,655364,786436,851972,917508,983044,1048579,1114115,1179651,1310723,1245187,1376259,1441795,1507331,1572867,1638403,1703939,1769475,1835011,1900547,1966083,2031619,2097155,2162691,2228227,2293763,2359299,2424835,2490371,2555907,2621443,2686979,2752515,2818051,2883587,2949123,3014659,3080195,3145731,3211267,3276803,3342339,3407875,3473411,3538947,3604483,3670019,3735555,3801091,3866627,3932163,3997700,4063236,4128772,4194309,4325380,4259843,4390915,4456452,4521988,4587525,4653061,4718596,4784134,4849667,4915204,4980740,5046275,5111813,5177347,5308420,5242883,5373959,5439492,5505028,5570563,5636099,5701635,5767172,5832708,5898244,5963780,6029316,6094855,6160388,6225924,6291459,6356996,6422532,6488068,6553605,6619141,6684676,6750212,6815749,6881284,6946820,7012357,7077892,7143428,7208964,7274500,7340036,7405572,7471109,7536644,7602179,7667715,7733252,7798788,7864324,7929860,7995396,8060932,8126468,8192004,8257540,8323076,8388612,8454148,8519684,8585220,8650756,8716292,8781829,8847364,8912900,8978436,9043972,9109508,9175044,9240580,9306116,9371652,9437189,9502724,9568260,9633796,9699332,9764869,9830404,9895940,9961476,10027012,10092548,10158084,10223620,10289156,10354692,10420228,10485764,10551300,10616836,10682372,10747908,10813444,10878980,10944516,11010052,11075588,11141124,11206660,11272196,11337732,11403268,11468804,11534340,11599876,11665412,11730948,11796484,11862020,11927556,11993092,12058628,12124164,12189700,12255236,12320772,12386308,12451845,12517381,12582916,12648451,12713988,12779524,12845060,12910597,12976133,13041669,13107204,13172741,13238276,13303812,13369348,13434884,13500420,13565957,13631492,13697029,13762564,13828100,13893636,13959173,14024708,14090244,14155780,14221317,14286852,14352389,14417924,14483460,14548996,14614533,14680068,14745604,14811140,14876677,14942212,15007748,15073284,15138820,15204356,15269893,15335428,15400964,15466500,15532036,15597572,15663108,15728646,15794180,15859716,15925253,15990790,16056324,16121860,16187396,16252932,16318468,16384004,16449541,16515076,16580612,16646148,16711684,16777220,16842756,16908292,16973830,17039364,17104900,17170436,17235974,17301508,17367044,17432580,17498117,17563653,17629189,17694726,17760261,17825796,17891332,17956870,18022405,18087940,18153476,18219013,18284551,18350085,18415620,18481156,18546692,18612229,18677764,18743301,18808837,18874372,18939908,19005444,19070981,19136517,19202055,19267588,19333124,19398661,19464198,19529733,19595268,19660804,19726341,19791876,19857414,19922948,19988484,20054022,20119556,20185094,20250628,20316164,20381700,20447237,20512775,20578309,20643844,20709380,20774917,20840453,20905988,20971525,21037060,21102597,21168132,21233669,21299205,21364742,21430276,21495811,21561349,21626885,21692421,21757956,21823492,21889028,21954565,22020101,22085636,22151174,22216709,22282244,22347780,22413318,22478852,22544389,22609925,22675461,22740997,22806533,22937604,22872068,23003142,23068677,23134213,23199750,23265286,23330821,23396357,23461892,23527429,23592965,23658500,23724038,23789572,23855108,23920645,23986180,24051718,24117254,24182788,24248324,24313860,24379397,24444932,24510469,24576005,24641540,24707078,24772612,24838150,24903687,24969220,25034757,25100294,25165829,25231363,25296899,25362436,25427972,25493508,25559043,25624579,25690115,25755652,25821189,25886726,25952260,26017795,26083331,26148868,26214404,26279939,26345476,26411011,26476550,26542084,26607619,26673155,26738691,26804227,26869763,26935300,27000837,27066372,27131907,27197443,27262979,27328515,27394052,27459587,27525126,27590659,27656196,27721731,27787267,27852804,27918342,27983875,28049411,28114949,28180483,28246019,28311555,28377093,28442628,28508163,28573700,28639237,28704771,28770309,28835843,28901379,28966915,29032452,29097988,29163524,29229059,29294595,29360131,29425669,29491203,29556739,29622276,29687811,29753348,29818883,29884419,29949955,30015492,30081027,30146564,30212100,30277638,30343173,30408707,30474243,30539779,30605315,30670852,30736387,30801924,30867459,30932995,30998531,31064067,31195141,31129603,31260677,31326211,31391748,31522819,31457283,31588355,31653891,31719427,31784963,31850499,31916036,31981571,32047107,32112645,32178181,32243715,32309252,32374787,32440323,32505859,32571395,32636931,32702467,32768004,32833542,32899076,32964611,33030147,33095684,33161219,33226758,33292292,33423364,33488901,33554436,33619972,33685507,33751044,33816580,33882116,33947652,34013187,34078724,34144259,34209796,34275331,34340868,34406404,34471940,34537476,34603011,34668548,34734083,34799620,34865156,34930691,34996227,35061763,35127300,35192835,35258372,35323908,35389443,35454979,35520516,35586052,35651587,35717123,35782659,35848195,35913732,35979267,36044803,36110340,36175876,36241412,36306947,36372483,36438019,36503556,36569091,36634628,36700164,36765700,36831236,36896772,36962307,37027843,37093380,37158916,37224452,37289988,37355524,37421061,37486596,37552132,37617667,37683204,37748740,37814276,37879812,37945348,38010884,38076420,38141955,38207492,38273028,38338564,38404099,38469636,38535172,38600708,38666244,38731780,38797315,38862852,38928388,38993924,39059460,39124996,39190532,39256068,39321604,39387140,39452676,39518212,39583748,39649284,39714820,39780357,39845893,39911428,40042500,39976963,40108036,40173572,40239108,40304644,40370181,40435716,40501253,40566788,40632324,40697860,40763396,40828932,40894468,40960005,41025540,41091076,41156612,41222148,41287683,41353220,41418758,41484292,41549828,41615364,41680900,41746436,41811972,41877508,41943044,42008581,42074116,42139654,42205188,42270724,42336259,42401796,42467332,42532871,42598404,42663940,42729478,42795014,42860548,42926084,42991621,43057156,43122692,43188228,43253764,43319300,43384836,43450373,43515908,43581444,43646980,43712516,43778054,43843589,43909124,43974660,44040196,44105732,44171268,44236804,44302340,44367876,44433412,44498950,44564484,44630028,44695556,44761092,44826628,44892164,44957700,45023236,45088772,45154308,45219845,45285380,45350917,45416452,45481989,45547524,45613060,45678596,45744133,45809668,45875205,45940740,46006276,46071812,46137349,46202885,46268420,46333956,46399492,46465028,46530566,46596102,46661636,46727172,46792708,46858244,46923780,47054852,46989317,47120388,47185925,47251460,47316998,47382534,47448073,47513604,47579141,47644676,47710212,47775748,47841284,47906820,47972356,48037894,48103428,48168964,48234501,48300038,48365572,48431110,48496645,48562180,48627720,48693253,48758790,48824324,48889861,48955400,49020933,49086471,49152004,49217541,49283077,49348614,49414151,49479684,49545221,49610761,49676292,49741829,49807367],"multiple":[9764865,17235969,17367041,17694721,18022401,18087937,18284545,18808833,19202049,19529729,19726337,19857409,19922945,20119553,20512769,20578305,20709377,20774913,21102593,21233665,21299201,21364737,21757953,21954561,22151169,22544385,23134209,23330817,23920641,24051713,24838145,24903681,25886721,26148865,26345473,27852801,28639233,30277633,31195137,31260673,32112641,33226753,46268417,48496641],"min_safe_integer":[48824321],"message":[11993095,12779527,16318471,16777223,29818882,29884418,31129603,35848195,36306945,38010881,42860545,43122689,45285382,47251459,49217541,49283075],"management":[49676289],"max_safe_integer":[48824321],"multiplication":[2228225,3866625,40501249,49741825],"minimum":[34013185,35782657,37093377,40108033,46202881,48758785],"modified":[7733249],"malicious":[44761089],"maintains":[43515905],"memberwiseclone":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4259841,4390913,5046273,5177345,5242881,5570561,5636097,5701633,6291457,7602177,7667713,12648449,21495809,39845889,40501249,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47448065,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48955393,49020929,49086465,49217537,49348609,49414145,49545217,49610753,49741825,49807361],"makes":[44630017,48824321],"mechanisms":[48365569],"mentioned":[17432577],"modulecategory":[25427969,31064067,33095682,33619970,46137351],"maxyoungspacesize":[31457281,39256069,47579137],"members":[196609,262145,327681,393217,458753,589825,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,4194305,4259841,4390913,4849665,5046273,5177345,5242881,5570561,5636097,5701633,6029314,6291457,6356993,6488066,7012353,7143426,7340033,7405569,7602177,7667713,8585220,8912897,9371649,12451841,12582913,12648449,12910593,13041665,13172738,13369345,13500417,13565953,13697027,13828098,13959169,14024705,14090241,14417923,14548994,14614529,14680065,15335426,16056322,20381697,20905985,20971521,21495809,21561345,21692418,22282241,23068674,23658498,24510466,25165826,29360129,29687809,30474241,30736385,30932993,31064065,31129601,31326209,31457281,31522817,31653890,31784961,31850497,31916036,31981569,32243713,32374785,32505857,32571393,32702465,32964609,33030145,33685506,34013187,34144257,34275329,34603009,34734081,34996227,35061761,35192833,35454977,35717123,35782657,35848193,36044801,36306945,36372481,36765697,37027843,38404099,38797313,39124993,39845889,39976963,40304644,40501249,40894465,40960001,41287683,41418753,41680897,41943041,42139649,42336259,42532865,42598401,42729473,42795009,42991617,43057153,43450369,43778049,43843585,43974657,44302337,44498945,44892161,45023233,45219841,45350913,45481985,45547521,45678593,45744129,45875201,46137345,46202881,46268418,46399489,46465027,46530564,46596097,46792705,46858242,46989313,47251457,47316993,47382532,47448067,47579137,47710209,47775745,47841281,47906817,48037889,48103425,48234497,48300033,48365569,48431105,48496641,48562178,48627715,48693249,48758787,48824323,48889857,48955395,49020929,49086467,49152001,49217537,49283073,49348609,49414147,49479682,49545217,49610755,49676289,49741825,49807363],"member":[2228230,3866629,4653057,4784129,5111809,5308417,5439491,5505025,5767169,5832705,6029313,6160385,6225921,6356993,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9895937,9961473,10027009,10092545,10158081,10420225,10485761,10616833,10747905,10944513,11010049,11141121,11206657,11403265,11599873,12189697,12386305,12451841,12517377,12582913,12713985,12910593,12976129,13041665,13172737,13238273,13369345,13434881,13500417,13565953,13697025,13828097,13959169,14024705,14090241,14221313,14286849,14352385,14417921,14548993,14614529,14680065,14745601,14876673,14942209,15073281,15269889,15335425,15532033,15728641,15794177,15925249,15990785,16056321,16384001,16449538,16515073,16711681,16842753,16973827,17235969,17367041,17432577,17498114,17563649,17629185,17694721,17760257,17956866,18022401,18087937,18153473,18219009,18284545,18350081,18481153,18612225,18677761,18743297,18808833,18874369,18939905,19202049,19333121,19398657,19529729,19726337,19791873,19857409,19922945,20119553,20250625,20381697,20512769,20578305,20643841,20709377,20774913,20905985,20971521,21102593,21233665,21299201,21364737,21430273,21561345,21692419,21757953,21954561,22151169,22282241,22347777,22478849,22544385,22740993,23068673,23134209,23330817,23396353,23658497,23920641,24051713,24313857,24444929,24510465,24838145,24903681,25165825,25886721,26345473,27066369,27852801,28639233,29097985,29753345,30212097,30277633,30932995,31195137,31260673,31784961,31916035,31981569,32112641,32309249,32768001,32899073,33095681,33226753,33292289,33423361,33619969,33751041,33816577,33882113,33947649,34078721,34406401,34471937,34537473,34996225,35127297,35258369,35520513,35586049,35913729,36110338,36175873,36241409,36634625,36700161,36765697,36831233,36896769,37093377,37158913,37421057,37486593,37552129,37683201,37814273,37879809,37945345,38207489,38469633,38600705,38666241,38731777,38862849,38928385,38993921,39124993,39190529,39256065,39321601,39452673,39518209,39649281,39714817,39780353,39911426,40108033,40173569,40239105,40304641,40435713,40501254,40566787,40632321,40763393,40828929,40894465,41025537,41156609,41222145,41353217,41484289,41549825,41615361,41811969,41877505,42074113,42205185,42270721,42401793,42532866,42926081,43057153,43384833,43515905,44040193,44105729,44236801,44302337,44367873,44695553,44761089,44892161,45154305,45547521,45678593,45809665,46006273,46071809,46268418,46399489,46465025,46727169,46858241,47120385,47644673,47906817,47972353,48037890,48168961,48365569,48562180,48824321,49086465,49348612,49479681,49676289,49741829],"monitoring":[37093377,40108033,41353220,41877505,44761089,46071812,46727169,48365569],"merged":[21692417],"match":[1245185,1835009,2162689,2686977,2818049,3080193,21692417,42532865,43843585,46530561,47382529,48037889,49348609],"maxruntimeheapsize":[34013185,37093377,44761089,46071813,48365569,48758785],"maxheapsize":[35782657,40108033,41353221,44761089,46202881,48365569],"marshalnullasdispatch":[49676289],"manipulate":[7929857],"modeless":[3604481,23789570,47841281],"machine":[7864321],"maximum":[10289153,11075585,11337729,11534337,12124161,19988481,31457285,34013186,34603009,35454977,35782658,37158914,37683201,37879810,38076418,38666242,39256066,39845889,40632321,41877505,42991617,43515906,44761089,45154305,46202882,46727169,47579141,48758786],"marshalarraysbyvalue":[49676289],"marshaling":[40304641,48758785],"multidimensional":[21692417],"movenext":[7864321],"mib":[31457284,37158915,37879811,38666243,39256067,47579140],"maxstackusage":[35782657,41877509,46202881],"maxcachesize":[34603009,35454977,38076422,39845889,42991617,43515910],"merge":[6553601,6619137],"maps":[35258369,45219841],"methods":[1114114,1179650,1245186,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228227,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866627,3932162,4128769,4259842,4390914,4849666,5046274,5177346,5242882,5570562,5636098,5701634,6029314,6160386,6291458,6356994,6488066,6815746,7012354,7143426,7340033,7405569,7602178,7667714,8912897,9371649,9568257,11599874,12189698,12451841,12517378,12582913,12648450,12910593,12976130,13041665,13172738,13369345,13434882,13500417,13565953,13697025,13828098,13959169,14024705,14090241,14352386,14417921,14548994,14614529,14680065,15073282,15335426,15925250,16056322,16711682,20381697,20905985,20971521,21495810,21561345,21692422,22282241,23068674,23658498,24510466,25165826,25427971,31916033,34668545,38273025,39190531,39649283,39845889,40501250,41418753,41680897,41746433,41943042,42139649,42532866,42598401,42729473,42795009,42991617,43450369,43778049,43843585,43974658,44498945,45023233,45219841,45350913,45481985,45744130,45875201,46202881,46465025,46530561,46596097,46792705,46989313,47185922,47316993,47382529,47448065,47579137,47710209,47775745,47841281,48037890,48103425,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48955393,49020929,49086465,49152001,49217537,49283073,49348610,49414145,49545217,49610753,49741826,49807361],"marshaled":[35258369,35520513,48627713,48693249,48824322,48955393,49479681,49610753,49676292],"modify":[12320769,42008577],"mapping":[6029313,6488065,7143425,7340033,7405569,8912897,9371649,12451841,12582913,12910593,13041665,13172737,13369345,13500417,13565953,13697025,13828097,13959169,14024705,14090241,14417921,14548993,14614529,14680065,15335425,16056321,20381697,20905985,20971521,21561345,21692417,22282241,23068673,23658497,24510465,25165825],"mustoverride":[6094849,14811137,15663105,16121857,16187393,16646145,16908289,17301505,17891329,18546689,19005441,19595265,28442625,34668545,35323905,37289985,38338561,41091073,42663937,43188225,46923777],"monitor":[41877505,46727169],"misspelled":[33357825],"mechanism":[32309249,34537473,49676289],"map":[4653057,4784129,5111809,5505025,35061761,36175873,41680897],"module":[32309253,34537477,41549825,47906817,48824321],"moment":[38469634,43384834,44236802],"marshalunsafelongasbigint":[48824321],"managed":[4259841,5046273,5177345,5242881,5701633,7602177,7667713,13631490,21495809,21889026,25362434,26804225,32047105,36962305,47448065,48365569,48627713,48758785,48824321,48955393,49086465,49414145,49610753,49676289,49807361],"modules":[25427969,31064066,33095681,33619969,34537473,41549825,46137347],"marshaldatetimeasdate":[49676289],"maxexecutablesize":[31457281,37158917,47579137],"microseconds":[33030146,34013185,35192833,35782657,37552129,38469633,43384833,43450369,44040193,44236801,45875202,46202881,48758785],"memorystream":[36503553],"missing":[35258369,45219841],"marshaldecimalascurrency":[49676289],"maxnewspacesize":[31457281,37879813,39256068,47579137],"merges":[6553601,12648449,36438017,46596097]} \ No newline at end of file +{"marshalalllongasbigint":[48889858],"manner":[7274497],"memory":[4390913,8912899,9109507,9961475,11927553,15073283,17170434,17367041,21823490,23199745,23920641,24903681,30670849,31326211,37027843,38273025,40828929,43188226,43581441,44040193,44957697,45875201,46596097,46989313,47513601,49086468,49217539],"method":[1703950,3670018,3866625,3932161,3997697,4128769,4194306,4259841,4587521,4718594,4784129,4849669,4915201,4980738,5046273,5111809,5177349,5242881,5308421,5439489,5505029,5570561,5636097,5767169,5832705,5898241,5963777,6094849,6160385,6291457,6356993,6488065,6553601,6619137,6684673,6750209,6815745,6881281,7012354,7077890,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7733249,7864321,7929857,7995393,8126465,8323073,8388609,8585217,8650753,8781825,8847361,8912898,8978433,9043970,9109506,9175043,9240577,9306113,9371653,9437190,9568257,9633797,9699329,9764870,9830401,9895939,9961474,10027009,10092549,10158095,10289153,10354693,10420225,10485761,10551297,10616838,10747905,10944513,11010049,11075585,11141121,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,12058625,12124161,12189697,12255233,12320770,12451841,12582913,12648453,12713985,12779521,12845057,12910593,12976130,13041666,13107206,13172737,13238277,13303810,13369345,13434881,13500418,13565953,13631489,13697026,13828098,13893633,14024706,14090241,14221314,14417923,14548993,14614529,14876673,14942209,15073282,15138817,15400961,15663105,15728641,15925249,15990785,16056321,16121857,16187393,16252930,16318465,16384001,16449537,16580609,16711681,16777217,16842756,16908289,16973826,17039361,17104897,17170433,17235969,17301505,17367041,17498113,17563650,17694721,17760258,17825794,17891329,17956865,18022401,18087937,18350081,18415618,18546689,18612226,18677762,18743297,18939905,19005441,19136513,19202050,19267586,19333121,19398657,19464193,19529729,19726337,19791873,19857409,19988481,20119553,20185089,20250625,20316161,20447234,20512769,20578305,20709377,20971522,21102596,21168129,21364737,21430273,21495809,21561348,21626881,21823489,21889026,21954561,22085637,22151169,22282242,22347777,22413314,22609921,22740993,22872069,23003139,23068674,23134209,23199745,23330817,23396354,23461892,23527426,23592962,23724033,23789570,23855105,24051713,24117250,24182785,24248321,24313860,24379393,24444929,24510466,24576001,24641537,24838145,24969217,24903685,25034756,25165825,25362433,25427969,25493505,25690113,25755649,25886721,25952257,26017793,26083330,26214401,26279937,26345473,26411009,26542081,26607617,26673153,26738689,27000833,27197441,27262977,27459585,27525121,27590657,27656194,27787265,27852810,27918337,28573697,28639233,28770305,28835841,28901377,28966913,29229057,29753346,29884417,30343169,30605313,30539780,30932993,31195137,31260676,31457286,33357828,33423361,33751042,33947650,34078724,34406402,34734082,34799617,34865153,36634628,37289986,37355521,38010884,38141954,38338561,38600705,38862850,39059457,39190529,39583745,39845892,39976961,41156609,41222145,41353217,41680911,41746436,41811969,42270721,42467329,42532865,42598401,42663937,42729473,42860548,42991617,43057154,43253764,43319297,43515918,43778050,43974660,44105734,44630017,44826625,45285377,45481988,45875201,46137346,46465028,46792706,46858241,46923777,47054850,47251458,47316993,47382529,47513606,47579138,48103425,48168961,48234497,48300036,48431106,48562178,48693249,48758785,49283075,49348612,49414148,49676292,49807364,49938436,50003972],"maxruntimestackusage":[31457281,37093381,47513601],"make":[11272194,13762562],"multiplier":[30670849,40828930,44957697],"mutable":[720897,1441793,39059457],"maxoldspacesize":[30670849,37027841,43909124,44892165,44957697,49217537],"mustinherit":[38928385,39714817,41091073,41680897,43515905,44302337,45154305,46202881,49348609,49414145,50003969],"marshal":[20447233],"mscorlib":[4587521,5242881],"maxarraybufferallocation":[30670849,37027841,43188229,44957697,49217537],"meta":[3866625,4390915,4915201,7798786,8060930,8257538,11927556,13828098,14024706,15007746,15335426,15532033,16777218,17301506,18546690,18743298,21495809,22347778,24707074,24903681,25886721,26411009,26607617,26738691,27131905,27197441,27787266,29491201,29687809,31784961,34537474,36765698,39059458,39583745,40042498,40370177,40894465,41091073,41287681,43581441,43974658,44040195,45154305,47513604,49348610,49414146,49676290,49807362,49938434,50003970],"manage":[3866625,4915201],"microsoft":[65539,131075,196611,262147,327683,393219,458755,524292,655363,720900,786436,851971,983043,1048579,1114115,1179651,1245187,1310723,1376259,1441796,1507331,1638403,1703939,1769475,1835012,1900547,1966083,2031619,2097155,2162691,2228228,2293763,2359299,2424835,2490371,2555907,2621443,3145731,2686979,3014659,2949123,3080195,2752515,917507,3211267,2818051,2883587,3342340,3407876,3473412,3276803,3538948,3604483,3670021,3735555,3801091,3866631,3932165,3997700,4063235,4128772,4194308,4259844,4325379,4390915,4456452,4521988,4587525,4653059,4718596,4784132,4849668,4915207,4980742,5046276,5111813,5177348,5242884,5308421,5373956,5439492,5505029,5570565,5636100,5701635,5767172,5832708,5898244,5963780,6029317,6094852,6160388,6225923,6291460,6356997,6422531,6488068,6553604,6619140,6684677,6750212,6815748,6881284,6946819,7012357,7077892,7143428,7208964,7274500,7340036,7405572,7471108,7536644,7602180,7667716,7733252,7798787,7864324,7929860,7995396,8060931,8126468,8192004,8257539,8323076,8388612,8454148,8519684,8585220,8650756,8716291,8781828,8847364,8912900,8978436,9043972,9109508,9175045,9240580,9306116,9371652,9437188,9502724,9568260,9633796,9699332,9764868,9830404,9895940,9961476,10027012,10092549,10158083,10223619,10354692,10289156,10420228,10485764,10551300,10616837,10682372,10747908,10813444,10878980,10944516,11010052,11075588,11141124,11206660,11272196,11337732,11403268,11468804,11534341,11599876,11665412,11730948,11796485,11862020,11927555,11993092,12058628,12124165,12189701,12255236,12320772,12386307,12451844,12517380,12582916,12648453,12713989,12779525,12845060,12910596,12976132,13041668,13107205,13172741,13238276,13303814,13369348,13434885,13500421,13565956,13631492,13697028,13762564,13828101,13893636,13959172,14024709,14090244,14155780,14221316,14286852,14352388,14417924,14483462,14548996,14614532,14680068,14745606,14811140,14876676,14942212,15007747,15073284,15138820,15204356,15269892,15335427,15400964,15466501,15532037,15597572,15663108,15728644,15794180,15859717,15925252,15990788,16056324,16121861,16187396,16252932,16318468,16384006,16449540,16515076,16580612,16646148,16711687,16777221,16842756,16908293,16973828,17039366,17104901,17170436,17235973,17301510,17367044,17432580,17498116,17563653,17629189,17694727,17760261,17825796,17956868,17891333,18022406,18087940,18153478,18219012,18284549,18350084,18415621,18481156,18546694,18612229,18677764,18743301,18808837,18874374,18939909,19005445,19070981,19136516,19202052,19267588,19333125,19398660,19464196,19529735,19595269,19660804,19726342,19791876,19857413,19922949,19988485,20054021,20119557,20185093,20250629,20316164,20381701,20447237,20512773,20578311,20643846,20709380,20774917,20840453,20905989,20971524,21037062,21102596,21168133,21233669,21299205,21364740,21430277,21495814,21561348,21626886,21692422,21757958,21823492,21889028,21954564,22020102,22085636,22216709,22151172,22282244,22347782,22413316,22478854,22544390,22609924,22675461,22740998,22806534,22872068,22937606,23003140,23068676,23134212,23199748,23265285,23330820,23396356,23461892,23527428,23592964,23658502,23724035,23789572,23855108,23920644,23986180,24051715,24117252,24182787,24248324,24313860,24379395,24444932,24510468,24576004,24641540,24707075,24772612,24838148,24903684,24969219,25034756,25100291,25165827,25231364,25296901,25362435,25427973,25493507,25559043,25624580,25690116,25821188,25755651,25886723,25952259,26017795,26083332,26148867,26214403,26279939,26345475,26411011,26476549,26542083,26607619,26673155,26738691,26804227,26869763,26935299,27000835,27066371,27131907,27197443,27262979,27328515,27394051,27459587,27525123,27590659,27656196,27721731,27787267,27852805,27918339,28049411,28114947,28180483,28246019,28311555,28377091,28442627,28508163,28573699,28639236,28704771,28770307,28835843,28901380,28966915,29032451,29097987,29163523,29229059,29294595,29360131,29425667,29491203,29556739,29687811,29622275,29753349,29818883,29884420,29949955,30015491,30081027,30146563,30212099,30277635,30343172,30408707,30474244,30605316,30539779,30670851,30736387,30801924,30867460,30932996,30998532,31064068,31129604,31195140,31260675,31326211,31391748,31522820,31457283,31588357,31653892,31719428,31784964,31850500,31916035,31981572,32047108,32112644,32178180,32243716,32309252,32374788,32440324,32505860,32571396,32636932,32702468,32768004,32833540,32899077,32964612,33030149,33095684,33161220,33226756,33292292,33357827,33423364,33488900,33554436,33619972,33685508,33751044,33816580,33882116,33947652,34013189,34078723,34144260,34209796,34275332,34340868,34406404,34471940,34537475,34603012,34668548,34734084,34799620,34865156,34930692,34996228,35061764,35127300,35192836,35258372,35323908,35389445,35454981,35520516,35586052,35651588,35717125,35782660,35848196,35913732,35979268,36044804,36110340,36175876,36241411,36306948,36372484,36438020,36503556,36569092,36634627,36700164,36765700,36831236,36896772,36962308,37027844,37093380,37158916,37224452,37289989,37355525,37421060,37486596,37552132,37617668,37683204,37748740,37814276,37879812,37945356,38010883,38076420,38141958,38207492,38273028,38338565,38404100,38469635,38535172,38600708,38666244,38731780,38797316,38862852,38928389,38993925,39059461,39124996,39190532,39256068,39321604,39387140,39452677,39518212,39583749,39649284,39714822,39780356,39911430,39845891,39976964,40042500,40108036,40173572,40239109,40304644,40370180,40435716,40501253,40566788,40632326,40697860,40763396,40828932,40894468,40960004,41025540,41091077,41156611,41222149,41287684,41353219,41418757,41484293,41549828,41615366,41680901,41746436,41811971,41877508,41943044,42008579,42074117,42139653,42205187,42270725,42336260,42401796,42467331,42532867,42598404,42663939,42729475,42795013,42860551,42926086,42991619,43057158,43122692,43188228,43253766,43319299,43384836,43450373,43515909,43581446,43646980,43712516,43778052,43843588,43909124,43974663,44040197,44105734,44171268,44236805,44302342,44367878,44433412,44498950,44564484,44630019,44695556,44761092,44826627,44892164,44957701,45023238,45088772,45154310,45219844,45285379,45350916,45416453,45481988,45547524,45613061,45678596,45744132,45809668,45875204,45940740,46006276,46071812,46137349,46202885,46268419,46333956,46399492,46465028,46530566,46596100,46661636,46727171,46792708,46858244,46923779,46989316,47054852,47120388,47185924,47251460,47316996,47382532,47448070,47513606,47579140,47644675,47710212,47775748,47841284,47906822,47972356,48037892,48103428,48168964,48234500,48300036,48365572,48431108,48496644,48562180,48627716,48693253,48758788,48824325,48889860,48955396,49020933,49086469,49152004,49217540,49283077,49348617,49414151,49479684,49545220,49610756,49676296,49741829,49807367,49872901,49938440,50003977],"multiple":[9175041,16121857,16187393,16318465,16384001,16711681,16777217,16908289,17039361,17104897,17235969,17301505,17694721,17956865,17891329,18022401,18546689,18743297,18939905,19005441,19136513,19333121,19398657,19464193,19529729,19726337,19988481,20119553,20185089,20250625,20512769,20578305,21168129,21430273,21495809,21626881,22151169,22347777,22740993,23920641,33161217,41091073,48234497,48693249],"min_safe_integer":[48889857],"message":[10682375,11337735,14352391,19660807,25559042,28246018,28835843,29556737,30212099,32571393,32768006,35192833,41222149,42074115,43122691,48365569],"management":[41746433],"max_safe_integer":[48889857],"multiplication":[1703937,10158081,41680897,43515905],"minimum":[30146561,31457281,36831233,37748737,44040193,47513601],"modified":[14090241],"malicious":[40828929],"maintains":[35782657],"memberwiseclone":[851969,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,917505,3211265,2818049,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,7798785,8060929,8257537,8716289,10158081,10223617,11927553,12386305,15007745,15335425,24707073,34537473,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,42270721,42860545,42926081,43057153,43253761,43515905,43581441,43974657,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48824321,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"makes":[37945345,48889857],"mechanisms":[49152001],"mentioned":[25034753],"modulecategory":[25624577,30015491,32833538,33488898,42139655],"maxyoungspacesize":[30670849,44957697,45350917],"members":[65537,131073,196609,262145,327681,393217,458753,655361,851969,917505,983041,1114113,1179649,1245185,1310721,1376257,1507329,1638401,1703937,1769473,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,3145729,3014657,3080193,2949121,2883585,2818049,3211265,3276801,3604481,3735553,3801089,4063233,4325377,4390913,4653057,5046274,5177345,5308417,5701633,5963777,6029313,6225921,6422529,6619137,6881282,6946817,7274500,7798785,8060929,8257537,8585218,8716289,9043969,10158081,10223617,11534337,11730945,11796481,11927553,12058625,12124161,12189697,12255233,12320770,12386305,12451841,12582914,12713985,12779522,12910593,13041666,13172738,13434882,15007745,15335425,15728641,16449537,24444929,24576002,24641537,24707073,24903684,25427969,25690114,27131905,27394049,27852802,28049409,28114945,28180481,28311554,28442626,28508161,28639233,28704769,28835841,29032449,29097985,29294593,29360129,29425665,29491201,29556737,29687809,29753346,29818881,29949953,30015489,30081025,30146561,30212097,30277633,30408705,30539779,30670849,30736385,31260675,31326209,31457283,31916033,32702465,33161218,33357827,33423361,33947650,34078723,34537473,34930689,35586049,36634627,37355521,38010883,38338561,38469633,38928385,38993921,39714817,39845891,40108033,40501249,40632321,40697857,40894465,40960001,41091073,41222145,41418753,41484289,41615361,41680897,41746433,41943041,42074113,42139649,42270721,42336259,42401796,42598401,42795009,42860545,42926081,43057156,43122689,43253761,43515905,43581441,43646977,43778050,43974659,44040193,44105729,44236801,44302337,44367876,44433409,44498945,44761089,44957697,45023233,45088769,45154305,45416449,45547521,45809665,46202881,46268417,46137347,46727169,46923777,47251459,47513603,47644673,47710209,47775745,47906817,48431106,48824321,48889859,49020929,49086465,49152001,49283073,49348611,49414147,49479681,49545217,49610753,49676291,49741825,49807363,49872897,49938435,50003971],"member":[1703942,3670017,3997697,4128771,4259841,4587521,4718593,4784129,4849665,4980737,5046273,5111809,5177345,5242881,5308417,5439489,5505025,5570561,5636097,5767169,5832705,5898241,5963777,6094849,6160385,6291457,6356993,6488065,6619137,6684673,6750209,6815745,6881281,7012353,7077889,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7733249,7864321,7929857,7995393,8126465,8323073,8388609,8585217,8650753,8781825,8847361,8978433,9043969,9306113,9371649,9437185,9568257,9633793,9699329,9764865,9895937,10027009,10092545,10158085,10354689,10616833,10944513,11403265,11534337,11730945,11796481,11862017,12058625,12124161,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12910593,12976129,13041665,13107201,13172737,13303809,13369345,13434881,13500417,13631489,13697025,13828097,13893633,14024705,14090241,14483458,14614529,14745603,14876673,14942209,15400961,15466498,15663105,15728641,15859713,15990785,16056321,16121857,16187393,16318465,16384001,16449537,16580609,16711681,16777217,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17563649,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18415617,18546689,18612225,18677761,18743297,18939905,19005441,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19726337,19791873,19857409,19988481,20119553,20185089,20250625,20447233,20512769,20578305,21168129,21364737,21430273,21495809,21626881,21823489,22151169,22347777,22609921,22740993,23330817,23789569,24248321,24444929,24510465,24576001,24641537,24838145,24903683,25034753,25296897,25427969,25690113,25821185,26083329,26476546,27656193,27852803,28639233,29032449,29097985,29753345,29949955,30474241,30539777,30932993,31129601,31195137,31719425,31850497,32374785,32440321,32505857,32702465,32833537,33030145,33095681,33161218,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33947649,34144257,34209793,34406401,34603009,34668545,34734083,34865153,34930689,35127297,35258369,35323905,35454977,35586049,35651585,35717121,35782657,35913729,36044801,36110337,36306945,36372481,36438017,36503553,36569089,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37748737,37814273,38141953,38207489,38273025,38338561,38404097,38535169,38731777,38797313,38862849,39190529,39256065,39518209,39780353,39976961,40042497,40108033,40173570,40304641,40370177,40435713,40763393,40828929,41549825,41680901,41746433,41877505,41943041,42336257,42401793,42860546,43188225,43253764,43515910,43778049,43843585,43909121,44105730,44564481,44761089,44892161,45350913,45547521,45678594,45744129,45809665,46006273,46071809,46137345,46333953,46465025,46596097,46661633,46792705,46989313,47054849,47120385,47185921,47251457,47316993,47579137,47775745,47972353,48037889,48103425,48234497,48431108,48627713,48693249,48889857,49152001,49217537,49414145],"monitoring":[36831233,37027844,37093377,37748737,40828929,46071809,49152001,49217540],"merged":[27852801],"match":[983041,1376257,1769473,3211265,3801089,4325377,27852801,40501249,42860545,43057153,43253761,44105729,44367873],"maxruntimeheapsize":[31457281,37748737,40828929,47513601,49152001,49217541],"maxheapsize":[30146561,36831233,37027845,40828929,44040193,49152001],"marshalnullasdispatch":[34603009,41746433],"manipulate":[5767169],"modeless":[3276801,23134210,49545217],"machine":[5898241],"maximum":[10289153,10485761,10747905,11010049,11141121,11665409,27394049,30146562,30670853,30867458,31457282,35782658,37093377,37486593,38535169,38928385,40828929,43188225,43909122,44040194,44564482,44892162,44957701,45350914,46071809,46202881,46727169,47513602],"marshalarraysbyvalue":[41746433],"marshaling":[42401793,47513601],"multidimensional":[27852801],"movenext":[5898241],"mib":[30670852,43909123,44564483,44892163,44957700,45350915],"maxstackusage":[30146561,44040193,46071813],"maxcachesize":[27394049,30867462,35782662,38928385,46202881,46727169],"merge":[4587521,5111809],"maps":[34603009,44236801,45744129],"methods":[851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1507330,1638402,1703939,1769474,1900546,1966082,2031618,2097154,2162690,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,3145730,3014658,3080194,2949122,2883586,2818050,3211266,3276802,3604482,3735554,3801090,4063234,4194305,4325378,4390914,4653058,4849666,5046274,5177346,5308418,5505026,5701634,5963777,6225922,6422530,6619137,6881282,6946818,7798786,8060930,8257538,8585218,8716290,9043969,9371650,9437186,9633794,9764866,10092546,10158083,10223618,10354690,10616834,11534337,11730945,11796481,11927554,12058625,12124161,12189697,12255233,12320770,12386306,12451841,12582914,12648450,12713985,12779522,12910593,13041666,13107202,13172738,13369345,13434882,15007746,15335426,15728641,16449537,24444929,24576002,24641537,24707074,24903681,25427969,25624579,25690114,27852806,28639233,29753346,34537474,37355521,38338561,38928385,38993921,39124993,39190531,39321601,39714817,39976963,40501249,40632321,40697857,40894465,40960001,41091073,41222145,41418753,41484290,41615361,41680898,42074113,42270721,42336257,42598401,42860546,42926081,43057153,43253762,43450370,43515906,43581441,43646977,43974657,44040193,44105730,44236801,44302337,44367873,44433410,44498945,44957697,45023233,45088769,45154305,45219841,45416449,46202881,46137345,47251457,47513601,47710210,47906817,48824321,49086465,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"marshaled":[33751041,34603009,41746436,43778049,45744129,48889858,49676289,49741825,49938433,50003969],"modify":[11272193,39059457],"mapping":[5046273,5963777,6619137,6881281,8585217,9043969,11534337,11730945,11796481,12058625,12124161,12189697,12255233,12320769,12451841,12582913,12713985,12779521,12910593,13041665,13172737,13434881,15728641,16449537,24444929,24576001,24641537,25427969,25690113,27852801,28639233,29753345,37355521,38338561,46137345,47251457],"mustoverride":[4915201,12845057,14221313,15925249,16842753,17498113,18350081,23199745,31784961,32964609,34340865,34996225,35520513,36175873,39649281,45219841,46858241,47382529,48168961,48562177,48758785],"monitor":[37093377,46071809],"misspelled":[27983873],"mechanism":[36765697,40042497,41746433],"map":[3670017,4718593,4980737,7012353,31129601,40894465,46268417],"module":[36765701,37224449,40042501,45547521,48889857],"moment":[39780354,40304642,41549826],"marshalunsafelongasbigint":[48889857],"managed":[7798785,8060929,8257537,11927553,13238274,15007745,15335425,22085634,22872066,24707073,25362433,27459585,29229057,34537473,41746433,43974657,47513601,48889857,49152001,49348609,49414145,49676289,49807361,49938433,50003969],"modules":[25624577,30015490,32833537,33488897,36765697,37224449,42139651],"marshaldatetimeasdate":[41746433],"maxexecutablesize":[30670849,43909125,44957697],"microseconds":[29294593,30081026,30146561,31457281,39780353,40304641,41418753,41549825,44040193,45416450,46333953,47185921,47513601],"memorystream":[40566785],"missing":[44236801,45744129],"marshaldecimalascurrency":[41746433],"maxnewspacesize":[30670849,44564485,44957697,45350916],"merges":[2883585,4587521,42729473,42926081]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_110.json b/docs/Reference/fti/FTI_110.json index 60bf7a0ea..6bc7e37f3 100644 --- a/docs/Reference/fti/FTI_110.json +++ b/docs/Reference/fti/FTI_110.json @@ -1 +1 @@ -{"narrowest":[47644673],"native":[17432579,21692417,32768001,43843585,46465025,49676290],"null":[3407874,4521985,5767170,6553601,6619139,7798786,7864322,8454146,8716291,9568258,11141121,12648450,12845057,13303809,13762561,17432578,18874369,22347777,27394049,31129603,34013185,34996225,35258369,35520515,35586049,35717121,35848194,36306946,36634625,36831233,37027841,38010881,38404097,39321601,39583745,39976961,41287681,42336257,42401793,42860545,43122689,43646977,44433409,44564481,45219841,45613057,46268417,46596098,47251459,47448065,48300034,48627713,48758785,48955393,49086465,49217538,49283074,49414145,49479682,49545217,49610753,49676289,49807361],"num":[6488066],"noscriptaccessattribute":[3080195,11468806,31916033,31981571,42532865,46530561,47382529,48037897],"natively":[8323073,8388609,9043969,9175041,9240577,9306113,9895937,10027009,10420225,10944513,11010049,11403265,34471937],"nonexistent":[35258369,45219841],"nested":[6029313,6488065,7143425,12779521,13172737,13828097,14548993,15335425,16056321,16777217,23068673,23658497,24510465,25165825,29818881,29884417,38928385,42532865,44695553,46268417,48037889,49217537,49283073],"nodefaultscriptaccessattribute":[2162691,17170438,31653891,31916033,46530561,47382537],"normal":[34603009,36241409,38928385,39845889,44105729,44695553],"newobj":[3407876,5767169,6029314,7274497,7405576,7929863,8388609,8323073,8454145,8650758,9043969,9175041,9240577,9306113,9371655,9568257,9895937,10027009,10420225,10944513,11010049,11403265,12648452,21692417,26673157,46596100,48300036],"notifies":[2883585,9764865,46792705],"nullable":[5373956,6094851,35127301,49676290],"new":[2228225,3866625,3997699,4063235,4194307,4325379,4390920,4456451,4718595,4980739,5898243,5963779,6422531,6553601,6619137,6684673,6881281,7340033,7405569,7733249,7864321,7929857,7995393,8060929,8192001,8454145,8650753,8781825,8912897,9109507,9371649,9699331,9830403,10223617,10354691,10682369,10813443,11272195,11468803,11665409,11796483,11927555,11993091,12320771,12451841,12582913,12779523,12845059,12910593,13041665,13172737,13303811,13369345,13500417,13565953,13697025,13828097,13959169,14024705,14090241,14417921,14483459,14548993,14614529,14680065,15007747,15138819,15335425,15466499,15597571,15794179,15859715,16056321,16318467,16449539,16646145,16777219,16973827,17039363,17104899,17170435,17301506,17367041,17498115,17563651,17629187,17760259,17825795,17956867,18022401,18219011,18350083,18612227,18677763,19070979,19136515,19398659,19464195,20054019,20185091,20316163,20381697,20447235,20840451,20905985,20971521,21168131,21495810,21561345,21626883,21692417,21823492,22020100,22085636,22216708,22282241,22413315,22478851,22609924,22675460,22806532,22937603,23003139,23068673,23199748,23265283,23527427,23592964,23658497,23724035,23855107,24117252,24379395,24510465,24576003,24707076,25034755,25100291,25165825,25821187,26148866,26214403,26279941,26476547,26935297,27000835,27525123,27656195,27721734,27852801,27918340,28114947,28377091,28508172,28639233,28770307,28901378,29229058,29294594,29425667,29491204,29556748,29818884,29884420,30343171,30539781,30605320,31457281,31588357,31719426,32178179,32636933,32833539,33161221,33488899,34930690,35389442,37879809,40501250,41680898,42532866,42729477,42991617,43843585,44498945,45350913,45481985,46202900,46530562,46596097,47316993,47382529,47448065,47579138,47906817,48037889,48300033,48365570,48431108,48627717,48758798,48824321,48955397,49086466,49217540,49283076,49348616,49414149,49610753,49676289,49741825,49807365],"net":[9568257,11599873,12517377,15073281,15925249,17432581,33882113,35520513,44630017,47644673,48824324,49479681],"needed":[2490369,3014657,13893633,16252929,23396353,49217537,49283073],"negation":[2228225,3866625,40501249,49741825],"newer":[36241409],"newvar":[3407873,8454150,12648449,34471937,46596097,48300033],"narrowing":[34013185,34996225,35717121,37027841,38404097,39976961,41287681,42336257,47448065,47644673,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"nodes":[6553602,7208962,36634625,42729474],"namespaces":[6553601,7208961,42729473,44630017],"nullptr":[5767169,6619137,7864321,8454145,9568257],"nextdouble":[7405570],"node":[131074,786434,1310722,3145731,3473410,11141121,26148867,33030145,34734084,35192834,36634634,37421058,37945346,38600706,39321609,39518210,39780354,40435714,41025538,41484290,41811975,42926092,43450370,45875201,46989321,47775746],"namespace":[131074,196609,262145,327681,393217,458753,589825,720898,655362,786434,851970,917506,983042,1048577,1114113,1179649,1310721,1245185,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293762,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997698,4063234,4128770,4194306,4325378,4259841,4390913,4456450,4521986,4587522,4653058,4718594,4784130,4849665,4915202,4980738,5046273,5111810,5177345,5308418,5242881,5373954,5439490,5505026,5570561,5636097,5701633,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291457,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602177,7667713,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141125,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648449,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495809,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22937602,22872066,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231361,25296897,25362434,25427970,25493506,25559041,25624577,25690113,25755650,25821186,25886722,25952258,26017793,26083329,26148866,26214402,26279937,26345474,26411009,26476546,26542082,26607617,26673153,26738689,26804225,26869761,26935298,27000834,27066370,27131905,27197441,27262977,27328513,27394050,27459585,27525122,27590657,27656194,27721729,27787265,27852802,27918338,27983873,28049409,28114946,28180481,28246017,28311553,28377090,28442626,28508161,28573698,28639234,28704769,28770306,28835841,28901377,28966913,29032450,29097986,29163522,29229057,29294593,29360129,29425666,29491201,29556737,29622274,29687809,29753346,29818881,29884417,29949953,30015490,30081025,30146562,30212098,30277634,30343170,30408705,30474241,30539777,30605313,30670850,30736385,30801922,30867457,30932993,30998529,31064065,31195138,31129601,31260674,31326209,31391746,31522817,31457281,31588353,31653889,31719425,31784961,31850497,31916034,31981569,32047105,32112642,32178178,32243713,32309251,32374785,32440321,32505857,32571393,32636929,32702465,32768002,32833538,32899074,32964609,33030145,33095682,33161217,33226754,33292290,33423362,33488898,33554434,33619970,33685505,33751042,33816578,33882114,33947650,34013185,34078722,34144257,34209794,34275329,34340866,34406402,34471938,34537475,34603009,34668547,34734081,34799618,34865154,34930689,34996225,35061761,35127298,35192833,35258370,35323906,35389441,35454977,35520514,35586050,35651585,35717121,35782657,35848193,35913730,35979265,36044801,36110338,36175874,36241410,36306945,36372481,36438017,36503554,36569089,36634626,36700162,36765698,36831234,36896770,36962305,37027841,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617665,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141953,38207490,38273027,38338563,38404097,38469634,38535170,38600706,38666242,38731778,38797313,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,40042498,39976961,40108034,40173570,40239106,40304643,40370178,40435714,40501250,40566786,40632322,40697859,40763394,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41287681,41353218,41418754,41484290,41549826,41615362,41680898,41746435,41811970,41877506,41943042,42008578,42074114,42139650,42205186,42270722,42336257,42401794,42467330,42532866,42598402,42663938,42729475,42795010,42860546,42926082,42991618,43057154,43122690,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712514,43778050,43843586,43909122,43974658,44040194,44105730,44171266,44236802,44302338,44367874,44433410,44498946,44564482,44630022,44695554,44761090,44826626,44892162,44957698,45023234,45088770,45154306,45219842,45285378,45350914,45416451,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923778,47054850,46989314,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775746,47841282,47906818,47972354,48037890,48103426,48168962,48234498,48300034,48365570,48431106,48496642,48562178,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086466,49152002,49217538,49283074,49348610,49414146,49479682,49545218,49610754,49676290,49741826,49807362],"necessary":[41549825],"notinheritable":[40960001,42139649,43450369,43778049,43843585,45744129,46137345,46202881,46989313,47185921,47382529,47579137,48037889,48758785,48889857,49348609],"nullsyncinvoker":[327684,983043,6291459,27394049,28573699,29163523,30015491,30670851,30998530,49545224],"nodeid":[34734081,40435717,46989313],"nod":[34734090,36634625,37421057,37945345,38600706,39321601,39518209,39780353,40435713,41025537,41484289,46989322],"numeric":[8323073,8388609,9043969,9175041,9240577,9306113,9895937,10027009,10420225,10944513,11010049,11403265,17432578,21692417,34734082,40435713,41025537,43843585,46989314,49676289],"newarr":[3407874,7340040,7733249,8060930,8912903,12648449,26083331,46596097,48300034],"newcomobj":[7864326,12648449,46596097],"numerical":[35848193,49217537],"number":[131073,786433,1310721,6488065,6750209,6881281,7733249,8060929,10289154,11075586,11337730,11534338,12124162,17432577,19988482,21692417,30474241,34734082,37421058,38076417,38600705,39780354,43515905,46465025,46989314,47775745,48824322],"named":[2228225,3866627,5439490,6553604,7208964,17301505,18546689,19595265,21692417,27131905,27459585,28049409,28311553,31326209,31916033,40501249,42205185,42729476,46465025,49741828],"names":[2228225,3866625,6553601,7208961,9699329,10813441,12845057,13303809,21692417,29360129,31326209,32571393,33554433,35323905,40501249,42729473,48431105,48824321,49741826]} \ No newline at end of file +{"narrowest":[48103425],"native":[25034755,27852801,32440321,40501249,41746434,42336257],"null":[2883586,4587521,5111811,5898242,6291458,7077891,8650754,9240577,9895938,10223618,10420225,13369346,13762561,14155777,18087937,22609921,25034754,25231361,28835842,29556738,30212099,30474241,30539778,31064065,31260674,31391745,31457282,31653889,31850497,32047105,32571393,33161217,33357826,33751043,34078722,34603012,34865153,35192833,35848193,36372481,36569089,36634626,38010882,38207489,39845890,41222146,41615362,41746433,42074114,42926082,43122691,43778050,43974658,44236801,45744129,47513602,48365569,49348610,49414146,49676290,49807362,49872897,49938434,50003970],"num":[5046274],"nullexportvalue":[30539777,31260673,31457281,33357825,34078721,34603013,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"noscriptaccessattribute":[3211267,15269894,24903681,29032451,42860545,43057153,44105737,44367873],"natively":[6750209,6815745,7208961,7340033,7536641,8126465,9568257,10027009,11862017,13631489,14614529,14942209,36438017],"nonexistent":[44236801,45744129],"nested":[5046273,6881281,8585217,11337729,12320769,12582913,12779521,13041665,13172737,13434881,19660801,24576001,25559041,25690113,28246017,29753345,33161217,41222145,42074113,42860545,44105729,47972353,48037889],"nodefaultscriptaccessattribute":[1769475,14811142,24903681,28311555,43057161,44367873],"normal":[27394049,34668545,35127297,38928385,47972353,48037889],"newobj":[2883588,5439489,5767175,5832710,6619143,6750209,6815745,7208961,7340033,7536641,8126465,8585218,8650753,9043976,9568257,9895937,10027009,10223620,11862017,13369345,13631489,14614529,14942209,27852801,41353221,41615364,42926084],"notifies":[1179649,9175041,42598401],"nullable":[3866628,4915203,37421061,41746434],"new":[1703937,3407875,3473411,3538947,4390920,4456451,4521987,4587521,5111809,5373955,5767169,5832705,5898241,5963777,6029315,6094849,6619137,6684673,7143427,7667715,7995393,8192003,8454147,8519683,8978433,9043969,9306113,9502723,9830401,9895937,10158081,10682371,10813443,10878979,11206659,11272195,11337731,11468801,11534337,11599873,11730945,11796481,11927554,11993091,12058625,12124161,12189697,12255233,12320769,12451841,12517379,12582913,12713985,12779521,12910593,13041665,13172737,13434881,13762563,13893633,13959171,14090241,14155779,14286851,14352387,14483459,14680067,14745603,14811139,15204355,15269891,15466499,15532035,15597571,15728641,15794179,15859715,16121857,16318465,16449537,16515075,16646147,16973827,17432579,17498113,17563651,17629187,17760259,18153475,18219011,18284547,18350082,18415619,18481155,18612227,18808835,18874371,19070979,19202051,19595267,19660803,19922948,20054019,20381700,20643844,20774916,20840452,20905987,21037060,21233668,21299203,21692419,21757956,22020099,22216707,22478851,22544388,22675459,22806531,22937603,23265283,23658499,23920642,23986179,24444929,24576001,24641537,24772609,25100292,25296899,25427969,25559044,25690113,25821187,26345474,26476547,26804226,26869772,26935301,27066373,27262978,27328514,27721733,27852801,28246020,28377093,28573702,28639233,29163528,29622284,29753345,30670849,30801923,31588355,32243715,32899075,33030147,34013187,35389443,36241410,37355521,38338561,38993921,39387140,39452675,39911427,40239107,40501249,40894466,41222148,41615361,41680897,41746433,42008581,42074116,42205186,42270721,42860546,42926081,43057153,43253768,43515906,43581441,43974661,44040212,44105729,44367874,44498949,44564481,44957698,45154305,45547521,45613060,45940739,46137345,46202881,46399492,46530563,47251457,47448067,47513614,47906820,48234497,48693249,48889857,49152002,49348609,49414146,49676293,49807365,49938437,50003969],"net":[9437185,9764865,10616833,13107201,13369345,25034757,33751041,33816577,37945345,43778049,48103425,48889860],"needed":[1966081,2162689,10551297,14548993,20447233,41222145,42074113],"negation":[1703937,10158081,41680897,43515905],"newer":[34668545],"newvar":[2883585,9895942,10223617,36438017,41615361,42926081],"narrowing":[30539777,31260673,31457281,33357825,34078721,36634625,38010881,39845889,43974657,47513601,48103425,49348609,49414145,49676289,49807361,49938433,50003969],"nodes":[4587522,5242882,36372481,44498946],"namespaces":[4587521,5242881,37945345,44498945],"nullptr":[5111809,5898241,8650753,9895937,13369345],"nextdouble":[9043970],"node":[131074,720898,1441794,2555907,6946818,23920643,29294594,30081025,30736388,34865153,35323906,35454978,35651586,35717122,36044802,36110338,36372490,36503554,36569097,36896770,37552135,38731788,40960002,41418754,45416449,48824329],"namespace":[65537,131073,196609,262145,327681,393217,458753,524290,655361,720898,786434,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441794,1507329,1638401,1703937,1769473,1835010,1900545,1966081,2031617,2097153,2162689,2228226,2293761,2359297,2424833,2490369,2555905,2621441,2686978,3145729,3014657,2949121,3080193,2752513,917505,3211265,2818049,2883585,3342338,3407874,3473410,3276801,3538946,3604481,3670018,3735553,3801089,3866626,3932162,3997698,4063233,4128770,4194306,4259842,4325377,4390913,4456450,4521986,4587522,4653057,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701633,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225921,6291458,6356994,6422529,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946817,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798785,7864322,7929858,7995394,8060929,8126466,8192002,8257537,8323074,8388610,8454146,8519682,8585218,8650754,8716289,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158081,10223617,10354690,10289154,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927553,11993090,12058626,12124162,12189698,12255234,12320770,12386305,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007745,15073282,15138818,15204354,15269890,15335425,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17956866,17891330,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22216706,22151170,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724033,23789570,23855106,23920642,23986178,24051713,24117250,24182785,24248322,24313858,24379393,24444930,24510466,24576002,24641538,24707073,24772610,24838146,24903682,24969217,25034754,25100289,25165825,25231362,25296898,25362433,25427970,25493505,25559041,25624578,25690114,25821186,25755649,25886721,25952257,26017793,26083330,26148865,26214401,26279937,26345473,26411009,26476546,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656194,27721729,27787265,27852802,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639234,28704769,28770305,28835841,28901378,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29622273,29753346,29818881,29884418,29949953,30015489,30081025,30146561,30212097,30277633,30343170,30408705,30474242,30605314,30539777,30670849,30736385,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260673,31326209,31391746,31522818,31457281,31588354,31653890,31719426,31784962,31850498,31916033,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,32964610,33030146,33095682,33161218,33226754,33292290,33357825,33423362,33488898,33554434,33619970,33685506,33751042,33816578,33882114,33947650,34013186,34078721,34144258,34209794,34275330,34340867,34406402,34471938,34537473,34603010,34668546,34734082,34799618,34865157,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389442,35454978,35520514,35586050,35651586,35717122,35782658,35848194,35913730,35979266,36044802,36110338,36175874,36241409,36306946,36372482,36438018,36503554,36569090,36634625,36700162,36765699,36831234,36896770,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683203,37748738,37814274,37879810,37945350,38010881,38076418,38141954,38207490,38273026,38338562,38404098,38469633,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124995,39190530,39256066,39321603,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39911426,39845889,39976962,40042499,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091074,41156609,41222146,41287682,41353217,41418754,41484290,41549826,41615362,41680898,41746434,41811969,41877506,41943042,42008577,42074114,42139650,42205185,42270722,42336258,42401795,42467329,42532865,42598402,42663937,42729473,42795010,42860546,42926082,42991617,43057154,43122690,43188226,43253762,43319297,43384834,43450370,43515906,43581442,43646978,43712514,43778050,43843586,43909122,43974658,44040194,44105730,44171266,44236802,44302338,44367874,44433410,44498947,44564482,44630017,44695554,44761090,44826625,44892162,44957698,45023234,45088770,45154306,45219843,45285377,45350914,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268417,46333954,46399490,46465026,46530562,46596098,46661634,46727169,46792706,46858242,46923777,46989314,47054850,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644673,47710210,47775746,47841282,47906818,47972354,48037890,48103426,48168962,48234498,48300034,48365570,48431106,48496642,48562178,48627714,48693250,48758786,48824322,48889858,48955395,49020930,49086466,49152002,49217538,49283074,49348610,49414146,49479682,49545218,49610754,49676290,49741826,49807362,49872898,49938434,50003970],"necessary":[37224449],"notinheritable":[40501249,40632321,41418753,41484289,42139649,42795009,43057153,43253761,43450369,44040193,44105729,44957697,45023233,47513601,48824321,49020929],"nullsyncinvoker":[327684,2228227,5701635,20971523,21889027,22413315,23592963,25231361,28966914,49872904],"nodeid":[30736385,36503557,48824321],"nod":[30736394,35323905,35454977,35651586,35717121,36044801,36110337,36372481,36503553,36569089,36896769,48824330],"numeric":[6750209,6815745,7208961,7340033,7536641,8126465,9568257,10027009,11862017,13631489,14614529,14942209,25034754,27852801,30736386,36110337,36503553,40501249,41746433,48824322],"newarr":[2883585,5963784,10223618,13893634,14090241,24641543,41156611,41615362,42926081],"newcomobj":[2883585,5898246,42926081],"numerical":[28835841,41222145],"number":[131073,720897,1441793,4259841,5046273,6094849,10289154,10485762,10747906,11010050,11141122,11665410,13893633,14090241,25034753,27852801,29818881,30736386,30867457,35454978,35651585,35717122,35782657,40960001,42336257,48824322,48889858],"named":[1703937,4128770,4587524,5242884,10158083,18350081,24903681,26017793,26148865,26279937,26542081,27852801,30277633,36962305,41680900,42336257,43515905,44498948,47382529,48758785],"names":[1703937,4587521,5242881,10158081,13762561,13959169,14155777,14680065,27852801,28049409,29425665,30277633,39649281,41680898,43515905,44171265,44498945,47906817,48889857]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_111.json b/docs/Reference/fti/FTI_111.json index d8084fab9..3231e8718 100644 --- a/docs/Reference/fti/FTI_111.json +++ b/docs/Reference/fti/FTI_111.json @@ -1 +1 @@ -{"outside":[10551297,10878977,11862017,12255233,41353217,45154305,46071809],"old":[31457281,37158916,38666241,47579137],"occurs":[196609,393217,458753,851969,31916033,42729473,48431105,49217538],"owner":[38797313,42467329,47841281],"object":[393217,1114123,1179659,1245193,1376267,1441803,1507339,1572875,1638411,1703940,1769483,1835017,2097163,2162697,2228243,2293771,2490377,2555915,2621451,2686985,2752523,2818057,2883585,2949131,3014657,3080201,3145739,3276811,3342347,3407916,3473414,3538955,3670027,3735563,3801099,3866653,4259864,4390923,4849665,5046295,5177367,5242903,5439489,5570566,5636107,5701655,5767173,5832709,6029324,6160390,6225925,6291467,6357003,6488077,6553602,6684679,6750213,6815750,6881293,6946828,7012364,7077897,7143430,7208962,7274497,7340038,7405580,7471111,7536643,7602199,7667735,7733263,7798798,7864328,7929860,7995409,8060940,8126471,8192013,8257545,8323079,8388615,8454151,8519693,8585225,8650765,8716293,8781837,8847367,8912903,9043975,9175047,9240583,9306119,9371669,9437186,9568273,9764868,9895943,10027015,10092546,10420231,10485768,10944519,11010055,11206659,11403271,11599878,12058630,12189702,12451843,12517382,12582915,12648493,12910593,12976134,13041668,13172738,13238277,13369348,13434886,13500419,13565953,13697028,13762566,13893633,13828098,13959169,14024705,14090244,14221317,14286853,14352390,14417924,14548994,14614529,14680065,14876677,15007745,15073286,15204354,15335426,15728645,15859713,15925254,16056322,16187405,16252929,16384005,16646151,16711692,16842762,16908299,17301511,17432583,17891329,18153477,18546689,19005446,19333121,19595276,19660802,20381697,20905985,20971523,21495831,21561348,21692426,22282250,22740997,23003137,23068674,23265281,23658498,23724033,24248328,24444929,24510466,24576001,25100289,25165826,25231362,25296898,25493506,25690117,25821185,26017796,26083329,26476545,26607618,26673159,26738692,26935298,27131906,27197442,27394049,27459587,27525121,27787268,28049411,28180483,28311556,29032450,30408712,30474245,31326212,31457283,31916035,32178177,32440322,32833537,33488897,34209799,34668551,34799624,35258375,35520516,35848193,36241409,36700167,37158916,37879809,38273032,38338561,38666241,39256065,39583751,39845900,40304642,40370181,40501268,40697857,40960001,41091073,41418764,41615368,41680902,41746440,42139660,42205199,42532874,42729486,42795020,42991628,43450380,43778060,43843595,44433415,44498956,45154305,45219852,45350924,45416449,45481996,45613062,45678594,45744129,45875212,46137345,46202892,46465055,46530570,46596142,46792706,46989324,47185925,47317004,47382538,47448088,47579151,47775750,48037898,48103426,48234508,48300077,48431128,48496652,48627736,48693262,48758808,48824326,48889857,48955416,49020940,49086489,49152001,49217549,49283073,49348618,49414168,49479683,49545228,49610776,49676291,49741859,49807384],"overriding":[42008577],"optional":[4784130,5111809,5373955,5767171,6029313,6094851,6488065,6619139,6750210,7405569,7864323,8454147,8650753,9371649,9502721,9568259,10158081,13828097,14548993,14876673,15269889,15728642,15990786,16187393,16842753,16908289,17235970,17301505,18284546,19202050,19595265,19857409,20512770,20578305,21364737,21692417,22151169,23330817,24051714,24510465,24903682,25165825,30277633,31916034,32309249,33423361,34537473,34734081,35061763,35127297,36044802,36175873,39518209,41680899,42205185,45350914,46596097,46989313,48300033],"occupying":[15400961,18415617,28442625],"optimized":[19267585,23986177,24182785,24772609,25755649,31391745,34734081,39518209,46989313],"override":[851969,2228233,3866633,4128769,4521985,4587521,4915201,5373953,5439489,8585217,11730945,12058625,13107201,13631489,13762561,13893635,14155779,15204355,15400961,16252929,16580609,18415617,19267586,19660803,21037059,21889027,23986180,24182788,24641539,24772612,24969219,25362435,25493507,25755652,25952259,26542083,28573697,29032451,29163521,30015489,30670849,30801923,31391748,33554433,34209793,34799617,34865153,36241409,36503555,37224451,37355521,37748739,38010881,38076417,38273027,38535169,38862849,39059457,39387139,39583745,40042499,40501257,40697859,41746435,42860545,43253763,43319297,43646977,43712515,43909121,44433409,45088771,45416451,46530561,46858241,47382529,49741833],"operationcanceledexception":[49283077],"outermost":[38928385,41549825,44695553],"occurred":[524289],"options":[4259854,4390917,5046286,5177358,5242894,5701646,7602190,7667726,12451842,12910594,13041666,13172738,13565954,13697026,13959170,14614530,16973826,17498114,17629186,17760258,17956866,18022402,18219010,18350082,19070978,19398658,19464194,20054018,20185090,20447234,20840450,20971522,21495823,21561346,21692418,22020098,22413314,22609922,22806530,23003138,23068674,23199746,23265281,23527426,23592962,23724034,24117250,24379394,24510466,24707074,25034754,25100290,25165826,26148870,26411012,26476546,26738689,26935297,27000834,27525122,27590660,27721732,27918338,28377090,28508168,28639234,28770306,29229057,29425666,29556744,30343169,30408708,30539779,30605316,30932993,31588355,31916036,32440321,32636931,32833538,33161219,34275329,34930689,36044801,38731777,38862850,39124994,39911425,40304642,44302338,45350913,45547521,46202893,46399490,47448078,47906818,48365569,48627729,48758807,48824322,48889857,48955409,49086478,49348614,49414161,49479682,49610766,49676290,49807377],"overloads":[17629185,17760257,18219009,18677761,19398657,22478849],"offset":[10289158,11075590,11337734,12124166,30736386,31850498,32505858,32964610,38469633,41943042,42598402,43384833,43974658,44236801,45023234,46333958],"overridable":[4128769,4521985,4587521,4915201,5373953,5439489,13631489,16252929,16580609,19267585,38076417,43646977],"operators":[43843585],"operation":[5373954,6094851,7995393,8192001,8650754,8781825,9568257,11599873,12189697,12386305,12451841,12517377,12713985,12910593,12976129,13041665,13172737,13238273,13434881,13565953,13697025,13959169,14352385,14614529,15073281,15925249,16711681,17629185,17760257,18219009,19070977,19398657,19464193,20054017,20185089,20447233,20840449,20971521,21561345,21692417,22020097,22413313,22609921,22806529,23003137,23068673,23199745,23265281,23527425,23592961,23724033,24117249,24379393,24510465,24707073,25034753,25100289,25165825,26476545,27000833,27525121,27918337,28377089,28770305,29425665,30343169,32833537,37814273,39452673],"output":[6684673,8060929,19267586,23986178,24182786,24772610,25755650,31391746,34471937],"operations":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228246,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866646,4259841,4390913,5046273,5177345,5242881,5570561,5636097,5701633,6291457,7602177,7667713,9764866,12648449,15204353,21495809,39845889,40501270,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47448065,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48955393,49020929,49086465,49217537,49348609,49414145,49545217,49610753,49741846,49807361],"obj":[6619141],"observed":[131073,26148865,38600705,47775745],"owns":[31326209,41091073,49741825],"operator":[7798785,8257537,10485761,11206657],"option":[40304642,44302337,45547521,47906817,48365570,48824327,49676293],"onexposedtoscriptcode":[2883585,9764869,46792705],"overridden":[1245186,1835010,2162690,2490369,2686978,2818050,3080194,8585217,42532866,43843586,46530562,47382530,48037890,49217537,49348610],"occurrence":[2555905,46465025],"outcome":[9568257],"objec":[15204353,31326210,35323905,39649281,42663937,48824321,49741826],"outattribute":[13762562,17694722,18284546,18808834,19202050,19726338,19857410,20512770,20774914,21102594,21233666,21299202,21364738,21954562,22151170,22544386,23134210,23920642,24838146,24903682,25886722,30277634,31195138,32112642,33226754],"optionally":[4259843,5046275,5177347,5242883,5701635,7602179,7667715,13631489,14942209,17432577,21495811,21889025,25362433,26804225,27262977,28246017,32047105,36962305,37617665,38141953,47448067,48627715,48758787,48955395,49086467,49414147,49610755,49807363],"overload":[3997697,4063233,4194305,4325377,4653057,4784129,5111809,5505025,6029313,6160385,6356993,6488065,6553601,6815745,6881281,7012353,7077889,7143425,7208961,7340033,7405569,7471105,7536641,7733249,7929857,8126465,8192001,8650753,8781825,8912897,8978433,9109505,9371649,9437185,9502721,9633793,9699329,9830401,9961473,10092545,10158081,10354689,10485761,10551297,10616833,10747905,10813441,10878977,11206657,11599873,11796481,11862017,11993089,12189697,12255233,12320769,12451841,12517377,12582913,12779521,12845057,12910593,12976129,13041665,13172737,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13828097,13959169,14024705,14090241,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14876673,14942209,15007745,15073281,15138817,15269889,15335425,15400961,15466497,15532033,15597569,15728641,15794177,15859713,15925249,15990785,16056321,16318465,16384001,16449537,16515073,16646145,16777217,16973825,17104897,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18546689,18612225,18677761,18743297,18808833,19005441,19070977,19202049,19398657,19464193,19529729,19595265,19726337,19857409,19922945,20054017,20119553,20185089,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20840449,20905985,20971521,21102593,21168129,21233665,21299201,21364737,21561345,21626881,21757953,21692417,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23330817,23396353,23527425,23592961,23724033,23855105,23920641,24051713,24117249,24379393,24510465,24576001,24707073,24838145,24903681,25034753,25100289,25165825,25231361,25296897,25362433,25559041,25624577,25690113,25821185,25886721,26017793,26083329,26214401,26279937,26345473,26411009,26476545,26607617,26673153,26738689,26804225,26869761,27000833,27131905,27197441,27262977,27328513,27459585,27525121,27590657,27721729,27656193,27787265,27852801,27983873,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28508161,28639233,28704769,28770305,28835841,28901377,28966913,29163521,29229057,29294593,29425665,29491201,29556737,29818881,29884417,29949953,30015489,30081025,30146561,30277633,30408705,30539777,30605313,30867457,30998529,31195137,31260673,31588353,31719425,32047105,32178177,32112641,32440321,32636929,32833537,33161217,33226753,33488897,34930689,35389441,35651585,35979265,36438017,36569089,36962305,37617665,38141953,40566785,41615361,42205185,46858241,47382529,48037889,48562177],"obsoleteattribute":[15138820,37158916,39256068,40828932,41549828],"omit":[6160385,6356993,6815745,7012353,11599873,12189697,12517377,12976129,13434881,14352385,15073281,15925249,16711681],"one":[2228225,2490369,3866625,6553602,6946817,7208962,7340033,7995393,8847361,8912897,9568257,9699329,9764865,9830401,10354689,10813441,12648450,17301505,17629185,17760257,18219009,19398657,21692418,26279940,31129604,35258369,35848194,36306946,36438018,38010881,39583745,40501249,42729477,42860545,43122689,44171265,44433409,44564481,45219841,45613057,46268417,46596098,47251460,48300033,49217539,49283074,49741825],"objects":[2228225,3866625,6029313,6488065,7143425,13172737,13828097,14548993,15335425,16056321,17432579,21692418,23068673,23658497,24510465,25165825,34013186,34668545,34996226,35717122,36765697,37027842,38273025,38404098,39190530,39649281,39976962,40304642,40501249,41287682,41746433,42336258,43843585,46465025,46858241,47448066,48627714,48758786,48824324,48955394,49086466,49414146,49610754,49676290,49741825,49807362],"overloaded":[7077890,7405569,7536641,9371649,10485762,11206657,21692417],"occupies":[37158916],"open":[26148865,44630017],"older":[33882113,47972353],"ownerhandle":[38797313,42467333,47841281],"obsolete":[15138817,29294593,31457282,32702465,34275329,37158913,39256065,40828929,41549825,44302337,45547521,47579138,48496641,48889857,49086465],"overrides":[2490370,2752513,3670017,4128769,4259841,5046273,5177345,5242881,5636097,5701633,7602180,13893633,14155777,15204354,19660801,21037057,21495813,21889025,23986177,24182785,24641537,24772609,24969217,25362433,25493505,25755649,25952257,26542081,29032449,30801921,31391745,32047105,32374787,34013187,35717121,36503553,36962305,37027841,37224449,37748737,38273025,38404098,39387137,40042497,39976961,40697857,41287681,41746433,43253761,43712513,44498947,45088769,45219841,45416449,47448070,48627714,48693249,48758792,48955394,49020929,49086465,49217538,49414146,49807362]} \ No newline at end of file +{"outside":[8912897,9109505,9961473,15073281,37027841,43188225,49217537],"old":[30670849,43909124,44892161,44957697],"occurs":[262145,393217,655361,786433,24903681,41222146,44498945,47906817],"owner":[38076417,38469633,49545217],"object":[655361,851979,917515,983049,1048580,1114123,1179649,1245195,1376265,1703955,1769481,1900555,1966089,2097163,2162689,2293771,2359307,2424843,2490379,2555915,2621451,2686987,3145739,3014662,2949131,3211273,2818059,2883629,3735553,3801097,4063243,4128769,4259845,4325385,4390923,4587522,4653067,4784133,4849670,5046285,5177355,5242882,5308428,5439489,5505030,5570567,5636105,5701643,5767172,5832717,5898248,5963782,6094861,6160391,6225931,6291470,6356994,6422539,6488071,6619157,6684685,6750215,6815751,6881286,6946822,7077893,7208967,7274505,7340039,7405581,7471113,7536647,7602181,7798807,7864323,7995405,8060951,8126471,8257560,8388610,8585228,8650757,8716299,8978449,9043980,9175044,9306119,9371654,9437190,9568263,9633798,9764870,9895943,10027015,10092550,10158109,10223660,10354700,10420230,10551297,10616838,11206657,11403269,11534340,11730948,11796483,11862023,11927575,12058627,12124161,12189697,12255233,12320770,12386315,12451843,12582914,12648454,12713985,12779522,12910593,12976133,13041666,13107206,13172738,13303813,13369361,13434882,13500421,13631495,13893644,14024709,14090255,14548993,14614535,14876684,14942215,15007767,15335447,15728641,15925261,15990794,16252930,16449537,16515073,16842763,17170433,17498119,18350087,19857413,20905985,21299201,21692417,21823489,22020097,22216705,22478849,22675457,22806529,22937601,23396354,23658497,23855112,24051716,24117250,24182789,24379396,24444932,24510467,24641543,24576002,24707095,24772610,24838152,24969218,24903683,25034759,25165826,25231361,25427969,25493512,25690114,25755650,26017794,26083333,26148867,26279939,26542084,26673156,27656197,27852810,28639242,28835841,29753346,29818885,30277636,30605318,30670851,31391750,32047111,33423362,33751044,34340865,34537495,34603016,34668545,35520513,35848199,36306952,36962319,37355524,37683201,38338563,38928396,38993932,39125000,39321608,39583749,39714828,39911425,40501259,40632332,40894470,40960006,41091084,41156609,41222157,41353223,41418764,41484289,41615405,41680931,41746435,41811970,42074113,42139649,42270732,42336287,42401794,42598402,42795009,42860554,42926126,42991618,43057162,43188225,43253770,43450373,43515924,43581452,43712520,43778051,43909124,43974680,44040204,44105738,44236812,44302348,44367882,44498958,44564481,44630019,44695559,44892161,44957711,45023244,45154316,45219847,45350913,45416460,45744135,46137348,46202892,46858241,47054855,47251460,47382529,47513624,47906840,48168966,48300034,48758796,48824332,48889862,48955393,49020929,49086476,49283084,49348632,49414169,49479681,49610754,49676312,49741838,49807384,49872908,49938456,50003992],"overriding":[39059457],"optional":[3670017,3866627,4259842,4915203,4980738,5046273,5111811,5832705,5898243,6619137,8323073,8650755,8585217,8847361,9043969,9895939,12779521,13172737,13303810,13369347,13500417,15925249,15990785,16384002,16711682,16842753,16908289,17039361,17694722,18022401,18350081,18939905,19529730,19726338,20578306,21626881,22740993,24576001,24903682,25690113,27852801,30736385,30932993,31129601,35323905,36765697,36962305,37289985,37421057,38141954,40042497,40894467,41615361,42270722,42926081,46268419,46923778,48758785,48824321],"occupying":[17367041,23199745,45875201],"optimized":[14417921,21102593,21561345,23461889,24313857,30736385,35323905,45481985,48824321],"override":[786433,1703945,3866625,3932161,4128769,4194305,6553601,7274497,9240577,10158089,10420225,10551299,11075585,13238273,13565953,14417922,14548993,15138817,16252931,17367041,20316163,20971521,21102596,21561348,21889025,21954563,22085635,22282243,22413313,22872067,23003139,23068675,23396355,23461892,23527427,23592961,24117251,24313860,30605313,30867457,31064065,31981569,32047105,32571393,33226753,33882113,33947649,34275329,34668545,34799619,35061761,35848193,37158915,37683203,37814273,37879811,38666243,39124995,39321603,40566787,41025539,41287683,41680905,43057153,43384835,43515913,43712513,44171265,44367873,44695553,45481988,45875201,47841281,48300035,48365569,48496643,48955395],"operationcanceledexception":[42074117],"outermost":[37224449,47972353,48037889],"occurred":[589825],"options":[4390917,7798798,8060942,8257550,11534338,11796482,11927567,12124162,12189698,12713986,12779522,13172738,13434882,14483458,14745602,15007758,15335438,15466498,16121858,17563650,17629186,17760258,18153474,18284546,18415618,18612226,18874370,19595266,20054018,20381698,20643842,20774914,21037058,21233666,21692418,21757954,22020098,22478850,22544386,22806530,22937602,23265282,23658498,23920646,24707086,24772609,24903684,25165825,25296898,25427970,25493508,26214404,26345473,26673153,26869768,26935299,27066371,27262977,27590660,27721731,27852802,28377091,28573700,29163524,29622280,29753346,29949953,31588354,31916033,32899074,34013186,34537486,35389441,37355522,37814274,38338562,39256065,39452674,39911425,40239106,41746434,41943042,42270721,42401794,43253766,43778050,43974673,44040205,44761089,45547522,45613058,45678593,45809666,46137346,46530562,46923777,47448066,47513623,47775746,48693250,48889858,49020929,49152001,49348622,49414158,49676305,49807377,49938449,50003982],"overloads":[16973825,17563649,17760257,18415617,18612225,19202049],"offset":[10289158,10485766,11010054,11141126,28180482,28704770,29360130,30408706,32636934,39780353,40304641,40697858,41549825,44433410,45088770,47710210],"overridable":[3866625,3932161,4128769,4194305,6553601,9240577,13238273,14417921,14548993,15138817,30867457,31064065],"operators":[40501249],"operation":[3866626,4915203,5832706,6684673,7995393,8978433,9371649,9437185,9633793,9764865,10092545,10354689,10616833,10944513,11403265,11534337,11796481,12124161,12189697,12648449,12713985,12779521,13107201,13172737,13369345,13434881,17563649,17629185,17760257,18153473,18284545,18415617,18612225,18874369,19595265,20054017,20381697,20643841,20774913,21037057,21233665,21692417,21757953,22020097,22478849,22544385,22806529,22937601,23265281,23658497,25427969,27852801,29753345,31195137,31588353,32899073,33619969,34013185,35389441,37355521,38338561,39452673,39911425,40239105,45613057,46137345,46530561,47448065,48627713],"output":[9306113,13893633,14417922,21102594,21561346,23461890,24313858,36438017,45481986],"operations":[851969,917505,983041,1114113,1245185,1376257,1703958,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,3211265,2818049,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,7798785,8060929,8257537,8716289,9175042,10158102,10223617,11927553,12386305,15007745,15335425,24707073,34537473,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680918,42270721,42860545,42926081,43057153,43253761,43515926,43581441,43974657,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48300033,48824321,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"obj":[5111813],"observed":[1441793,23920641,35651585,40960001],"owns":[30277633,35520513,41680897],"operator":[5636097,6291457,7864321,24838145],"option":[41746437,41943041,42401794,44761089,45547521,48889863,49152002],"onexposedtoscriptcode":[1179649,9175045,42598401],"overridden":[983042,1376258,1769474,1966081,3211266,3801090,4325378,7274497,40501250,41222145,42860546,43057154,43253762,44105730,44367874],"occurrence":[1900545,42336257],"outcome":[13369345],"objec":[30277634,34996225,39649281,39976961,41680898,48300033,48889857],"outattribute":[10420226,16711682,17039362,17104898,17235970,17301506,17694722,17891330,18022402,18546690,19005442,19333122,19529730,19988482,20119554,20185090,20250626,20512770,20578306,21168130,21430274,21495810,21626882,22347778,22740994],"optionally":[7798787,8060931,8257539,11927555,13238273,15007747,15335427,22085633,22872065,24707075,25034753,25362433,25886721,26411009,26607617,27197441,27459585,29229057,34537475,43974659,46792705,47513603,49348611,49414147,49676291,49807363,49938435,50003971],"overload":[3407873,3473409,3670017,4521985,4587521,4718593,4849665,4980737,5046273,5177345,5242881,5308417,5505025,5570561,5767169,5832705,5963777,6029313,6094849,6160385,6356993,6619137,6684673,6881281,7012353,7471105,7733249,7864321,7929857,7995393,8323073,8388609,8454145,8585217,8781825,8847361,8912897,9043969,9109505,9371649,9437185,9633793,9699329,9764865,9961473,10092545,10616833,10682369,10813441,10878977,11206657,11272193,11337729,11534337,11730945,11796481,11993089,12058625,12124161,12189697,12255233,12451841,12517377,12582913,12648449,12713985,12779521,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13434881,13500417,13697025,13762561,13828097,13959169,14024705,14090241,14155777,14286849,14352385,14483457,14680065,14745601,15073281,15204353,15466497,15728641,15794177,15859713,16121857,16187393,16318465,16384001,16449537,16515073,16646145,16711681,16777217,16908289,16973825,17039361,17104897,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17956865,17891329,18022401,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20381697,20447233,20512769,20643841,20578305,20774913,20840449,20905985,20971521,21037057,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21889025,22020097,22085633,22216705,22151169,22347777,22478849,22544385,22675457,22740993,22806529,22872065,22937601,23265281,23658497,23724033,23986177,24051713,24182785,24379393,24444929,24510465,24576001,24641537,24838145,24969217,25034753,25100289,25165825,25296897,25362433,25427969,25493505,25559041,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27197441,27262977,27328513,27459585,27525121,27590657,27721729,27656193,27787265,27852801,27918337,28246017,28377089,28573697,28639233,28770305,28966913,29163521,29229057,29622273,29753345,29884417,30343169,30801921,31588353,32243713,32899073,33030145,33947649,34013185,34734081,36241409,36306945,36962305,37289985,37355521,38141953,38338561,38862849,39387137,39452673,40239105,41156609,41353217,41811969,42008577,42205185,42467329,42532865,42663937,42729473,42991617,43057153,43319297,44105729,44630017,44826625,45285377,45613057,45875201,45940737,46399489,46137345,46530561,46792705,46858241,47251457,47382529,47448065,47579137,48168961,48234497,48431105,48758785,48693249],"obsoleteattribute":[16646148,37224452,40763396,43909124,45350916],"omit":[4849665,5177345,5308417,5505025,9371649,9437185,9633793,9764865,10092545,10354689,10616833,12648449,13107201],"one":[1703937,1966081,2883586,4587522,5242882,5963777,6488065,8454145,8978433,9175041,10158081,12517377,13369345,13959169,14680065,14876673,17563649,17760257,18350081,18415617,18612225,24641537,27852802,28835842,29556738,30212100,30998529,31391745,31653889,32047105,32571393,33161217,35192833,35848193,41222147,41615361,41680897,42008580,42074114,42729474,42926082,43122692,43515905,44236801,44498949,45744129,48365569],"objects":[1703937,5046273,6881281,8585217,10158081,12320769,12582913,12779521,13041665,13172737,13434881,24576001,25034755,25690113,27852802,29753345,30539778,31260674,31457282,33357826,33947649,34078722,35586049,36634626,38010882,39124993,39190530,39321601,39845890,39976961,40501249,41680897,41746434,42336257,42401794,43515905,43974658,45219841,47513602,48889860,49348610,49414146,49676290,49807362,49938434,50003970],"overloaded":[6619137,7471106,7864321,9043969,24510465,24838146,27852801],"occupies":[43909124],"open":[23920641,37945345],"older":[33554433,33816577],"ownerhandle":[38076421,38469633,49545217],"obsolete":[16646145,27328513,29687809,30670850,31916033,37224449,40763393,41091073,41943041,43909121,44761089,44957698,45350913,49020929,49414145],"overrides":[1966082,4194305,6422529,8060929,8257537,8716289,10551297,11927557,12386305,15007745,15335425,16252929,20316161,21102593,21561345,21954561,22085633,22282241,22872065,23003137,23068673,23396353,23461889,23527425,24117249,24313857,24707073,27459585,29229057,29491203,31260673,31457283,33357825,34537476,34799617,36634625,37158913,37683201,37879809,38010882,38666241,39124993,39321601,39845889,40566785,41025537,41287681,41222146,43384833,43581443,43974658,44236801,45481985,47513608,48300034,48496641,48955393,49283073,49348614,49414145,49676290,49741825,49807362,49938434]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_112.json b/docs/Reference/fti/FTI_112.json index 3bfd005d6..65f5a623a 100644 --- a/docs/Reference/fti/FTI_112.json +++ b/docs/Reference/fti/FTI_112.json @@ -1 +1 @@ -{"presentation":[14942209,15138817,15532033,15597569,17432577,17760257,18153473,18677761,19070977,19398657,20054017,20709377,21102593,21168129,21233665,21626881,21757953,21954561,22085633,22413313,22544385,22675457,22806529,23003137,23199745,23265281,23592961,23724033,23855105,24379393,25034753,25821185,26476545,27525121,27656193,27918337,28377089,28770305,29425665,30343169,33488897],"point":[8519681,34013185,34996225,35717121,37027841,38404097,39976961,41287681,42336257,47448065,47644674,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"present":[14942209,15532033,16384001,16515073,17432577,18153473,40894465],"propagation":[34013185,35782657,38928385,44695553,46202881,48758785],"platform":[11599873,12517377,15073281,15925249,33882113],"page":[524289,33357828],"process":[19267585,23986177,24182785,24772609,25755649,31391745,41353218,41877505,46071810,46727169,48365570],"polluting":[32309249,34537473],"preventing":[48365570],"proc":[3407873,8060934,12648449,46596097,48300033],"patching":[49676291],"params":[6029313,6488065,6553601,6946817,7208961,7274497,7340033,7405569,7995393,8650753,8847361,8912897,9371649,9502721,9699329,9830401,10158081,10354689,10813441,13828097,14548993,16187393,16842753,16908289,17301505,19595265,23658497,24510465,25165825,42205185],"populates":[2490369,3014657,13893633,16252929,49217537,49283073],"propertychangedeventhandler":[851976],"protocol":[20250625,20643841],"parameter":[6160385,6356993,6815745,7012353,8388609,8323073,8454145,9043969,9175041,9240577,9306113,9895937,10027009,10420225,10944513,11010049,11403265,11599873,12189697,12517377,12976129,13434881,13631489,14352385,15073281,15925249,16711681,21889025,25362433],"profiler":[131073,26148865,38600705,47775745],"particular":[2555905,13697025,14417921,46465025],"pause":[48824321],"perform":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4390913,5439489,5570561,5636097,6291457,8650753,12648449,14811137,18939905,24641537,30801921,35520513,38338561,39845889,40501249,40697857,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45416449,45481985,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48693249,48824323,49020929,49217537,49348609,49479681,49545217,49741825],"propertybag":[196609,458755,851970,2293774,2621450,7929861,11141125,11730947,11796487,12058627,12320777,12386307,12713987,12845064,13107204,13238275,13303815,13762563,29360136,29491210,31916033,32571399,33554435,34078723,34209795,34799619,42729500,48431130],"paramarray":[6029313,6488065,6553601,6946817,7208961,7274497,7340033,7405569,7995393,8650753,8847361,8912897,9371649,9502721,9699329,9830401,10158081,10354689,10813441,13828097,14548993,16187393,16842753,16908289,17301505,19595265,23658497,24510465,25165825,42205185],"platforms":[33882113],"physical":[32243713,41156609,48234497],"passing":[8323073,8388609,8454145,9043969,9175041,9240577,9306113,9895937,10027009,10420225,10551297,10878977,10944513,11010049,11403265,11862017,12255233],"prevent":[41353217,46071809],"predicate":[2293762,9633798,9699334,9830406,10747910,26279938,28704770,42729476],"profiles":[4390913,17367041,18022401,18481153,21495809,27852801,28639233,30212097,37552129,44040193,46202881,48758785],"progid":[4259848,5046280,5177352,5242888,5701640,5767175,7602184,7667720,7864327,12451848,12582920,12910600,13041672,13369352,13565960,20381704,20905992,21495816,23265287,23724039,25034759,26411012,27525127,29425671,30343175,30408708,47448072,48627720,48758792,48955400,49086472,49414152,49610760,49807368],"provide":[2228225,3866625,6553601,7208961,23396353,25427969,26148865,26935297,27394049,33882113,34013185,34996225,35717121,35848193,36765697,37027841,38404097,39976961,40501249,41287681,42336257,42729473,44630020,47448065,48627713,48758785,48955393,49086465,49217537,49414145,49610753,49741825,49807361],"permitted":[34013186,34996225,35717121,35782657,36241409,37027841,38404097,39976961,41287681,41877505,42336257,45678594,46202881,46727169,47448065,48627713,48758786,48955393,49086465,49414145,49610753,49807361],"processing":[48365569],"path":[7274498,7864321,39124996],"predate":[37158913,37879809,38666241,39256065],"provides":[2228237,3866637,4849665,8650753,17432577,21692417,24248321,26935297,27394050,31916040,32374785,34144257,36503553,40501261,41418753,42795009,43188225,44498946,46596097,47316994,47448065,48103425,48300033,48431105,49020929,49086465,49545217,49610753,49741837],"post":[48365569],"port":[4390914,17629186,17760260,18219012,19070978,19398658,20054018,20185090,20840450,22609922,23592962,24707074,27721730,27918338,28508164,29556740,46202886,48758788],"populate":[5767169,6684673,7733249,8060929,8454145,13893633,16252929],"pairs":[35848193,49217537],"previously":[4390918,18284545,18808833,19857409,20774913,21233665,21364737,21495814,22544385,23134209,24838145,24903681,30081027,30867459,31195137,33226753,35651587,36569091,46202886,48758790],"provided":[2555905,6946817,7405569,7471105,7929857,7995393,8126465,8192001,8650753,8781825,8847361,9371649,9437185,10092545,46465025],"programming":[6160385,6356993,6815745,7012353,11599873,12189697,12517377,12976129,13434881,14352385,15073281,15925249,16711681],"propertynames":[31326209,35323909,49741825],"packages":[8323073,8388609,9043969,9175041,9240577,9306113,9895937,10027009,10420225,10944513,11010049,11403265],"public":[131075,720899,655363,786435,851971,917507,983043,3997699,4063235,4128771,4194307,4325379,4456451,4521987,4587523,4653059,4718595,4784131,4915203,5111811,5308419,5373955,5439491,5505027,5767171,5832707,5963779,6029315,6094851,6160387,6225923,6356995,6488067,6553603,6619139,6684675,6750211,6815747,6881283,6946819,7012355,7077891,7143427,7208963,7274499,7340035,7405571,7471107,7536643,7733251,7798787,7864323,7929859,7995395,8060931,8126467,8192003,8257539,8323075,8388611,8454147,8519683,8585219,8650755,8716291,8781827,8847363,8912899,8978435,9043971,9109507,9175043,9240579,9306115,9371651,9437187,9502723,9568259,9633795,9699331,9830403,9895939,9961475,10027011,10092547,10158083,10354691,10420227,10485763,10616835,10747907,10813443,10944515,11010051,11141123,11206659,11272195,11403267,11468803,11599875,11730947,11796483,11927555,11993091,12058627,12189699,12320771,12386307,12451843,12517379,12582915,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13172739,13238275,13303811,13369347,13434883,13500419,13565955,13631489,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,15073283,15269891,15335427,15400963,15466499,15532035,15663107,15728643,15794179,15925251,15990787,16056323,16121859,16187395,16252931,16318467,16384003,16449539,16515075,16580611,16646147,16711683,16777219,16842755,16908291,16973827,17039363,17104899,17170435,17235971,17301507,17367043,17432579,17498115,17563651,17629187,17694723,17760259,17825795,17891331,17956867,18022403,18087939,18153475,18219011,18284547,18350083,18415619,18481155,18546691,18612227,18677763,18743299,18808835,18874371,18939907,19005443,19070979,19136515,19202051,19267587,19333123,19398659,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,20054019,20119555,20185091,20250627,20316163,20381699,20447235,20512771,20578307,20643843,20709379,20774915,20840451,20905987,20971523,21037059,21102595,21168131,21233667,21299203,21364739,21430275,21561347,21626883,21692419,21757955,21823491,21889025,21954563,22020099,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740995,22806531,22937603,23003139,23068675,23134211,23199747,23330819,23396355,23527427,23592963,23658499,23855107,23920643,23986179,24051715,24117251,24182787,24313859,24379395,24444931,24510467,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25100291,25165827,25362433,25493507,25755651,25821187,25886723,25952259,26214403,26345475,26476547,26542083,27000835,27066371,27656195,27852803,27918339,28114947,28377091,28442627,28573699,28639235,28770307,29032451,29097987,29163523,29753347,30015491,30212099,30277635,30670851,30801923,31195139,31260675,31391747,32112643,32178179,32309251,32768003,32833539,32899075,33095683,33226755,33292291,33423363,33488899,33554435,33619971,33751043,33816579,33882115,33947651,34013185,34078723,34209795,34406403,34471939,34537475,34668547,34799619,34865155,34996225,35127299,35258371,35323907,35520515,35586051,35717121,35913731,36110339,36175875,36241412,36503555,36634627,36700163,36765699,36831235,36896771,37027841,37093379,37158915,37224451,37289987,37355523,37421059,37486595,37552131,37683203,37748739,37814275,37879811,37945347,38010883,38076419,38207491,38273027,38338563,38404097,38469635,38535171,38600707,38666243,38731779,38862851,38928387,38993923,39059459,39124995,39190531,39256067,39321603,39387139,39452675,39518211,39583747,39649283,39714819,39780355,39845891,39911427,39976961,40042499,40108035,40173571,40239107,40304644,40370179,40435715,40501252,40566787,40632323,40697859,40763395,40828931,40894467,40960003,41025539,41091075,41156611,41222147,41287681,41353219,41418755,41484291,41549827,41615363,41680899,41746435,41811971,41877507,41943043,42008579,42074115,42139652,42205187,42270723,42336257,42401795,42532868,42598403,42663939,42729476,42795011,42860547,42926083,42991619,43057155,43188227,43253763,43319299,43384835,43450371,43515907,43646979,43712515,43778052,43843588,43909123,43974659,44040195,44105731,44236803,44302339,44367875,44433411,44498948,44695555,44761091,44892164,44957699,45023235,45088771,45154307,45219843,45350915,45416451,45481987,45547523,45678595,45744131,45809667,45875203,46006275,46071811,46137347,46202883,46268419,46399491,46465027,46530564,46596100,46727171,46792707,46858243,46923779,46989315,47120387,47185923,47251459,47316995,47382532,47448069,47579139,47644675,47710211,47775747,47841283,47906819,47972355,48037892,48103427,48168963,48234499,48300035,48365571,48431107,48496643,48562179,48627717,48693251,48758789,48824323,48889859,48955397,49020931,49086468,49152003,49217540,49283076,49348612,49414149,49479683,49545219,49610757,49676291,49741828,49807365],"performs":[3407873,4259842,4390913,5046274,5177346,5242882,5701634,7602178,7667714,8650753,9568257,12648449,14811137,15204353,18939905,21495810,24641537,26673153,30670849,30801921,44302337,46202881,46596097,47448066,48300033,48627714,48758786,48955394,49086466,49414146,49610754,49807362],"prepared":[43515905],"properties":[2293761,2621441,6029314,6488066,7143426,7340033,7405569,7471105,7929857,8126465,8192001,8454145,8781825,8912897,9371649,9437185,9568257,10092545,12451841,12582913,12713985,12910593,13041665,13172738,13369345,13500417,13565953,13697025,13828098,13959169,14024705,14090241,14417921,14548994,14614529,14680065,15335426,16056322,20381697,20905985,20971521,21561345,21692420,22282241,23068674,23658498,24510466,25165826,25427970,26148865,29360130,29687810,30474242,30736386,30932994,31064066,31129602,31326210,31457282,31522818,31653890,31784962,31850498,31916035,31981570,32243714,32309249,32374786,32505858,32571394,32702466,32964610,33030146,33685506,34013186,34144258,34275330,34537473,34603010,34668545,34734082,34996226,35061762,35192834,35454978,35717122,35782658,35848194,36044802,36241410,36306946,36372482,37027842,38273025,38404098,38797314,39190529,39649281,39845889,39976962,40960002,41287682,41680897,41746433,41943042,42008577,42336258,42532866,42598401,42729474,42991617,43450369,43843585,43974658,44498945,45023233,45350913,45875201,46137345,46202881,46465028,46530561,46989313,47251458,47316993,47382529,47448065,47579137,47710209,47841281,48037890,48234497,48431106,48496641,48562177,48627713,48758785,48889858,48955393,49086465,49217537,49283073,49348610,49414145,49610753,49741825,49807361],"performance":[4128769,23396353,26148865,31916033,40501249,44630017,48824321],"parent":[6553601,6619137,7208961,38928385,42729473,44695553],"passed":[6684673,8323073,8388609,8454146,9043969,9175041,9240577,9306113,9568257,9895937,10027009,10420225,10944513,11010049,11403265,48693249,49676289],"persists":[524289],"promise":[3211273,11599875,12189699,12517380,12976132,13434883,14352388,15073283,15925252,16711687,28966920,45744137,48365569,48824321],"possible":[17432577,40304641],"parameters":[4063233,4128770,4194305,4325377,4521985,4587521,4653057,4784129,5111809,5373953,5439489,5505025,5767169,5832705,6029313,6094849,6160385,6225921,6356994,6488065,6553601,6619138,6684675,6750210,6815745,6881282,6946817,7012354,7077889,7143425,7208961,7274498,7340034,7405570,7471105,7536641,7733251,7798786,7864321,7995393,8060930,8126465,8192001,8257538,8323074,8388610,8454146,8519682,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043970,9175042,9240578,9306114,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895938,9961473,10027010,10092545,10158081,10289153,10354689,10420226,10485761,10551298,10616833,10747905,10813441,10878977,10944514,11010050,11075585,11141121,11206657,11337729,11403266,11534337,11599873,11730945,11862018,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12779521,12845057,12910593,12976129,13041665,13107201,13172738,13238273,13303809,13369345,13434882,13500417,13565953,13631489,13697026,13762561,13828098,13893633,13959169,14024705,14090241,14221313,14286849,14352386,14417922,14548994,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073282,15138817,15269889,15335426,15532033,15597569,15728641,15794177,15859713,15925250,15990785,16056322,16187393,16252929,16318465,16384001,16449537,16515073,16646145,16711681,16777217,16842753,16908289,16973825,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19398657,19464193,19529729,19595265,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21102593,21168129,21233665,21299201,21364737,21430273,21561345,21626881,21692417,21757953,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872066,23003137,23068674,23134209,23199745,23265281,23330817,23396353,23527425,23592961,23658498,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24379393,24510466,24576001,24641537,24707073,24772609,24838145,24903681,25034753,25100289,25165826,25362433,25755649,25821185,25886721,26345473,26476545,27000833,27525121,27656193,27852801,27918337,28114945,28377089,28639233,28770305,29163521,29425665,30015490,30146561,30277633,30343169,30801921,31195137,31260673,31391745,32112641,32178177,32833537,33226753,33488897,34799617,40370177,41615361,42008577,42139649,42205185,43778049,45023233],"propertyindices":[31326209,42663941,49741825],"pending":[21495809,29753345,48758785],"promis":[16711681],"processed":[38928385,44695553],"processes":[17694721,19202049,19726337,20512769,21102593,21299201,21954561,22151169,23920641,25886721,30277633,32112641],"promises":[48824322],"place":[21692417,48824321],"profile":[2949122,4390915,17367043,18022404,18874372,20250626,20643842,21495811,22347780,26148867,27852803,28639236,29229058,34013185,34930690,35782657,37552129,38469633,40435713,42401793,43384833,43450369,44040193,44236801,45875203,46202884,46399489,48758788],"progress":[41877505,46727169],"programmatic":[4259848,5046280,5177352,5242888,5701640,5767169,7602184,7667720,7864321,12451842,12582914,12910594,13041666,13369346,13565954,20381698,20905986,21495816,23265281,23724034,25034754,26411012,27525122,29425666,30343169,30408708,30539777,31588353,32636929,33161217,47448072,48627721,48758792,48955401,49086472,49414153,49610760,49807369],"pass":[6881281,7733249,8060929,49676289],"parser":[45547524],"profil":[26148865,33030149,35192833,38469633,38993921,41811969,42401793,42926081,43450369,44236801,45875205,46989313],"private":[43515905],"periodically":[45809665],"past":[38469633,43384833,44236801],"part":[44892161],"particularly":[36241409],"propert":[39190529,39649281],"propertychangedeventargs":[851970],"protected":[4980739,5898243,6422531,13631492,15007747,15138819,15204355,15597571,15859715,21889028,23265283,23724035,25034755,25362436,27525123,29425667,30343171],"procedure":[4259841,5046273,5177345,5242881,5701633,7602177,7667713,16842754,21495809,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"propertychanged":[196609,458753,851975,42729473,48431105],"paths":[32768001,34406401,36044801,36372481,40960001,45350913],"precedence":[4653057,4784129,5111809,5505025],"privateaccess":[40304641],"property":[196609,458753,851969,2228226,2293766,2621446,3407878,3866632,6553603,6684673,7208963,7471108,7929857,8126468,8192005,8454145,8716289,8781829,9437188,10092548,10485761,11206657,11730947,11796481,12058627,12320769,12386307,12648454,12845057,13107203,13238275,13303809,13762565,16646147,17301508,17891331,18546691,19005443,19595268,21692420,25231362,27131906,27197442,27459586,27787266,28049411,28311554,29360132,29491202,31326212,32309253,32571396,32768005,32899076,33095684,33292292,33423364,33554437,33619972,33751044,33816580,33882117,33947652,34013186,34078725,34209797,34340868,34406404,34471941,34537477,34668549,34799622,34865156,34996226,35127300,35258373,35323909,35520519,35586054,35717122,35913733,36110340,36175876,36241413,36503557,36634629,36700165,36765700,36831237,36896772,37027842,37093381,37158916,37224453,37289988,37355524,37421060,37486596,37552133,37683204,37748740,37814277,37879812,37945348,38010884,38076421,38207492,38273029,38338565,38404098,38469636,38535172,38600708,38666244,38731780,38862853,38928389,38993924,39059460,39190535,39256068,39321605,39387141,39452677,39518212,39583748,39649286,39714820,39780356,39911428,40042501,39976962,40108037,40173572,40239108,40370177,40435716,40501250,40566789,40632324,40697861,40763396,40828932,41025540,41091076,41156612,41222148,41287682,41353222,41484292,41549829,41615366,41746437,41811972,41877509,42074116,42205191,42270724,42336258,42401797,42467332,42532868,42663941,42729486,42860548,42926084,43057156,43122692,43188228,43253765,43319300,43384836,43515909,43581444,43646981,43712517,43909124,44040197,44105732,44171268,44236804,44367876,44433412,44564484,44695557,44761093,44826628,44892165,45088773,45154310,45285380,45416453,45613060,45678597,45809668,45940740,46006276,46071814,46268422,46333956,46596102,46661636,46727173,46858247,46923780,47054852,47120388,47448066,47513604,47644678,47972357,48037892,48168967,48300038,48431117,48627714,48758786,48824322,48955394,49086466,49348612,49414146,49479682,49610754,49676290,49741836,49807362]} \ No newline at end of file +{"presentation":[16646145,17432577,17563649,17629185,17956865,18219009,18284545,18415617,18808833,19005441,19202049,19988481,20185089,20381697,20774913,20840449,20905985,21168129,21692417,21757953,22151169,22478849,22544385,22675457,22806529,23658497,23986177,25034753,26083329,32243713,32899073,34013185,35389441,39452673,39911425,40239105,46399489,46530561,46792705,47448065,47579137],"point":[7405569,30539777,31260673,31457281,33357825,34078721,36634625,38010881,39845889,43974657,47513601,48103426,49348609,49414145,49676289,49807361,49938433,50003969],"present":[25034753,26083329,27656193,38862849,40108033,46792705,47579137],"propagation":[30146561,31457281,44040193,47513601,47972353,48037889],"platform":[9437185,9764865,10616833,13107201,33816577],"page":[589825,27983876],"process":[14417921,21102593,21561345,23461889,24313857,37027842,37093377,45481985,46071809,49152002,49217538],"polluting":[36765697,40042497],"preventing":[49152002],"proc":[2883585,10223617,13893638,41615361,42926081],"patching":[41746435],"params":[4587521,5046273,5242881,5439489,5832705,5963777,6488065,6619137,8323073,8454145,8585217,8847361,8978433,9043969,12320769,12517377,12779521,13172737,13959169,14680065,14876673,15925249,15990785,16842753,18350081,24576001,24641537,25690113,36962305,48758785],"populates":[1966081,2162689,10551297,14548993,41222145,42074113],"propertychangedeventhandler":[786440],"protocol":[15400961,15663105],"parameter":[4849665,5177345,5308417,5505025,6750209,6815745,7208961,7340033,7536641,8126465,9371649,9437185,9568257,9633793,9764865,9895937,10027009,10092545,10354689,10616833,11862017,12648449,13107201,13238273,13631489,14614529,14942209,22085633,22872065],"profiler":[1441793,23920641,35651585,40960001],"particular":[1900545,42336257,46137345,47251457],"pause":[48889857],"perform":[851969,917505,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,3211265,2818049,2883585,3801089,4063233,4128769,4325377,4390913,4653057,5701633,5832705,6225921,6422529,6946817,8716289,10158081,10223617,12386305,12845057,16056321,20316161,21954561,33751041,34340865,37683201,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,42270721,42860545,42926081,43057153,43253761,43515905,43581441,43778049,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47906817,48824321,48889859,48955393,49086465,49283073,49741825,49872897],"propertybag":[262145,393219,786434,2686990,5767173,6225930,10420227,10878983,10944515,11075588,11272201,11403267,13565955,13762568,14155783,24903681,25100298,28049416,29425671,30605315,31195139,34209795,34865157,43712515,44171267,44498972,44695555,47906842],"paramarray":[4587521,5046273,5242881,5439489,5832705,5963777,6488065,6619137,8323073,8454145,8585217,8847361,8978433,9043969,12320769,12517377,12779521,13172737,13959169,14680065,14876673,15925249,15990785,16842753,18350081,24576001,24641537,25690113,36962305,48758785],"platforms":[33816577],"physical":[31326209,38273025,49086465],"possibilities":[34603009],"passing":[6750209,6815745,7208961,7340033,7536641,8126465,8912897,9109505,9568257,9895937,9961473,10027009,11862017,13631489,14614529,14942209,15073281],"prevent":[37027841,49217537],"predicate":[2686978,8781830,12517382,13959174,21364742,42008578,44498948,44826626],"profiles":[4390913,11927553,16121857,16318465,16580609,19791873,44040193,46333953,47185921,47513601,48234497,48693249],"progid":[5898247,7798792,8060936,8257544,8650759,11534344,11927560,12189704,12255240,12451848,12713992,15007752,15335432,16449544,22478855,22806535,24444936,24707080,25493508,26214404,34013191,34537480,35389447,38338568,39911431,40239111,43974664,47513608,49348616,49414152,49676296,49807368,49938440,50003976],"provide":[1703937,4587521,5242881,10158081,20447233,23920641,24772609,25231361,25624577,28835841,30539777,31260673,31457281,33357825,33816577,34078721,35586049,36634625,37945348,38010881,39845889,41222145,41680897,43515905,43974657,44498945,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"permitted":[30146561,30539777,31260673,31457282,33357825,33423362,34078721,34668545,36634625,37093377,38010881,39845889,43974657,44040193,46071809,47513602,49348609,49414145,49676289,49807361,49938433,50003969],"processing":[49152001],"path":[5439490,5898241,45809668],"predate":[43909121,44564481,44892161,45350913],"provides":[1703949,3735553,5832705,10158093,23855105,24772609,24903688,25034753,25231362,27131905,27852801,29491201,32964609,39714817,40566785,41615361,41680909,42926081,43515917,43581442,44302337,45154306,47906817,49283073,49348609,49414145,49610753,49872897,50003969],"post":[49152001],"port":[4390914,17563650,17760258,18284546,18415620,18612228,18874370,20054018,20381698,20643842,22544386,26869764,28573698,29622276,44040198,45613058,47448066,47513604],"populate":[8650753,9306113,9895937,10551297,13893633,14090241,14548993],"pairs":[28835841,41222145],"previously":[4390918,11927558,17039361,17104897,17301505,17694721,19005441,19333121,19529729,20119553,20185089,20512769,21495809,21626881,26738691,27787267,27918339,28770307,44040198,47513606],"provided":[1900545,5570561,5767169,5832705,6160385,6356993,6488065,6619137,6684673,7995393,8388609,8978433,9043969,14876673,42336257],"programming":[4849665,5177345,5308417,5505025,9371649,9437185,9633793,9764865,10092545,10354689,10616833,12648449,13107201],"propertynames":[30277633,39649285,41680897],"packages":[6750209,6815745,7208961,7340033,7536641,8126465,9568257,10027009,11862017,13631489,14614529,14942209],"public":[524291,720899,786435,1441795,1835011,2228227,3342339,3407875,3473411,3538947,3670019,3866627,3932163,3997699,4128771,4194307,4259843,4521987,4587523,4718595,4784131,4849667,4915203,4980739,5046275,5111811,5177347,5242883,5308419,5439491,5505027,5570563,5636099,5767171,5832707,5898243,5963779,6029315,6094851,6160387,6291459,6356995,6488067,6553603,6619139,6684675,6750211,6815747,6881283,7012355,7077891,7143427,7208963,7274499,7340035,7405571,7471107,7536643,7602179,7667715,7733251,7864323,7929859,7995395,8126467,8323075,8388611,8454147,8519683,8585219,8650755,8781827,8847363,8978435,9043971,9240579,9306115,9371651,9437187,9502723,9568259,9633795,9699331,9764867,9895939,10027011,10092547,10354691,10420227,10551299,10616835,10682371,10813443,10878979,10944515,11075587,11272195,11337731,11403267,11534339,11730947,11796483,11862019,11993091,12058627,12124163,12189699,12255235,12320771,12451843,12517379,12582915,12648451,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13172739,13238273,13303811,13369347,13434883,13500419,13565955,13631491,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,15138819,15204355,15269891,15400963,15466499,15532035,15597571,15663107,15728643,15794179,15859715,15925251,15990787,16056323,16121859,16187395,16252931,16318467,16384003,16449539,16580611,16711683,16777219,16842755,16908291,16973827,17039363,17104899,17170435,17235971,17301507,17367043,17498115,17563651,17629187,17694723,17760259,17825795,17956867,17891331,18022403,18087939,18153475,18219011,18284547,18350083,18415619,18481155,18546691,18612227,18677763,18743299,18808835,18874371,18939907,19005443,19070979,19136515,19202051,19267587,19333123,19398659,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316163,20381699,20447235,20512771,20578307,20643843,20774915,20840451,20905987,20971523,21037059,21102595,21168131,21233667,21299203,21364739,21430275,21495811,21561347,21626883,21692419,21757955,21823491,21889027,21954563,22020099,22085633,22151171,22216707,22282243,22347779,22413315,22544387,22609923,22675459,22740995,22872065,22937603,23003139,23068675,23199747,23265283,23330819,23396355,23461891,23527427,23592963,23658499,23789571,23986179,24117251,24248323,24313859,24444931,24510467,24576003,24641539,24838147,25034755,25296899,25427971,25690115,25821187,26083331,26476547,27656195,27852803,28639235,29753347,30474243,30539777,30605315,30801923,30867459,30932995,31064067,31129603,31195139,31260673,31457281,31588355,31719427,31784963,31850499,31981571,32047107,32243715,32374787,32440323,32505859,32571395,32702468,32833539,32899075,32964611,33030147,33095683,33161219,33226755,33357825,33423363,33488899,33554435,33619971,33685507,33751043,33816579,33882115,33947651,34078721,34144259,34209795,34275331,34340867,34406403,34603011,34668548,34734083,34799619,34865155,34930691,34996227,35061763,35127299,35258371,35323907,35454979,35520515,35586051,35651587,35717123,35782659,35848195,35913731,36044803,36110339,36175875,36306947,36372483,36438019,36503555,36569091,36634625,36700163,36765699,36831235,36896771,36962307,37027843,37093379,37158915,37224451,37289987,37355523,37421059,37486595,37552131,37617667,37683203,37748739,37814275,37879811,38010881,38141955,38207491,38273027,38338563,38404099,38535171,38600707,38666243,38731779,38797315,38862851,38928387,38993923,39059459,39124995,39190531,39256067,39321603,39387139,39452675,39518211,39583747,39649283,39714819,39780355,39845889,39976963,40042499,40108035,40173571,40304643,40370179,40435715,40501252,40566787,40632324,40697859,40763395,40828931,40894467,40960003,41025539,41091075,41222148,41287683,41418755,41484291,41549827,41615363,41680900,41746435,41877507,41943043,42074116,42139651,42270723,42336259,42401796,42598403,42795011,42860548,42926084,43057156,43122691,43188227,43253764,43384835,43450371,43515908,43581444,43646979,43712515,43778051,43843587,43909123,43974661,44040195,44105732,44171267,44236803,44302339,44367876,44433411,44498948,44564483,44695555,44761091,44892163,44957699,45023236,45088771,45154307,45219843,45350915,45416451,45481987,45547523,45613059,45678595,45744131,45809667,45875203,45940739,46006275,46071811,46137347,46202883,46333955,46399491,46465027,46530563,46596099,46661635,46792707,46858243,46989315,47054851,47120387,47185923,47251459,47316995,47382531,47448067,47513605,47579139,47710211,47775747,47841283,47906819,47972355,48037891,48103427,48168963,48234499,48365571,48431107,48496643,48562179,48627715,48693251,48758787,48824323,48889859,48955395,49020931,49086467,49152003,49217539,49283075,49348613,49414148,49479683,49545219,49610755,49676293,49741827,49807365,49872899,49938437,50003973],"performs":[2883585,4390913,5832705,7798786,8060930,8257538,10223617,11927554,12845057,13369345,15007746,15335426,16056321,20316161,21954561,22413313,24707074,34537474,41353217,41615361,41943041,42926081,43974658,44040193,47513602,48300033,49348610,49414146,49676290,49807362,49938434,50003970],"prepared":[35782657],"properties":[2686977,5046274,5570561,5767169,5963777,6160385,6225921,6356993,6619137,6684673,6881282,7995393,8388609,8585218,9043969,9895937,11534337,11730945,11796481,12058625,12124161,12189697,12255233,12320770,12451841,12582914,12713985,12779522,12910593,13041666,13172738,13369345,13434882,15728641,16449537,23920641,24444929,24576002,24641537,24903683,25427969,25624578,25690114,27131906,27394050,27852804,28049410,28114946,28180482,28311554,28442626,28508162,28639233,28704770,28835842,29032450,29097986,29294594,29360130,29425666,29491202,29556738,29687810,29753346,29818882,29949954,30015490,30081026,30146562,30212098,30277634,30408706,30539778,30670850,30736386,31195137,31260674,31326210,31457282,31916034,33357826,34078722,34668546,36634626,36765697,37355521,38010882,38338561,38469634,38928385,39059457,39124993,39190529,39321601,39845890,39976961,40042497,40501249,40697857,40894465,41091073,41222145,41418753,41680897,42074113,42139649,42270721,42336260,42795010,42860546,43057153,43122690,43253762,43581441,43646977,43974657,44040193,44105730,44367873,44433410,44498946,44957697,45088769,45154305,45219841,45416449,46202881,46268418,46137345,46727170,46923778,47251457,47513601,47644674,47710210,47906818,48431105,48824321,49020930,49086465,49348609,49414145,49545217,49676289,49807361,49938433,50003969],"performance":[4194305,20447233,23920641,24903681,37945345,43515905,48889857],"parent":[4587521,5111809,5242881,44498945,47972353,48037889],"passed":[6750209,6815745,7208961,7340033,7536641,8126465,9306113,9568257,9895938,10027009,11862017,13369345,13631489,14614529,14942209,41746433,49741825],"persists":[589825],"promise":[3080201,9371651,9437187,9633795,9764867,10092548,10354695,10616836,12648452,13107204,41484297,43319304,48889857,49152001],"possible":[25034753,42401793],"parameters":[3407873,3670017,3866625,3932161,4128769,4194306,4259842,4521985,4587521,4718593,4784129,4849665,4915201,4980737,5046273,5111810,5177346,5242881,5308418,5439490,5505025,5570561,5636098,5832705,5898241,5963778,6029313,6094850,6160385,6291458,6356993,6488065,6619137,6684673,6750210,6815746,6881281,7012353,7077889,7208962,7274497,7340034,7405570,7471105,7536642,7602177,7733249,7864321,7929857,7995393,8126466,8323073,8388609,8454145,8585217,8650753,8781825,8847361,8912897,8978433,9043970,9109505,9175041,9240577,9306115,9371649,9437185,9568258,9633794,9699329,9764866,9895938,9961474,10027010,10092545,10354689,10289153,10420225,10485761,10551297,10616833,10682369,10747905,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11534337,11665409,11730945,11796481,11862018,12058625,12124161,12189697,12255233,12320770,12451841,12517377,12582914,12648450,12713985,12779522,12845057,12910593,12976129,13041666,13107202,13172738,13238273,13303809,13369345,13434882,13500417,13565953,13631490,13697025,13762561,13828097,13893634,13959169,14024705,14090243,14155777,14352385,14417921,14483457,14548993,14614530,14680065,14745601,14876673,14942210,15073282,15466497,15532033,15663105,15728641,15859713,15925249,15990785,16056321,16121857,16187393,16318465,16384001,16449537,16515073,16646145,16711681,16777217,16842753,16908289,17039361,17104897,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21889026,21954561,22020097,22085633,22216705,22151169,22347777,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23134209,23265281,23461889,23658497,23789569,23986177,24313857,24444929,24510465,24576002,24641537,24838145,25034753,25296897,25427969,25690114,25821185,26083329,26476545,27656193,27852801,28639233,29753346,29884417,30343170,30605313,31588353,32243713,32899073,33030145,34013185,34865153,35389441,36306945,36962305,37289985,37355521,38141953,38338561,38862849,39059457,39452673,39583745,39911425,40239105,40632321,40697857,43712513,45023233,45481985,45613057,46137346,46399489,46530561,46792705,46858241,47251458,47382529,47448065,47579137,48168961,48234497,48693249,48758785],"propertyindices":[30277633,34996229,41680897],"pending":[11927553,19267585,47513601],"promis":[10354689],"processed":[47972353,48037889],"processes":[16711681,17235969,17891329,18022401,18546689,19988481,20250625,20578305,21168129,21430273,22347777,22740993],"promises":[48889858],"place":[27852801,48889857],"profile":[2097154,4390915,11927555,15400962,15663106,16121860,16318467,18087940,22609924,23920643,26345474,27262978,30146561,31457281,36503553,38207489,39780353,40304641,41418753,41549825,44040196,45416451,46333953,47185921,47513604,47775745,48234499,48693252],"progress":[37093377,46071809],"programmatic":[5898241,7798792,8060936,8257544,8650753,11534338,11927560,12189698,12255234,12451842,12713986,15007752,15335432,16449538,22478850,22806530,24444930,24707080,25493508,26214404,26935297,27066369,27721729,28377089,34013186,34537480,35389441,38338562,39911425,40239106,43974665,47513608,49348616,49414152,49676297,49807369,49938441,50003976],"pass":[6094849,13893633,14090241,41746433],"parser":[44761092],"profil":[23920641,29294593,30081029,37552129,38207489,38731777,40304641,41418753,41549825,41877505,45416453,48824321],"private":[35782657],"periodically":[34144257],"past":[39780353,40304641,41549825],"part":[32702465],"particularly":[34668545],"propert":[39190529,39976961],"propertychangedeventargs":[786434],"protected":[4456451,5373955,8192003,11206659,13238276,16515075,16646147,17432579,22085636,22478851,22806531,22872068,34013187,35389443,39911427,40239107,48300035],"procedure":[7798785,8060929,8257537,11927553,15007745,15335425,15990786,24707073,34537473,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"propertychanged":[262145,393217,786439,44498945,47906817],"paths":[32374785,32440321,42270721,42795009,46923777,47644673],"precedence":[3670017,4718593,4980737,7012353,34603009],"privateaccess":[42401793],"property":[262145,393217,786433,1703938,2686982,2883590,4587523,5242883,5570564,5767169,6160388,6225926,6356996,6684677,7077889,7864321,7995397,8388612,9306113,9895937,10158088,10223622,10420229,10878977,10944515,11075587,11272193,11403267,13565955,13762561,14155777,17498115,18350084,24051714,24838145,25100290,25755650,26017794,26148867,26279938,26542082,27852804,28049412,29425668,30277636,30474246,30605315,30539778,30867461,30932996,30998532,31064069,31129604,31260674,31391748,31457282,31522820,31653892,31719428,31784964,31850501,31981572,32047108,32112644,32178180,32309252,32374788,32440325,32505860,32571396,32636932,32702469,32768004,32833540,32964612,33095684,33161222,33226756,33292292,33357826,33423365,33488900,33554437,33619973,33685508,33751047,33816581,33882116,33947655,34078722,34144260,34209797,34275332,34340869,34406407,34471940,34603014,34668549,34734085,34930692,34996229,35061764,35127300,35192836,35258372,35323908,35454980,35520516,35586052,35651588,35717124,35782661,35848196,35913732,35979268,36044804,36110340,36175876,36306950,36372485,36438021,36503556,36569093,36634626,36700164,36765701,36831237,36896772,36962311,37027846,37093381,37158917,37224453,37421060,37486596,37552132,37617668,37683205,37748741,37814277,37879813,38010882,38076420,38207493,38273028,38404100,38535172,38666245,38731780,38797316,39124997,39190535,39256068,39321605,39518212,39583745,39649285,39780356,39845890,39976966,40042501,40173572,40304644,40370180,40435716,40566789,40763396,40828933,41025541,41287684,41549828,41615366,41680908,41746434,41811970,41877508,42860548,42926086,43188230,43253764,43384837,43515906,43712518,43778050,43843588,43909124,43974658,44105732,44171269,44498958,44564484,44695557,44892164,45219845,45350916,45678596,45744133,46006276,46071813,46333957,46465029,46596100,46661636,46858243,46989316,47054853,47120388,47185925,47316996,47382531,47513602,47841284,47906829,47972357,48037893,48103430,48168963,48365572,48496645,48627717,48758788,48889858,48955397,49217542,49348610,49414146,49676290,49807362,49938434,50003970]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_113.json b/docs/Reference/fti/FTI_113.json index f7126a02a..90f72278d 100644 --- a/docs/Reference/fti/FTI_113.json +++ b/docs/Reference/fti/FTI_113.json @@ -1 +1 @@ -{"qux":[8454145],"qualified":[3473409,5570561,6029313,6488065,9502721,10158081,10485761,11206657,13828097,14548993,24510465,25165825,41680897,47775745]} \ No newline at end of file +{"qux":[9895937],"qualified":[3014657,5046273,6946817,7864321,8323073,8585217,8847361,12779521,13172737,24576001,24838145,25690113,40894465,40960001]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_114.json b/docs/Reference/fti/FTI_114.json index c6a144261..e2862c6a3 100644 --- a/docs/Reference/fti/FTI_114.json +++ b/docs/Reference/fti/FTI_114.json @@ -1 +1 @@ -{"rank":[6750215],"response":[26148865,34013185,35782657,37683201,40632321,46202881,48365569,48758785],"requesting":[5373953,6094849],"recompilation":[4390918,17694722,19202050,19726338,20512770,20774913,21102595,21299203,21495814,21757953,21954562,22151170,22544385,23920642,24838145,25886723,26148865,26345473,30081027,30277634,30867459,31260673,32112642,35651587,36569091,45547522,46202886,48496641,48758790],"range":[6488065,6553601,6684673,7208961,10551297,10878977,11862017,12255233],"restore":[47972353],"recommended":[34013185,34996225,35717121,37027841,37289985,38404097,39387137,40042497,39976961,41287681,42336257,43253761,43712513,44761089,45088769,47448065,47644673,48168961,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"readonly":[720898,655362,917506,983042,33095681,33554433,33619969,33947649,34078721,34209793,34340865,34668545,34865153,35323905,35586049,36110337,36503553,36634625,36831233,36896769,37224449,37289985,37355521,37421057,37486593,37748737,37945345,38010881,38273025,38338561,38469633,38535169,38600705,38993921,39059457,39321601,39387137,39518209,39583745,39714817,39780353,40042497,40173569,40239105,40697857,40763393,40828929,41091073,41156609,41484289,41746433,41811969,42074113,42270721,42401793,42467329,42663937,42860545,42926081,43057153,43122689,43188225,43253761,43319297,43384833,43581441,43646977,43712513,43909121,44105729,44171265,44236801,44367873,44433409,44564481,44826625,45088769,45285377,45416449,45613057,45940737,46268417,46333953,46661633,46923777,47054849,47513601,48562177],"removepropertynocheck":[2293761,2621441,12320769,12386309,42729473,48431105],"resourc":[40304643],"regardless":[9568257,39190530,39649281],"relative":[38469634,39124993,43384834,44236802],"registered":[4259856,5046288,5177360,5242896,5701648,5767169,7602192,7667728,7864321,12451842,12582914,12910594,13041666,13369346,13500418,13565954,13959170,14024706,14090242,14614530,14680066,20381698,20905986,20971522,21495824,21561346,26411016,30408712,47448080,48627728,48758800,48955408,49086480,49414160,49610768,49807376],"reclaimed":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4259841,4390913,5046273,5177345,5242881,5570561,5636097,5701633,6291457,7602177,7667713,12648449,15204353,21495809,39845889,40501249,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47448065,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48955393,49020929,49086465,49217537,49348609,49414145,49545217,49610753,49741825,49807361],"runtim":[21430273,21495809,34013186,35782659,37683201,38207489,40632321,41353218,45154305,46071810,46202883,48758787],"removing":[37814273,39452673],"returned":[17432579,49676289],"readbytes":[1900545,1966081,2031617,2359297,2424833,10289157,11337733,41943041,42598401,43974657,45023233,47710209],"runaway":[44761089],"relevant":[6619137],"representing":[7340033,8912897],"runtimeheapsizesampleinterval":[34013185,37093381,48758785],"remainder":[25755649,31391745],"resource":[1114113,4128777,19464194,20054018,20185090,21626882,22216706,22413314,22675458,23199746,24117250,24707074,26148865,27918338,28114946,28508166,29556742,41353217,45481985,46071809,46202886,47579137,48758790,48824321],"rejected":[40566785,46858241,47382529,48037889,48562177],"represents":[131073,1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3014657,3080193,3145729,3276801,3342337,3407873,3538945,3670017,3735553,3801089,3866625,4259841,4390913,5046273,5177345,5242881,5373953,5636097,5701633,5832705,6094850,6225921,6291457,6553601,7208961,7602177,7667713,11141121,11599873,12189697,12517377,12648449,12976129,13434881,14155778,14352385,15073281,15925249,16580610,16711681,17432577,19660802,21495809,24248321,25427971,25493506,26148871,26935300,27394051,29032450,31129601,31916046,35848193,36306945,38600705,39059457,39845890,40370177,40501249,41418753,42008577,42139650,42532865,42598401,42729475,42795009,42991618,43450370,43778050,43843585,43909121,44498945,44826625,44957697,45023233,45219842,45350914,45481986,45875202,46202882,46465025,46530561,46596097,46989314,47251457,47316993,47382529,47448065,47579137,47710209,47775745,48037889,48103425,48234497,48300033,48431105,48496642,48627714,48693250,48758786,48824321,48955394,49020930,49086465,49152001,49217538,49283074,49348609,49414146,49545217,49610753,49741826,49807362],"retrieval":[9764865,19595265],"resumed":[41877505,46727169],"resumes":[21495809,29097985,48758785],"running":[1703940,3211272,6160385,6356993,6815745,7012353,11599873,12189697,12517377,12976129,13434881,14352385,15073281,15925249,25559042,26017794,28966920,35913729,44892161,45678593,45744136,47185924,48168961],"referenced":[6619137,12648449,46596097],"required":[5373953,6094849,6684673,21692417,47448065,49414145,49807361],"removal":[7929857],"requests":[5373953,6094849],"reduces":[35913729],"representation":[2949122,4259841,5046273,5177345,5242881,5701633,7602177,7667713,15663105,17432577,20250626,20643841,21495809,24969217,25952257,31916033,35848193,45875202,47316993,47448065,47644673,48627713,48758785,48955393,49086465,49217537,49414145,49610753,49807361],"runtime":[2228225,2490369,3866625,4390914,7077889,7405569,7536641,9371649,10485761,11206657,13893634,15007746,15859714,16252930,17367041,17629187,17760259,18022401,18219011,18415621,18481153,18677761,19070977,19398659,19464193,20054017,20185089,20316161,20447233,20840449,21168129,21495810,21626881,21692417,21823489,22020097,22085633,22216706,22413313,22478849,22609921,22675458,22806529,23199746,23592961,24117250,24444930,24707074,26148869,27918338,28114945,28508172,28770305,30212097,31457281,34013186,35782658,37552129,38928386,39452673,40501249,41353218,41877506,42270721,43515905,44040193,44695554,45154305,46071810,46202897,46727171,47579138,47906817,48168961,48234497,48365571,48758788,49217537,49741825],"reserved":[131073,196609,262145,327681,393217,458753,589825,720897,655361,786433,851969,917505,983041,1048577,1114113,1179649,1310721,1245185,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4259841,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5242881,5373953,5505025,5439489,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8388609,8323073,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13828097,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16646145,16580609,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21757953,21692417,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31522817,31457281,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32178177,32112641,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40042497,39976961,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43581441,43515905,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,47054849,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361],"replaced":[196609,458753,851969,42729473,48431105],"refers":[6029313,6488065,7143425],"representative":[6619137],"recently":[18874369,22347777],"reclaims":[45154305],"release":[13631490,15400961,18415617,21889026,25362434,28442625,47906817,48824321],"related":[32768001,44302337],"rights":[131073,196609,262145,327681,393217,458753,589825,720897,655361,786433,851969,917505,983041,1048577,1114113,1179649,1310721,1245185,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4259841,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5242881,5373953,5505025,5439489,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8388609,8323073,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13828097,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16646145,16580609,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21757953,21692417,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31522817,31457281,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32178177,32112641,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40042497,39976961,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43581441,43515905,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,47054849,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361],"require":[21692418],"result":[3407873,6094849,6881284,7274497,7798785,7995393,8192001,8323073,8388609,8454146,8519681,8650753,8716289,8781825,9043969,9175041,9240577,9306113,9895937,10027009,10420225,10944513,11010049,11403265,13434881,14221314,14286850,14352385,14876674,15073281,15728642,15925249,16187393,16384002,16908289,17432579,18153474,19267585,22740994,23396354,23986177,24182785,24772609,25755650,26607617,31391746,31916033,34013185,34996225,35717121,36700162,37027841,38404097,39976961,41287681,42336257,47448065,47644673,48300033,48627713,48758785,48824321,48955393,49020929,49086465,49414145,49610753,49807361],"ref":[6619137,7798785,8454146,39845889,40501249,40960001,41418753,42008577,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45744129,45875201,46137345,46202881,46530561,46596097,46989313,47185921,47316993,47382529,47448065,47579137,48037889,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48889857,48955393,49020929,49086465,49217537,49283073,49348609,49414145,49545217,49610753,49741825,49807361],"root":[2490369,33030145,34668545,38273025,38338561,39124993,40304641,40697857,41746433,41811969,45416449,45875201,49217537],"redirected":[1],"released":[45154305],"results":[9764865,41353217,45547521,45678593,46071809,48627713,48955393,49610753],"request":[21495809,29753345,48758785],"rethrown":[9568257],"releases":[3735553,4259844,4390913,5046276,5177348,5242884,5701636,7602180,7667716,13631490,15204353,15400961,18415617,21495812,21889026,25362434,26804227,28442625,32047107,33882113,36962307,46202881,47448068,48496641,48627716,48758788,48955396,49086468,49414148,49610756,49807364],"relies":[33882113,48365569],"remarks":[131073,4128769,4587521,4653057,4784129,5111809,5373953,5505025,5767169,6029313,6094849,6488065,6553601,6684673,6881281,6946817,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8388609,8323073,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,9043969,9175041,9240577,9306113,9371649,9437185,9568257,9764865,9895937,10027009,10092545,10420225,10485761,10551297,10878977,10944513,11010049,11206657,11403265,11599873,11862017,12255233,12320769,12386305,12451841,12517377,12582913,12713985,12910593,13041665,13172737,13238273,13369345,13500417,13565953,13631489,13697025,13828097,13959169,14024705,14090241,14221313,14286849,14417921,14548993,14614529,14680065,14745601,14876673,14942209,15073281,15204353,15269889,15335425,15400961,15532033,15663105,15728641,15925249,15990785,16056321,16121857,16384001,16515073,17301505,17367041,17432578,17629185,17694721,17760257,18022401,18153473,18219009,18284545,18415617,18677761,18743297,18808833,18874369,19202049,19267585,19398657,19660801,19726337,19791873,19857409,20250625,20381697,20512769,20643841,20774913,20905985,20971521,21037057,21102593,21233665,21299201,21364737,21430273,21561345,21692418,21823489,21889025,21954561,22020097,22085633,22151169,22216706,22282241,22347777,22478849,22544385,22609921,22675458,22740993,22806529,23068673,23134209,23199746,23265281,23396353,23592961,23658497,23724033,23920641,23986177,24117250,24182785,24510465,24707074,24772609,24838145,24903681,24969217,25034753,25165825,25362433,25493505,25755649,25886721,25952257,26542081,27525121,27852801,27918338,28442625,28573697,28639233,29032449,29097985,29163521,29425665,29753345,30015489,30277633,30343169,30670849,31195137,31391745,32112641,32309249,32768001,33226753,33882113,34471937,34537473,34668545,35258369,35520513,35586049,35913729,36241409,36503553,36634625,36700161,36831233,37093377,37158913,37224449,37421057,37552129,37814273,37879809,38076417,38273025,38338561,38469633,38600705,38666241,38862849,38928385,39190529,39256065,39321601,39387137,39452673,39649281,39780353,40042497,40108033,40435713,40566785,40697857,41353217,41549825,41746433,41877505,42008577,42401793,42532865,42729473,43253761,43384833,43515905,43646977,43712513,43843585,44040193,44236801,44695553,44761089,44892161,45023233,45088769,45154305,45219841,45350913,45416449,45678593,45809665,46071809,46268417,46465025,46530561,46727169,46858241,47382529,47448065,47644673,47972353,48037889,48168961,48300033,48627713,48693249,48758785,48955393,49020929,49348609,49414145,49545217,49610753,49807361],"restricted":[48168961,49479681],"represent":[6553602,7208962,12451841,12582913,12910593,13041665,13172737,13369345,13500417,13565953,13697025,13828097,13959169,14024705,14090241,14417921,14548993,14614529,14680065,15335425,16056321,20381697,20905985,20971521,21561345,21692417,22282241,23068673,23658497,24510465,25165825,35258369,42729474,45219841],"return":[4128769,4521985,4587521,5373954,5439489,5767169,5832705,6029313,6094850,6160385,6225921,6356993,6488066,6553601,6619137,6684673,6750209,6815745,6881283,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7733251,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257538,8323073,8388609,8454145,8519681,8585217,8650753,8716290,8781825,8847361,8912897,9043969,9175041,9240577,9306113,9371649,9437185,9568258,9895937,10027009,10092545,10223617,10289153,10420225,10485761,10551299,10682369,10944513,11010049,11075585,11141121,11206657,11337729,11403265,11534337,11599873,11665409,11730945,11862019,12124161,12189697,12386305,12517377,12976129,13107201,13434881,13762561,14155777,14221314,14286850,14352385,14876674,15073281,15663105,15728642,15925249,16187393,16384002,16580609,16711681,16842754,16908289,17235969,17367041,17432578,17629185,17694721,17760257,17891329,18022401,18087937,18153474,18219009,18284545,18546689,18677761,18808833,18874369,19005441,19202049,19267585,19333121,19398657,19529729,19595265,19660801,19726337,19857409,19922945,19988481,20119553,20250625,20512769,20578305,20709377,20774913,21102593,21233665,21299201,21364737,21757953,21954561,22151169,22347777,22478849,22544385,22740994,22872067,23134209,23330817,23920641,23986178,24051713,24182786,24248321,24313857,24444929,24772610,24838145,24903681,24969217,25493505,25755650,25886721,25952257,26345473,27852801,28573697,28639233,29032449,29622273,30015491,30277633,31195137,31260673,31391746,32112641,33226753,34013186,34799617,34996226,35520514,35717122,36700161,37027842,37224449,38404098,39387137,39976962,40042497,40370177,41287682,41615361,42205185,42336258,43253761,43712513,44957697,45088769,47448066,48168961,48627714,48758786,48955394,49020930,49086466,49414146,49479682,49610754,49676289,49807362],"resolve":[5373953,6094849],"recursion":[41877505,46727169],"requested":[5373954,6094850,14876673,15269889,15728642,15990786,17235970,18284546,19202050,19857409,20512770,20578305,21364737,22151169,23330817,24051714,24903682,30277633,33357825],"runtimes":[17694721,19202049,19726337,20512769,21954561,22151169,23920641,30277633,32112641],"removeproperty":[3407874,9437190,10092550,12648450,27197443,46596098,48300034],"random":[7405573],"reclaim":[15400961,18415617,28442625],"requirement":[48168961],"reassignment":[38862849,41549825],"rootnode":[33030145,41811973,45875201],"restriction":[1703938,4259842,5046274,5177346,5242882,5701634,6356994,7012354,7602178,7667714,13697025,14417921,21495810,26017794,32440322,34013186,34996226,35717122,37027842,38404098,39976962,41287682,42336258,47185922,47448068,47972354,48168961,48627716,48758788,48955396,49086468,49414148,49610756,49807364],"reason":[34734081,39518209,46989313],"removeelement":[3407873,8847365,12648449,46596097,48300033],"rely":[35913729],"rejection":[48365569],"replace":[4587528],"read":[2293763,2359297,2621443,8454147,12320770,12386305,12713985,12845057,13238273,19988485,21692417,30474241,32374785,34144257,36503553,42729475,43188225,44498945,45023233,46465025,47316993,48431107,48562177],"returns":[1114113,1179649,1245188,1376257,1441793,1507329,1572865,1638401,1769473,1835012,1900546,1966082,2031618,2097153,2162692,2228226,2293761,2359298,2424834,2490370,2555905,2686980,2621441,2752513,2818052,2949122,3014657,3080196,3145729,3276801,3342337,3407876,3473410,3538945,3670017,3735553,3801089,3866626,3932162,4259841,4390915,5046273,5177345,5242881,5570562,5636097,5701633,6291459,6881283,7536641,7602177,7667713,7733251,8060931,9568257,10551297,10878977,11862017,12255233,12648451,14155777,15663105,16580609,17432577,18874369,19333121,19660802,20250625,21495811,22347777,22872065,24444929,24969217,25493506,25952258,26607618,26869762,27328514,28573697,29032450,29163521,29949954,30015489,30146561,30998530,31916033,32309249,34537473,35586050,36503553,36634625,36700162,36831233,39321601,39845889,40501250,41418753,41680898,41877505,41943042,42139649,42401793,42532868,42598402,42729473,42795009,42991617,43450369,43646977,43778049,43843588,43974658,44498945,45023234,45219841,45350913,45481985,45809665,45875202,46202883,46268417,46465025,46530564,46596099,46727169,46989313,47382532,47316993,47448065,47579137,47710210,47775746,48037892,48234497,48300036,48431105,48496641,48627713,48693249,48758787,48955393,49020931,49086465,49152002,49217538,49283073,49348612,49414145,49545219,49610753,49741826,49807361],"retrievable":[39190529,39649281],"replaces":[34471937],"restrict":[13697025,14417921],"replacement":[33882113],"reflection":[4128770,8978433,9633793,9830401,10354689,34013186,34996226,35717122,35913731,37027842,38404098,39976962,41287682,42336258,45678594,47448066,48627714,48758786,48955394,49086466,49414146,49610754,49807362],"retain":[8323073,8388609,9043969,9175041,9240577,9306113,9895937,10027009,10420225,10944513,11010049,11403265],"returning":[3407873,7798785,12648449,46596097,48300033],"runtimeheapsizeviolationpolicy":[34013185,37683205,46071809,48758785],"references":[15400961,18415617,28442625],"reference":[131073,196609,262145,327681,393217,458753,589825,720897,655361,786433,851969,917505,983041,1048577,1114113,1179649,1310721,1245185,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4259841,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5242881,5373954,5505025,5439489,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094850,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684674,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454148,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13828097,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16646145,16580609,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432578,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21757953,21692417,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31522817,31457281,31588353,31653889,31719425,31784961,31850497,31981569,32047105,32178177,32112641,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013186,34078721,34144257,34209793,34275329,34340865,34406401,34471939,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996226,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717122,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027842,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404098,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40042497,39976962,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287682,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336258,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43581441,43515905,43646977,43712513,43778049,43843586,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,47054849,46989313,47120385,47185921,47251457,47316993,47382529,47448066,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627714,48693251,48758786,48824321,48889857,48955394,49020929,49086466,49152001,49217537,49283073,49348609,49414146,49479681,49545217,49610754,49676289,49741825,49807362],"retrieves":[10485761,11206657,31916033,40370177],"retrieved":[34013185,34996225,35717121,37027841,38404097,39976961,41287681,42336257,47448065,47972353,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"responsible":[46268417],"remove":[851969,2293761,2555906,2621441,8847362,9437186,10092546,11730952,12386305,17891329,18546689,42729473,46465026,48431105],"remote":[47906817,48824321],"receive":[40566785,46858241,47382529,48037889,48562177],"restrictions":[34013185,34996225,35717121,36241410,37027841,38404097,39976961,41287681,42336257,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"reaches":[48824321],"remain":[38928385,39190529,39649281,44695553],"removed":[8847361,9437185,10092545,11730945,12386305,17891329,18546689,47906817,48824321],"retrieve":[32309249,34537473],"removes":[2293763,2555907,2621443,3407875,3866626,8847361,9437185,10092545,11730945,12386305,12648451,12713985,14942209,17432577,17891329,18546689,27131906,27197442,42729475,46465027,46596099,48300035,48431107,49741826],"randomt":[7405570],"resources":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735554,3801089,3866625,4259844,4390914,5046276,5177348,5242884,5570561,5636097,5701636,6291457,7602180,7667716,12648449,13631492,15204353,15400961,18415617,21495812,21889028,25362436,26804227,28442625,31916033,32047107,32309249,32768001,34013187,34537473,34668545,34996227,35717123,36962307,37027843,38273025,38338562,38404099,39845889,39976963,40304641,40501249,40697858,41287683,41418753,41549825,41680897,41746433,42139649,42336259,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,44892164,45219841,45350913,45416450,45481985,45875201,46202882,46530561,46596097,46989313,47316993,47382529,47448071,47579137,47775745,48037889,48168961,48234497,48300033,48431105,48496642,48627719,48693249,48758791,48955399,49020929,49086471,49217537,49348609,49414151,49545217,49610759,49741825,49807367]} \ No newline at end of file +{"rank":[4259847],"response":[23920641,30146561,31457281,37486593,38535169,44040193,47513601,49152001],"requesting":[3866625,4915201],"recompilation":[4390918,11927558,16711682,17235970,17891330,18022402,18546690,18743297,19464193,19988482,20185089,20250626,20512769,20578306,21168131,21430275,21495809,22151169,22347779,22740994,23920641,26738691,27787267,27918339,28770307,41091073,44040198,44761090,47513606],"range":[4587521,5046273,5242881,8912897,9109505,9306113,9961473,15073281],"restore":[33554433],"recommended":[30539777,31260673,31457281,33357825,34078721,34406401,36175873,36634625,37158913,37879809,38010881,38666241,39845889,40828929,43384833,43974657,47513601,48103425,48496641,49348609,49414145,49676289,49807361,49938433,50003969],"readonly":[524290,1835010,2228226,3342338,30474241,30998529,31064065,31391745,31522817,31653889,31784961,31850497,31981569,32047105,32112641,32178177,32309249,32505857,32571393,32636929,32768001,32833537,32964609,33161217,33226753,33292289,33488897,33685505,33882113,34209793,34275329,34340865,34471937,34930689,34996225,35061761,35127297,35192833,35323905,35454977,35520513,35651585,35717121,35848193,35979265,36044801,36175873,36372481,36569089,36700161,36896769,37158913,37552129,37617665,37683201,37879809,38076417,38207489,38273025,38666241,38731777,38797313,39124993,39321601,39518209,39649281,39780353,40173569,40304641,40370177,40566785,40763393,41025537,41287681,41549825,41877505,43384833,43843585,44171265,44695553,45219841,46006273,46596097,46661633,46989313,47841281,48365569,48431105,48496641,48955393],"removepropertynocheck":[2686977,6225921,10944517,11272193,44498945,47906817],"resourc":[42401795],"regardless":[13369345,39190530,39976961],"relative":[39780354,40304642,41549826,45809665],"registered":[5898241,7798800,8060944,8257552,8650753,11534338,11730946,11796482,11927568,12058626,12124162,12189698,12255234,12451842,12713986,12910594,15007760,15335440,15728642,16449538,24444930,24707088,25427970,25493512,26214408,34537488,37355522,38338562,43974672,47513616,49348624,49414160,49676304,49807376,49938448,50003984],"reclaimed":[851969,917505,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,3211265,2818049,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,7798785,8060929,8257537,8716289,10158081,10223617,11927553,12386305,15007745,15335425,24707073,34537473,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,42270721,42860545,42926081,43057153,43253761,43515905,43581441,43974657,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48300033,48824321,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"runtim":[11927553,23789569,30146563,31457282,37027842,37486593,38535169,43188225,44040195,47120385,47513603,49217538],"removing":[33619969,48627713],"returned":[25034755,41746433],"readbytes":[1310721,1507329,1638401,2031617,3604481,10289157,10485765,40697857,43646977,44433409,45088769,47710209],"runaway":[40828929],"relevant":[5111809],"representing":[5963777,24641537],"runtimeheapsizesampleinterval":[31457281,37748741,47513601],"remainder":[23461889,24313857],"resource":[2359297,4194313,18153474,18808834,18874370,19070978,19922946,20643842,20840450,21037058,21757954,22544386,23920641,26869766,29622278,37027841,38993921,44040198,44957697,46530562,47448066,47513606,48889857,49217537],"rejected":[33947649,34734081,43057153,44105729,48431105],"represents":[851969,983041,1114113,1245185,1376257,1441793,1703937,1769473,1966081,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,3145729,2686977,2949121,917505,3211265,2818049,2883585,3801089,3866625,4063233,4325377,4390913,4587521,4653057,4784129,4915202,5242881,5701633,6225921,6422529,7602177,7798785,8060929,8257537,8716289,9371649,9437185,9633793,9764865,10092545,10158081,10223617,10354689,10616833,11927553,12386305,12648449,13107201,15007745,15138818,15335425,16252930,23396354,23855105,23920647,24117250,24707073,24772612,24903694,25034753,25231363,25624579,28835841,29556737,30212097,32309249,33882113,34537473,34799618,34865153,35061761,35651585,38600705,38928386,38993922,39059457,39583745,39714817,40501249,40632322,40697857,40960001,41091074,41222146,41418754,41615361,41680898,42074114,42270722,42336257,42860545,42926081,43057153,43122689,43253761,43515905,43581441,43646977,43974658,44040194,44105729,44236802,44302337,44367873,44498947,44957697,45023234,45088769,45154305,45416450,46202882,47513602,47906817,48824322,48889857,49086465,49283074,49348609,49479681,49414145,49610753,49676290,49741826,49807362,49872897,49938434,50003969],"retrieval":[9175041,48758785],"resumed":[37093377,46071809],"resumes":[11927553,18677761,47513601],"running":[1048580,3080200,4849665,5177345,5308417,5505025,9371649,9437185,9633793,9764865,10092545,10616833,12648449,13107201,23724034,24379394,32702465,33423361,34406401,41484296,43319304,43450372,46465025],"referenced":[2883585,5111809,42926081],"required":[3866625,4915201,9306113,27852801,43974657,49348609,49807361],"removal":[5767169],"requests":[3866625,4915201],"reduces":[46465025],"representation":[2097154,7798785,8060929,8257537,11927553,15007745,15335425,15400962,15663105,22282241,23003137,24707073,24903681,25034753,28835841,34537473,41222145,43974657,45154305,45416450,47513601,48103425,48562177,49348609,49414145,49676289,49807361,49938433,50003969],"runtime":[1703937,1966081,4390914,6619137,7471105,7864321,9043969,10158081,10551298,11206658,11927554,14548994,16121857,16318465,16515074,16580609,16973825,17367045,17563651,17629185,17760259,18153473,18219009,18284545,18415619,18481153,18612227,18808833,18874369,19070977,19202049,19595265,19791873,19922946,20054017,20381697,20643842,20774913,20840450,21037058,21233665,21757954,21823490,22544386,23920645,24510465,24838145,27852801,29622284,30146562,30670849,31457282,34406401,35782657,37027842,37093379,39387137,41222145,41680897,43188225,43515905,44040209,44957698,45547521,45613057,46071810,46333953,46399489,46530561,46661633,47185921,47448065,47513604,47972354,48037890,48627713,49086465,49152003,49217538],"reserved":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,3145729,2686977,3014657,2949121,3080193,2752513,917505,3211265,2818049,2883585,3342337,3407873,3473409,3276801,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7471105,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8650753,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13959169,13893633,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20643841,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21168129,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22216705,22151169,22282241,22413313,22347777,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23527425,23461889,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24969217,24903681,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27721729,27656193,27787265,27852801,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29622273,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30605313,30539777,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39911425,39845889,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41287681,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44171265,44105729,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46202881,46268417,46333953,46399489,46137345,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48758785,48693249,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"replaced":[262145,393217,786433,44498945,47906817],"refers":[5046273,6881281,8585217],"representative":[5111809],"recently":[18087937,22609921],"reclaims":[43188225],"release":[13238274,17367041,22085634,22872066,23199745,45547521,45875201,48889857],"related":[32440321,41943041],"rights":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,3145729,2686977,3014657,2949121,3080193,2752513,917505,3211265,2818049,2883585,3342337,3407873,3473409,3276801,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7471105,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8650753,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13959169,13893633,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20643841,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21168129,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22216705,22151169,22282241,22413313,22347777,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23527425,23461889,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24969217,24903681,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27721729,27656193,27787265,27852801,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29622273,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30605313,30539777,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39911425,39845889,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41287681,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44171265,44105729,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46202881,46268417,46333953,46399489,46137345,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48758785,48693249,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"require":[27852802],"result":[4915201,5439489,5832705,6094852,6291457,6684673,6750209,6815745,7077889,7208961,7340033,7405569,7536641,7995393,8126465,8978433,9568257,9633793,9764865,9895938,10027009,10223617,11862017,12648449,12976130,13107201,13303810,13500418,13631489,14024706,14417921,14614529,14942209,15925249,16842753,19857410,20447234,21102593,21561345,23461890,24313858,24969217,24903681,25034755,26083330,27656194,30539777,31260673,31457281,33357825,34078721,36634625,38010881,39845889,41615361,43974657,45481985,47054850,47513601,48103425,48889857,49283073,49348609,49414145,49676289,49807361,49938433,50003969],"ref":[5111809,6291457,9895938,38928385,38993921,39059457,39714817,40501249,40632321,41091073,41222145,41418753,41484289,41615361,41680897,42074113,42139649,42270721,42795009,42860545,42926081,43057153,43253761,43450369,43515905,43581441,43974657,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48824321,49020929,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"root":[1966081,30081025,34340865,37552129,37683201,39124993,39321601,41222145,42401793,45219841,45416449,45809665,48955393],"redirected":[1],"released":[43188225],"results":[9175041,33423361,37027841,44761089,49217537,49676289,49938433,50003969],"request":[11927553,19267585,47513601],"rethrown":[13369345],"releases":[2621441,4390913,7798788,8060932,8257540,11927556,13238274,15007748,15335428,17367041,22085634,22872066,23199745,24707076,25362435,27459587,29229059,33816577,34537476,41091073,43974660,44040193,45875201,47513604,48300033,49348612,49414148,49676292,49807364,49938436,50003972],"relies":[33816577,49152001],"remarks":[1441793,3670017,3866625,3932161,4194305,4587521,4718593,4915201,4980737,5046273,5242881,5439489,5570561,5636097,5767169,5832705,5898241,5963777,6094849,6160385,6291457,6356993,6488065,6619137,6684673,6750209,6815745,6881281,7012353,7077889,7208961,7274497,7340033,7405569,7471105,7536641,7864321,7995393,8126465,8388609,8585217,8650753,8912897,8978433,9043969,9109505,9175041,9306113,9437185,9568257,9764865,9895937,9961473,10027009,10616833,10944513,11272193,11403265,11534337,11730945,11796481,11862017,12058625,12124161,12189697,12255233,12320769,12451841,12582913,12713985,12779521,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13631489,13697025,13828097,13893633,14024705,14090241,14221313,14417921,14614529,14876673,14942209,15073281,15400961,15663105,15728641,16121857,16252929,16318465,16449537,16711681,16973825,17039361,17104897,17235969,17301505,17367041,17563649,17694721,17760257,17825793,17891329,18022401,18087937,18350081,18415617,18546689,18612225,18677761,19005441,19202049,19267585,19333121,19529729,19857409,19922946,19988481,20119553,20185089,20250625,20381697,20447233,20512769,20643842,20578305,20774913,20840450,20971521,21037058,21102593,21168129,21233665,21430273,21495809,21561345,21626881,21757954,21889025,22085633,22282241,22413313,22347777,22478849,22544386,22609921,22740993,22806529,22872065,23003137,23068673,23199745,23396353,23461889,23527425,23592961,23789569,24117249,24313857,24444929,24510465,24576001,24641537,24838145,25034754,25427969,25690113,26083329,27656193,27852802,28639233,29753345,30474241,30867457,31064065,31195137,31850497,32440321,32702465,33161217,33423361,33554433,33619969,33751041,33816577,33947649,34013185,34144257,34340865,34406401,34603009,34668545,34734081,35389441,35454977,35651585,35717121,35782657,36372481,36438017,36503553,36569089,36765697,36831233,37027841,37093377,37158913,37224449,37289985,37355521,37683201,37748737,37814273,37879809,38141953,38207489,38338561,38666241,38862849,39059457,39124993,39190529,39321601,39387137,39780353,39911425,39976961,40042497,40239105,40304641,40501249,40566785,40697857,40828929,41025537,41549825,41615361,42270721,42336257,42860545,43057153,43188225,43253761,43384833,43909121,43974657,44105729,44236801,44367873,44498945,44564481,44892161,45219841,45350913,45481985,45613057,45744129,45875201,46071809,46333953,46399489,46137345,46465025,46792705,47054849,47185921,47251457,47513601,47579137,47972353,48037889,48103425,48234497,48300033,48496641,48562177,48627713,48693249,48955393,49217537,49283073,49348609,49676289,49741825,49807361,49872897,49938433,50003969],"restricted":[34406401,43778049],"represent":[4587522,5242882,11534337,11730945,11796481,12058625,12124161,12189697,12255233,12320769,12451841,12582913,12713985,12779521,12910593,13041665,13172737,13434881,15728641,16449537,24444929,24576001,25427969,25690113,27852801,28639233,29753345,37355521,38338561,44236801,44498946,45744129,46137345,47251457],"return":[3866626,3932161,4128769,4194305,4259841,4587521,4784129,4849665,4915202,5046274,5111809,5177345,5242881,5308417,5439489,5505025,5570561,5636098,5767169,5832705,5898241,5963777,6094851,6160385,6291457,6356993,6488065,6619137,6684673,6750209,6815745,6881281,7077890,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7864321,7995393,8126465,8388609,8585217,8650753,8978433,9043969,9240577,9306113,9371649,9437185,9568257,9633793,9764865,9830401,9895937,9961475,10027009,10092545,10354689,10289153,10420225,10485761,10616833,10747905,10944513,11010049,11075585,11141121,11468801,11599873,11665409,11862017,12648449,12976130,13107201,13303810,13369346,13500418,13565953,13631489,13893633,14024706,14090243,14417921,14614529,14876673,14942209,15073283,15138817,15400961,15925249,15990786,16121857,16187393,16252929,16318465,16384001,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17563649,17694721,17760257,17956865,17891329,18022401,18087937,18415617,18546689,18612225,18743297,18939905,19005441,19136513,19202049,19333121,19398657,19464193,19529729,19726337,19857410,19988481,20119553,20185089,20250625,20512769,20578305,21102594,21168129,21430273,21495809,21561346,21626881,21823489,21889027,22151169,22282241,22347777,22609921,22740993,23003137,23330817,23396353,23461890,23592961,23855105,24117249,24313858,24510465,24641537,24838145,25034754,26083330,27656194,28901377,30343171,30539778,31260674,31457282,33357826,33751042,34078722,34406401,34799617,34865153,36306945,36634626,36962305,37158913,37879809,38010882,38600705,38666241,39583745,39845890,41025537,41746433,43384833,43712513,43778050,43974658,45481986,46858241,47054849,47382529,47513602,48168961,48234497,48496641,48562177,48693249,48758785,49283074,49348610,49414146,49676290,49807362,49938434,50003970],"resolve":[3866625,4915201],"recursion":[37093377,46071809],"requested":[3866626,4915202,13303810,13500417,16384002,16711682,16908289,17039361,17694722,18022401,18939905,19529730,19726338,20578306,21626881,22740993,27983873,37289985,38141954],"runtimes":[16711681,17235969,17891329,18022401,18546689,19988481,20250625,20578305,22740993],"removeproperty":[2883586,6356998,8388614,10223618,41615362,41811971,42926082],"random":[9043973],"reclaim":[17367041,23199745,45875201],"requirement":[34406401],"reassignment":[37224449,37814273],"rootnode":[30081025,37552133,45416449],"restriction":[1048578,5177346,5308418,7798786,8060930,8257538,11927554,15007746,15335426,24379394,24707074,25165826,30539778,31260674,31457282,33357826,33554434,34078722,34406401,34537474,36634626,38010882,39845890,43450370,43974660,46137345,47251457,47513604,49348612,49414148,49676292,49807364,49938436,50003972],"reason":[30736385,35323905,48824321],"removeelement":[2883585,6488069,10223617,41615361,42926081],"rely":[46465025],"rejection":[49152001],"replace":[3932168],"read":[2686979,3604481,6225923,9895939,10944513,11272194,11403265,11665413,13762561,27131905,27852801,29491201,29818881,31195137,32964609,40566785,40697857,42336257,43581441,44498947,45154305,47906819,48431105],"returns":[851969,983044,1114113,1245185,1310722,1376260,1507330,1638402,1703938,1769476,1900545,1966082,2031618,2097154,2162689,2293761,2359297,2424833,2490369,2555905,2621441,3145729,3014658,2686977,2752514,2949121,3211268,917505,2818049,2883587,3604482,3801092,4063233,4325380,4390915,4653057,5701635,6094851,6225921,6422529,6946818,7798785,8060929,8257537,8716289,8912897,9109505,9961473,10158082,10223620,11927555,12386305,13369345,13893635,14090243,15007745,15073281,15138817,15335425,15400961,16252930,17170433,18087937,20971521,21823489,21889025,22282241,22609921,23003138,23396354,23592961,24117250,24510465,24707073,24969218,24903681,25034753,27525122,28966914,29884417,30343169,30474242,31064065,31850497,33161217,34144257,34537473,34799617,36372481,36569089,36765697,37093377,38207489,38928385,38993921,39714817,40042497,40501252,40566785,40632321,40697858,40894466,40960002,41091073,41222146,41418753,41615364,41680898,42074113,42270721,42336257,42467330,42663938,42860548,42926083,43057156,43253764,43515906,43581441,43646978,43974657,44040195,44105732,44236801,44302337,44367876,44433410,44498945,44957697,45023233,45088770,45154305,45416450,46071809,46202881,47054850,47513603,47710210,47906817,48562177,48824321,49086465,49283075,49348609,49479682,49414145,49676289,49741825,49807361,49872899,49938433,50003969],"retrievable":[39190529,39976961],"replaces":[36438017],"restrict":[46137345,47251457],"replacement":[33816577],"reflection":[4194306,7733249,8454145,12517377,21364737,30539778,31260674,31457282,33357826,33423362,34078722,36634626,38010882,39845890,43974658,46465027,47513602,49348610,49414146,49676290,49807362,49938434,50003970],"retain":[6750209,6815745,7208961,7340033,7536641,8126465,9568257,10027009,11862017,13631489,14614529,14942209],"returning":[2883585,6291457,10223617,41615361,42926081],"runtimeheapsizeviolationpolicy":[31457281,38535173,47513601,49217537],"references":[17367041,23199745,45875201],"reference":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,3145729,3014657,2686977,2949121,3080193,2752513,917505,3211265,2818049,2883585,3342337,3407873,3473409,3276801,3538945,3604481,3670017,3735553,3801089,3866626,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915202,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7471105,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306114,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895940,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20643841,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21168129,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22216705,22151169,22282241,22413313,22347777,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23527425,23461889,23592961,23658497,23724033,23789569,23855105,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24969217,25034754,25100289,25165825,25296897,25362433,25427969,25493505,25559041,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27721729,27656193,27787265,27852801,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29622273,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30605313,30539778,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260674,31326209,31391745,31457282,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357826,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078722,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603010,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438019,36503553,36569089,36634626,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010882,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845890,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501250,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41287681,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974658,44040193,44171265,44105729,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46202881,46268417,46333953,46399489,46137345,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513602,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48758785,48693249,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348610,49414146,49479681,49545217,49610753,49676290,49741827,49807362,49872897,49938434,50003970],"retrieves":[7864321,24838145,24903681,39583745],"retrieved":[30539777,31260673,31457281,33357825,33554433,34078721,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"responsible":[33161217],"remove":[786433,1900546,2686977,6225921,6356994,6488066,8388610,10944513,13565960,42336258,44498945,46858241,47382529,47906817],"remote":[45547521,48889857],"receive":[33947649,34734081,43057153,44105729,48431105],"restrictions":[30539777,31260673,31457281,33357825,34078721,34668546,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"reaches":[48889857],"remain":[39190529,39976961,47972353,48037889],"removed":[6356993,6488065,8388609,10944513,13565953,45547521,46858241,47382529,48889857],"retrieve":[36765697,40042497],"removes":[1900547,2686979,2883587,6225923,6356993,6488065,8388609,10158082,10223619,10944513,13565953,25034753,26017794,31195137,41615363,41680898,41811970,42336259,42926083,44498947,46792705,46858241,47382529,47906819],"randomt":[9043970],"resources":[851969,917505,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621442,2686977,3145729,3014657,2949121,3211265,2818049,2883585,3801089,4063233,4325377,4390914,4653057,5701633,6225921,6422529,6946817,7798788,8060932,8257540,8716289,10158081,10223617,11927556,12386305,13238276,15007748,15335428,17367041,22085636,22872068,23199745,24707076,24903681,25362435,27459587,29229059,30539779,31260675,31457283,32440321,32702468,33357827,34078723,34340866,34406401,34537476,36634627,36765697,37224449,37683202,38010883,38928385,38993921,39124993,39321601,39714817,39845891,40042497,40501249,40632321,40894465,40960001,41091074,41222145,41418753,41615361,41680897,42270721,42401793,42860545,42926081,43057153,43253761,43515905,43581441,43974663,44040194,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45219841,45416449,45875201,46202881,47513607,47906817,48300033,48824321,48955394,49086465,49283073,49348615,49414151,49676295,49741825,49807367,49872897,49938439,50003975]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_115.json b/docs/Reference/fti/FTI_115.json index d30a806f7..ad6855ddd 100644 --- a/docs/Reference/fti/FTI_115.json +++ b/docs/Reference/fti/FTI_115.json @@ -1 +1 @@ -{"supports":[2228225,3866625,7929857,17629185,17760257,18219009,19398657,21692417,25755649,31391745,31916033,34668545,35717121,37027841,38273025,38404097,39976961,40501249,41222145,41287681,41549828,41746433,42336257,47448065,48627713,48955393,49348609,49414145,49610753,49741825,49807361],"server":[4259848,5046280,5177352,5242888,5701640,5767169,7602184,7667720,7864321,13041666,13369346,13565954,14090242,14614530,14680066,20905986,21495816,21561346,26411012,30408708,47448073,48627720,48758792,48955400,49086472,49414153,49610760,49807369],"speed":[14811137,18939905,24641537,30801921],"step":[9568257],"scriptfunc":[5832709,6225925,6684677,6881286,7733253,8060933],"scriptinterruptedexception":[3014659,15466503,15859719,16252930,16318471,16580610,16777223,29884426,31916033,36306947,37355522,38010882,38535170,38928385,39059458,39583746,44695553,49283087],"space":[44761089],"selectively":[32309249,34537473],"stringdocument":[3342339,19136518,31916033,32374787,36503555,37224451,37748738,44498953,47316993],"snapshot":[4390913,19791875,21430275,21495809,46202881,48758785],"serialize":[2490369,3014657,13893633,16252929,48758785,49217537,49283073],"selecting":[9633793,9699329,9830401,10747905],"scriptaccess":[4194310,16449542,16973830,17563654,17956870,18612230,28901377,30605316,31719425,31916033,36110342,42532865,43057158,46530561,46858247,48562181,49348612],"search":[65537,4521985,5439490,32768001,33357825,34406401,36044801,36372481,40960001,45350913],"syntactic":[14221313,14286849,14745601,14876673,14942209,15269889,15532033,15728641,15990785,16384001,16515073,17432577,18153473,18743297],"sensitive":[25755649,31391745],"scriptable":[6553601,7208961,31916034,42729474,46465025],"servername":[5767175,7864327,13041669,13369349,13565957,14090245,14614533,14680069,20905989,21561349],"schedule":[48824321],"scripts":[34603009,35913729,39845889,41353217,41877505,44105729,44761089,46071809,46727169],"stripped":[8585217],"safe":[48758785],"separate":[21823489,22020097,22085633,22216705,22609921,22675457,22806529,23199745,23592961,24117249,24707073,27918337],"stores":[1507329,4587521,42991617],"scenarios":[41353217,46071809,47644673],"sub":[3997697,4063233,4194305,4325377,4456449,4653057,4718593,4784129,4915201,4980737,5111809,5308417,5505025,5898241,5963777,6422529,8978433,9109505,9502721,9633793,9699329,9764865,9830401,9961473,10158081,10354689,10616833,10747905,10813441,10878977,11272193,11468801,11796481,11927553,11993089,12058625,12255233,12320769,12451841,12582913,12713985,12779521,12845057,12910593,13041665,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13828097,13893633,13959169,14024705,14090241,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14942209,15007745,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15794177,15859713,15990785,16056321,16121857,16252929,16318465,16449537,16515073,16646145,16777217,16973825,17039361,17104897,17170433,17301505,17498113,17563649,17825793,17956865,18350081,18415617,18481153,18612225,18743297,18939905,19070977,19136513,19464193,19791873,20054017,20185089,20316161,20381697,20447233,20643841,20840449,20905985,20971521,21037057,21168129,21430273,21561345,21626881,21692417,21823489,21889025,22020097,22085633,22216705,22282241,22413313,22609921,22675457,22806529,22937601,23003137,23068673,23199745,23265281,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,24117249,24379393,24510465,24576001,24641537,24707073,25034753,25100289,25165825,25362433,25821185,26214401,26476545,26542081,27000833,27066369,27525121,27656193,27918337,28114945,28377089,28442625,28770305,29097985,29163521,29425665,29753345,30146561,30212097,30343169,30670849,30801921,32178177,32833537,33488897,42008577],"sum":[6684675],"summarizes":[17432577],"scriptengineexception":[393219,2490371,11993095,12779527,13893634,14155778,14483463,15007751,29818890,31916033,34865154,35848195,42860546,43319298,43909122,44433410,49217551],"scriptengine":[1703938,3211268,4259843,5046319,5177391,5242927,5701679,6815750,7012358,7602227,7667759,8716289,9764869,12451842,12517382,12582914,12910594,12976134,13041666,13172738,13369346,13500418,13565954,13631490,13697026,13828098,13959170,14024706,14090242,14221314,14286850,14352390,14417922,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15138826,15204354,15269890,15335426,15400962,15532034,15597574,15663106,15728642,15925254,15990786,16056322,16121858,16384002,16515074,16842754,17432578,18153474,18743298,19267586,20381698,20905986,20971522,21495859,21561346,21692418,22282242,23068674,23658498,24510466,25165826,25559041,26017793,26411010,26738690,26804226,27262978,27590658,27983874,28246018,28835842,28966916,29294596,30408706,31916033,32047106,32440322,33751042,33947650,34013205,34471938,34668546,34996227,35258370,35520514,35717139,35913730,36241410,36700162,36765698,36962306,37027859,37289986,37617668,37814274,38141956,38338562,38404117,39976979,41091078,41287699,42336275,44892162,44957697,45219841,45678594,45744132,45809666,46268424,46858242,47120386,47185922,47448141,47644674,47972355,48168962,48627779,48758861,48955459,49020929,49086473,49414211,49610819,49741825,49807427],"subclasses":[46858241],"selectort":[6488066],"searches":[1507329,4521985,42991617],"schema":[20250625,20643841],"start":[34734082,37421057,39780353,46989314],"settings":[5373959,6094854,31916033,33751041,34013185,34996225,35717121,35782657,37027841,38207489,38404097,39976961,41287681,42336257,46202881,47448065,48562177,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"selected":[2293762,7077889,7405569,7536641,9371649,9633793,9699329,9830401,10485761,10747905,11206657,16384001,16515073,21692417,26279938,28704770,39124993,40304641,42729476,44302337,46399489,47906817,48824321,49479681,49676289],"suppressfinalize":[15204353],"synchronous":[23003137,23265281,23724033,26476545,27525121,30539778,31588354,47448065,49414146,49807362],"store":[4587521,10289153,11075585,11337729,11534337,12124161,19988481],"subroutine":[36700161,49020929],"structures":[26148865,31916033,48824321],"suppressextensionmethodenumeration":[34013185,39190533,48758785],"standards":[49676289],"structure":[131073,786433,1310721,3473409,4063234,4325378,5373953,5570561,6094849,14221313,17694721,18743297,19136513,19529729,24838145,25886721,26148865,31260673,31916033,32374785,33226753,34144257,34537473,35061761,35127297,35389443,35586049,36175873,36831233,37748737,40370177,41680900,42008577,44498945,46006273,46923777,47316993,47775746],"short":[45023233],"struct":[6619137,7798785,31916033,41680898,42532868,43843591,46530564,47382532,47775746,48037892],"shared":[720897,655361,917505,983041,6160385,6356993,6815745,7012353,11599873,12189697,12517377,12976129,13434881,14352385,15073281,15925249,16711681,32768001,33095681,33292289,33619969,33882113,37486593,38862849,41549825,44105729,46268417],"site":[524289],"size":[5373953,6094849,30736386,31522818,31457284,31850498,32243717,32505858,32964610,34013187,34603009,35454977,35782659,36896769,37093378,37158913,37683201,37879809,38076417,38666241,39256065,39714817,39845889,40108034,40239105,40632321,40763393,41156609,41353221,41943042,42598402,42991617,43515905,43974658,44761090,45023234,46071813,46202883,46661638,47054854,47579140,47710210,48234501,48758787],"synchronization":[29163521,30015489],"suppressinstancemethodenumeration":[34013185,39190529,39649285,48758785],"support":[6946817,7405569,7471105,7929857,7995393,8126465,8192001,8323073,8388609,8454145,8650753,8781825,8847361,9043969,9175041,9240577,9306113,9371650,9437185,9895937,10027009,10092545,10420225,10944513,11010049,11403265,17432577,31916033,34013185,34471937,34996225,35258369,35717121,37027841,38404097,39976961,41287681,42336257,44630017,45219841,46465025,47120385,47448065,48627713,48758785,48824322,48955393,49086465,49414145,49610753,49676289,49807361],"serializeobjectstate":[393217,49217537],"smart":[49676289],"scriptexception":[31129601,35848193,36306945,39583751,44433415,45613061,47251457,49217537,49283073],"scriptusageattribute":[2818051,17825799,18612231,28901382,30932993,31784963,31916033,31981569,36110338,42532875,46530561,46858241,47382529,48037894,49348614],"strings":[6488065,7340033,7733250,8060929],"stringt":[6029318,6488067,7340034,7733251,8060930,8454148,11206658],"stringify":[48824321],"simpler":[33882113],"slower":[41353217,46071809],"stacktrace":[35848193,49217537],"sealed":[11730945,12058625,13107201,13762561,15400961,18415617,28573697,29163521,30015489,30670849,33554433,34209793,34799618,34865153,37355521,38010881,38535169,39059457,39583745,40960001,42139650,42860545,43319297,43450370,43778050,43843586,43909121,44433409,45744129,46137345,46202882,46989314,47185921,47382530,47579138,48037890,48758786,48889857,49348610],"securely":[32309249,34537473],"successful":[7798785,47644673],"scope":[41549825],"stripping":[37814273,39452673],"stored":[8454145,17694721,19202049,19726337,20512769,21102593,21299201,21954561,22151169,23920641,25886721,30277633,32112641,46465025],"setproperty":[3407874,3866626,8192006,8781830,12648450,16646150,17301510,27787267,28311555,46596098,48300034,49741826],"samples":[33030145,34013186,35782658,37093377,37552129,40108033,42401798,44040193,45875201,46202882,48758786],"strictly":[36241409,48693249],"scriptmemberflags":[8716289,16973830,17498118,17956870,18350086,30605316,31916033,35520513,39911431,48168961,49348612,49479685],"serializationinfo":[2490370,3014657,13893641,15007750,15859718,16252936,29818881,29884417,49217539,49283074],"sealedattribute":[40960001,41680897,42139649,43450369,43778049,43843585,45744129,46137345,46202881,46989313,47185921,47382529,47579137,47775745,48037889,48758785,48889857,49348609],"system":[851969,1572868,4063233,4128770,4325377,4521985,4587521,4653060,4784132,5111812,5373954,5505028,5439490,5767170,5832705,6029318,6094850,6160385,6225921,6488072,6553604,6684678,6750209,6815745,6881282,6946818,7077889,7143425,7208964,7274502,7340034,7405570,7471105,7733253,7798786,7864323,7995395,8060933,8126466,8192003,8257538,8388611,8323075,8454146,8519682,8585217,8650754,8716289,8781826,8847362,8912897,8978433,9043971,9175043,9240579,9306115,9371650,9437185,9502723,9568262,9633794,9699330,9830402,9895939,9961473,10027011,10092546,10158082,10289156,10354689,10420227,10485762,10551297,10616833,10747906,10813441,10878977,10944515,11010051,11075588,11141121,11206657,11337732,11403267,11534339,11599873,11730945,11862017,11993089,12058626,12124164,12189697,12255233,12320769,12386305,12451842,12517377,12582914,12779522,12845058,12910594,12976129,13041667,13107201,13172738,13238274,13303809,13369347,13434881,13500418,13565955,13631489,13697025,13762562,13828100,13893634,13959170,14024706,14090243,14221313,14286849,14352385,14417921,14548995,14614531,14680067,14745601,14811137,14876673,14942211,15007746,15073281,15138817,15269889,15335426,15532034,15597570,15728641,15794177,15859714,15925249,15990785,16056321,16187394,16252930,16318465,16384001,16449537,16515073,16646146,16711681,16777218,16842754,16908290,16973825,17235969,17301506,17367041,17432583,17498113,17694722,17760258,17891329,18022401,18087937,18153474,18219009,18284547,18546689,18677761,18743297,18808835,18874369,18939905,19005441,19070978,19136513,19202050,19267585,19398657,19529729,19595266,19726338,19791873,19857411,19922945,19988483,20054018,20119553,20185089,20381698,20512770,20578305,20643841,20709378,20774915,20840449,20905987,20971522,21102595,21168129,21233668,21299202,21364739,21430273,21561347,21626881,21692418,21757954,21889025,21954563,22085633,22151170,22282242,22347777,22413313,22544388,22609921,22675457,22806529,22872065,23003137,23068673,23134211,23199745,23265283,23330817,23592962,23658497,23724035,23789569,23855105,23920642,23986177,24051713,24182785,24379393,24510468,24641537,24707073,24772609,24838147,24903683,25034755,25165827,25362433,25755649,25821185,25886722,26345473,26476545,27525123,27656193,27852801,27918338,28377089,28639233,28770305,29163521,29425667,30015489,30146561,30277634,30343171,30801921,31195139,31260673,31391745,32112642,33226755,33488897,34799617,35979268,39124993,39845889,40501250,40960001,41418753,41615361,42139649,42205186,42532866,42729473,42795009,42991617,43450369,43778049,43843586,44498945,45219841,45350917,45481985,45744129,45875201,46137345,46202881,46530562,46596097,46989313,47185921,47316993,47382530,47448065,47579137,48037890,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48889857,48955393,49020929,49086465,49217540,49283073,49348610,49414145,49545217,49610753,49741826,49807361],"script":[131074,1310721,1441793,1638401,1703942,1769473,2097153,2883585,3211276,3407877,3735553,3866632,3932164,4128769,4194306,4259886,4390930,5046320,5177392,5242928,5308417,5505025,5701680,5832706,6029313,6160386,6225922,6291460,6356995,6488065,6684678,6815748,6881285,6946817,7012357,7143425,7340033,7405570,7471105,7602224,7667760,7733253,7929857,7995393,8060933,8126465,8192001,8323074,8388610,8650753,8781825,8847361,8912897,9043970,9175042,9240578,9306114,9371650,9437185,9568261,9764868,9895938,10027010,10092545,10420226,10485761,10944514,11010050,11206657,11403266,11599873,12189697,12386305,12451843,12517379,12582915,12648452,12713985,12910595,12976131,13041667,13172740,13238273,13369347,13434881,13500419,13565955,13631489,13697029,13828100,13959171,14024707,14090243,14221318,14286852,14352387,14417925,14548996,14614531,14680067,14745603,14876675,14942217,15073281,15138817,15204353,15269890,15335428,15400965,15532038,15597569,15663109,15728643,15794177,15925251,15990786,16056324,16121858,16187393,16384006,16449539,16515077,16646145,16908289,16973829,17235970,17301505,17432593,17498115,17563650,17629191,17694725,17760263,17891329,17956868,18087940,18153479,18219015,18284547,18350082,18546689,18612226,18677763,18743301,18808837,19005441,19202050,19267587,19398663,19529733,19595265,19726340,19857411,19922947,20119555,20381699,20512770,20578306,20709381,20774916,20905987,20971523,21037058,21102597,21233670,21299204,21364739,21495871,21561347,21692425,21757956,21823490,21889025,21954565,22020098,22085634,22151170,22216706,22282243,22478851,22544389,22609922,22675458,22741000,22806530,22872066,23068676,23134212,23199746,23265282,23330818,23396359,23461889,23592962,23658500,23920643,23986179,24051714,24117250,24182787,24313858,24510468,24707074,24772611,24838149,24903683,24969221,25165828,25362433,25559043,25755651,25886725,25952262,26017795,26148867,26345475,26411016,26542082,26607618,26738690,26804226,26935301,27066369,27131906,27262980,27394051,27459586,27590664,27721734,27852801,27918338,27983873,28049410,28246020,28311554,28442629,28573698,28639233,28835841,28901377,28966924,29097986,29163522,29294594,29556748,29622274,29753345,29949954,30015490,30081033,30146562,30277634,30343170,30408712,30605320,30670849,30867459,30932995,30998530,31129603,31195140,31260676,31326213,31391747,31653889,31719425,31784961,31916056,31981569,32047106,32112643,32309249,32440322,32702466,33226758,33685505,33751041,33947649,34013200,34340865,34471941,34537473,34603009,34668552,34734086,34865153,34996239,35258370,35323905,35651593,35717136,35782658,35848195,35913729,36110337,36306947,36569091,36700163,36765697,36962306,37027856,37289986,37355521,37421057,37617669,37814275,37945345,38141957,38273033,38338564,38404113,38535169,38600705,38797313,38928387,39190529,39387138,39452674,39518209,39583745,39649281,39780353,39845889,39911425,39976977,40042498,40173569,40304645,40566786,40697860,40828929,40894465,41025537,41091073,41222145,41287697,41353217,41418754,41484289,41615361,41746441,41877505,42074113,42139650,42205185,42336273,42467329,42532867,42663937,42729473,42795009,43057153,43253762,43319297,43581441,43515906,43712514,43778049,43843585,44105733,44367873,44433409,44630019,44695555,44761090,44892164,44957699,45088770,45219841,45416452,45547523,45613057,45678596,45744140,45809669,46071809,46202900,46268419,46465028,46530563,46596102,46727169,46792706,46858242,46989318,47185927,47251460,47382531,47448131,47644673,47775746,47841282,47906818,47972353,48037891,48103425,48168962,48300040,48365571,48496644,48562181,48627780,48693249,48758878,48824330,48955460,49020930,49086528,49152005,49217541,49283076,49348620,49414208,49479681,49545221,49610822,49676294,49741838,49807424],"select":[6488065,7733249],"set":[2228226,3407873,3866626,6684673,7274502,7995394,8192002,8781826,10485761,11206657,12648449,13238273,13631490,16646145,17301505,21889026,25362434,32309252,32768004,32899076,33292292,33423365,33751044,33816580,33882116,34406404,34471941,34537476,34799622,35127300,35258372,35520517,35913733,36044801,36175876,36241413,36700164,36765700,37093380,37158916,37552132,37683204,37814277,37879812,38076421,38207492,38666244,38731780,38862853,38928388,39190533,39256068,39452677,39649284,39911428,40108036,40435716,40501250,40566788,40632324,41025540,41222148,41353222,41549829,41615365,41877509,42205189,43515908,44040196,44695556,44761093,44892164,45154308,45350913,45678597,45809668,46006276,46071814,46596097,46727173,46858244,47120388,47644677,47972357,48168965,48300033,48824321,49741826],"syncinvoker":[23003141,23265285,23724037,24576005,25100293,25821189,26476549,27525125,32178181,32833541,33488901,35717121,37027841,38404097,39976961,41287681,42074117,42336257,47448065,48627713,48955393,49414145,49610753,49807361],"sort":[65537],"statement":[9568257,14745601,14942209,15269889,15532033,15990785,16515073,18743297,19267585,23986177,24182785,24772609,25755650,31391746],"soft":[34013185,35782657,41353217,46071809,46202881,48758785],"scriptname":[34734081,41484293,46989313],"sets":[2293761,2621441,3407875,3866626,7995393,8192001,8781825,12648451,13238273,16646145,17301505,27787266,28049410,28311554,29360129,30474241,30932994,31326210,31457286,32309249,32571393,32768001,32899073,33292289,33751041,33816577,34013194,34275329,34406401,34537473,34603009,34799617,34996229,35061764,35127297,35258369,35454977,35717126,35782662,35848195,36044805,36175873,36372482,36700161,37027846,37093377,37158913,37552129,37683201,37879809,38076417,38207489,38404102,38666241,38731777,38862849,39256065,39845889,39911425,39976966,40108033,40566785,40632321,40960002,41222145,41287686,41353217,41615361,41680900,41877505,42205185,42336262,42729474,42991617,43515905,44040193,44761089,45154305,45350917,45809665,46006273,46071809,46202886,46465025,46596099,46727169,46858241,47448070,47579142,48300035,48365570,48431106,48627718,48758794,48889857,48955398,49086469,49217539,49348610,49414150,49610758,49741828,49807366],"shares":[17629185,17760257,18219009,18677761,19398657,22478849],"sbyte":[3407873,10420230,12648449,45023233,46596097,48300033],"serialized":[393218,15007746,15859714,29818881,29884417,49217539,49283073],"specifying":[5373953,6094849,14286849,14745601,14876673,15269889,15728641,15990785,17235969,18284545,19202049,19857409,19922945,20119553,20512769,20578305,21364737,22151169,23134209,23330817,23920641,24051713,24903681,30277633,31195137,32112641,42008577],"shallow":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4259841,4390913,5046273,5177345,5242881,5570561,5636097,5701633,6291457,7602177,7667713,12648449,21495809,39845889,40501249,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47448065,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48955393,49020929,49086465,49217537,49348609,49414145,49545217,49610753,49741825,49807361],"successfully":[5373953,6094849,9568257,11730945,17367041,17891329,18022401,18546689,18874369,22347777,27852801,28639233],"specific":[2555906,6029314,6488065,7143425,13172737,13828097,14548993,15335425,16056321,17432578,23068673,23658497,24510465,25165825,25427969,35848193,35913729,44630017,45023233,46465026,47644673,49217537,49676289],"scripting":[5767170,7864322,31916033,36241409,40501249,44630017],"statements":[14221313,14286849,14745601,14876673,14942209,15269889,15532033,15728641,15990785,16384001,16515073,17432577,18153473,18743297,25755649,31391745],"strongly":[3407885,6881281,7274499,7733249,8060929,8323074,8388610,8454145,9043970,9175042,9240578,9306114,9895938,10027010,10420226,10944514,11010050,11403266,12648461,46596109,48300045],"stringdictt":[6029314,8454146],"scheme":[7274497],"serialization":[13893635,15007746,15859714,16252931],"starting":[2555905,33030145,44236801,45875201,46465025],"supported":[15597570,23265282,23724034,25034754,27525122,29294593,29425666,30343170,30539777,31588353,32636929,32899073,33161217,36044801,40304642,43515905,45350913,47448065,48627713,48955393,49086465,49414145,49610753,49807361],"serializableattribute":[49217540,49283076],"started":[31129601,35848193,36306945,38535169,43319297,43581441,47251457,49217537,49283073],"sampl":[35192834,42926081,43384833,43450370],"subsequent":[2490369,5373953,6094849,9764865,38862849,41549825,49217537],"scriptmemberattribute":[2686979,15794183,16449543,16973831,17104903,17498119,17563655,17956871,18350087,30605330,30932995,31916033,39911426,40566786,42532865,46530561,47382529,49348631],"setpropertynocheck":[2293761,2621441,12320769,13238277,42729473,48431105],"segment":[39124993],"smaller":[45547521],"signature":[6684673],"sourceinfo":[5373958,6094853],"significant":[14221313,14286849,14745601,14876673,14942209,15269889,15532033,15728641,15990785,16384001,16515073,17432577,18153473,18743297,48824321],"sole":[262145,327681,589825,720897,655361,917505,983041,1048577,45219841,48693249,49020929,49545217],"single":[3407873,11403270,12648449,19267585,21692417,23986177,24182785,24772609,25755649,31391745,46596097,48300033],"special":[35258369,45219841,48693249],"specifies":[5767169,7143425,7864321,26148865,31916039,38076417,38469633,39124997,40304645,42532865,43384833,43515905,43843585,44236801,44302340,44957697,45547521,46399490,46530561,47382529,47579137,47906820,48037889,48365570,48562179,48824334,49348609,49479683,49676298],"specifier":[5373958,6094853,14286853,14745605,14876677,15269893,15728645,15990789,17235973,18284549,19202053,19857413,19922949,20119557,20512773,20578309,21364741,22151173,23134213,23330821,23920645,24051717,24903685,30277637,31195141,32112645],"specified":[1114114,1179649,1245186,1376257,1441793,1507329,1572868,1638402,1703940,1769473,1835010,1900546,1966082,2031618,2097154,2162690,2228227,2293766,2359300,2424834,2490369,2555907,2621442,2686978,2752513,2818050,2949121,3080194,3145729,3211268,3276801,3342337,3407902,3473409,3538945,3670017,3735553,3801089,3866626,4063233,4128769,4194305,4259890,4325377,4390928,4653059,4784130,5046322,5111810,5177394,5242930,5439489,5505025,5570561,5636097,5701682,5832705,6225921,6291457,6356994,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012355,7077889,7143425,7274497,7340034,7405571,7471105,7536641,7602226,7667762,7733252,7798786,7864322,7995393,8060929,8126465,8192002,8257539,8323073,8388609,8454147,8519682,8585217,8716289,8781826,9043969,9175041,9240577,9306113,9371651,9502721,9568257,9699329,9895937,9961473,10027009,10158081,10289153,10420225,10485763,10551297,10747905,10813441,10878977,10944513,11010049,11075585,11206659,11337729,11403265,11534337,11862017,11993089,12124161,12255233,12451842,12517377,12582913,12648482,12779521,12910594,12976129,13041667,13107202,13172737,13369346,13500417,13565955,13697025,13828097,13959170,14024705,14090242,14221314,14286849,14352385,14417921,14548993,14614531,14680066,14745601,14876674,14942211,15269890,15532035,15597569,15728642,15794177,15925249,15990786,16318465,16384002,16449537,16515074,16777217,16973825,17235969,17432579,17498113,17563649,17629185,17694721,17760257,17956865,18022401,18153475,18219009,18284545,18350081,18612225,18677761,18743298,19005441,19070977,19202049,19267585,19398657,19464193,19529729,19595265,19857409,19988481,20054017,20185089,20381697,20447233,20512769,20578305,20840449,20905986,20971522,21168129,21364737,21495867,21561347,21626881,21692417,22020097,22085633,22151169,22216705,22413313,22609921,22675457,22806529,23003137,23068673,23199745,23265281,23330817,23527425,23592961,23658497,23724033,23855105,23986177,24051713,24117249,24182785,24379393,24510466,24707073,24772609,24903681,25034753,25100289,25165826,25296898,25559041,25624578,25690114,25755650,25821185,25886721,26017795,26083329,26279938,26411024,26476545,26607617,26673156,26738689,27000833,27262977,27525121,27590664,27656193,27721733,27918337,27983874,28114945,28180484,28246017,28377089,28508171,28639233,28704770,28770305,28835842,28901377,28966916,29229057,29294593,29425665,29556747,29818882,29884418,30081027,30277633,30343169,30408720,30474241,30539780,30605319,30867462,31129602,31260673,31391746,31588356,31719425,32309249,32440322,32636932,32833537,33161220,33226753,33488897,34537473,34930689,35389442,35586049,35651586,35848193,35979267,36306945,36569094,36831233,37617665,38141953,39583745,39845889,40501251,41353217,41418753,41615361,41680899,41877505,41943042,42139649,42205185,42532867,42598402,42729480,42795010,42991617,43450369,43778050,43843586,43974658,44433409,44498945,44564481,44761089,45023236,45154305,45219841,45350916,45481986,45613057,45744132,45875201,46071809,46202907,46465028,46530563,46596130,46727169,46989313,47185924,47251458,47316993,47382530,47448115,47579137,47710210,47775745,47906817,48037890,48234497,48300062,48431106,48496641,48627766,48693249,48758854,48824324,48955446,49020929,49086515,49217540,49283075,49348617,49414198,49545217,49610803,49676291,49741826,49807414],"send":[131073,196609,262145,327681,393217,458753,589825,720897,655361,786433,851969,917505,983041,1048577,1114113,1179649,1310721,1245185,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4259841,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5242881,5373953,5505025,5439489,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8388609,8323073,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13828097,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16646145,16580609,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21757953,21692417,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31522817,31457281,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32178177,32112641,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40042497,39976961,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43581441,43515905,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,47054849,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361],"scriptobject":[3866627,16187394,16646146,16908290,17301506,17432577,17891330,18546690,19005442,19595266,27131906,27459586,28049410,28311554,31326211,31916033,35323906,38338567,40697864,41091074,41615362,42205186,42663938,45416456,49741831],"string":[1114113,1179649,1245185,1376257,1441793,1507329,1572872,1638401,1769473,1835009,2097153,2162689,2228225,2293766,2490369,2555914,2621441,2686977,2752513,2818049,2949121,3014657,3080193,3145729,3276801,3342337,3407879,3538945,3670017,3735553,3866628,3801089,4063238,4259908,4390939,4653062,4784141,5046341,5111821,5177413,5242949,5373959,5439494,5505037,5636097,5701701,5767178,6029322,6094854,6291457,6488078,6553606,6684675,6881282,7208966,7274498,7340034,7405569,7471110,7602244,7667780,7733252,7798785,7864330,8060930,8126470,8192006,8257537,8388609,8323073,8454146,8519681,8781830,9043969,9175041,9240577,9306113,9437190,9502732,9568259,9699334,9895937,9961478,10092550,10027009,10158086,10420225,10485761,10747910,10813446,10944513,11010049,11141125,11206658,11403265,11730950,11993094,12058630,12386309,12451853,12582925,12648460,12779526,12845063,12910605,13041683,13107206,13172743,13238277,13303815,13369363,13500423,13565971,13697031,13762566,13828115,13959175,14024711,14090253,14155784,14221320,14286857,14417927,14549005,14614541,14680077,14745607,14876681,14942220,15138830,15269895,15335431,15532044,15597580,15663112,15728649,15794182,15990791,16056321,16318470,16384008,16449542,16515078,16580616,16777222,16842757,16908293,16973830,17235975,17301510,17367046,17432590,17498118,17694727,17760262,18022406,18087942,18153486,18284551,18546694,18677766,18743302,18808839,18874373,19070982,19136518,19202055,19267598,19398662,19529734,19595270,19660808,19726343,19857415,19922951,20054022,20119559,20250629,20381709,20512775,20578311,20709388,20774919,20906003,20971527,21102606,21168134,21233678,21299207,21364743,21495900,21561357,21626886,21692422,21757964,21954574,22085638,22151175,22282247,22347781,22413318,22544398,22675462,22740994,22806534,23003142,23068673,23134215,23199750,23265295,23330823,23592966,23658497,23724050,23855110,23920647,23986190,24051719,24182798,24379398,24510483,24772622,24838151,24903687,24969225,25034770,25165837,25231362,25296899,25493512,25624579,25755662,25821190,25886727,25952266,26279938,26345478,26411024,26476550,26738690,27131905,27197442,27262982,27459585,27525138,27590668,27656198,27721731,27787266,27852806,27918342,27983875,28049409,28246022,28311553,28377094,28508166,28639238,28704770,28770310,28835843,29032456,29229058,29294595,29425682,29491202,29556742,29818882,29884418,30081036,30277639,30343183,30408720,30474245,30539781,30605316,30867465,31195143,31260678,31326209,31391758,31588357,32112647,32440322,32636933,32768007,32899079,33161221,33226759,33488902,33554439,33947654,34078726,34340870,34406407,34734081,34799622,34865159,34930690,35323910,35389441,35586055,35651596,35848193,35979271,36438018,36569097,37289990,37355527,37617670,37945350,38010887,38141958,38993926,39387143,39518215,39845889,40042503,40370181,40501249,40566791,40828934,41418753,41484294,41680897,42139649,42205191,42270726,42532865,42729480,42795009,42860551,42991617,43122694,43253767,43450369,43712519,43778049,43843585,44498945,45088775,45219841,45285382,45350920,45481985,45875201,46202913,46465051,46530561,46596108,46989314,47316993,47382529,47448132,47579137,48037889,48234497,48300039,48431119,48496641,48627786,48693249,48758882,48955466,49020929,49086535,49217540,49283075,49348613,49414218,49545217,49610820,49676289,49741831,49807434],"sourcemapuri":[35061761,36175877,41680897],"sorry":[524289,33357825],"source":[1441793,1638401,1769473,2097153,5308417,5832705,6225921,11075590,11534342,12124166,15007745,15859713,26148865,31916036,35061761,35848193,36175873,41418754,41680897,42139650,42795010,43778050,44630017,49217537,49676289],"static":[720899,655363,917507,983043,3407873,6029313,6160387,6356995,6488065,6815747,7012355,7077889,7143425,8585220,10485761,11599875,12189699,12517379,12648449,12976131,13172737,13434883,13828097,14352387,14548993,15073283,15335425,15925251,16056321,16711683,23068673,23658497,24510465,25165825,32768003,33095683,33292291,33619971,33882115,34013185,34996225,35717121,36765697,37027841,37486595,38404097,38862851,39976961,40960001,41287681,41549827,42336257,44105731,45744129,46137345,46268419,46596097,47185921,47448065,48300033,48627713,48758785,48889857,48955393,49086465,49414145,49610753,49807361],"state":[393217,15400961,18415617,28442625,38928385,44695553,49217537],"streamingcontext":[2490369,13893640,15007750,15859718,16252935,29818881,29884417,49217538,49283073],"starttimestamp":[33030145,44236805,45875201],"synchronously":[48627713,48955393,49610753],"systemexception":[49217537],"simultaneously":[17367041,18022401,27852801,28639233],"suppresses":[40304641,48824321],"satisfy":[43843585],"semicolon":[15597569,23265281,23724033,25034753,27525121,29425665,30343169,32768001,32899073,34406401,36044802,36372481,40960001,45350914],"specify":[2228233,3866633,37158913,37879809,38666241,39256065,40501257,49741833],"significantly":[41353217,46071809],"structs":[17432577,46530561,47382529],"setelement":[3407873,7995397,12648449,46596097,48300033],"setvalue":[7733251,8060931,21692417],"similar":[7798785,8257537,10485761,11206657,19267585,23396353,23986177,24182785,24772609,25755649,31391745,35520513,49479681],"syntax":[131073,720897,655361,786433,851969,917505,983041,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4587521,4653057,4718593,4784129,4915201,4980737,5111809,5308417,5373953,5439489,5505025,5767169,5832705,5898241,5963777,6029313,6094849,6160386,6225921,6356994,6422529,6488065,6553601,6619137,6684673,6750209,6815746,6881281,6946817,7012354,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599874,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189698,12255233,12320769,12386305,12451841,12517378,12582913,12713985,12779521,12845057,12910593,12976130,13041665,13107201,13172737,13238273,13303809,13369345,13434882,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352386,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073282,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925250,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711682,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21561345,21626881,21692418,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25362433,25493505,25755649,25821185,25886721,25952257,26214401,26345473,26476545,26542081,27000833,27066369,27525121,27656193,27852801,27918337,28114945,28377089,28442625,28573697,28639233,28770305,29032449,29097985,29163521,29425665,29622273,29753345,30015489,30146561,30212097,30277633,30343169,30670849,30801921,31195137,31260673,31391745,32112641,32178177,32309249,32768001,32833537,32899073,33095681,33226753,33292289,33423361,33488897,33554433,33619969,33751041,33816577,33882113,33947649,34078721,34209793,34340865,34406401,34471937,34537473,34668545,34799617,34865153,35127297,35258369,35323905,35520513,35586049,35913729,36110337,36175873,36241409,36503553,36634625,36700161,36765697,36831233,36896769,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38207489,38273025,38338561,38469633,38535169,38600705,38666241,38731777,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465026,46530561,46596097,46661633,46727169,46792705,46858241,46923777,47054849,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361],"searchpath":[34406405,36044801,45350913],"stream":[4390913,19791884,21430284,21495809,32374785,34144257,36503560,43188231,44498945,46202881,47316993,48758785],"selects":[12451841,12910593,13041665,13172737,13565953,13697025,13959169,14614529,17629185,17760257,18219009,18874369,19070977,19398657,19464193,20054017,20185089,20447233,20840449,20971521,21561345,21692417,22020097,22347777,22413313,22609921,22806529,23003137,23068673,23199745,23265281,23527425,23592961,23724033,24117249,24379393,24510465,24707073,25034753,25100289,25165825,26476545,27000833,27525121,27918337,28377089,28770305,29425665,30343169,32833537,45547522],"second":[7733249,8060929],"serves":[1114113,1179649,1376257,1441793,1507329,1572865,1638401,1769473,2097153,2228225,2293761,2490369,2621441,2752513,2949121,3145729,3276801,3342337,3407873,3538945,3670017,3735553,3801089,3866625,4259841,4390913,5046273,5177345,5242881,5636097,5701633,6291457,7602177,7667713,12648449,21495809,39845889,40501249,41418753,42139649,42729473,42795009,42991617,43450369,43778049,44498945,45219841,45350913,45481985,45875201,46202881,46596097,46989313,47316993,47448065,47579137,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48955393,49020929,49086465,49217537,49414145,49545217,49610753,49741825,49807361],"standard":[5767169,7864321,12451841,12582913,12910593,13041665,13369345,13565953,20381697,20905985,23265281,23724033,25034753,27525121,29425665,30343169,31064066,32309249,33619974,34537473,46137346],"scriptid":[34734081,41025541,46989313],"simulate":[34471937],"sourceindex":[11075589,11534341,12124165],"selector":[6488066,7733250],"sample":[3276803,4390913,7274497,18481153,21495809,26148866,30212097,33030145,35192835,42401799,42926082,43384834,43450376,45875201,46202881,46399489,48758785],"setting":[2228225,3866625,4194306,16449538,16973826,17563650,17956866,18612226,28901377,30605316,30932993,31653889,31719425,31784961,31981569,33685505,34013185,34996225,35717121,36110337,37027841,38404097,38928385,39190529,39649281,39976961,40501249,41287681,42336257,42532866,43057153,44695553,44892161,46530562,46858241,47382529,47448065,47644673,48037889,48168961,48562180,48627713,48758785,48955393,49086465,49348613,49414145,49610753,49741825,49807361],"stack":[131073,4259841,5046273,5177345,5242881,5701633,7602177,7667713,15663107,21495809,24969219,25952259,34013185,35782657,35848193,38600705,41877508,46202881,46727172,47448065,48627713,48758786,48955393,49086465,49217537,49414145,49610753,49807361],"safety":[35913729],"safely":[16121857,21037057,26542081,29097985,29753345],"searched":[6619137]} \ No newline at end of file +{"supports":[1703937,5767169,10158081,17563649,17760257,18415617,18612225,23461889,24313857,24903681,27852801,31260673,33357825,34078721,36634625,37224452,38010881,38404097,39124993,39321601,39845889,41680897,43253761,43515905,43974657,45219841,49348609,49676289,49807361,49938433,50003969],"server":[5898241,7798792,8060936,8257544,8650753,11534338,11730946,11927560,12124162,12189698,12255234,15007752,15335432,15728642,24444930,24707080,25493508,26214404,34537480,37355522,43974665,47513608,49348617,49414152,49676296,49807369,49938440,50003976],"speed":[12845057,16056321,20316161,21954561],"step":[13369345],"scriptfunc":[4784133,6094854,7602181,9306117,13893637,14090245],"scriptinterruptedexception":[2162691,14352391,14548994,15138818,15794183,16515079,19660807,24903681,28246026,29556739,34275330,35061762,35848194,42074127,47841282,47972353,48037889,48365570],"space":[40828929],"selectively":[36765697,40042497],"stringdocument":[2949123,15532038,24903681,29491203,40566787,41025539,41287682,43581449,45154305],"snapshot":[4390913,11927553,17825795,23789571,44040193,47513601],"serialize":[1966081,2162689,10551297,14548993,41222145,42074113,47513601],"selecting":[8781825,12517377,13959169,21364737],"scriptaccess":[6029318,14483462,14745606,15859718,24903681,26476550,26804225,29163524,33030150,33947655,34930694,36241409,40173574,42860545,43253764,44367873,48431109],"search":[1572865,4128770,9240577,27983873,32374785,32440321,42270721,42795009,46923777,47644673],"syntactic":[12976129,13303809,13500417,13697025,13828097,14024705,25034753,26083329,27656193,37289985,38141953,38862849,46792705,47579137],"sensitive":[23461889,24313857],"scriptable":[4587521,5242881,24903682,42336257,44498946],"servername":[5898247,8650759,11534341,11730949,12124165,12189701,12255237,15728645,24444933,37355525],"schedule":[48889857],"scripts":[27394049,35127297,37027841,37093377,38928385,40828929,46071809,46465025,49217537],"stripped":[7274497],"safe":[47513601],"separate":[19922945,20381697,20643841,20774913,20840449,21037057,21233665,21757953,22544385,39387137,45613057,46399489],"stores":[917505,3932161,46202881],"scenarios":[37027841,48103425,49217537],"sub":[3407873,3473409,3538945,3670017,3997697,4456449,4521985,4718593,4980737,5373953,6029313,6553601,7012353,7143425,7667713,7733249,7929857,8192001,8323073,8454145,8519681,8781825,8847361,8912897,9109505,9175041,9502721,9699329,10551297,10682369,10813441,10878977,11206657,11272193,11337729,11403265,11534337,11730945,11796481,11993089,12058625,12124161,12189697,12255233,12320769,12451841,12517377,12582913,12713985,12779521,12845057,12910593,13041665,13172737,13238273,13434881,13697025,13762561,13828097,13959169,14155777,14221313,14286849,14352385,14483457,14548993,14680065,14745601,14811137,15204353,15269889,15466497,15532033,15597569,15663105,15728641,15794177,15859713,16056321,16449537,16515073,16580609,16646145,17367041,17432577,17498113,17629185,17825793,18153473,18219009,18284545,18350081,18481153,18677761,18808833,18874369,19070977,19267585,19595265,19660801,19791873,19922945,20054017,20316161,20381697,20447233,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21233665,21299201,21364737,21692417,21757953,21954561,22020097,22085633,22216705,22413313,22478849,22544385,22675457,22806529,22872065,22937601,23068673,23134209,23199745,23265281,23527425,23658497,23789569,23986177,24248321,24444929,24576001,25296897,25427969,25690113,25821185,26476545,27852801,28639233,29753345,29884417,30605313,30801921,31195137,31588353,32243713,32899073,33030145,34013185,35389441,37289985,37355521,38141953,38338561,38862849,39059457,39387137,39452673,39911425,40239105,45613057,45875201,45940737,46137345,46399489,46530561,46792705,47251457,47448065,47579137,48300033],"sum":[9306115],"summarizes":[25034753],"scriptengineexception":[655363,1966083,10551298,10682375,10813447,11206663,11337735,24903681,25559050,28835843,31981570,32047106,32571394,33226754,33882114,34799618,41222159],"scriptengine":[1048578,3080196,5308422,5505030,7077889,7798831,8060975,8257539,9175045,10092550,10616838,11534338,11730946,11796482,11927603,12058626,12124162,12189698,12255234,12320770,12451842,12582914,12648454,12713986,12779522,12845058,12910594,12976130,13041666,13107206,13172738,13238274,13303810,13434882,13500418,13697026,13828098,14024706,14221314,14417922,15007791,15335471,15728642,15990786,16449538,16646154,17432582,23724033,24379393,24444930,24576002,24707119,24903681,25034754,25165826,25362434,25427970,25493506,25690114,25886722,25952258,26083330,26214402,26411012,26607618,26673154,27000834,27197444,27328516,27459586,27590658,27656194,27852802,28639234,29229058,29753346,30539779,31260692,31457302,32702466,33161224,33357844,33423362,33554435,33619970,33685506,33751042,33947650,34078740,34144258,34340866,34406402,34537523,34603010,34668546,35258370,35520518,35586050,36175874,36438018,36634644,37289986,37355522,38010902,38141954,38338562,38600705,38862850,39845908,41484292,41680897,43319300,43450370,43974724,44236801,45219842,45744130,45875202,46137346,46465026,46792706,47054850,47251458,47316994,47513678,47579138,48103426,48300034,48562178,49283073,49348686,49414153,49676356,49807428,49938500,50004036],"subclasses":[33947649],"selectort":[5046274],"searches":[917505,9240577,46202881],"schema":[15400961,15663105],"start":[30736386,35454977,35717121,48824322],"settings":[3866631,4915206,24903681,30146561,30539777,31260673,31457281,33357825,34078721,35258369,36634625,38010881,39845889,43974657,44040193,47120385,47513601,48431105,49348609,49414145,49676289,49807361,49938433,50003969],"selected":[2686978,6619137,7471105,7864321,8781825,9043969,12517377,13959169,21364737,24510465,24838145,27656193,27852801,38862849,41746433,41943041,42008578,42401793,43778049,44498948,44826626,45547521,45809665,47775745,48889857],"suppressfinalize":[48300033],"synchronous":[21692417,22478849,22806529,23658497,26935298,28377090,39911425,43974658,49348609,49807362],"store":[3932161,10289153,10485761,10747905,11010049,11141121,11665409],"subroutine":[47054849,49283073],"structures":[23920641,24903681,48889857],"suppressextensionmethodenumeration":[31457281,39190533,47513601],"standards":[41746433],"structure":[131073,720897,1441793,3014657,3407874,3866625,4521986,4915201,6946817,13828097,14024705,15532033,16777217,17301505,18546689,18743297,21495809,22347777,23920641,24903681,27131905,29491201,30474241,31129601,31784961,31850497,35913729,36765697,37421057,39059457,39583745,40894468,40960002,41287681,42205187,43581441,45154305,46268417],"short":[40697857],"struct":[5111809,6291457,24903681,40501255,40894466,40960002,42860548,43057156,44105732,44367876],"shared":[524289,1835009,2228225,3342337,4849665,5177345,5308417,5505025,9371649,9437185,9633793,9764865,10092545,10354689,10616833,12648449,13107201,32440321,32505857,32833537,33095681,33161217,33488897,33816577,35127297,37224449,37814273],"site":[589825],"size":[3866625,4915201,27394049,28114946,28180482,28704770,29360130,30146563,30408706,30670852,30867457,31326215,31457283,31522822,33292294,35782657,36700161,36831234,37027845,37486593,37617665,37748738,38273025,38535169,38797313,38928385,40697858,40828930,43646978,43909121,44040195,44433410,44564481,44892161,44957700,45088770,45350913,46006273,46202881,46596097,46727169,46989313,47513603,47710210,49086471,49217541],"synchronization":[20971521,21889025],"suppressinstancemethodenumeration":[31457281,39190529,39976965,47513601],"support":[5570561,5767169,5832705,6160385,6356993,6488065,6619138,6684673,6750209,6815745,7208961,7340033,7536641,7995393,8126465,8388609,8978433,9043969,9568257,9895937,10027009,11862017,13631489,14614529,14876673,14942209,24903681,25034753,30539777,31260673,31457281,33357825,34078721,36438017,36634625,37945345,38010881,39845889,41746433,42336257,43974657,44236801,45744129,47316993,47513601,48889858,49348609,49414145,49676289,49807361,49938433,50003969],"serializeobjectstate":[655361,41222145],"smart":[41746433],"scriptexception":[28835841,29556737,30212097,31391749,32047111,35848199,41222145,42074113,43122689],"scriptusageattribute":[3801091,15204359,15859719,24903681,26804230,29032449,29097987,29949953,33947649,40173570,42860555,43057153,43253766,44105734,44367873],"strings":[5046273,5963777,13893633,14090242],"stringt":[5046275,5963778,7864322,8585222,9895940,13893634,14090243],"stringify":[48889857],"simpler":[33816577],"slower":[37027841,49217537],"stacktrace":[28835841,41222145],"sealed":[10420225,11075585,13565953,17367041,20971521,21889025,22413313,23592961,30605313,31981569,32047105,32571393,33226753,33882113,34275329,35061761,35848193,40501250,40632322,41418754,41484289,42139649,42795009,43057154,43253762,43450369,43712514,44040194,44105730,44171265,44695553,44957698,45023234,45875201,47513602,47841281,48365569,48824322,49020929],"securely":[36765697,40042497],"successful":[6291457,48103425],"scope":[37224449],"stripping":[33619969,48627713],"stored":[9895937,16711681,17235969,17891329,18022401,18546689,19988481,20250625,20578305,21168129,21430273,22347777,22740993,42336257],"setproperty":[2883586,6684678,7995398,10158082,10223618,17498118,18350086,24051715,26542083,41615362,41680898,42926082],"samples":[30081025,30146562,31457282,36831233,37748737,38207494,44040194,45416449,46333953,47185921,47513602],"strictly":[34668545,49741825],"scriptmemberflags":[7077889,14483462,14745606,15466502,24903681,25296902,29163524,33751041,34406401,43253764,43778053,45678599],"serializationinfo":[1966082,2162689,10551305,11206662,14549000,16515078,25559041,28246017,41222147,42074114],"sealedattribute":[40501249,40632321,40894465,40960001,41418753,41484289,42139649,42795009,43057153,43253761,43450369,44040193,44105729,44957697,45023233,47513601,48824321,49020929],"system":[786433,1114116,3407873,3670020,3866626,3932161,4128770,4194306,4259841,4521985,4587524,4718596,4784129,4849665,4915202,4980740,5046280,5242884,5439494,5505025,5570561,5636098,5832706,5898243,5963778,6094850,6160386,6291458,6356993,6488066,6619138,6684674,6750211,6815747,6881281,7012356,7077889,7208963,7274497,7340035,7405570,7471105,7536643,7602177,7733249,7864321,7929857,7995395,8126467,8323075,8388610,8454145,8585222,8650754,8781826,8847362,8912897,8978435,9043970,9109505,9240577,9306118,9371649,9437185,9568259,9633793,9699329,9764865,9895938,9961473,10027011,10092545,10354689,10289156,10420226,10485764,10551298,10616833,10682369,10747907,10944513,11010052,11075585,11141124,11206658,11272193,11337730,11403266,11534339,11665411,11730947,11796482,11862019,12058626,12124163,12189699,12255235,12320769,12451842,12517378,12582914,12648449,12713986,12779523,12845057,12910594,12976129,13041665,13107201,13172740,13238273,13303809,13369350,13434882,13500417,13565953,13631491,13697025,13762562,13828097,13893637,13959170,14024705,14090245,14155777,14352385,14417921,14548994,14614531,14680065,14745601,14876674,14942211,15073281,15466497,15532033,15663105,15728643,15925250,15990786,16056321,16121857,16187393,16318465,16384001,16449538,16515074,16646145,16711682,16777217,16842754,16908289,17039363,17104899,17235970,17301507,17432578,17498114,17563649,17629185,17694723,17825793,17956866,17891330,18022402,18087937,18219009,18284546,18350082,18415618,18546690,18612225,18743297,18808833,18874369,18939905,19005444,19136513,19202049,19333123,19398657,19464193,19529731,19660802,19726337,19988483,20054017,20119555,20185092,20250626,20316161,20381698,20512771,20578306,20643841,20774913,20840449,20905985,20971521,21102593,21168131,21364738,21430274,21495811,21561345,21626883,21692417,21757953,21889025,21954561,22085633,22151170,22347778,22478851,22544386,22609921,22675457,22740994,22806531,22872065,23134209,23461889,23658497,23789569,23986177,24313857,24444931,24576004,24641537,24838146,25034759,25427970,25690115,25821185,26083330,26476545,27656193,27852802,28639234,29753345,29884417,30343169,30605314,32243713,32899073,34013187,34865153,35389443,36306945,36962306,37289985,37355523,38141953,38338562,38862849,38928385,38993921,39452673,39714817,39911427,40239107,40501250,40632321,41091073,41222148,41418753,41484289,41615361,41680898,42074113,42139649,42270725,42532868,42795009,42860546,42926081,43057154,43253762,43450369,43515906,43581441,43712513,43974657,44040193,44105730,44236801,44302337,44367874,44498945,44957697,45023233,45154305,45416449,45481985,45613057,45809665,46137345,46202881,46399489,46530561,46792707,46858241,47251457,47382529,47448066,47513601,47579138,47906817,48168961,48234497,48693249,48758786,48824321,49020929,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"script":[131073,1048582,1179649,1245185,1441794,2621441,3080204,2752516,2818049,2883588,3997697,4063233,4194305,4390930,4653057,4718593,4784130,4849666,5046273,5177347,5308421,5505028,5570561,5701636,5767169,5832705,5963777,6029314,6094853,6160385,6356993,6488065,6619138,6684673,6750210,6815746,6881281,7208962,7340034,7536642,7602178,7798832,7864321,7995393,8060976,8126466,8257582,8388609,8585217,8978433,9043970,9175044,9306118,9371649,9437185,9568258,9633793,9764865,10027010,10092547,10158088,10223621,10616835,10944513,11403265,11534339,11730947,11796483,11862018,11927615,12058627,12124163,12189699,12255235,12320772,12451843,12582916,12648451,12713987,12779524,12910595,12976132,13041668,13107203,13172740,13238273,13303811,13369349,13434884,13500419,13631490,13697027,13828101,13893637,14024710,14090245,14221314,14417923,14483460,14614530,14745605,14876673,14942210,15007792,15335472,15466499,15728643,15859714,15925249,16187395,16384002,16449539,16646145,16711682,16777221,16842753,16908290,16973827,17039363,17104900,17235972,17301510,17432577,17498113,17563655,17694723,17760263,17891331,17956869,18022402,18350081,18415623,18546693,18612231,18677762,18743300,18939906,19005446,19136516,19202051,19267585,19333124,19398659,19464195,19529731,19726338,19857416,19922946,19988485,20119557,20185093,20250627,20381698,20447239,20512772,20643842,20578306,20709377,20774914,20840450,20971522,21037058,21102595,21168133,21233666,21430276,21495813,21561347,21626883,21757954,21889026,22085633,22151172,22282245,22347781,22413313,22544386,22740994,22872065,23003142,23068674,23199749,23330818,23461891,23527426,23592962,23724035,23920643,24248321,24313859,24379395,24444931,24576004,24641537,24707120,24772613,24838145,24903704,24969218,25034769,25165826,25231363,25296898,25362434,25427971,25493512,25690116,25821185,25886724,25952257,26017794,26083335,26148866,26214408,26279938,26411013,26476547,26542082,26607620,26673154,26738697,26804225,26869772,27000833,27197445,27328514,27394049,27459586,27525122,27590664,27656198,27787273,27852809,27918339,28311553,28442625,28573702,28639235,28770307,28835843,28901378,29032449,28966914,29097985,29163528,29229058,29556739,29687810,29753348,29884418,29949955,30146562,30212099,30277637,30343170,30539791,30736390,31195137,31260689,31391745,31457296,31981569,32047105,32702468,33030146,33161219,33226753,33357840,33423364,33554433,33619971,33685505,33947650,34078737,34144261,34275329,34340868,34406402,34471937,34537520,34603011,34734082,34930689,34996225,35127301,35258369,35323905,35389442,35454977,35520513,35586049,35651585,35717121,35782658,35848193,35979265,36044801,36110337,36175874,36241409,36306945,36438021,36634640,36765697,36896769,36962305,37027841,37093377,37158914,37289986,37355523,37683204,37879810,37945347,38010897,38076417,38141954,38338563,38404097,38469633,38600707,38666242,38862853,38928385,39125001,39190529,39321609,39387138,39518209,39649281,39714817,39845905,39911426,39976961,40042497,40108033,40173569,40370177,40501249,40632321,40763393,40828930,40960002,41091076,41222149,41484300,41615368,41680910,41746438,42074116,42336260,42401797,42598402,42860547,42926086,43057155,43122692,43253772,43319308,43384834,43450375,43778049,43843585,43974720,44040212,44105731,44236801,44302338,44367875,44498945,44761091,45023234,45219848,45481987,45547522,45613058,45678593,45744130,45875205,46071809,46137349,46399490,46465025,46792713,46858241,47054851,47251461,47382529,47513694,47579142,47841281,47972355,48037891,48103425,48168961,48234497,48300033,48431109,48496642,48562181,48627714,48758785,48693249,48824326,48889866,48955396,49152003,49217537,49283074,49348675,49414208,49479685,49545218,49610753,49676356,49741825,49807424,49872901,49938500,50004038],"select":[5046273,14090241],"set":[1703938,2883585,5439494,6684674,7864321,7995394,8978434,9306113,10158082,10223617,11403265,13238274,17498113,18350081,22085634,22872066,24838145,30867461,30932997,31129604,31719428,32374788,32440324,32702468,33095684,33423365,33554437,33619973,33751045,33816580,33947652,34144260,34406405,34603012,34668549,34734084,35258372,35586052,35782660,35913732,36110340,36306949,36438021,36503556,36765700,36831236,36962309,37027846,37093381,37224453,37421060,37486596,37748740,37814277,38404100,38535172,39190533,39256068,39976964,40042500,40435716,40828933,41615361,41680898,42270721,42926081,43188228,43515906,43712518,43909124,44564484,44892164,45350916,45678596,45744132,46071813,46333956,46465029,46923777,47054852,47120388,47185924,47316996,47972356,48037892,48103429,48627717,48889857,49217542],"syncinvoker":[20905989,21299205,21692421,22020101,22216709,22478853,22675461,22806533,22937605,23658501,31260673,33357825,34078721,36634625,38010881,39518213,39911429,39845889,43974657,49348609,49676289,49807361,49938433,50003969],"sort":[1572865],"statement":[13369345,13697025,13828097,14417921,21102593,21561345,23461890,24313858,37289985,38141953,38862849,45481985,46792705,47579137],"soft":[30146561,31457281,37027841,44040193,47513601,49217537],"scriptname":[30736385,36896773,48824321],"sets":[2686977,2883587,6225921,6684673,7995393,8978433,10158082,10223619,11403265,17498113,18350081,24051714,26148866,26542082,27394049,28049409,28835843,29425665,29818881,29949954,30146566,30277634,30539782,30670854,30867457,31129601,31260679,31457291,31719425,31916033,32374785,32440321,33095681,33357831,33947649,34078727,34144257,34603009,34734081,35258369,35782657,35913729,36306945,36634631,36765697,36831233,36962305,37027841,37093377,37421057,37486593,37748737,37814273,38010887,38404097,38535169,38928385,39256065,39845895,40042497,40435713,40828929,40894468,41222147,41615363,41680900,42270725,42336257,42795010,42926083,43188225,43253762,43712513,43909121,43974663,44040198,44498946,44564481,44892161,44957702,45350913,45678593,45744129,46071809,46202881,46268420,46333953,46727169,46923781,47054849,47120385,47185921,47513611,47644674,47906818,49020929,49152002,49217537,49348615,49414150,49676295,49807367,49938439,50003975],"shares":[16973825,17563649,17760257,18415617,18612225,19202049],"sbyte":[2883585,8126470,10223617,40697857,41615361,42926081],"serialized":[655362,11206658,16515074,25559041,28246017,41222147,42074113],"specifying":[3866625,4915201,12976129,13303809,13500417,13697025,16187393,16384001,16711681,16908289,17039361,17104897,17694721,17891329,18022401,18939905,19333121,19398657,19529729,19726337,20250625,20578305,21626881,22740993,37289985,38141953,39059457],"shallow":[851969,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,917505,3211265,2818049,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,7798785,8060929,8257537,8716289,10158081,10223617,11927553,12386305,15007745,15335425,24707073,34537473,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,42270721,42860545,42926081,43057153,43253761,43515905,43581441,43974657,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48824321,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"successfully":[3866625,4915201,13369345,13565953,16121857,16318465,18087937,22609921,46858241,47382529,48234497,48693249],"specific":[1900546,5046273,6881281,8585218,12320769,12582913,12779521,13041665,13172737,13434881,24576001,25034754,25624577,25690113,28835841,29753345,37945345,40697857,41222145,41746433,42336258,46465025,48103425],"scripting":[5898242,8650754,24903681,34668545,37945345,43515905],"statements":[12976129,13303809,13500417,13697025,13828097,14024705,23461889,24313857,25034753,26083329,27656193,37289985,38141953,38862849,46792705,47579137],"strongly":[2883597,5439491,6094849,6750210,6815746,7208962,7340034,7536642,8126466,9568258,9895937,10027010,10223629,11862018,13631490,13893633,14090241,14614530,14942210,41615373,42926093],"stringdictt":[8585218,9895938],"scheme":[5439489],"serialization":[10551299,11206658,14548995,16515074],"starting":[1900545,30081025,40304641,42336257,45416449],"supported":[17432578,22478850,22806530,26935297,27066369,27328513,27721729,28377089,34013186,35389442,35782657,39911426,40239106,40435713,42270721,42401794,43974657,46923777,49348609,49414145,49676289,49807361,49938433,50003969],"serializableattribute":[41222148,42074116],"started":[28835841,29556737,30212097,33226753,34275329,35979265,41222145,42074113,43122689],"sampl":[29294594,38731777,39780353,41418754],"subsequent":[1966081,3866625,4915201,9175041,37224449,37814273,41222145],"scriptmemberattribute":[4325379,14286855,14483463,14745607,15466503,24903681,25296903,25821191,26476551,29163538,29949955,33030151,34734082,42860545,43057153,43253783,44367873,45678594],"setpropertynocheck":[2686977,6225921,11272193,11403269,44498945,47906817],"segment":[45809665],"smaller":[44761089],"signature":[9306113],"sourceinfo":[3866630,4915205],"significant":[12976129,13303809,13500417,13697025,13828097,14024705,25034753,26083329,27656193,37289985,38141953,38862849,46792705,47579137,48889857],"sole":[65537,196609,327681,458753,524289,1835009,2228225,3342337,44236801,49283073,49741825,49872897],"single":[2883585,10027014,10223617,14417921,21102593,21561345,23461889,24313857,27852801,41615361,42926081,45481985],"special":[44236801,45744129,49741825],"specifies":[5898241,6881281,8650753,23920641,24903687,30867457,35782657,38600705,39780353,40304641,40501249,41549825,41746442,41943044,42401797,42860545,43057153,43253761,43778051,44105729,44367873,44761089,44957697,45547524,45809669,47775746,48431107,48889870,49152002],"specifier":[3866630,4915205,12976133,13303813,13500421,13697029,16187397,16384005,16711685,16908293,17039365,17104901,17694725,17891333,18022405,18939909,19333125,19398661,19529733,19726341,20250629,20578309,21626885,22740997,37289989,38141957],"specified":[851969,917505,983042,1048580,1114116,1245185,1310722,1376258,1507330,1638402,1703939,1769474,1900547,1966081,2031618,2097153,2293761,2359298,2424833,2490369,2555905,2686982,2621441,3145729,3014657,2949121,2883618,3080196,3211266,2818050,3407873,3604484,3670018,3801090,4063234,4128769,4194305,4259841,4325378,4390928,4521985,4587521,4653057,4718593,4784129,4980738,5046273,5177346,5308419,5439489,5505025,5570561,5636099,5701633,5898242,5963778,6029313,6094849,6160385,6225922,6291458,6422529,6619139,6684674,6750209,6815745,6881281,6946817,7012355,7077889,7208961,7274497,7340033,7405570,7471105,7536641,7602177,7798834,7864323,7929857,7995394,8060978,8126465,8257586,8323073,8716289,8781825,8847361,8912897,8978433,9043971,9109505,9306113,9568257,9895939,9961473,10027009,10092545,10158082,10223646,10289153,10485761,10616833,10682369,10747905,11010049,11075586,11141121,11337729,11534339,11665409,11730946,11796482,11862017,11927611,12058625,12124163,12189699,12255234,12320769,12386305,12451841,12648449,12713986,12779522,12910593,12976129,13107201,13172738,13303810,13369345,13434881,13500418,13631489,13697025,13828098,13893633,13959169,14024706,14090244,14352385,14417921,14483457,14614529,14680065,14745601,14942209,14876673,15007794,15073281,15335474,15466497,15728642,15859713,16121857,16384001,16449537,16711681,16777217,16908289,17039361,17301505,17432577,17563649,17629185,17694721,17760257,18022401,18153473,18219009,18284545,18415617,18546689,18612225,18743297,18808833,18874369,18939905,19070977,19202049,19529729,19595265,19660801,19726337,19922945,20054017,20381697,20578305,20643841,20774913,20840449,20905985,21037057,21102593,21233665,21561345,21626881,21692417,21757953,22020097,22347777,22478849,22544385,22675457,22740993,22806529,22937601,23265281,23461890,23658497,23724033,23986177,24182786,24313858,24379395,24444930,24510465,24576001,24707122,24838147,24969217,25034755,25165826,25296897,25427970,25493520,25559042,25690113,25821185,25886721,25952258,26083331,26214416,26345473,26411009,26476545,26607617,26673153,26738691,26804225,26869771,26935300,27000834,27066372,27197441,27262977,27328513,27590664,27721732,27656194,27787266,27852801,27918342,28246018,28377092,28573701,28770310,28835841,29163527,29556737,29622283,29753345,29818881,30212098,30474241,31391745,31588353,31653889,31850497,32047105,32243713,32899073,33030145,34013185,34537522,35389441,35848193,36241409,36306945,36765697,36962305,37027841,37093377,37289986,37355523,38141954,38338562,38862850,38928385,38993922,39452673,39714818,39911425,40042497,40239105,40501250,40632322,40697860,40828929,40894467,40960001,41091073,41156609,41222148,41353220,41418753,41484292,41615390,41680898,41746435,42008578,42074115,42205186,42270724,42336260,42532867,42860547,42926114,42991618,43057154,43122690,43188225,43253769,43319300,43450372,43515907,43581441,43646978,43974710,44040219,44105730,44236801,44302337,44367875,44433410,44498952,44630020,44826626,44957697,45023233,45088770,45154305,45285378,45416449,45481985,45547521,45613057,46071809,46137345,46202881,46399489,46530561,46792707,47251457,47448065,47513670,47579139,47710210,47906818,48168961,48693249,48758785,48824321,48889860,49086465,49217537,49283073,49348659,49414195,49676342,49741825,49807414,49872897,49938486,50004019],"send":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,3145729,2686977,3014657,2949121,3080193,2752513,917505,3211265,2818049,2883585,3342337,3407873,3473409,3276801,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7471105,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8650753,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13959169,13893633,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20643841,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21168129,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22216705,22151169,22282241,22413313,22347777,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23527425,23461889,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24969217,24903681,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27721729,27656193,27787265,27852801,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29622273,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30605313,30539777,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39911425,39845889,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41287681,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44171265,44105729,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46202881,46268417,46333953,46399489,46137345,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48758785,48693249,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"scriptobject":[10158083,15925250,16842754,17498114,18350082,24903681,25034753,26017794,26148866,26279938,26542082,30277635,34340871,34996226,35520514,36306946,36962306,37683208,39649282,41680903,46858242,47382530,48168962,48758786,48955400],"string":[851969,983041,1114120,1245185,1376257,1703937,1769473,1900554,1966081,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2686982,2621441,3145729,2949121,917505,3211265,2818049,2883596,3670029,3801089,3866631,4063233,4128774,4325377,4390939,4521990,4587526,4653057,4718605,4915206,4980749,5046286,5242886,5439490,5570566,5636097,5701633,5898250,5963778,6094850,6160390,6225921,6291457,6356998,6422529,6684678,6750209,6815745,7012358,7208961,7340033,7405569,7536641,7798852,7864322,7929862,7995398,8060997,8126465,8257604,8323084,8388614,8585226,8650762,8781830,8716289,8847366,9043969,9306115,9568257,9895938,10027009,10158084,10223623,10420230,10682374,10944517,11075590,11337734,11403269,11534355,11730957,11796487,11862017,11927644,12058631,12124173,12189715,12255251,12320769,12386305,12451853,12582919,12713997,12779533,12910599,12976137,13041665,13172755,13303817,13369347,13434887,13500425,13565958,13631489,13697031,13762567,13828102,13893634,13959174,14024712,14090244,14155783,14352390,14417934,14614529,14680070,14745606,14942209,15007813,15138824,15335493,15400965,15466502,15532038,15728653,15990789,16121862,16187399,16252936,16318470,16384007,16449549,16646158,16711687,16777222,16842757,16908295,17039367,17104903,17235975,17301511,17432588,17563654,17629190,17694727,17891335,17956876,18022407,18087941,18219014,18284550,18350086,18415622,18546695,18743302,18808838,18939911,19005454,19136518,19202054,19333127,19398663,19464198,19529735,19660806,19726343,19857410,19988494,20119559,20185102,20250631,20381702,20512775,20578311,20774918,20840454,20905990,21168142,21102606,21430279,21495815,21561358,21626887,21692422,21757958,22151180,22282249,22347783,22478866,22544390,22675462,22609925,22740999,22806546,23003146,23396360,23461902,23658502,23986182,24051714,24117256,24313870,24444947,24576019,24707141,24838145,25034766,25100290,25165826,25427975,25493520,25559042,25690125,25755650,25821190,25886726,25952259,26017793,26083342,26148865,26214416,26279937,26345474,26411014,26476550,26542081,26607622,26673154,26738700,26869766,26935301,27000835,27066373,27197446,27262978,27328515,27590668,27656200,27721733,27787276,27852806,27918345,28246018,28377093,28573699,28639239,28770313,28835841,29163524,29622278,29753345,29818885,30277633,30474247,30605318,30736385,31981575,32243718,32374791,32440327,32571399,32768006,32899078,33685510,34013202,34209798,34471942,34537540,34734087,34799624,34865157,35192838,35323911,35389455,36044806,36175878,36896774,36962311,37158919,37289991,37355533,37879815,38141959,38338573,38666247,38862854,38928385,38993921,39452678,39583749,39649286,39714817,39911439,40239122,40435719,40501249,40632321,40763398,40894465,41091073,41222148,41418753,41615367,41680903,41746433,41811970,41877510,42008578,42074115,42205185,42270728,42336283,42532871,42729474,42860545,42926092,42991619,43057153,43253765,43384839,43515905,43581441,43712518,43974730,44040225,44105729,44171271,44236801,44302337,44367873,44498952,44826626,44957697,45023233,45154305,45285379,45481998,45416449,46137351,46202881,46399494,46530566,46661638,46792716,47251463,47382534,47448070,47513698,47579148,47841287,47906831,48234502,48365575,48496647,48562184,48693254,48758790,48824322,49086465,49283073,49348676,49414215,49676362,49741825,49807434,49872897,49938506,50004036],"sourcemapuri":[31129605,40894465,46268417],"sorry":[589825,27983873],"source":[1245185,2818049,3997697,4063233,4653057,4784129,7602177,10747910,11010054,11141126,11206657,16515073,23920641,24903684,28835841,31129601,37945345,39714818,40632322,40894465,41222145,41746433,44302338,45023234,46268417],"simply":[34603009],"static":[524291,1835011,2228227,2883585,3342339,4849667,5046273,5177347,5308419,5505027,6881281,7274500,7471105,8585217,9371651,9437187,9633795,9764867,10092547,10223617,10354691,10616835,12320769,12582913,12648451,12779521,13041665,13107203,13172737,13434881,24576001,24838145,25690113,29753345,30539777,31260673,31457281,32440323,32505859,32833539,33095683,33161219,33357825,33488899,33816579,34078721,35127299,35586049,36634625,37224451,37814275,38010881,39845889,41484289,41615361,42139649,42795009,42926081,43450369,43974657,47513601,49020929,49348609,49414145,49676289,49807361,49938433,50003969],"state":[655361,17367041,23199745,41222145,45875201,47972353,48037889],"streamingcontext":[1966081,10551304,11206662,14548999,16515078,25559041,28246017,41222146,42074113],"starttimestamp":[30081025,40304645,45416449],"synchronously":[49676289,49938433,50003969],"systemexception":[41222145],"simultaneously":[16121857,16318465,48234497,48693249],"suppresses":[42401793,48889857],"satisfy":[40501249],"semicolon":[17432577,22478849,22806529,32374785,32440321,34013185,35389441,39911425,40239105,40435713,42270722,42795009,46923778,47644673],"specify":[1703945,10158089,41680905,43515913,43909121,44564481,44892161,45350913],"significantly":[37027841,49217537],"structs":[25034753,43057153,44367873],"setelement":[2883585,8978437,10223617,41615361,42926081],"setvalue":[13893635,14090243,27852801],"similar":[5636097,6291457,7864321,14417921,20447233,21102593,21561345,23461889,24313857,24838145,33751041,43778049,45481985],"syntax":[524289,720897,786433,1441793,1835009,2228225,3342337,3407873,3473409,3538945,3670017,3866625,3932161,3997697,4128769,4194305,4259841,4456449,4521985,4587521,4718593,4784129,4849666,4915201,4980737,5046273,5111809,5177346,5242881,5308418,5373953,5439489,5505026,5570561,5636097,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6291457,6356993,6488065,6553601,6619137,6684673,6750209,6815745,6881281,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7864321,7929857,7995393,8126465,8192001,8323073,8388609,8454145,8519681,8585217,8650753,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371650,9437186,9502721,9568257,9633794,9699329,9764866,9830401,9895937,9961473,10027009,10092546,10289153,10354690,10420225,10485761,10551297,10616834,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11993089,12058625,12124161,12189697,12255233,12320769,12451841,12517377,12582913,12648450,12713985,12779521,12845057,12910593,12976129,13041665,13107202,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23789569,23855105,23986177,24117249,24248321,24313857,24444929,24510465,24576001,24641537,24838145,25034753,25296897,25427969,25690113,25821185,26083329,26476545,27656193,27852802,28639233,28901377,29753345,29884417,30343169,30474241,30605313,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31391745,31522817,31588353,31653889,31719425,31784961,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34144257,34209793,34275329,34340865,34406401,34471937,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36306945,36372481,36438017,36503553,36569089,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,38076417,38141953,38207489,38273025,38338561,38404097,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41222145,41287681,41418753,41484289,41549825,41615361,41680897,41746433,41877505,41943041,42074113,42139649,42270721,42336258,42401793,42598401,42795009,42860545,42926081,43057153,43122689,43188225,43253761,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44695553,44761089,44892161,44957697,45023233,45088769,45154305,45219841,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46333953,46399489,46465025,46530561,46596097,46661633,46792705,46858241,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"searchpath":[32374789,42270721,46923777],"stream":[4390913,11927553,17825804,23789580,27131905,29491201,32964615,40566792,43581441,44040193,45154305,47513601],"selects":[11534337,11796481,12124161,12189697,12713985,12779521,13172737,13434881,17563649,17629185,17760257,18087937,18153473,18284545,18415617,18612225,18874369,19595265,20054017,20381697,20643841,20774913,21037057,21233665,21692417,21757953,22020097,22478849,22544385,22609921,22806529,22937601,23265281,23658497,25427969,27852801,29753345,31588353,32899073,34013185,35389441,37355521,38338561,39452673,39911425,40239105,44761090,45613057,46137345,46530561,47448065],"second":[13893633,14090241],"serves":[851969,1114113,1245185,1703937,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,2949121,917505,2818049,2883585,4063233,4390913,4653057,5701633,6225921,6422529,7798785,8060929,8257537,8716289,10158081,10223617,11927553,12386305,15007745,15335425,24707073,34537473,38928385,38993921,39714817,40632321,41091073,41222145,41418753,41615361,41680897,42270721,42926081,43515905,43581441,43974657,44040193,44236801,44302337,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48824321,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"standard":[5898241,8650753,11534337,12189697,12255233,12451841,12713985,16449537,22478849,22806529,24444929,30015490,33488902,34013185,35389441,36765697,38338561,39911425,40042497,40239105,42139650],"scriptid":[30736385,36110341,48824321],"simulate":[36438017],"sourceindex":[10747909,11010053,11141125],"selector":[5046274,14090242],"sample":[2293763,4390913,5439489,11927553,16580609,19791873,23920642,29294595,30081025,38207495,38731778,39780354,41418760,44040193,45416449,47513601,47775745],"setting":[1703937,6029314,10158081,14483458,14745602,15859714,26476546,26804225,28311553,28442625,29032449,29097985,29163524,29949953,30539777,31260673,31457281,32702465,33030146,33357825,33947649,34078721,34406401,34930689,36241409,36634625,38010881,39190529,39845889,39976961,40173569,41680897,42860546,43057153,43253765,43515905,43974657,44105729,44367874,47513601,47972353,48037889,48103425,48431108,49348609,49414145,49676289,49807361,49938433,50003969],"stack":[1441793,7798785,8060929,8257537,11927553,15007745,15335425,22282243,23003139,24707073,28835841,30146561,31457281,34537473,35651585,37093380,41222145,43974657,44040193,46071812,47513602,48562179,49348609,49414145,49676289,49807361,49938433,50003969],"safety":[46465025],"safely":[14221313,18677761,19267585,23068673,23527425],"searched":[5111809]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_116.json b/docs/Reference/fti/FTI_116.json index b4d8fc857..c9108cefa 100644 --- a/docs/Reference/fti/FTI_116.json +++ b/docs/Reference/fti/FTI_116.json @@ -1 +1 @@ -{"tasks":[11599873,12189697,12517377,12976129,13434881,14352385,15073281,15925249,44302337],"terminates":[41353217,45809665,46071809],"toint64":[3407873,9306118,12648449,46596097,48300033],"trygetvalue":[2293761,2555905,2621441,8454145,13762567,42729473,46465025,48431105],"typeof":[3407874,10485769,11206665,12648450,28180483,45678594,46596098,48300034],"totask":[3211265,16711685,45744129],"tresult":[3211269,13434881,14352385,15073281,15925249,16711681,28966916,45744133,48824321],"try":[524289,1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4390913,5570561,5636097,6291457,9568257,12648449,33357825,39845889,40501249,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48693249,49020929,49217537,49348609,49545217,49741825],"timespan":[37093383,40108039,43843585],"termination":[41353218,41877505,46071810,46727169,48365570],"tobyte":[3407873,9043974,12648449,46596097,48300033],"tryinvokemember":[2228225,3866625,40501249,49741825],"trailing":[37814273,39452673],"table":[17432577,21692417,33882115,36372481,40960001,45023233,49676291],"tunneling":[34013185,34471937,34996225,35717121,37027841,38404097,39976961,41287681,42336257,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"typ":[6029313,6488065,7143425,13172737,13828097,14548993,15335425,16056321,23068673,23658498,24510465,25165825,44892161],"trygetindex":[2228225,3866625,40501249,49741825],"thrown":[9568257,12779521,16777217,31129603,31916034,35848194,36306946,38535169,39583745,43319297,43581441,44433409,44564481,45613057,47251459,48824322,49217539,49283075],"trygetmember":[2228225,3866625,40501249,49741825],"tkey":[2555909,11730946,12058626,13107202,13762562,30474242,33554433,34209793,34799618,46465031],"trace":[15663105,24969217,25952257],"trycatch":[3407873,9568262,12648449,46596097,48300033],"tracked":[41353217,46071809],"time":[32309249,34013186,34537473,35586049,35782658,36831233,37093377,37552129,38862849,40108033,41549825,44040193,44302338,46202882,48758786,49676289],"throw":[4259841,5046273,5177345,5242881,5701633,7602177,7667713,16121857,21037057,21495809,26542081,47448065,48365570,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"toarray":[2359297,6488065,6553601,6684673,7208961,7733249,10682373,45023233],"threw":[9568257],"typelibenums":[6619141,12648449,46596097],"touint32":[3407873,10027014,12648449,46596097,48300033],"tochar":[3407873,8388614,12648449,46596097,48300033],"true":[4128769,4587521,5439490,7077889,7536642,8257537,8716289,8847361,9437185,9568258,10092545,11730945,12320769,12386305,12845057,13107201,13631490,13762561,14811137,14942209,16187393,17367041,17432577,17891329,18022401,18284545,18546689,18808833,18939905,19857409,20774913,21233665,21364737,21889026,22544385,23134209,23789569,24313857,24641537,24838145,24903681,25362434,27852801,28573698,28639233,29622273,30801921,31195137,33226753,34471937,35520513,35913729,36241409,37814273,38928385,39190530,39452673,39649281,41549825,44695553,44957697,45678593,47644674,47972353,48168962],"tree":[26148865,33030145,35192833,41811969,42926081,43450369,45875201,46989313],"trydeletemember":[2228225,3866625,40501249,49741825],"toint32":[3407873,8323078,12648449,46596097,48300033],"todecimal":[3407873,9175046,12648449,46596097,48300033],"temporary":[40894465],"tryconvert":[2228225,3866625,40501249,49741825],"total":[32243715,40239105,40763393,41156609,44761089,48234499],"torestrictedhostobject":[1703938,6356998,7012358,26017795,47185922],"test":[7077889,8257538,8716290],"text":[2949121,15663105,20643842,24969217,25952257,31916033,44498945,45875201],"tryfunc":[9568264],"times":[131073,9764865,20774913,21102593,21299201,21757953,22544385,24838145,25886721,26148865,26345473,31260673,38600705,48496641],"typeid":[29687809,30932993,31653889,31784961,31981569,33685505,42532865,43843585,46530561,47382529,48037889,49348609],"tostatictype":[3407873,8585221,12648449,46596097,48300033],"totalphysicalsize":[32243713,41156613,48234497],"trysetmember":[2228225,3866625,40501249,49741825],"tcp":[17629185,17760258,18219010,19070977,19398657,20054017,20185089,20840449,22609921,23592961,24707073,27918337],"tohosttype":[1703938,6160390,6815750,25559043,47185922],"typeargs":[9502725,10158085,13828101,14548997,24510469,25165829],"throws":[7274497,8519681,9568257,10485761,11206657,35848193,45809665,49217537],"topic":[1,131073,196609,262145,327681,393217,458753,589825,720897,655361,786433,851969,917505,983041,1048577,1114113,1179649,1310721,1245185,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4259841,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5242881,5373953,5505025,5439489,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8388609,8323073,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13828097,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16646145,16580609,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21757953,21692417,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31522817,31457281,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32178177,32112641,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40042497,39976961,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43581441,43515905,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,47054849,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361],"toint16":[3407873,10944518,12648449,46596097,48300033],"treated":[44892161],"tostring":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490370,2621441,2686977,2752514,2818049,2949121,3014657,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670018,3735553,3801089,3866625,4259841,4390913,5046273,5177345,5242881,5570561,5636098,5701633,6291457,7602177,7667713,9568257,12648449,14155782,16580614,19660806,21495809,23986177,24182785,24772609,25493510,29032454,39845889,40501249,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219842,45350913,45481985,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47448065,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48627713,48693250,48758785,48955393,49020930,49086465,49217538,49283073,49348609,49414145,49545217,49610753,49741825,49807361],"tryinvoke":[2228225,3866625,40501249,49741825],"todouble":[3407873,9895942,12648449,46596097,48300033],"threading":[11599873,12189697,12517377,12976129,13434881,14352385,15073281,15925249],"trysetindex":[2228225,3866625,40501249,49741825],"trycreateinstance":[2228225,3866625,40501249,49741825],"touint64":[3407873,11010054,12648449,46596097,48300033],"timestamp":[33030146,35192834,38469634,43384839,43450370,44236802,45875202,48824321,49676289],"topromise":[3211272,11599878,12189702,12517382,12976134,13434886,14352390,15073286,15925254,28966921,45744136],"tib":[37158913,37879809,38666241,39256065],"targetsite":[35848193,45678593,49217537],"textwriter":[20643845],"tosingle":[3407873,11403270,12648449,46596097,48300033],"totalheapsizeexecutable":[32243713,40763397,48234497],"trydeleteindex":[2228225,3866625,40501249,49741825],"typename":[4128769,6356993,6619137,6684673,6750209,7012353,7274497,7340033,7405569,7536641,7733249,7798785,8257537,8454145,8519681,9502725,10158085,10551297,11206657,11862017,13434881,13697025,13828101,14352385,14417921,14548997,15073281,15925249,22872065,24510469,25165829,30015489,42139649,43778049,45023233],"typo":[33357825],"tojson":[2949121,20250629,45875201],"type":[131073,196609,262145,327681,393217,458753,589825,720897,655361,786433,851969,917505,983041,1048577,1114115,1179650,1245186,1310721,1376258,1441794,1507330,1572866,1638402,1703944,1769474,1835010,1900545,1966081,2031617,2097154,2162690,2228228,2293781,2359297,2424833,2490370,2555905,2621442,2686978,2752514,2818050,2883585,2949122,3014657,3080194,3145730,3211265,3276802,3342338,3407898,3473411,3538946,3604481,3670018,3735554,3801090,3866628,3932161,4063233,4128778,4194306,4259874,4325377,4390914,4521986,4587523,4653058,4784132,4849665,5046306,5111811,5177378,5242914,5373958,5439491,5505026,5570563,5636098,5701666,5767174,5832706,6029334,6094854,6160404,6225922,6291458,6356999,6488087,6553610,6619146,6684683,6750217,6815766,6881284,6946819,7012360,7077895,7143452,7208966,7274505,7340040,7405579,7471107,7536648,7602210,7667746,7733261,7798792,7864326,7929857,7995396,8060936,8126467,8192004,8257545,8388617,8323081,8454155,8519688,8585223,8650755,8716290,8781828,8847363,8912900,8978434,9043977,9109505,9175049,9240585,9306121,9371663,9437187,9502736,9568264,9633801,9699337,9764865,9830409,9895945,9961474,10027017,10092547,10158093,10223617,10289157,10354690,10420233,10485779,10551300,10616847,10682369,10747913,10813442,10878977,10944521,11010057,11075589,11141123,11206674,11337733,11403273,11534341,11599875,11665409,11730946,11862020,11993089,12058626,12124165,12189699,12255233,12320769,12386306,12451843,12517380,12582914,12648487,12779522,12845058,12910597,12976132,13041668,13107202,13172756,13238274,13303809,13369347,13434885,13500418,13565959,13631489,13697030,13762563,13828116,13893634,13959173,14024708,14090243,14155777,14221315,14286850,14352390,14417925,14549009,14614535,14680070,14745601,14811137,14876675,14942211,15007746,15073285,15138817,15269890,15335443,15532034,15597570,15663105,15728644,15794178,15859714,15925254,15990787,16056338,16187395,16252930,16318465,16384002,16449540,16515073,16646146,16580609,16711683,16777218,16842755,16908291,16973830,17235972,17301506,17367042,17432582,17498116,17563650,17629186,17694725,17760260,17891330,17956868,18022403,18087938,18153475,18219011,18284551,18350082,18546690,18612226,18677762,18743298,18808837,18874370,18939905,19005442,19070979,19136514,19202054,19267586,19333121,19398659,19464194,19529731,19595267,19660801,19726340,19791873,19857414,19922946,19988485,20054020,20119554,20185091,20250625,20381700,20447233,20512774,20578307,20643841,20709379,20774917,20840450,20905990,20971523,21102597,21168129,21233670,21299204,21364742,21430273,21495842,21561348,21626882,21692426,21757955,21889025,21954565,22020097,22085633,22151173,22216705,22282242,22347778,22413315,22478849,22544390,22609922,22675458,22740994,22806530,22872068,23003139,23068691,23134213,23199747,23265285,23330819,23396353,23527425,23592963,23658505,23724037,23789569,23855105,23920644,23986178,24051716,24117250,24182786,24248321,24313857,24379394,24444929,24510485,24576001,24641537,24707075,24772610,24838150,24903687,24969217,25034756,25100290,25165842,25296905,25362433,25493505,25559046,25624588,25690116,25755650,25821186,25886725,25952257,26017794,26083330,26279943,26345474,26411016,26476547,26607617,26673158,27000833,27525125,27590678,27656193,27852802,27918340,28114945,28180486,28377090,28573697,28639235,28704774,28770306,29032449,29163521,29360129,29425668,29622273,29687809,30015492,30146561,30277637,30343172,30474241,30736385,30801921,30932996,31064065,31129601,31195141,31260675,31326209,31391746,31457281,31522817,31653890,31784962,31850497,31916039,31981570,32112644,32178177,32243713,32309249,32374785,32440322,32505857,32571393,32702465,32768001,32833538,32899073,32964609,33030145,33095681,33226758,33292289,33423361,33488898,33554433,33619969,33685506,33751041,33816577,33882113,33947649,34013187,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799618,34865153,34996227,35061761,35127297,35192833,35258369,35323905,35454977,35520514,35586049,35717123,35782657,35848193,35913730,36044801,36110338,36175873,36241410,36306945,36372481,36438017,36503553,36634625,36700161,36765697,36831233,36896769,37027843,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38207489,38273025,38338561,38404099,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190530,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845891,39911426,39976963,40042497,40108033,40173569,40239105,40304641,40370179,40435713,40501253,40566787,40632321,40697857,40763393,40828929,40894465,40960002,41025537,41091073,41156609,41222145,41287683,41353217,41418755,41484289,41549825,41615362,41680900,41746433,41811969,41877505,41943042,42008578,42074113,42139653,42205187,42270721,42336259,42401793,42467329,42532869,42598402,42663937,42729505,42795011,42860545,42926081,42991619,43057154,43122689,43188225,43253761,43319297,43384833,43450371,43515905,43581441,43646977,43712513,43778053,43843587,43909121,43974658,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498947,44564481,44695553,44761089,44826625,44892169,44957698,45023236,45088769,45154305,45219843,45285377,45350915,45416449,45481988,45547521,45613057,45678593,45744130,45809665,45875203,45940737,46006273,46071809,46137346,46202883,46268417,46333953,46399489,46465026,46530566,46596136,46661633,46727169,46792706,46858241,46923777,47054849,46989315,47120385,47185929,47251458,47316995,47382534,47448101,47513601,47579139,47644673,47710210,47775748,47841282,47906817,47972355,48037893,48103426,48168962,48234499,48300059,48365569,48431107,48496643,48562181,48627749,48693252,48758821,48824322,48889858,48955429,49020931,49086501,49152002,49217539,49283074,49348615,49414181,49479684,49545219,49610789,49676295,49741829,49807397],"title":[65537],"target":[2490369,3014657,6356997,6946821,7012357,7471109,7995397,8126469,8192005,8650757,8781829,8847365,9437189,10092549,13697029,13893633,14417925,15794177,16252929,16449538,16973827,17498114,17563649,17956866,18350081,18612225,21692421,22282245,30932995,31784961,31916036,31981569,36110337,39911425,40566786,42532866,43843585,48037890,49217537,49283073,49348612],"tvalue":[2555908,11730945,12058626,13107201,13762562,30474242,33554433,34209793,34799617,46465030],"timestamps":[38469633,43384833,44236801],"tryunaryoperation":[2228225,3866625,40501249,49741825],"typed":[2359299,3407885,6881281,7274499,7733249,8060929,8323074,8388610,8454145,9043970,9175042,9240578,9306114,9895938,10027010,10420226,10682370,10944514,11010050,11403266,11534338,12648461,19988482,25427970,30736385,32964609,43974658,45023240,46596109,47513601,48300045],"types":[2293764,4259841,5046273,5177345,5242881,5701633,6029314,6488066,6553606,6881281,7077890,7143426,7208965,7274497,7536641,7602177,7667713,8388609,8323073,8978434,9043969,9175041,9240577,9306113,9371650,9568257,9633795,9699331,9830403,9895937,9961474,10027009,10354690,10420225,10485762,10747907,10813442,10944513,11010049,11403265,12648450,13172738,13828098,14221313,14286849,14548994,14876673,15335426,15728641,16056322,16384001,17432582,18153473,21495809,21692417,22740993,23068674,23658505,24510466,25165826,25427969,26148865,26279940,26935297,27394049,28704772,31916035,34013186,34996226,35717122,36241412,36438018,36765697,37027842,38404098,39976962,41287682,42336258,42532865,42729483,43843585,44630021,46596099,46858241,47448067,48037889,48168962,48627715,48758787,48955395,49086467,49414147,49610755,49676289,49807363],"touint16":[3407873,9240582,12648449,46596097,48300033],"tas":[6094849,11599873,12189697,12517377,12976129,13434882,14352386,15073282,15925250],"tosbyte":[3407873,10420230,12648449,46596097,48300033],"top":[131073,196609,262145,327681,393217,458753,589825,1048577,1114113,1179649,1310721,1245185,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,4259841,4390913,4849665,5046273,5177345,5242881,5570561,5636097,5701633,6291457,7602177,7667713,12648449,21495809,25231361,25296897,25559041,25624577,25690113,26017793,26083329,26279937,26411009,26607617,26673153,26738689,26804225,26869761,27131905,27197441,27262977,27328513,27459585,27590657,27721729,27787265,27983873,28049409,28180481,28246017,28311553,28508161,28704769,28835841,28901377,28966913,29229057,29294593,29360129,29491201,29556737,29687809,29818881,29884417,29949953,30081025,30408705,30474241,30539777,30605313,30736385,30867457,30932993,30998529,31064065,31129601,31326209,31522817,31457281,31588353,31653889,31719425,31784961,31850497,31981569,32047105,32243713,32374785,32440321,32505857,32571393,32636929,32702465,32964609,33030145,33161217,33357825,33685505,34013185,34144257,34275330,34603009,34734081,34930689,34996225,35061761,35192833,35389441,35454977,35651585,35717121,35782657,35848193,35979265,36044801,36306945,36372481,36438017,36569089,36962305,37027841,37617665,38141953,38404097,38600705,38797313,39124993,39845890,39976961,40501250,40960001,41287681,41418753,41549831,41680899,41943042,42139649,42336257,42532867,42598402,42729476,42795009,42991619,43450370,43778049,43843587,43974658,44302337,44498947,45023234,45219842,45350915,45481986,45744129,45875202,46137345,46202883,46465026,46530563,46596098,46792705,46989314,47185921,47251457,47316995,47382531,47448067,47579139,47710210,47775746,47841282,48037891,48103425,48234498,48300034,48431108,48496642,48627715,48693250,48758787,48889858,48955395,49020930,49086467,49152001,49217540,49283075,49348611,49414147,49545218,49610755,49741826,49807363],"totalheapsize":[32243713,40239109,48234497],"task":[3211273,6094854,11599873,12189710,12517377,12976142,13434894,14352398,15073281,15925249,16711688,28966920,45744137,48824322],"thread":[1703938,3211268,3932164,5046274,5177346,5242882,5701634,6160385,6291460,6356993,7602178,7667714,11599873,12189697,13434881,15073281,16121857,21037057,22872066,23003137,23265281,23461889,23724033,24313858,24576001,25100289,25559041,25821185,26017793,26476545,26542081,27066369,27394049,27525121,28573698,28966916,29097985,29163522,29622274,29753345,29949954,30015490,30146562,30670849,30998530,32178177,32833537,33488897,34996225,45744132,46268419,47185922,47448067,48627717,48758787,48955397,49086465,49152005,49414147,49545222,49610757,49807363],"trybinaryoperation":[2228225,3866625,40501249,49741825],"third":[7733249,8060929],"touppercase":[7733249]} \ No newline at end of file +{"tasks":[9371649,9437185,9633793,9764865,10092545,10616833,12648449,13107201,41943041],"terminates":[34144257,37027841,49217537],"toint64":[2883585,10223617,14942214,41615361,42926081],"trygetvalue":[1900545,2686977,6225921,9895937,10420231,42336257,44498945,47906817],"typeof":[2883586,7864329,10223618,24838153,33423362,41615362,42926082,44630019],"totask":[3080193,10354693,41484289],"tresult":[3080197,9633793,9764865,10354689,12648449,13107201,41484293,43319300,48889857],"try":[589825,851969,917505,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,3211265,2818049,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,8716289,10158081,10223617,12386305,13369345,27983873,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,42270721,42860545,42926081,43057153,43253761,43515905,43581441,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47906817,48824321,49086465,49283073,49741825,49872897],"timespan":[36831239,37748743,40501249],"termination":[37027842,37093377,46071809,49152002,49217538],"tobyte":[2883585,10223617,13631494,41615361,42926081],"tryinvokemember":[1703937,10158081,41680897,43515905],"trailing":[33619969,48627713],"table":[25034753,27852801,33816579,40697857,41746435,42795009,47644673],"tunneling":[30539777,31260673,31457281,33357825,34078721,36438017,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"typ":[5046273,6881281,8585217,12320770,12582913,12779521,13041665,13172737,13434881,24576001,25690113,29753345,32702465],"trygetindex":[1703937,10158081,41680897,43515905],"thrown":[11337729,13369345,19660801,24903682,28835842,29556738,30212099,31391745,31653889,32047105,33226753,34275329,35848193,35979265,41222147,42074115,43122691,48889858],"trygetmember":[1703937,10158081,41680897,43515905],"tkey":[1900549,10420226,11075586,13565954,29818882,30605314,42336263,43712514,44171265,44695553],"trace":[22282241,23003137,48562177],"trycatch":[2883585,10223617,13369350,41615361,42926081],"tracked":[37027841,49217537],"time":[30146562,30474241,31457282,31850497,36765697,36831233,37224449,37748737,37814273,40042497,41746434,41943042,44040194,46333953,47185921,47513602,48889857],"throw":[7798785,8060929,8257537,11927553,14221313,15007745,15335425,23068673,23527425,24707073,34537473,43974657,47513601,49152002,49348609,49414145,49676289,49807361,49938433,50003969],"toarray":[3604481,4587521,5046273,5242881,9306113,9830405,14090241,40697857],"threw":[13369345],"typelibenums":[2883585,5111813,42926081],"touint32":[2883585,7340038,10223617,41615361,42926081],"tochar":[2883585,10223617,14614534,41615361,42926081],"true":[3932161,4128770,4194305,5636097,6356993,6488065,7077889,7471105,8388609,10420225,10944513,11075585,11272193,12845057,13238274,13369346,13565953,13762561,15925249,16056321,16121857,16318465,17039361,17104897,17301505,17694721,19005441,19333121,19529729,20119553,20185089,20316161,20512769,21495809,21626881,21954561,22085634,22872066,23134209,23330817,23592962,24510466,25034753,28901377,33423361,33554433,33619969,33751041,34406402,34668545,36438017,37224449,38600705,39190530,39976961,46465025,46792705,46858241,47382529,47972353,48037889,48103426,48234497,48627713,48693249],"tree":[23920641,29294593,30081025,37552129,38731777,41418753,45416449,48824321],"trydeletemember":[1703937,10158081,41680897,43515905],"toint32":[2883585,7208966,10223617,41615361,42926081],"todecimal":[2883585,6750214,10223617,41615361,42926081],"temporary":[40108033],"tryconvert":[1703937,10158081,41680897,43515905],"total":[31326213,36700161,37617665,38273025,40828929,46596097,46989313,49086469],"torestrictedhostobject":[1048578,5177350,5308422,24379395,43450370],"test":[5636098,7077890,7471105],"text":[2097153,15663106,22282241,23003137,24903681,43581441,45416449,48562177],"tryfunc":[13369352],"times":[1441793,9175041,18743297,19464193,20185089,20512769,21168129,21430273,21495809,22151169,22347777,23920641,35651585,41091073],"typeid":[28311553,28442625,28508161,29032449,29097985,29949953,40501249,42860545,43057153,43253761,44105729,44367873],"tostatictype":[2883585,7274501,10223617,41615361,42926081],"totalphysicalsize":[31326209,38273029,49086465],"trysetmember":[1703937,10158081,41680897,43515905],"tcp":[17563649,17760257,18284545,18415618,18612226,18874369,20054017,20381697,20643841,22544385,45613057,47448065],"tohosttype":[1048578,4849670,5505030,23724035,43450370],"typeargs":[8323077,8847365,12779525,13172741,24576005,25690117],"throws":[5439489,7405569,7864321,13369345,24838145,28835841,34144257,41222145],"topic":[1,65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,3145729,2686977,3014657,2949121,3080193,2752513,917505,3211265,2818049,2883585,3342337,3407873,3473409,3276801,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7471105,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8650753,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13959169,13893633,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20643841,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21168129,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22216705,22151169,22282241,22413313,22347777,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23527425,23461889,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24969217,24903681,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27721729,27656193,27787265,27852801,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29622273,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30605313,30539777,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39911425,39845889,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41287681,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44171265,44105729,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46202881,46268417,46333953,46399489,46137345,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"toint16":[2883585,6815750,10223617,41615361,42926081],"treated":[32702465],"tostring":[851969,983041,1114113,1245185,1376257,1703937,1769473,1966082,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,3145729,2686977,3014657,2949121,917505,3211265,2818049,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422530,6946817,7798785,8060929,8257537,8716290,10158081,10223617,11927553,12386306,13369345,15007745,15138822,15335425,16252934,21102593,21561345,23396358,24117254,24707073,34537473,34799622,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222146,41418753,41615361,41680897,42074113,42270721,42860545,42926081,43057153,43253761,43515905,43581441,43974657,44040193,44105729,44236802,44302337,44367873,44498945,44957697,45023233,45154305,45416449,45481985,46202881,47513601,47906817,48824321,49086465,49283074,49348609,49414145,49676289,49741826,49807361,49872897,49938433,50003969],"totalavailablesize":[31326209,46596101,49086465],"tryinvoke":[1703937,10158081,41680897,43515905],"totalexternalsize":[31326209,46989317,49086465],"todouble":[2883585,9568262,10223617,41615361,42926081],"threading":[9371649,9437185,9633793,9764865,10092545,10616833,12648449,13107201],"trysetindex":[1703937,10158081,41680897,43515905],"trycreateinstance":[1703937,10158081,41680897,43515905],"touint64":[2883585,7536646,10223617,41615361,42926081],"timestamp":[29294594,30081026,39780359,40304642,41418754,41549826,45416450],"topromise":[3080200,9371654,9437190,9633798,9764870,10092550,10616838,12648454,13107206,41484296,43319305],"tib":[43909121,44564481,44892161,45350913],"targetsite":[28835841,33423361,41222145],"textwriter":[15663109],"tosingle":[2883585,10027014,10223617,41615361,42926081],"totalheapsizeexecutable":[31326209,37617669,49086465],"trydeleteindex":[1703937,10158081,41680897,43515905],"typename":[4194305,4259841,5111809,5177345,5308417,5439489,5636097,5963777,6291457,7405569,7864321,8323077,8847365,9043969,9306113,9633793,9764865,9895937,9961473,12648449,12779525,13107201,13172741,14090241,15073281,21889025,24510465,24576005,25690117,30343169,40632321,40697857,45023233,46137345,47251457],"typo":[27983873],"tojson":[2097153,15400965,45416449],"type":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851970,917506,983042,1048584,1114114,1179649,1245186,1310721,1376258,1441793,1507329,1638401,1703940,1769474,1835009,1900545,1966082,2031617,2097154,2162689,2228225,2293762,2359299,2424834,2490370,2555906,2621442,2686997,2752513,3145730,3014659,3080193,2949122,2883623,2818050,3211266,3342337,3407873,3276801,3604481,3670019,3735553,3801090,3866630,3932163,4063234,4128771,4194314,4259849,4325378,4390914,4521985,4587530,4653058,4718594,4784130,4849684,4915206,4980740,5046295,5111818,5177351,5242886,5308424,5439497,5505046,5570563,5636105,5701634,5767169,5832707,5898246,5963784,6029314,6094852,6160387,6225922,6291464,6356995,6422530,6488067,6619151,6684676,6750217,6815753,6881308,6946819,7012354,7077890,7208969,7274503,7340041,7405576,7471111,7536649,7602178,7733250,7798818,7864338,7929858,7995396,8060962,8126473,8257570,8323088,8388611,8454146,8585238,8650758,8716290,8781833,8847373,8912897,8978436,9043979,9109505,9175041,9240578,9306123,9371651,9437187,9568265,9633797,9699343,9764869,9830401,9895947,9961476,10027017,10092548,10158084,10223642,10354691,10289157,10420227,10485765,10551298,10616836,10682369,10747909,10944514,11010053,11075586,11141125,11206658,11272193,11337730,11403266,11468801,11534340,11599873,11665413,11730947,11796483,11862025,11927586,11993089,12058626,12124167,12189703,12255238,12320777,12386306,12451842,12517385,12582931,12648454,12713989,12779538,12845057,12910596,12976130,13041682,13172757,13107206,13238273,13303812,13369352,13434900,13500419,13565954,13631497,13697025,13762562,13828098,13893640,13959177,14024707,14090253,14155777,14352385,14417922,14483460,14548994,14614537,14680066,14745606,14876675,14942217,15007778,15073284,15138817,15335458,15400961,15466500,15532034,15663105,15728646,15859714,15925251,15990787,16056321,16121859,16187394,16252929,16318466,16384004,16449540,16515074,16646145,16711686,16777219,16842755,16908291,16973825,17039366,17104901,17170433,17235972,17301510,17432578,17498114,17563651,17629186,17694727,17760258,17825793,17956867,17891332,18022405,18087938,18153474,18219009,18284547,18350082,18415620,18546693,18612227,18743299,18808834,18874371,18939907,19005446,19070977,19136514,19202050,19333125,19398658,19464194,19529735,19595265,19660802,19726340,19857410,19922945,19988485,20054018,20119557,20185094,20250628,20316161,20381699,20447233,20512773,20578310,20643843,20774914,20840450,20905986,20971521,21037058,21102594,21168133,21233665,21299201,21364745,21430276,21495814,21561346,21626886,21692419,21757955,21823489,21889028,21954561,22020098,22085633,22216705,22151171,22282241,22347781,22478853,22544388,22609922,22675458,22740997,22806533,22872065,22937602,23003137,23134209,23265281,23330817,23396353,23461890,23592961,23658499,23724038,23789569,23855105,23986177,24117249,24182788,24313858,24379394,24444931,24510472,24576020,24641540,24707106,24838163,24903687,24969217,25034758,25165826,25296898,25427973,25690129,25821186,26083331,26214408,26476548,27131905,27394049,27590678,27656194,27852810,28049409,28114945,28180481,28311554,28442626,28508161,28639234,28704769,28835841,28901377,29032450,29097986,29294593,29360129,29425665,29491201,29556737,29687809,29753363,29818881,29884417,29949956,30015489,30081025,30146561,30212097,30277633,30343172,30408705,30474241,30539779,30605314,30670849,30736385,30867457,30932993,30998529,31064065,31129601,31260675,31326209,31391745,31457283,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702473,32768001,32833537,32899074,32964609,33030146,33095681,33161217,33226753,33292289,33357827,33423361,33488897,33554435,33619969,33685505,33751042,33816577,33882113,33947649,34013188,34078723,34144257,34209793,34275329,34406402,34340865,34471937,34537506,34603009,34668546,34734083,34865155,34799617,34930690,34996225,35061761,35127297,35192833,35258369,35323905,35389444,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36306946,36372481,36438017,36503553,36569089,36634627,36700161,36765697,36831233,36896769,36962307,37027841,37093377,37158913,37224449,37289986,37355524,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,38010883,38076417,38141955,38207489,38273025,38338563,38404097,38469633,38535169,38600706,38666241,38731777,38797313,38862849,38928387,38993924,39059458,39124993,39190530,39256065,39321601,39452674,39518209,39583747,39649281,39714819,39780353,39845891,39911429,39976961,40042497,40108033,40173570,40239108,40304641,40370177,40435713,40501251,40566785,40632325,40697860,40763393,40828929,40894468,40960004,41025537,41091075,41156610,41222147,41287681,41353222,41418755,41484290,41549825,41615387,41680901,41746439,41877505,41943041,42008583,42074114,42139650,42270723,42336258,42401793,42598402,42729473,42795010,42860549,42926120,42991625,43057158,43122690,43188225,43253767,43384833,43450377,43515909,43581443,43646978,43712514,43778052,43843585,43909121,43974693,44040195,44105733,44171265,44236803,44302339,44367878,44433410,44498977,44564481,44630022,44695553,44761089,44826630,44892161,44957699,45023237,45088770,45154307,45219841,45285388,45350913,45416451,45481986,45547521,45613058,45678594,45744129,45809665,46006273,46071809,46137350,46202883,46268417,46333953,46399489,46465026,46530563,46596097,46661633,46727169,46792707,46858242,46923777,46989313,47054849,47120385,47185921,47251461,47316993,47382530,47448068,47513637,47579138,47644673,47710210,47775745,47841281,47906819,47972353,48037889,48103425,48168962,48234498,48365569,48431109,48496641,48562177,48627713,48693251,48758787,48824323,48889858,48955393,49020930,49086467,49152001,49217537,49283075,49348645,49414181,49479682,49545218,49610754,49676325,49741828,49807397,49872899,49938469,50004005],"title":[1572865],"target":[1966081,2162689,5177349,5308421,5570565,5832709,6160389,6356997,6488069,6684677,7995397,8388613,8978437,10551297,14483458,14548993,14745603,14876677,15466498,15859713,24903684,25296897,25821185,26476546,27852805,28639237,29032449,29097985,29949955,33030145,34734082,40173569,40501249,41222145,42074113,42860546,43253764,44105730,45678593,46137349,47251461],"tvalue":[1900548,10420226,11075585,13565953,29818882,30605314,42336262,43712513,44171265,44695553],"timestamps":[39780353,40304641,41549825],"tryunaryoperation":[1703937,10158081,41680897,43515905],"typed":[2883597,3604483,5439491,6094849,6750210,6815746,7208962,7340034,7536642,8126466,9568258,9830402,9895937,10027010,10223629,10747906,11665410,11862018,13631490,13893633,14090241,14614530,14942210,25624578,28704769,29360129,32112641,40697864,41615373,42926093,47710210],"types":[2686980,2883586,4587526,5046274,5242885,5439489,6094849,6619138,6750209,6815745,6881282,7208961,7340033,7471106,7536641,7733250,7798785,7929858,8060929,8126465,8257537,8454146,8585218,8781827,9568257,10027009,11862017,11927553,12320777,12517379,12582914,12779522,12976129,13041666,13172738,13303809,13369345,13434882,13500417,13631489,13959171,14024705,14614529,14680066,14942209,15007745,15335425,19857409,21364739,23920641,24510465,24576002,24707073,24772609,24838146,24903683,25034758,25231361,25624577,25690114,26083329,27656193,27852801,29753346,30539778,31260674,31457282,33357826,33947649,34078722,34406402,34537473,34668548,35586049,36634626,37945349,38010882,39845890,40501249,41746433,42008580,42729474,42860545,42926083,43974659,44105729,44498955,44826628,47513603,49348611,49414147,49676291,49807363,49938435,50003971],"touint16":[2883585,10223617,11862022,41615361,42926081],"tas":[4915201,9371649,9437185,9633794,9764866,10092545,10616833,12648450,13107202],"tosbyte":[2883585,8126470,10223617,41615361,42926081],"top":[65537,131073,196609,262145,327681,393217,458753,655361,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,3145729,3014657,2686977,2949121,3080193,2752513,917505,3211265,2818049,2883585,3276801,3604481,3735553,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,7798785,8060929,8257537,8716289,10158081,10223617,11927553,12386305,15007745,15335425,23724033,24051713,24182785,24379393,24707073,24969217,25100289,25165825,25362433,25493505,25559041,25755649,25886721,25952257,26017793,26148865,26214401,26279937,26345473,26411009,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27721729,27787265,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28704769,28770305,28835841,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29622273,29818881,29949953,30015489,30081025,30146561,30212097,30277633,30408705,30539777,30670849,30736385,31260673,31326209,31457281,31916034,33357825,34078721,34537473,35651585,36241409,36634625,37224455,38010881,38469633,38928386,38993922,39714817,39845889,40501251,40632321,40697858,40894467,40960002,41091074,41156609,41222148,41353217,41418754,41484289,41615362,41680898,41811969,41943041,42008577,42074115,42139649,42205185,42270723,42336258,42467329,42532865,42598401,42663937,42729473,42795009,42860547,42926082,42991617,43057155,43122689,43253763,43319297,43450369,43515906,43581443,43646978,43974659,44040195,44105731,44236802,44302337,44367875,44433410,44498948,44630017,44826625,44957699,45023233,45088770,45154307,45285377,45416450,45809665,46202883,46268417,46727169,46923777,47513603,47644673,47710210,47906820,48824322,49020930,49086466,49283074,49348611,49414147,49479681,49545218,49610753,49676291,49741826,49807363,49872898,49938435,50003971],"totalheapsize":[31326209,36700165,49086465],"task":[3080201,4915206,9371662,9437185,9633806,9764865,10092558,10354696,10616833,12648462,13107201,41484297,43319304,48889858],"thread":[1048578,2752516,3080196,4849665,5177345,5701636,7798786,8060930,9371649,9437185,9633793,9764865,14221313,15007746,15335426,18677761,19267585,20709377,20905985,20971522,21299201,21692417,21889026,22020097,22216705,22413313,22478849,22675457,22806529,22937601,23068673,23330818,23527425,23592962,23658497,23724033,24248321,24379393,24707074,25231361,27525122,28901378,28966914,29884418,30343170,30539777,33161219,34537474,39911425,41484292,43319300,43450370,43974659,47513603,49348611,49414145,49479685,49676293,49807363,49872902,49938437,50003973],"trybinaryoperation":[1703937,10158081,41680897,43515905],"third":[13893633,14090241],"touppercase":[14090241]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_117.json b/docs/Reference/fti/FTI_117.json index 0b792e0af..15f6572f6 100644 --- a/docs/Reference/fti/FTI_117.json +++ b/docs/Reference/fti/FTI_117.json @@ -1 +1 @@ -{"unless":[15204353],"uinteger":[37552129,38076417,43515905,44040193],"unique":[29687809,30932993,31653889,31784961,31981569,33685505,40435713,42532865,43843585,46530561,47382529,48037889,49348609],"usable":[17694721,19202049,19726337,20512769,21102593,21299201,21954561,22151169,23920641,25886721,30277633,32112641],"uint32array":[45023233],"uint":[37552129,38076417,43515905,44040193,45023233],"unlimited":[5373953,6094849],"unit":[3997697,4456449,4653057,4718593,4784129,4915204,4980737,5111809,5308418,5505025,5898241,5963777,6422529,7536641,7929857,8978433,9109505,9502721,9633793,9764865,9961473,10158081,10223617,10616833,10682369,10747905,10878977,11206657,11272193,11468801,11665409,11796481,11927553,12058626,12255233,12451841,12582913,12713986,12910593,13041665,13172737,13238273,13369345,13500417,13565953,13631490,13697025,13828097,13893634,13959169,14024705,14090241,14155778,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14942209,15204356,15269889,15335425,15400964,15466497,15532033,15663105,15990785,16056321,16121858,16252930,16515073,16580610,16646145,17039361,17104897,17170433,17301505,17825793,18415620,18481154,18743297,18939905,19333121,19660802,19791873,20250625,20316161,20381697,20643841,20905985,20971521,21037060,21430273,21561345,21692417,21823489,21889026,22282241,22478849,22937601,23068673,23396353,23461890,23658497,23789569,24248321,24313857,24444929,24510465,24641538,24969218,25165825,25362434,25493506,25952258,26214401,26542084,27066370,28442626,28573698,29032450,29097986,29163522,29622273,29753346,30146561,30212098,30670852,30801922,42008577,44957697],"uri":[1507329,4325389,4521998,4587522,5373954,6094850,7274502,35061763,35389442,36175880,36831245,41680901,42991617],"url":[33357825,34734081,41484289,46989313],"utility":[31916034,46596097,48300033],"unknown":[35258369,43646977,45219841],"unlike":[48758785],"unrecoverable":[41353217,41877505,46071809,46727169],"unsigned":[131073,10223617,10289157,11075589,11337733,11534340,11665409,12124165,17694721,18284545,18808833,19202049,19726337,19857409,19988484,20512769,20774913,21102593,21233665,21299201,21364737,21954561,22151169,22544385,23134209,23920641,24838145,24903681,25886721,30277633,31195137,32112641,33226753,36896770,37552131,38076419,38469634,38600706,39714818,40239106,40435715,40763394,41156610,43384834,43515907,44040195,44236802,45154307,46333954,46661634,47054850,47513602],"uint16array":[45023233],"unchecked":[41877505,46727169],"unary":[2228225,3866625,40501249,49741825],"utf8":[37224449],"uriformatt":[7274498],"uricomponentst":[7274500],"uint16":[3407873,9240582,12648449,46596097,48300033],"unspecified":[17432577,38469633,43384833,44236801],"uricomponents":[7274497],"usedheapsize":[32243713,36896773,48234497],"usually":[7995393,8192001,8650753,8781825],"unconditionally":[41353217,46071809],"used":[2228225,3407878,3735553,3866625,4259842,4390913,5046274,5177346,5242882,5701634,6815745,7012353,7077890,7405570,7536642,7602178,7667714,8585217,9371650,10485762,11206658,12517377,12648454,12976129,13631489,13697025,14352385,14417921,14942209,15138817,15400961,15532033,15597569,15925249,17432577,17760257,18153473,18415617,18677761,19070977,19398657,20054017,20709377,21102593,21168129,21233665,21495810,21626881,21757953,21889025,21954561,22085633,22413313,22544385,22675457,22806529,23003137,23199745,23265281,23592961,23724033,23855105,24379393,25034753,25362433,25690114,25821185,26476545,26673154,26804226,27525121,27656193,27918337,28180482,28377089,28442625,28770305,29425665,30343169,32047106,32243713,32309250,33488897,34013185,34537473,34996225,35717121,36896769,36962306,37027841,38404097,39976961,40501249,41287681,42336257,43515905,45809665,46202881,46596102,47448068,48234497,48300038,48496641,48627715,48758787,48824321,48955395,49086467,49414148,49545217,49610755,49741825,49807364],"useassemblytable":[33882117,36372481,40960001],"uint8clampedarray":[45023233],"urls":[34406401,36044801,45350913],"useful":[6881281,7733249,8060929,8323073,8388609,8454145,9043969,9175041,9240577,9306113,9895937,10027009,10420225,10944513,11010049,11403265,35913729,36241409],"uses":[5767169,6029313,6488065,6553601,7208961,7864321,9568257,16056321,23068673,23658497,48758785,49676289],"ushort":[45023233],"unusable":[15400961,18415617,28442625],"urit":[7274498],"usereflectionbindfallback":[34013185,34996225,35717121,35913733,37027841,38404097,39976961,41287681,42336257,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"user":[14942210,15138817,15532034,15597569,16384001,16515073,17432578,17760257,18153474,18677761,19070977,19398657,20054017,20709377,21102593,21168129,21233665,21626881,21757953,21954561,22085633,22413313,22544385,22675457,22806529,23003137,23199745,23265281,23592961,23724033,23855105,24379393,25034753,25821185,26476545,26935297,27525121,27656193,27918337,28377089,28770305,29425665,30343169,33488897,35848193,47841281,49217537],"uriformat":[7274497],"uint64":[131074,3407873,10289160,11010054,11075592,11337736,11534344,12124168,12648449,19988488,36896770,38469634,38600706,39714818,40239106,40435714,40763394,41156610,43384834,44236802,45154306,46333954,46596097,46661634,47054850,47513602,48300033],"universal":[11599873,12517377,15073281,15925249,48824321],"undefinedimportvalue":[34013185,34996225,35258373,35717121,37027841,38404097,39976961,41287681,42336257,45219841,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"uint8array":[45023233],"uintptr":[41353223,41877511,46071815,46727175],"uwp":[11599873,12517377,15073281,15925249],"unescaped":[7274497],"underlying":[4849665,24248322,30736386,31850498,32505858,32964610,41943042,42598402,43974658,45023234,45940737,46333953,48103425,48758785],"utc":[48824322],"uint32":[3407873,10027014,12648449,37552130,38076419,43515906,44040194,46596097,48300033],"unpredictably":[49545217],"unmanaged":[4259842,4849665,5046274,5177346,5242882,5701634,7602178,7667714,13631491,15204353,21495810,21889027,24248322,25362435,26804225,32047105,32768001,36962305,47448066,48103425,48627714,48758786,48955394,49086466,49414146,49610754,49807362],"unidirectional":[48824321],"using":[4653057,4784129,5111809,5505025,7274497,7405569,8454145,15400961,18415617,28442625,46465025],"undefined":[262148,655368,2752515,16842753,17432579,19660804,31916034,34013185,34996225,35258370,35717121,37027841,38404097,39976961,41287681,42336257,45219850,47448065,48627713,48693249,48758785,48955393,49086465,49414145,49610753,49807361],"usecaseinsensitivememberbinding":[48824321],"ulong":[131074,10289160,11075592,11337736,11534344,12124168,19988488,36896770,38469634,38600706,39714818,40239106,40435714,40763394,41156610,43384834,44236802,45023233,45154306,46333954,46661634,47054850,47513602],"usage":[4390913,6160385,6356993,6815745,7012353,11599873,12189697,12517377,12976129,13434881,14352385,15073281,15925249,16711681,19333122,21495809,24444930,26148865,33882113,36372481,40960001,41353217,41877507,46071809,46202881,46727171,48234497,48758785]} \ No newline at end of file +{"unless":[48300033],"uinteger":[30867457,35782657,46333953,47185921],"unique":[28311553,28442625,28508161,29032449,29097985,29949953,36503553,40501249,42860545,43057153,43253761,44105729,44367873],"usable":[16711681,17235969,17891329,18022401,18546689,19988481,20250625,20578305,21168129,21430273,22347777,22740993],"uint32array":[40697857],"uint":[30867457,35782657,40697857,46333953,47185921],"unlimited":[3866625,4915201],"unit":[3473409,3538945,3670017,3997698,4456449,4718593,4980737,5373953,5767169,6553604,7012353,7143425,7667713,7733249,7864321,7929857,8192001,8323073,8519681,8781825,8847361,8912897,9109505,9175041,9502721,9699329,9830401,10551298,10813441,10878977,11403265,11468801,11534337,11599873,11730945,11796481,11993089,12058625,12124161,12189697,12255233,12320769,12451841,12582913,12713985,12779521,12845057,12910593,13041665,13172737,13238274,13434881,13697025,13828097,14221314,14286849,14548994,14811137,15138818,15204353,15269889,15400961,15597569,15663105,15728641,15794177,16056321,16252930,16449537,16580610,16973825,17170433,17367044,17498113,17825793,18350081,18481153,18677762,19267586,19791874,20316162,20447233,20709378,20971522,21364737,21823489,21954562,22085634,22282242,22413316,22872066,23003138,23068676,23134209,23199746,23330817,23396354,23527428,23592962,23789569,23855105,24117250,24248322,24444929,24510465,24576001,25427969,25690113,27852801,28639233,28901377,29753345,29884417,30605314,30801921,31195138,34799618,37289985,37355521,38141953,38338561,38600705,38862849,39059457,39387137,45875204,45940737,46137345,46792705,47251457,47579137,48300036,48562177],"uri":[917505,3407885,3866626,3932162,4915202,5439494,9240590,31129608,31850509,40894469,42205186,46202881,46268419],"url":[27983873,30736385,36896769,48824321],"utility":[24903682,41615361,42926081],"unknown":[31064065,44236801,45744129],"unlike":[47513601],"unrecoverable":[37027841,37093377,46071809,49217537],"unsigned":[1441793,10289157,10485765,10747908,11010053,11141125,11468801,11599873,11665412,16711681,17039361,17104897,17235969,17301505,17694721,17891329,18022401,18546689,19005441,19333121,19529729,19988481,20119553,20185089,20250625,20512769,20578305,21168129,21430273,21495809,21626881,22347777,22740993,30867459,31522818,32112642,32636930,33292290,35651586,35782659,36503555,36700162,37617666,38273026,38797314,39780354,40304642,41549826,43188227,46006274,46333955,46596098,46989314,47185923],"uint16array":[40697857],"unchecked":[37093377,46071809],"unary":[1703937,10158081,41680897,43515905],"utf8":[41025537],"uriformatt":[5439490],"uricomponentst":[5439492],"uint16":[2883585,10223617,11862022,41615361,42926081],"unspecified":[25034753,39780353,40304641,41549825],"uricomponents":[5439489],"usedheapsize":[31326209,38797317,49086465],"usually":[5832705,6684673,7995393,8978433],"unconditionally":[37027841,49217537],"used":[1703937,2621441,2883590,4390913,5308417,5505025,6619138,7274497,7471106,7798786,7864322,8060930,8257538,9043970,10092545,10158081,10223622,10616833,11927554,12648449,13107201,13238273,15007746,15335426,16646145,17367041,17432577,17563649,17629185,17956865,18219009,18284545,18415617,18808833,19005441,19202049,19988481,20185089,20381697,20774913,20840449,20905985,21168129,21692417,21757953,22085633,22151169,22478849,22544385,22675457,22806529,22872065,23199745,23658497,23986177,24182786,24510466,24707074,24838146,25034753,25362434,26083329,27459586,29229058,30539777,31260673,31326209,31457281,32243713,32899073,33357825,34013185,34078721,34144257,34537474,35389441,35782657,36634625,36765697,38010881,38797313,39452673,39845889,39911425,40042498,40239105,41091073,41353218,41615366,41680897,42926086,43515905,43974660,44040193,44630018,45875201,46399489,46137345,46530561,46792705,47251457,47448065,47513603,47579137,48889857,49086465,49348612,49414147,49676291,49807364,49872897,49938435,50003971],"useassemblytable":[33816581,42795009,47644673],"uint8clampedarray":[40697857],"urls":[32374785,42270721,46923777],"useful":[6094849,6750209,6815745,7208961,7340033,7536641,8126465,9568257,9895937,10027009,11862017,13631489,13893633,14090241,14614529,14942209,34603009,34668545,46465025],"uses":[4587521,5046273,5242881,5898241,8650753,8585217,12320769,13041665,13369345,29753345,41746433,47513601],"ushort":[40697857],"unusable":[17367041,23199745,45875201],"urit":[5439490],"usereflectionbindfallback":[30539777,31260673,31457281,33357825,34078721,36634625,38010881,39845889,43974657,46465029,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"user":[16646145,17432577,17563649,17629185,17956865,18219009,18284545,18415617,18808833,19005441,19202049,19988481,20185089,20381697,20774913,20840449,20905985,21168129,21692417,21757953,22151169,22478849,22544385,22675457,22806529,23658497,23986177,24772609,25034754,26083330,27656193,28835841,32243713,32899073,34013185,35389441,38862849,39452673,39911425,40239105,41222145,46399489,46530561,46792706,47448065,47579138,49545217],"uriformat":[5439489],"uint64":[1441794,2883585,7536646,10223617,10289160,10485768,10747912,11010056,11141128,11665416,31522818,32112642,32636930,33292290,35651586,36503554,36700162,37617666,38273026,38797314,39780354,40304642,41549826,41615361,42926081,43188226,46006274,46596098,46989314],"universal":[9437185,9764865,10616833,13107201,48889857],"undefinedimportvalue":[30539777,31260673,31457281,33357825,34078721,36634625,38010881,39845889,43974657,44236801,45744133,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"uint8array":[40697857],"uintptr":[37027847,37093383,46071815,49217543],"uwp":[9437185,9764865,10616833,13107201],"unescaped":[5439489],"underlying":[3735553,23855106,28180482,28704770,29360130,30408706,32178177,32636929,40697858,44433410,45088770,47513601,47710210,49610753],"utc":[48889858],"uint32":[2883585,7340038,10223617,30867459,35782658,41615361,42926081,46333954,47185922],"unpredictably":[49872897],"unmanaged":[3735553,7798786,8060930,8257538,11927554,13238275,15007746,15335426,22085635,22872067,23855106,24707074,25362433,27459585,29229057,32440321,34537474,43974658,47513602,48300033,49348610,49414146,49610753,49676290,49807362,49938434,50003970],"unidirectional":[48889857],"using":[3670017,4718593,4980737,5439489,7012353,9043969,9895937,17367041,23199745,42336257,45875201],"undefined":[458756,524296,6422531,15990785,16252932,24903682,25034755,30539777,31260673,31457281,33357825,34078721,34603009,36634625,38010881,39845889,43974657,44236810,45744131,47513601,49348609,49414145,49676289,49741825,49807361,49938433,50003969],"usecaseinsensitivememberbinding":[48889857],"ulong":[1441794,10289160,10485768,10747912,11010056,11141128,11665416,31522818,32112642,32636930,33292290,35651586,36503554,36700162,37617666,38273026,38797314,39780354,40304642,40697857,41549826,43188226,46006274,46596098,46989314],"usage":[4390913,4849665,5177345,5308417,5505025,9371649,9437185,9633793,9764865,10092545,10354689,10616833,11927553,12648449,13107201,17170434,21823490,23920641,33816577,37027841,37093379,42795009,44040193,46071811,47513601,47644673,49086465,49217537]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_118.json b/docs/Reference/fti/FTI_118.json index 576825e67..c4c219175 100644 --- a/docs/Reference/fti/FTI_118.json +++ b/docs/Reference/fti/FTI_118.json @@ -1 +1 @@ -{"valid":[10551297,10878977,11862017,12255233,21692417],"v8runtimeviolationpolicy":[26148865,37683207,40632327,48365573],"v8cachekind":[4390924,17694727,18284550,18808839,19202054,19726343,19857414,20512774,20774919,21102599,21233671,21299207,21364742,21495820,21954567,22151174,22544391,23134214,23920646,24838151,24903686,25886727,26148865,30081030,30277638,30867462,31195142,32112646,33226759,35651590,36569094,45547525,46202892,48758796],"variable":[3407873,8454153,12648449,34013185,34471937,34996225,35717121,37027841,38404097,39976961,41287681,42336257,46596097,47448065,48300033,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"vt_dispatch":[48693249,49676289],"vt_array":[49676289],"voidresult":[589828,720904,3670019,17432577,29032451,31916033,49020936],"v8scriptengine":[17629189,17760261,18219013,18677765,19398661,19922946,20512770,20774915,21037059,21102595,21299203,21364738,21430274,21495811,21757954,21823494,21889026,22020102,22085638,22151170,22216710,22347778,22478853,22544387,22609926,22675462,22740994,22806534,23134210,23199750,23330818,23396354,23592966,23920642,23986179,24051714,24117254,24444930,24707078,24838147,24903682,24969218,25886723,26148865,26345474,27852802,27918342,28639234,29097986,29556750,29753347,30212098,30801922,31260674,34013187,34930690,35651586,36569090,36962306,37093378,37617666,37683202,38141954,38273026,38862849,39190530,39649282,41549825,44040194,44695554,45088771,45416450,46071810,46727170,48365569,48758804,49086465],"variabl":[6684673],"v8runtime":[4390915,17235970,17367042,17629186,17694723,17760258,18022402,18087938,18219010,18284546,18415618,18481154,18677762,18808835,18874370,18939906,19070982,19202050,19333122,19398658,19464198,19529730,19726339,19791874,19857410,20054022,20119554,20185094,20316166,20447238,20578306,20709378,20840454,21168134,21233667,21626886,21954563,22413318,22478850,26148865,27721730,28114950,28508174,28770310,29229058,30081026,30277634,30867458,31195138,32112642,33226755,35782659,37552130,38207490,38862849,38928386,39452674,40108034,40632322,41353218,41549825,41877506,42270722,46202899,48365569],"v8runtimeheapinfo":[3801091,19333126,24444934,26148865,32243715,36896770,39714818,40239106,40763394,41156610,48234503],"variables":[6684673,8454146,34471937],"vt_date":[49676289],"v8script":[3735555,17235973,17694725,18087941,18284549,18808837,19202053,19529733,19726341,19857413,19922949,20119557,20512773,20578309,20709381,20774917,21102597,21233669,21299205,21364741,21495810,21757957,21954565,22151173,22544389,22740998,23134213,23330821,23396359,23920645,24051717,24838149,24903685,25886725,26148865,26345477,28442626,30277637,31195141,31260677,32112645,32702467,33226757,37617665,38141953,40173570,40828930,48496647,48758786],"voidresultvalue":[34013185,34996225,35717121,36700165,37027841,38404097,39976961,41287681,42336257,47448065,48627713,48758785,48955393,49020929,49086465,49414145,49610753,49807361],"violation":[26148865,34013185,35782657,37683201,40632321,46202881,48365569,48758785],"views":[25427969,41943041],"violated":[49545217],"vbscrip":[17432577,35520513,49479681],"vbs":[40042497,43712513],"value":[131074,262145,589825,720902,655366,786433,851971,917510,983041,1048577,1245188,1835012,1900546,1966082,2031618,2162692,2228228,2293762,2359298,2424834,2555907,2686980,2621442,2818052,3080196,3407894,3866632,3932162,4128769,4521985,4587521,5373953,5439489,5767169,5832705,6029313,6094849,6160385,6225921,6291458,6356993,6488065,6553604,6619137,6684677,6750209,6815745,6881284,6946819,7012353,7077896,7143425,7208964,7274497,7340033,7405570,7471107,7536641,7733255,7798793,7864321,7929857,7995401,8060934,8126467,8192009,8257546,8323081,8388617,8454149,8519688,8585222,8650753,8716297,8781833,8847361,8912897,9043977,9175049,9240585,9306121,9371649,9437185,9568257,9895945,10027017,10092545,10223617,10289153,10420233,10485767,10551299,10682369,10878977,10944521,11010057,11075585,11141121,11206657,11337729,11403273,11534337,11599873,11665409,11730945,11862019,12058631,12124161,12189697,12255233,12386305,12451841,12517377,12648469,12910593,12976129,13041665,13107201,13172737,13238279,13434881,13565953,13697025,13762569,13959169,14155777,14221314,14286850,14352385,14614529,14876674,15073281,15663105,15728642,15925249,16187394,16384002,16646151,16580609,16711681,16842755,16908290,17235969,17301507,17367041,17432580,17629186,17694721,17760258,17891329,18022401,18087937,18153474,18219010,18284545,18546689,18677761,18808833,18874369,19005443,19070977,19202049,19267585,19333121,19398658,19464193,19529729,19595267,19660801,19726337,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20447233,20512769,20578305,20709377,20774913,20840449,20971521,21102593,21233665,21299201,21364737,21561345,21692417,21757953,21954561,22020097,22151169,22347777,22413313,22478849,22544385,22609921,22740994,22806529,22872068,23003137,23068673,23134209,23199745,23265281,23330817,23396354,23527425,23592961,23724033,23920641,23986178,24051713,24117249,24182786,24248321,24313857,24379393,24444929,24510465,24707073,24772610,24838145,24903681,24969217,25034753,25100289,25165825,25231362,25493505,25755651,25886721,25952257,26345473,26476545,26607618,26869762,27000833,27328514,27459586,27525121,27787266,27852801,27918337,28049410,28311554,28377089,28573697,28639233,28770305,29032449,29163521,29360129,29425665,29622273,29949954,30015492,30146561,30277633,30343169,30474241,30998530,31129602,31195137,31260673,31326210,31391747,31916034,32112641,32309250,32571393,32768002,32833537,32899074,33095681,33226753,33292290,33423362,33554433,33619969,33751042,33816578,33882114,33947649,34013186,34078721,34209793,34340865,34406402,34471938,34537474,34668546,34799620,34865153,34996226,35127298,35258375,35323905,35520514,35586049,35717122,35848196,35913730,36110337,36175874,36241410,36306946,36503553,36634625,36700168,36765698,36831233,36896769,37027842,37093378,37158914,37224449,37289985,37355521,37421058,37486593,37552131,37683202,37748737,37814274,37879810,37945345,38010881,38076419,38207490,38273026,38338562,38404098,38469633,38535170,38600706,38666242,38731778,38862850,38928386,38993921,39059458,39124993,39190531,39256066,39321601,39387137,39452674,39518209,39583745,39649283,39714817,39780354,39911426,40042497,39976962,40108034,40173569,40239105,40304641,40370177,40435715,40501252,40566787,40632322,40697858,40763393,40828929,40894465,41025538,41091073,41156609,41222146,41287682,41353220,41484289,41549826,41615364,41680897,41746434,41811969,41877507,41943042,42074113,42205188,42270721,42336258,42401793,42467329,42532868,42598402,42663937,42729478,42860545,42926081,43057153,43122689,43188225,43253761,43319298,43384833,43581442,43515907,43646977,43712513,43843588,43909122,43974658,44040195,44105729,44171265,44236801,44302337,44367873,44433409,44564481,44695554,44761091,44826626,44892162,44957697,45023234,45088769,45154307,45219842,45285377,45416450,45547521,45613057,45678594,45809666,45940737,46006274,46071812,46268417,46333953,46399489,46465028,46530564,46596117,46661633,46727171,46858242,46923777,47054849,47120386,47251458,47382532,47448066,47513601,47644674,47710210,47775745,47906817,47972354,48037892,48168962,48300054,48365571,48431107,48562177,48627714,48693250,48758786,48824321,48955394,49020933,49086466,49152002,49217540,49283074,49348612,49414146,49479684,49545218,49610754,49676289,49741834,49807362],"v8settings":[26148865,34275331,38862850,41549826,48889863],"vt_cy":[49676289],"valuetask":[3211272,11599885,12517389,15073293,15925261,28966920,45744136,48824322],"visible":[40304641],"valuetype":[3473411,5570563,41680899,47775747],"verifyaccess":[3932161,5046273,5177345,5242881,5701633,6291457,7602177,7667713,23461893,27066373,30670855,47448065,48627713,48955393,49152001,49414145,49545217,49610753,49807361],"v8runtimeflags":[19070982,19464198,20054022,20185094,20447238,20840454,22413318,26148865,28508168,28770310,46202888,47906821],"view":[1966082,2031618,2359298,2424834,10289154,11075586,14942209,17432577,41943042,42598402,43974658,45023234],"versions":[36241409],"vbarray":[49676289],"v8scriptengineflags":[4390916,17629190,17760262,18219014,19398662,22020102,22609926,22806534,23199750,23592966,24117254,24707078,26148865,27721732,27918342,29556744,46202884,48758792,48824325],"values":[2228226,3866626,6881281,8454145,8716289,14221313,14286849,14876673,15728641,16384001,17432578,18153473,21692417,22740993,29360130,30474242,32571394,34013186,34209800,34996226,35258369,35520516,35717122,37027842,37158914,37879810,38404098,38666242,39256066,39976962,40501250,41287682,42336258,42729474,45219842,46465026,47448066,47644673,48168961,48431106,48627714,48758786,48824321,48955394,49086466,49414146,49479681,49610754,49676291,49741826,49807362],"v8cpuprofileflags":[4390913,18022406,21495809,26148865,28639238,29229057,34930689,37421057,39780353,46202881,46399493,48758785],"v8globalflags":[26148865,38862855,44302341],"vie":[1966083,2031619,2359299,2424835,10223618,10878979,11862019,26869762,30736387,31850499,32505859,32964611,41943046,42598406,43974662,45023238,45940737,46333953,46661633],"visual":[2228227,3866627,6160386,6356994,6815746,7012354,11599874,12189698,12517378,12976130,13434882,14352386,15073282,15925250,16711682,40501251,49741827],"vbscriptengine":[5046275,5177347,23003142,23724038,25755651,26214406,26935297,27000838,27394049,27656198,28377094,29425670,31391747,31588359,32178182,32833542,33161223,33488902,37027843,40042499,41287683,43712515,47448065,48955404,49610753,49807372],"void":[851970,4653058,4784130,4915202,5111810,5308418,5505026,8978434,9502722,9633794,9764866,9961474,10158082,10616834,10747906,10878978,12058626,12255234,12451842,12582914,12713986,12910594,13041666,13172738,13238274,13369346,13500418,13565954,13631490,13697026,13828098,13893634,13959170,14024706,14090242,14417922,14548994,14614530,14680066,14745602,14811138,14942210,15204354,15269890,15335426,15400962,15532034,15990786,16056322,16121858,16252930,16515074,16646146,17301506,17432577,18415618,18481154,18743298,18939906,19791874,20381698,20643842,20905986,20971522,21037058,21430274,21561346,21692418,21889026,22282242,23068674,23396354,23461890,23658498,23789570,24510466,24641538,25165826,25362434,26542082,27066370,28442626,29032449,29097986,29163522,29753346,30146562,30212098,30670850,30801922,32309249,32768001,32899073,33292289,33423361,33751041,33816577,33882113,34013185,34406401,34471937,34537473,34799617,34996225,35127297,35258369,35520513,35717121,35913729,36175873,36241409,36700163,36765697,37027841,37093377,37158913,37552129,37683201,37814273,37879809,38076417,38207489,38404097,38666241,38731777,38862849,38928385,39190529,39256065,39452673,39649281,39911425,39976961,40108033,40435713,40566785,40632321,41025537,41222145,41287681,41353217,41549825,41615361,41877505,42008578,42205185,42336257,43515905,44040193,44695553,44761089,44892161,45154305,45678593,45809665,46006273,46071809,46727169,46858241,47120385,47448065,47644673,47972353,48168961,48627713,48758785,48955393,49020929,49086465,49414145,49610753,49807361],"version":[131073,720897,655361,786433,851969,917505,983041,3407878,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4587521,4653057,4718593,4784129,4915201,4980737,5111809,5308417,5373953,5439489,5505025,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077890,7143425,7208961,7274497,7340033,7405570,7471105,7536642,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371650,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485762,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206658,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648454,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660802,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986178,24051713,24117249,24182786,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772610,24838145,24903681,24969217,25034753,25100289,25165825,25362433,25493506,25690114,25755650,25821185,25886721,25952258,26214401,26345473,26476545,26542081,26673154,27000833,27066369,27525121,27656193,27852801,27918337,28114945,28180482,28377089,28442625,28573697,28639233,28770305,29032450,29097985,29163521,29425665,29622273,29753345,30015489,30146561,30212097,30277633,30343169,30670849,30801921,31195137,31260673,31391746,31916034,32112641,32178177,32309249,32768001,32833537,32899073,33095681,33226753,33292289,33423361,33488897,33554433,33619969,33751041,33816577,33882113,33947649,34078721,34209793,34340865,34406401,34471937,34537473,34668545,34799617,34865153,35127297,35258369,35323905,35520513,35586049,35913729,36110337,36175873,36241409,36503553,36634625,36700161,36765697,36831233,36896769,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38207489,38273025,38338561,38469633,38535169,38600705,38666241,38731777,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596104,46661633,46727169,46792705,46858241,46923777,47054849,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300039,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348610,49414145,49479681,49545217,49610753,49676289,49741825,49807361],"vbscript":[23003137,23724034,26214401,26935298,27000833,27394050,27656193,28377089,29425666,31588357,32178177,32833537,33161221,33488897,44630018,48693249,48955398,49676290,49807366],"variants":[49676291],"v8runtimeconstraints":[3538947,17039366,19464198,20054022,20185094,21626886,22216710,22413318,22675462,23199750,24117254,24707078,26148865,27918342,28114950,28508166,29556742,31457283,37158914,37879810,38666242,39256066,41353217,44761090,45154306,46071809,46202886,47579145,48758790],"var":[5767170,6029318,6488070,6553602,6684678,7208962,7274502,7340034,7405571,7733252,7798786,7864322,7929857,8060932,8257537,8388611,8323075,8454149,8519682,9043971,9175043,9240579,9306115,9568259,9895939,10027011,10420227,10485762,10944515,11010051,11206658,11403267],"val":[131073,720897,655361,786433,917505,983041],"v8cpuprofile":[131074,786434,1310722,2949123,3145730,3276802,3473410,18874373,20250626,20643842,22347781,26148868,33030147,34734082,35192834,36634632,37421058,37945346,38469634,38600706,38993922,39321608,39518210,39780354,40435714,41025538,41484290,41811976,42401800,42926088,43384834,43450371,44236802,45875207,46989315,47775746],"variant":[48693249,49676289],"various":[44302337],"virtual":[851969,2228225,3866625,4128770,4521986,4587522,4915202,5373954,5439490,6094849,11730945,12058625,13107201,13631490,13762561,13893633,14155777,14811137,15204353,15400961,15663105,16121857,16187393,16252930,16580610,16646145,16908289,17301505,17891329,18415617,18546689,19005441,19267586,19595265,19660801,21037057,21889025,23986177,24182785,24641537,24772609,24969217,25362433,25493505,25755649,25952257,26542081,28442625,28573697,29032449,29163521,30015489,30670849,30801921,31391745,33554433,34209793,34668545,34799617,34865153,35323905,36503553,37224449,37289985,37355521,37748737,38010881,38076418,38273025,38338561,38535169,39059457,39387137,39583745,40042497,40501249,40697857,41091073,41746433,42663937,42860545,43188225,43253761,43319297,43646978,43712513,43909121,44433409,45088769,45416449,46923777,49676291,49741825]} \ No newline at end of file +{"valid":[8912897,9109505,9961473,15073281,27852801],"v8runtimeviolationpolicy":[23920641,37486599,38535175,49152005],"v8cachekind":[4390924,11927564,16711686,17039366,17104902,17235975,17301511,17694726,17891334,18022406,18546695,19005447,19333126,19529734,19988487,20119559,20185095,20250630,20512775,20578310,21168135,21430279,21495815,21626886,22347783,22740998,23920641,26738694,27787270,27918342,28770310,44040204,44761093,47513612],"variable":[2883585,9895945,10223617,30539777,31260673,31457281,33357825,34078721,36438017,36634625,38010881,39845889,41615361,42926081,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"vt_dispatch":[41746433,49741825],"vt_array":[41746433],"voidresult":[65540,1835016,12386307,24117251,24903681,25034753,47054849,49283080],"v8scriptengine":[11927555,16973829,17563653,17760261,18415621,18612229,18677762,18743298,18939906,19202053,19267587,19333122,19398658,19464194,19529730,19726338,19791874,19857410,19922950,20185091,20250626,20316162,20381702,20447234,20512771,20578306,20643846,20774918,20840454,21037062,21102595,21168131,21233670,21430275,21495811,21626882,21757958,21823490,22085634,22151170,22282242,22347779,22544390,22609922,22740994,23068675,23789570,23920641,26345474,26411010,26869774,27197442,27787266,28770306,29229058,31457283,37093378,37224449,37748738,37814273,38535170,39190530,39321602,39387142,39976962,45613062,46399494,47185922,47513620,47972354,48234498,48496643,48693250,48955394,49152001,49217538,49414145],"variabl":[9306113],"v8runtime":[4390915,16056322,16121858,16187394,16318466,16384002,16580610,16711682,16777218,16908290,16973826,17039362,17104898,17170434,17235971,17301507,17367042,17563650,17629190,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153478,18219014,18284550,18415618,18481158,18546691,18612226,18808838,18874374,19005443,19070982,19136514,19202050,19595270,19988483,20054022,20119555,23920641,26738690,27262978,27918338,28573698,29622286,30146563,36831234,37027842,37224449,37486594,37814273,44040211,46071810,46333954,46530566,46661634,47120386,47448070,48037890,48627714,49152001],"v8runtimeheapinfo":[2490371,17170438,21823494,23920641,31326211,36700162,37617666,38273026,38797314,46006274,46596098,46989314,49086471],"variables":[9306113,9895938,36438017],"vt_date":[41746433],"v8script":[2621443,11927554,16187397,16384005,16711685,16777221,16908293,17039365,17104901,17235973,17301509,17694725,17956869,17891333,18022405,18546693,18743301,18939909,19005445,19136517,19333125,19398661,19464197,19529733,19726341,19857414,19988485,20119557,20185093,20250629,20447239,20512773,20578309,21168133,21430277,21495813,21626885,22151173,22347781,22740997,23199746,23920641,26411009,27197441,29687811,40370178,40763394,41091079,47513602],"voidresultvalue":[30539777,31260673,31457281,33357825,34078721,36634625,38010881,39845889,43974657,47054853,47513601,49283073,49348609,49414145,49676289,49807361,49938433,50003969],"violation":[23920641,30146561,31457281,37486593,38535169,44040193,47513601,49152001],"views":[25624577,44433409],"violated":[49872897],"vbscrip":[25034753,33751041,43778049],"vbs":[37879809,43384833],"value":[65537,196609,458753,524294,720897,786435,983044,1310722,1376260,1441794,1507330,1638402,1703940,1769476,1835014,1900547,2031618,2228225,2686978,2752514,3211268,2883605,3342342,3604482,3801092,3866625,3932161,4128769,4194305,4259841,4325380,4587524,4784129,4849665,4915201,5046273,5111809,5177345,5242884,5308417,5439489,5505025,5570563,5636106,5701634,5767169,5832705,5898241,5963777,6094852,6160387,6225922,6291465,6356993,6488065,6619137,6684681,6750217,6815753,6881281,7077897,7208969,7274502,7340041,7405576,7471112,7536649,7602177,7864321,7995401,8126473,8388609,8585217,8650753,8912897,8978441,9043970,9109505,9240577,9306117,9371649,9437185,9568265,9633793,9764865,9830401,9895941,9961475,10027017,10092545,10158088,10223638,10354689,10289153,10420233,10485761,10616833,10747905,10944513,11010049,11075585,11141121,11403271,11468801,11534337,11599873,11665409,11796481,11862025,12124161,12189697,12648449,12713985,12779521,12976130,13107201,13172737,13303810,13369345,13434881,13500418,13565953,13631497,13893638,14024706,14090247,14417921,14614537,14876675,14942217,15073283,15138817,15400961,15925250,15990787,16121857,16187393,16252929,16318465,16384001,16711681,16777217,16842754,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17498119,17563650,17629185,17694721,17760258,17956865,17891329,18022401,18087937,18153473,18284545,18350083,18415618,18546689,18612226,18743297,18874369,18939905,19005441,19136513,19202049,19333121,19398657,19464193,19529729,19595265,19726337,19857410,19988481,20054017,20119553,20185089,20250625,20381697,20447234,20512769,20643841,20578305,20774913,20971521,21037057,21102594,21168129,21233665,21430273,21495809,21561346,21626881,21692417,21757953,21823489,21889028,22020097,22151169,22282241,22347777,22478849,22544385,22609921,22740993,22806529,22937601,23003137,23265281,23330817,23396353,23461891,23592961,23658497,23855105,24051714,24117249,24313859,24510465,24641537,24838151,24969218,24903682,25034756,25427969,25755650,26083330,26148866,26279938,26542082,27525122,27656194,27852801,28049409,28835844,28901377,28966914,29425665,29556738,29753345,29818881,29884417,30212098,30277634,30343172,30474241,30605319,30539779,30867459,30932994,30998529,31064065,31129602,31260675,31391745,31457283,31522817,31588353,31653889,31719426,31784961,31850497,31981569,32047105,32112641,32178177,32309250,32374786,32440322,32505857,32571393,32636929,32702466,32768001,32833537,32899073,32964609,33095682,33161217,33226754,33292289,33357827,33423362,33488897,33554434,33619970,33685505,33751042,33816578,33882114,33947650,34013185,34078723,34144258,34209793,34275330,34340866,34406402,34471937,34603015,34668546,34734083,34799617,34865153,34930689,34996225,35061762,35127297,35192833,35258370,35323905,35389441,35454978,35520513,35586050,35651586,35717122,35782659,35848193,35913730,35979266,36044801,36110338,36175873,36306948,36372481,36438018,36503555,36569089,36634627,36700161,36765698,36831234,36896769,36962308,37027844,37093379,37158913,37224450,37355521,37421058,37486594,37552129,37617665,37683202,37748738,37814274,37879809,38010883,38076417,38207489,38273025,38338561,38404098,38535170,38600705,38666241,38731777,38797313,39124994,39190531,39256066,39321602,39452673,39518209,39583745,39649281,39780353,39911425,39845891,39976963,40042498,40108033,40173569,40239105,40304641,40370177,40435714,40501252,40566785,40697858,40763393,40828931,40894465,40960001,41025537,41222148,41287681,41549825,41615382,41680906,41746433,41877505,41943041,42074114,42336260,42401793,42467330,42663938,42860548,42926101,43057156,43122690,43188227,43253764,43384833,43515908,43646978,43712516,43778052,43843585,43909122,43974659,44105732,44171265,44236802,44367876,44433410,44498950,44564482,44695553,44761089,44892162,45088770,45219842,45350914,45481986,45547521,45613057,45678594,45744135,45809665,46006273,46071811,46333955,46137345,46465026,46530561,46596097,46661633,46858241,46989313,47054856,47120386,47185923,47316994,47382529,47448065,47513603,47710210,47775745,47841281,47906819,47972354,48037890,48103426,48168963,48234497,48365569,48431105,48496641,48562177,48627714,48758787,48693249,48889857,48955394,49152003,49217540,49283077,49348611,49414147,49479682,49676291,49741826,49807363,49872898,49938435,50003971],"v8settings":[23920641,31916035,37224450,37814274,49020935],"vt_cy":[41746433],"valuetask":[3080200,9437197,9764877,10616845,13107213,41484296,43319304,48889858],"visible":[42401793],"valuetype":[3014659,6946819,40894467,40960003],"verifyaccess":[2752513,5701633,7798785,8060929,15007745,15335425,20709381,22413319,24248325,24707073,34537473,43974657,49348609,49479681,49676289,49807361,49872897,49938433,50003969],"v8runtimeflags":[17629190,18153478,18284550,18874374,19595270,20054022,23920641,29622280,44040200,45547525,46530566,47448070],"view":[1507330,1638402,2031618,3604482,10485762,11141122,25034753,40697858,44433410,45088770,46792705,47710210],"versions":[34668545],"vbarray":[41746433],"v8scriptengineflags":[4390916,17563654,17760262,18415622,18612230,20381702,20643846,20774918,21037062,21233670,21757958,22544390,23920641,26869768,28573700,44040196,45613062,47513608,48889861],"values":[1703938,6094849,7077889,9895937,10158082,12976129,13303809,13500417,14024705,19857409,25034754,26083329,27656193,27852801,28049410,29425666,29818882,30539778,31260674,31457282,33357826,33751044,34078722,34406401,36634626,38010882,39845890,41680898,41746435,42336258,43515906,43778049,43909122,43974658,44236802,44498946,44564482,44695560,44892162,45350914,45744129,47513602,47906818,48103425,48889857,49348610,49414146,49676290,49807362,49938434,50003970],"v8cpuprofileflags":[4390913,11927553,16121862,23920641,26345473,27262977,35454977,35717121,44040193,47513601,47775749,48693254],"v8globalflags":[23920641,37814279,41943045],"vie":[1507331,1638403,2031619,3604483,8912899,9961475,11468802,28180483,28704771,29360131,30408707,32178177,32636929,33292289,40697862,42467330,44433414,45088774,47710214],"visual":[1703939,4849666,5177346,5308418,5505026,9371650,9437186,9633794,9764866,10092546,10158083,10354690,10616834,12648450,13107202,41680899,43515907],"vbscriptengine":[15007747,15335427,21299206,22020102,22478854,22675462,23461891,23658502,24313859,24772609,25231361,26935303,27721735,30801926,31260675,31588358,32243718,32899078,34013190,36634627,37879811,43384835,43974668,49348609,49938444,50003969],"void":[786434,3670018,3997698,4718594,4980738,6553602,7012354,7733250,7929858,8323074,8781826,8847362,8912898,9109506,9175042,9699330,10551298,11403266,11534338,11730946,11796482,12058626,12124162,12189698,12255234,12320770,12451842,12582914,12713986,12779522,12845058,12910594,13041666,13172738,13238274,13434882,13697026,13828098,14221314,14548994,15663106,15728642,16056322,16449538,16580610,17367042,17498114,17825794,18350082,18677762,19267586,19791874,20316162,20447234,20709378,20971522,21364738,21954562,22085634,22413314,22872066,23068674,23134210,23199746,23527426,23789570,24117249,24248322,24444930,24576002,25034753,25427970,25690114,27852802,28639234,29753346,29884418,30605314,30539777,30867457,30932993,31129601,31195138,31260673,31457281,31719425,32374785,32440321,32702465,33095681,33357825,33423361,33554433,33619969,33751041,33816577,33947649,34078721,34144257,34406401,34603009,34668545,34734081,35258369,35586049,35782657,35913729,36110337,36306945,36438017,36503553,36634625,36765697,36831233,36962305,37027841,37093377,37224449,37289986,37355522,37421057,37486593,37748737,37814273,38010881,38141954,38338562,38404097,38535169,38862850,39059458,39190529,39256065,39845889,39976961,40042497,40435713,40828929,43188225,43712513,43909121,43974657,44564481,44892161,45350913,45678593,45744129,45875202,46071809,46137346,46333953,46465025,46792706,47054851,47120385,47185921,47251458,47316993,47513601,47579138,47972353,48037889,48103425,48300034,48627713,49217537,49283073,49348609,49414145,49676289,49807361,49938433,50003969],"version":[524289,720897,786433,1441793,1835009,2228225,2883590,3342337,3407873,3473409,3538945,3670017,3866625,3932161,3997697,4128769,4194305,4259841,4456449,4521985,4587521,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6291457,6356993,6488065,6553601,6619138,6684673,6750209,6815745,6881281,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471106,7536641,7602177,7667713,7733249,7864322,7929857,7995393,8126465,8192001,8323073,8388609,8454145,8519681,8585217,8650753,8781825,8847361,8912897,8978433,9043970,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10223622,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11993089,12058625,12124161,12189697,12255233,12320769,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252930,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102594,21168129,21233665,21299201,21364737,21430273,21495809,21561346,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003138,23068673,23134209,23199745,23265281,23330817,23396354,23461890,23527425,23592961,23658497,23789569,23855105,23986177,24117250,24182786,24248321,24313858,24444929,24510466,24576001,24641537,24838146,24903682,25034753,25296897,25427969,25690113,25821185,26083329,26476545,27656193,27852801,28639233,28901377,29753345,29884417,30343169,30474241,30605313,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31391745,31522817,31588353,31653889,31719425,31784961,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34144257,34209793,34275329,34340865,34406401,34471937,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36306945,36372481,36438017,36503553,36569089,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,38076417,38141953,38207489,38273025,38338561,38404097,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41222145,41287681,41353218,41418753,41484289,41549825,41615367,41680897,41746433,41877505,41943041,42074113,42139649,42270721,42336257,42401793,42598401,42795009,42860545,42926088,43057153,43122689,43188225,43253762,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630018,44695553,44761089,44892161,44957697,45023233,45088769,45154305,45219841,45350913,45416449,45481986,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46333953,46399489,46465025,46530561,46596097,46661633,46792705,46858241,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"vbscript":[21299201,22020097,22478850,22675457,23658497,24772610,25231362,26935301,27721733,30801921,31588353,32243713,32899073,34013186,37945346,41746434,43974662,49741825,49938438],"variants":[41746435],"v8runtimeconstraints":[2424835,15597574,18153478,18808838,18874374,19070982,19922950,20643846,20840454,21037062,21757958,22544390,23920641,26869766,29622278,30670851,37027841,40828930,43188226,43909122,44040198,44564482,44892162,44957705,45350914,46530566,47448070,47513606,49217537],"var":[4587522,5046278,5242882,5439494,5636097,5767169,5898242,5963778,6291458,6750211,6815747,7208963,7340035,7405570,7536643,7864322,8126467,8650754,8585222,9043971,9306118,9568259,9895941,10027011,11862019,13369347,13631491,13893636,14090244,14614531,14942211,24838146],"val":[524289,720897,1441793,1835009,2228225,3342337],"v8cpuprofile":[131074,720898,1441794,2097155,2293762,2555906,6946818,15400962,15663106,18087941,22609925,23920644,29294594,30081027,30736386,35323906,35454978,35651586,35717122,36044802,36110338,36372488,36503554,36569096,36896770,37552136,38207496,38731784,39780354,40304642,40960002,41418755,41549826,41877506,45416455,48824323],"variant":[41746433,49741825],"various":[41943041],"virtual":[786433,1703937,3866626,3932162,4128770,4194306,4915201,6553602,9240578,10158081,10420225,10551297,11075585,12845057,13238274,13565953,14221313,14417922,14548994,15138818,15925249,16252929,16842753,17367041,17498113,18350081,20316161,20971521,21102593,21561345,21889025,21954561,22085633,22282241,22413313,22872065,23003137,23068673,23199745,23396353,23461889,23527425,23592961,24117249,24313857,30605313,30867458,31064066,31784961,31981569,32047105,32571393,32964609,33226753,33882113,34275329,34340865,34799617,34996225,35061761,35520513,35848193,36175873,37158913,37683201,37879809,38666241,39124993,39321601,39649281,40566785,41025537,41287681,41680897,41746435,43384833,43515905,43712513,44171265,44695553,45219841,45481985,45875201,46858241,47382529,47841281,48168961,48300033,48365569,48496641,48562177,48758785,48955393]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_119.json b/docs/Reference/fti/FTI_119.json index 326b66b10..313967e23 100644 --- a/docs/Reference/fti/FTI_119.json +++ b/docs/Reference/fti/FTI_119.json @@ -1 +1 @@ -{"wrapping":[8716289,34013185,34996225,35520513,35717121,37027841,38404097,39976961,41287681,42336257,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"writer":[2949121,20643847,45875201],"waiting":[21495809,29097985,48758785],"windows":[327681,917508,983044,1048577,3604481,3932161,4849665,5046273,5177345,5242881,5636097,5701633,6291457,7602177,7667713,11599873,12517377,14942209,15073281,15925249,17432577,22937604,22872068,23003142,23265288,23461892,23527429,23724038,23789572,23855108,24182788,24248324,24313860,24379397,24576005,24641540,24772612,25034757,25100294,25362436,25493508,25755652,25821189,25952260,26214404,26476550,26542084,26935303,27000837,27066372,27394053,27525126,27656196,28377093,28573700,29163524,29425669,29622276,29949953,30015492,30146564,30343175,30539777,30670852,30998529,31391748,31588353,32047105,32178181,32636929,32833542,33161217,33488901,35717121,37027841,38404097,38797313,39387140,40042500,39976961,40304641,40697860,40894465,41222148,41287681,41746436,42074116,42336257,42467332,43253764,43712516,44367876,44630022,47448074,47841285,48103429,48627720,48693254,48955400,49086465,49152005,49414150,49545222,49610763,49676293,49807366],"writeruntimeheapsnapshot":[21430277,21495809,48758785],"written":[36700161,49020929],"webclientt":[9568258],"writes":[2949121,4390913,19791873,20643841,21430273,21495809,45875201,46202881,48758785],"writejson":[2949121,20643845,45875201],"wrapped":[38928385,44695553],"web":[9568258,33357825,39124993],"writeheapsnapshot":[4390913,19791877,46202881],"webclient":[9568260],"write":[2359297,8454145,11534341,19791873,20643841,21430273,45023233],"windowsscriptengineflags":[23003142,23265285,23527430,23724038,24379398,25034758,25100294,26476550,26935297,27000838,27525126,28377094,29425670,30343173,30539779,31588355,32636931,32833542,33161219,48627715,48955395,49414147,49676293,49807363],"widget":[7929857],"writebytes":[1900545,1966081,2031617,2359297,2424833,11075589,12124165,41943041,42598401,43974657,45023233,47710209],"weight":[7929857],"writeline":[7864321,8060929,9568259],"windowsscriptengine":[5046278,5177350,5242886,5701638,7602179,7667721,23265285,24313858,24641538,25362434,25952259,26542082,26935297,27066370,27394049,30343173,32047106,35717124,37027844,38404099,39976965,40697858,41222146,41287685,41746434,42074114,42336263,44367874,47448073,47841281,48627729,48758785,48955409,49086465,49414159,49610775,49807375],"www":[7274497],"writable":[11796481,12320769,12845057,13303809,29491202,48431106,48562177],"wait":[48824321],"window":[38797313,42467329,47841281],"work":[44302338],"way":[6029313,17432577],"wrapnullresult":[8716290,35520513,49479681]} \ No newline at end of file +{"wrapping":[7077889,30539777,31260673,31457281,33357825,33751041,34078721,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"writer":[2097153,15663111,45416449],"waiting":[11927553,18677761,47513601],"windows":[196609,327681,2228228,2752513,3342340,3276801,3735553,5701633,7798785,8060929,8716289,9437185,9764865,10616833,13107201,15007745,15335425,20709380,20905989,20971524,21299205,21561348,21692422,21889028,21954564,22020102,22216709,22413316,22478854,22675461,22806534,22872068,22937606,23003140,23134212,23265285,23330820,23396356,23461892,23527428,23592964,23658502,23855108,23986180,24248324,24313860,24707073,24772615,25034753,25231365,26935297,27066369,27459585,27525121,27721729,28377089,28901380,28966913,29884420,30343172,30801924,31260673,31588357,32243716,32899077,33357825,34013189,34078721,34537473,35389447,36634625,37158916,37683204,37879812,37945350,38010881,38076420,38404100,38469633,38666244,39124996,39452677,39518212,39911432,39845889,40108033,40239109,41746437,42401793,43384836,43843588,43974662,45481988,45940740,46792705,49348618,49414145,49479685,49545221,49610757,49676296,49741830,49807366,49872902,49938440,50003979],"writeruntimeheapsnapshot":[11927553,23789573,47513601],"written":[47054849,49283073],"webclientt":[13369346],"writes":[2097153,4390913,11927553,15663105,17825793,23789569,44040193,45416449,47513601],"writejson":[2097153,15663109,45416449],"wrapped":[47972353,48037889],"web":[13369346,27983873,45809665],"writeheapsnapshot":[4390913,17825797,44040193],"webclient":[13369348],"write":[3604481,9895937,10747909,15663105,17825793,23789569,40697857],"windowsscriptengineflags":[21692422,22020102,22478854,22806534,22937606,23265286,23658502,24772609,26935299,27066371,27721731,28377091,31588358,32899078,34013190,35389445,39452678,39911429,40239110,41746437,43974659,49676291,49807363,49938435],"widget":[5767169],"writebytes":[1310721,1507329,1638401,2031617,3604481,11010053,11141125,40697857,43646977,44433409,45088769,47710209],"weight":[5767169],"writeline":[5898241,13369347,13893633],"windowsscriptengine":[7798793,8060934,15007750,15335430,21954562,22872066,23003139,23330818,23527426,24248322,24707078,24772609,25231361,27459586,31260677,33357828,34078727,34537475,35389445,36634628,37683202,38010883,38404098,39124994,39518210,39911429,39845893,43843586,43974671,47513601,49348617,49414145,49545217,49676305,49807375,49938449,50003991],"www":[5439489],"writable":[10878977,11272193,13762561,14155777,25100290,47906818,48431105],"wait":[48889857],"window":[38076417,38469633,49545217],"work":[41943042],"way":[8585217,25034753],"wrapnullresult":[7077890,33751041,34603009,43778049]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_121.json b/docs/Reference/fti/FTI_121.json index 1a607277d..bd9c7c99a 100644 --- a/docs/Reference/fti/FTI_121.json +++ b/docs/Reference/fti/FTI_121.json @@ -1 +1 @@ -{"yield":[6029313,6488065,7143425,13172737,13828097,14548993,15335425,16056321,23068673,23658497,24510465,25165825],"yields":[48824321],"young":[31457281,39256065,47579137]} \ No newline at end of file +{"yield":[5046273,6881281,8585217,12320769,12582913,12779521,13041665,13172737,13434881,24576001,25690113,29753345],"yields":[48889857],"young":[30670849,44957697,45350913]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_122.json b/docs/Reference/fti/FTI_122.json index fa2308db2..29f0e0865 100644 --- a/docs/Reference/fti/FTI_122.json +++ b/docs/Reference/fti/FTI_122.json @@ -1 +1 @@ -{"zero":[31129601,37421057,39780353,44171265,47251457]} \ No newline at end of file +{"zero":[30212097,30998529,35454977,35717121,43122689]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_97.json b/docs/Reference/fti/FTI_97.json index 7604a746a..235710f5b 100644 --- a/docs/Reference/fti/FTI_97.json +++ b/docs/Reference/fti/FTI_97.json @@ -1 +1 @@ -{"addsystemdocument":[1572868,4653062,4784134,5111814,5505030,35979269,45350916],"accordance":[41353217,46071809],"associated":[2555905,4259844,4390915,5046276,5177348,5242884,5701636,7602180,7667716,14942209,15532033,17432577,18153473,20709377,21102593,21233665,21495816,21757953,21954561,22544385,24838145,27262978,28246018,30081027,31129601,32702465,33947649,34013185,34340865,34865153,34996225,35651588,35717122,35782657,35848194,36306945,37027842,37355521,37617666,38141954,38404098,39976963,40828929,41287683,42074113,42270721,42336259,44367873,46202884,46465025,47251457,47448070,48496641,48627719,48758793,48955399,49086469,49217538,49283073,49414150,49610759,49807366],"activex":[4259856,5046288,5177360,5242896,5701648,5767170,6619137,7602192,7667728,7864322,9371649,12451841,12582913,12648451,12910593,13041665,13369345,13500417,13565953,13959169,14024705,14090241,14614529,14680065,20381697,20905985,20971521,21495824,21561345,26411016,30408712,46596099,47448080,48627728,48758800,48955408,49086480,49414160,49610768,49807376],"addcomtype":[4259848,5046280,5177352,5242888,5701640,7602184,7667720,12910598,13565958,13959174,14024710,14614534,14680070,20381702,20905990,21495816,26411017,47448072,48627720,48758792,48955400,49086472,49414152,49610760,49807368],"allows":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407874,3473409,3538945,3670017,3735553,3801089,3866625,4390913,5570561,5636097,6291457,9568257,12648450,26935297,31916033,32768001,34013187,34668545,34996227,35717123,37027843,38273025,38338562,38404099,39845889,39976963,40501249,40697858,41287683,41418753,41680897,41746433,42139649,42336259,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,44892161,45219841,45350913,45416450,45481985,45875201,46202881,46465025,46530561,46596099,46989313,47316993,47382529,47448067,47579137,47775745,47841281,48037889,48234497,48300034,48431105,48496641,48627715,48693249,48758787,48955395,49020929,49086467,49217537,49348609,49414147,49545217,49610755,49741825,49807363],"attempt":[45678593,47644673],"attributetargets":[42532896,43843588,46530580,47382548,48037920,49348624],"ancestors":[4128769],"arrayt":[6684674,8060930],"automatic":[34013186,34471937,34996225,35717121,35782657,37027841,37552129,38404097,39976961,41287681,42336257,44040193,46202881,46399489,47448065,48627713,48758786,48824323,48955393,49086465,49414145,49610753,49807361],"affects":[39190529,39649281,44892161,45678593,48562177,49676289],"attributes":[1114113,4128774,31916033,35061761,35127297,40894466,41680897,45481985],"addhosttype":[4259848,5046280,5177352,5242888,5701640,7602184,7667720,13172742,13828102,14548998,15335430,16056326,21495816,23068678,24510470,25165830,27590665,47448072,48627720,48758792,48955400,49086472,49414152,49610760,49807368],"awaitdebuggerandpauseonstart":[48824321],"attached":[14942209,15532033,16384001,16515073,17432577,18153473],"api":[15138817,37158913,39256065,40828929,41549825],"addcomobject":[4259848,5046280,5177352,5242888,5701640,7602184,7667720,12451846,12582918,13041670,13369350,13500422,14090246,20971526,21495816,21561350,30408713,47448072,48627720,48758792,48955400,49086472,49414152,49610760,49807368],"attributeusageattribute":[42532868,43843588,46530564,47382532,48037892,49348612],"allocate":[31457281,45154305,47579137],"auxiliary":[32768001,36372481,40960001],"accepted":[18284546,18808834,19857410,20774914,21233666,21364738,22544386,23134210,24838146,24903682,31195138,33226754],"asconstructor":[16187397],"arrtype":[6750213,12648449,46596097],"await":[34275329,41549832,44302337,48889857],"automatically":[1,15204353,16384001,16515073,43843585,44761089,48758785,48824321],"avoid":[9764865],"auxiliarysearchpath":[32768005,36372481,40960001],"appears":[48693249],"accept":[21692417],"additionally":[48365569],"algorithm":[32768001,35913729,40566785,46858241,47382529,48037889,48562177],"anonymous":[34013185,34996225,35717121,36241412,37027841,38404097,39976961,41287681,42336257,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"add":[851969,2293761,2555906,2621441,5767171,8388610,8323074,8454146,8978433,9043970,9175042,9240578,9306114,9502722,9633794,9699329,9830401,9895938,9961473,10027010,10158081,10420226,10616833,10747906,10944514,11010050,11403266,12058632,42729473,44630017,46465026,48431105,48824321],"allowreflection":[10485761,11206657,34013185,34996225,35717121,37027841,38404097,39976961,41287681,42336257,45678597,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"attempting":[48627713,48955393,49610753],"abc":[5767169],"added":[196609,458753,851969,4653057,42729473,46465025,48431105],"ascii":[19791873,21430273],"actions":[2228225,3866625,40501249,49741825],"asynchronous":[6094849,11599873,12189697,12517377,12976129,13434881,14352385,15073281,15925249,16711681,48365569],"absolute":[4587521,5373953,6094849],"addrestrictedhostobject":[4259842,5046274,5177346,5242882,5701634,7602178,7667714,13697030,14417926,21495810,32440323,47448066,48627714,48758786,48955394,49086466,49414146,49610754,49807362],"access":[1900546,1966082,2031618,2228225,2359298,2424834,3866625,3932162,4194311,4653057,4784129,4849665,5046274,5111809,5177346,5242882,5373953,5505025,5701634,6094849,6291458,6553601,7208961,7602178,7667714,8454145,8585217,10551298,10878978,11862018,12255234,13697025,14417921,15794177,16449544,16973832,17498113,17432577,17563655,17956871,18612231,21692417,23461889,24248321,24313858,25427969,26148865,26869762,26935297,27066369,27328514,27394049,28573698,28901377,29622274,30605316,30670849,30932995,31653890,31719425,31784962,31916038,31981570,32309249,32374785,33685506,34013190,34144257,34537473,34668545,34996230,35717126,36044801,36110342,36241411,36503553,36765697,37027846,38273025,38338563,38404102,38731777,39124993,39976966,40304642,40501249,40566785,40697859,41287686,41746433,41943042,42205185,42336262,42532867,42598402,42729473,43057158,43188225,43974658,44498945,44630020,44892161,45023234,45350914,45416451,46465026,46530563,46858241,47382531,47316993,47448072,47710210,48037891,48103425,48168961,48562180,48627720,48758790,48824322,48955400,49086470,49152002,49217537,49348615,49414152,49545218,49610760,49676290,49741825,49807368],"arraybuffer":[1900549,10551299,11337730,11665410,12124162,12255235,25427970,27328514,30736387,31522817,31457281,31850499,32505859,32964611,41353217,41943044,42598403,43974659,45023235,45154307,45940742,46071809,46333953,47054849,47579137,47710215],"adds":[1572868,2293768,2555906,2621441,4653057,4784129,5111809,5505025,7929857,8388609,8323073,8978433,9043969,9175041,9240577,9306113,9502721,9633793,9895937,9961473,10027009,10158081,10420225,10616833,10747905,10944513,11010049,11403265,12058625,25624579,28704772,35979268,42729480,45350916,46465026,48431105],"args":[7274501,7405573,8650757,9371653,16187397,16842757,16908293,17301510,19595269,42205190],"addtype":[2293763,9502726,10158086,10616838,25624580,42729475],"accommodate":[45350913],"assemblies":[6553605,7208964,9699331,9830407,10354695,10813443,12648450,26279942,32768001,36438018,42729479,46530561,46596098,47382529],"approach":[35913729],"assemblyname":[6488069,9502725,9961477,10747909,13828101,24510469],"allocated":[41353217,45154305,46071809],"async":[41549825],"augment":[32768001],"additional":[17629185,17760257,18219009,19398657,31916033,35848193,41353217,46071809,49217537,49348609],"assemblyqualifiedname":[10485761,11206657],"array":[1900547,1966083,2031619,2359304,2424835,2555906,3407874,4128770,6029313,6488067,6553603,6684678,6750212,6946817,7208963,7274497,7340039,7405569,7733256,7995393,8060936,8650753,8847361,8912900,9371649,9502721,9699329,9830401,10158081,10223619,10289155,10354689,10682371,10813441,11075587,11337731,11534341,11665411,12124163,12648450,13828097,14548993,16187393,16842753,16908289,17301508,17694721,18284545,18808833,19202049,19595265,19726337,19857409,19988485,20512769,20774913,21102593,21233665,21299201,21364737,21692418,21954561,22151169,22544385,23134209,23658497,23920641,24510465,24838145,24903681,25165825,25427969,25886721,26083330,30277633,31195137,32112641,33226753,34013185,34996225,35717121,37027841,38404097,39976961,41287681,41943043,42205187,42336257,42598403,43974659,45023242,46465026,46596098,47448065,47710211,47972354,48300034,48627713,48758785,48955393,49086465,49414145,49610753,49676289,49807361],"accelerated":[4390918,17694722,18284545,18808833,19202050,19726338,19857409,20512770,20774913,21102594,21233665,21299202,21364737,21495814,21954562,22151170,22544385,23134209,23920642,24838145,24903681,25886722,30081027,30277634,30867459,31195137,32112642,33226753,35651587,36569091,46202886,48758790],"asynchronously":[1507329,6094849,42991617],"analysis":[9568257],"addhosttypes":[4259841,5046273,5177345,5242881,5701633,7602177,7667713,21495809,23658501,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"alternative":[32309249],"appear":[21692417,39190529],"active":[4390913,18481153,21495809,30212097,37552129,44040193,46202881,48758785],"affinity":[23003137,23265281,23724033,24576001,25100289,25821185,26476545,27394049,27525121,32178177,32833537,33488897,47448065,48627713,48758785,48955393,49152001,49414145,49545218,49610753,49807361],"arrays":[21692418,25427969,43974657,45023233,49676290],"attempts":[23986177,24182785,24772609,25755649,31391745,32309249,34537473,35913729],"ambiguous":[14221313,14286849,14745601,14876673,14942209,15269889,15532033,15728641,15990785,16384001,16515073,17432577,18153473,18743297],"associate":[15138817,15597569,17760257,18677761,19070977,19398657,20054017,21168129,21626881,22085633,22413313,22675457,22806529,23003137,23199745,23265281,23592961,23724033,23855105,24379393,25034753,25821185,26476545,27525121,27656193,27918337,28377089,28770305,29425665,30343169,33488897],"accessflags":[36044801,38731781,45350913],"attribute":[1245188,1835012,2162692,2686980,2818052,3080196,4128773,29687810,30932994,31653890,31784962,31916033,31981570,33292289,33685506,36372481,40894465,40960001,42532876,43843596,45481985,46530572,47382537,48037897,49348616],"addassembly":[2293764,8978438,9633798,9961478,10747910,28704773,42729476],"application":[15204353,17694721,19202049,19726337,20512769,21102593,21299201,21954561,22151169,23920641,25886721,30277633,32112641,35848193,44761089,48824321,49217537],"argcount":[6881286,7733254,8060934],"accessible":[6356993,7012353,13697025,14417921,21692418,36241409,44892161,46465025,48824321],"ability":[43843585],"ambiguity":[48824321],"arra":[2359297,10682370,30736385,32964609,43974657,45023235,47513601],"accelerate":[33882113],"addhostobject":[4259842,5046274,5177346,5242882,5701634,5767169,6029314,6488066,6553601,6684673,7143425,7208961,7274497,7340034,7405570,7602178,7667714,7733249,7798785,7864321,7929857,8060929,8257537,8388609,8323073,8454145,8519681,8912897,9043969,9175041,9240577,9306113,9371649,9568257,9895937,10027009,10420225,10485761,10944513,11010049,11206657,11403265,12451841,12582913,12910593,13041665,13172737,13369345,13500417,13565953,13697025,13828097,13959169,14024705,14090241,14417921,14548993,14614529,14680065,15335425,16056321,20381697,20905985,20971521,21495810,21561345,21692422,22282247,23068673,23658497,24510465,25165825,26738691,42729473,46465025,47448066,48300033,48627714,48758786,48955394,49086466,49414146,49610754,49807362],"able":[46465025],"acme":[6553603,7208963,42729475],"activities":[44302337],"accesscontext":[34013185,34996225,35717121,36241409,37027841,38404097,39976961,41287681,42336257,44892165,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"assumes":[5767169,6029313,6488065,6553601,6684673,7208961,7274497,7340033,7405569,7733249,7798785,7864321,7929857,8060929,8257537,8323073,8388609,8454145,8519681,9043969,9175041,9240577,9306113,9568257,9895937,10027009,10420225,10485761,10944513,11010049,11206657,11403265],"argument":[3407878,5767169,6684673,7077890,7405570,7536643,7864321,8454146,9371650,10485762,11206658,12451841,12582913,12648454,12910593,13041665,13369345,13565953,18874369,20381697,20905985,21692418,22347777,23265281,23724033,25034753,25690114,26673154,27525121,28180482,29425665,30343169,46596102,48300038],"assumed":[37158913,37879809,38666241,39256065],"affect":[49676289],"assembly":[131073,720897,655361,786433,851969,917505,983041,2293769,3997697,4063233,4128769,4194305,4259842,4325377,4456449,4521985,4587521,4653057,4718593,4784129,4915201,4980737,5046274,5111809,5177346,5242882,5308417,5373953,5439489,5505025,5701634,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488067,6553602,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208962,7274497,7340033,7405569,7471105,7536641,7602178,7667714,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978446,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502723,9568257,9633806,9699329,9764865,9830407,9895937,9961476,10027009,10092545,10158081,10223617,10289153,10354695,10420225,10485762,10551297,10616833,10682369,10747908,10813441,10878977,10944513,11010049,11075585,11141121,11206658,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828099,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495810,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510467,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25296897,25362433,25493505,25624577,25755649,25821185,25886721,25952257,26214401,26279938,26345473,26476545,26542081,27000833,27066369,27525121,27590658,27656193,27852801,27918337,28114945,28377089,28442625,28573697,28639233,28704776,28770305,29032449,29097985,29163521,29425665,29622273,29753345,30015489,30146561,30212097,30277633,30343169,30670849,30801921,31195137,31260673,31391745,32112641,32178177,32309249,32768001,32833537,32899073,33095681,33226753,33292289,33423361,33488897,33554433,33619969,33751041,33816577,33882117,33947649,34078721,34209793,34340865,34406401,34471937,34537473,34668545,34799617,34865153,35127297,35258369,35323905,35520513,35586049,35913729,36110337,36175873,36241410,36372481,36503553,36634625,36700161,36765697,36831233,36896769,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38207489,38273025,38338561,38469633,38535169,38600705,38666241,38731777,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960002,41025537,41091073,41156609,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42401793,42467329,42532865,42598401,42663937,42729485,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530565,46596098,46661633,46727169,46792705,46858241,46923777,47054849,46989313,47120385,47185921,47251457,47316993,47382533,47448067,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627715,48693249,48758787,48824321,48889857,48955395,49020929,49086467,49152001,49217537,49283073,49348609,49414147,49479681,49545217,49610755,49676289,49741825,49807363],"applies":[7077889,9371649,10485761,34537473,40304641],"applied":[43843585],"assemblynames":[6553605,7208965,9699333,10813445],"action":[1900545,1966081,2031617,2359297,2424833,3932161,6291457,6684673,10878987,12255243,26869761,27328513,29163535,29949953,30146571,30670849,30998529,41943041,42598401,43974657,45023233,47710209,49152001,49545217],"accelerating":[44302337,45547522],"allowing":[34471937],"advantage":[23396353],"assigning":[6684673,37552129,44040193],"abstractclassattribute":[39845889,40501249,40960001,41418753,42795009,42991617,45744129,46137345,47185921,47316993,47448065,48496641,48889857,49086465,49610753,49741825],"administrator":[524289],"astype":[3407873,7798790,12648449,46596097,48300033],"applications":[44630017,47448065,49414145,49807361],"abstract":[851969,4128769,4521985,4587521,4915201,5373953,5439489,6094851,9764865,10223617,10289153,10551297,10682369,10878977,11075585,11337729,11534337,11665409,11730945,11862017,12058625,12124161,12255233,13107201,13631489,13762561,13893633,14155777,14811139,15204353,15400961,15663107,16121859,16187395,16252929,16580609,16646147,16908291,17301507,17891331,18415617,18546691,19005443,19267585,19595267,19660801,19988481,21037057,21889025,22872065,23461889,23789569,23986177,24182785,24248321,24641537,24772609,24969217,25362433,25493505,25755649,25952257,26542081,28442627,28573697,29032449,29163521,29622273,30015489,30146561,30670849,30801921,31391745,31916033,33554433,34209793,34340865,34668547,34799617,34865153,35323907,36503553,37224449,37289987,37355521,37748737,38010881,38076417,38273025,38338563,38535169,39059457,39387137,39583745,39845890,40042497,40501250,40697857,40960001,41091075,41418754,41746433,42467329,42663939,42795010,42860545,42991618,43122689,43188227,43253761,43319297,43581441,43646977,43712513,43909121,44171265,44433409,44564481,44826625,45088769,45285377,45416449,45613057,45744129,45940737,46137345,46333953,46661633,46923779,47054849,47185921,47316995,47448066,47513601,48496642,48889857,49086466,49610754,49741826],"applicable":[42532865,46530561,47382529,48037889,49348609],"addition":[2228225,3866625,7929857,8454145,21692417,40501249,49741825],"available":[11599873,12517377,15073281,15925249,21692417,31129602,32309249,33357825,33882114,34537473,35848193,36306945,37421057,38010881,39780353,42860545,43122689,44171265,44761089,45547521,47251458,49217537,49283073],"address":[10551298,10878978,11862018,12255234,33357825,44761089],"assigned":[7995393,8192001,8781825,35848193,49217537],"accepts":[6881281,7733249,8060929],"arguments":[6029314,6488066,6684673,6881282,7143425,7405569,7536641,7733250,8060930,8323073,8388609,8454145,8650753,9043969,9175041,9240577,9306113,9371649,9502721,9895937,10027009,10158081,10420225,10944513,11010049,11403265,13172737,13828098,14548994,15335425,16056321,16187393,16842753,16908289,17301505,19595265,21692419,23068673,23658497,24510466,25165826,34013185,34471939,34996225,35717121,37027841,38404097,39976961,41287681,42205185,42336257,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361]} \ No newline at end of file +{"addsystemdocument":[1114116,3670022,4718598,4980742,7012358,42270724,42532869],"accordance":[37027841,49217537],"associated":[1900545,4390915,7798788,8060932,8257540,11927560,15007748,15335428,17956865,19005441,19988481,20185089,21168129,21495809,22151169,24707076,25034753,25886722,26083329,26411010,26607618,26738691,27197442,27787268,28835842,29556737,29687809,30146561,30212097,30539777,31260675,31457281,31981569,33357826,33685505,34078723,34471937,34537476,36634626,38010882,39518209,39845891,40763393,41091073,41222146,42074113,42336257,43122689,43843585,43974662,44040196,46661633,46792705,47513609,47579137,47841281,49348614,49414149,49676295,49807366,49938439,50003975],"activex":[2883587,5111809,5898242,6619137,7798800,8060944,8257552,8650754,11534337,11730945,11796481,11927568,12058625,12124161,12189697,12255233,12451841,12713985,12910593,15007760,15335440,15728641,16449537,24444929,24707088,25427969,25493512,26214408,34537488,37355521,38338561,42926083,43974672,47513616,49348624,49414160,49676304,49807376,49938448,50003984],"addcomtype":[7798792,8060936,8257544,11927560,12124166,12189702,12255238,12713990,12910598,15007752,15335432,15728646,16449542,24707080,25427974,26214409,34537480,43974664,47513608,49348616,49414152,49676296,49807368,49938440,50003976],"allows":[851969,917505,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,3211265,2818049,2883586,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,8716289,10158081,10223618,12386305,13369345,24772609,24903681,30539779,31260675,31457283,32440321,32702465,33357827,34078723,34340866,36634627,37683202,38010883,38928385,38993921,39124993,39321601,39714817,39845891,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615362,41680897,42270721,42336257,42860545,42926083,43057153,43253761,43515905,43581441,43974659,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45219841,45416449,46202881,47513603,47906817,48824321,48955394,49086465,49283073,49348611,49414147,49545217,49676291,49741825,49807363,49872897,49938435,50003971],"attempt":[33423361,48103425],"attributetargets":[40501252,42860576,43057172,43253776,44105760,44367892],"ancestors":[4194305],"arrayt":[9306114,13893634],"automatic":[30146561,30539777,31260673,31457282,33357825,34078721,36438017,36634625,38010881,39845889,43974657,44040193,46333953,47185921,47513602,47775745,48889859,49348609,49414145,49676289,49807361,49938433,50003969],"affects":[32702465,33423361,39190529,39976961,41746433,48431105],"attributes":[2359297,4194310,24903681,37421057,38993921,40108034,40894465,46268417],"addhosttype":[7798792,8060936,8257544,11927560,12582918,12779526,13041670,13172742,13434886,15007752,15335432,24576006,24707080,25690118,27590665,29753350,34537480,43974664,47513608,49348616,49414152,49676296,49807368,49938440,50003976],"awaitdebuggerandpauseonstart":[48889857],"attached":[25034753,26083329,27656193,38862849,46792705,47579137],"api":[16646145,37224449,40763393,43909121,45350913],"addcomobject":[7798792,8060936,8257544,11534342,11730950,11796486,11927560,12058630,12451846,15007752,15335432,24444934,24707080,25493513,34537480,37355526,38338566,43974664,47513608,49348616,49414152,49676296,49807368,49938440,50003976],"attributeusageattribute":[40501252,42860548,43057156,43253764,44105732,44367876],"allocate":[30670849,43188225,44957697],"auxiliary":[32440321,42795009,47644673],"accepted":[17039362,17104898,17301506,17694722,19005442,19333122,19529730,20119554,20185090,20512770,21495810,21626882],"asconstructor":[15925253],"arrtype":[2883585,4259845,42926081],"await":[31916033,37224456,41943041,49020929],"automatically":[1,27656193,38862849,40501249,40828929,47513601,48300033,48889857],"avoid":[9175041],"auxiliarysearchpath":[32440325,42795009,47644673],"appears":[49741825],"accept":[27852801],"additionally":[49152001],"algorithm":[32440321,33947649,34734081,43057153,44105729,46465025,48431105],"anonymous":[30539777,31260673,31457281,33357825,34078721,34668548,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"add":[786433,1900546,2686977,6225921,6750210,6815746,7208962,7340034,7536642,7733249,7929857,8126466,8323074,8650755,8781826,8847361,9568258,9699329,9895938,10027010,11862018,12517377,13631490,13959169,14614530,14942210,21364738,30605320,37945345,42336258,44498945,47906817,48889857],"allowreflection":[7864321,24838145,30539777,31260673,31457281,33357825,33423365,34078721,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"attempting":[49676289,49938433,50003969],"abc":[8650753],"added":[262145,393217,786433,7012353,42336257,44498945,47906817],"ascii":[17825793,23789569],"actions":[1703937,10158081,41680897,43515905],"asynchronous":[4915201,9371649,9437185,9633793,9764865,10092545,10354689,10616833,12648449,13107201,49152001],"absolute":[3866625,3932161,4915201],"addrestrictedhostobject":[7798786,8060930,8257538,11927554,15007746,15335426,24707074,25165827,34537474,43974658,46137350,47251462,47513602,49348610,49414146,49676290,49807362,49938434,50003970],"access":[1310722,1507330,1638402,1703937,2031618,2752514,3604482,3670017,3735553,3866625,4587521,4718593,4915201,4980737,5242881,5701634,6029319,7012353,7274497,7798786,8060930,8912898,9109506,9895937,9961474,10158081,14483463,14745608,15007746,15073282,15335426,15466497,15859719,20709377,22413313,23330818,23592962,23855105,23920641,24248321,24707074,24772609,24903686,25034753,25231361,25624577,25821185,26476552,26804225,27131905,27852801,28311554,28442626,28901378,29032450,29097986,29163524,29491201,29949955,30539782,31260678,31457286,32702465,32964609,33030151,33357830,33947649,34078726,34340867,34406401,34537474,34668547,34734081,34930694,35586049,36241409,36634630,36765697,36962305,37683203,37945348,38010886,39124993,39256065,39321601,39845894,40042497,40173574,40566785,40697858,41222145,41680897,41746434,42270722,42336258,42401794,42467330,42663938,42860547,43057155,43253767,43515905,43581441,43646978,43974664,44105731,44367875,44433410,44498945,45088770,45154305,45219841,45809665,46137345,46923777,47251457,47513606,47710210,48431108,48889858,48955395,49348616,49414150,49479682,49610753,49676296,49807368,49872898,49938440,50003976],"arraybuffer":[1310725,9109507,10289154,11010050,11599874,15073283,25624578,28114945,28180483,28704771,29360131,30408707,30670849,31522817,32178182,32636929,37027841,40697859,42663938,43188227,43646983,44433412,44957697,45088771,47710211,49217537],"adds":[1114116,1900546,2686984,3670017,4718593,4980737,5767169,6225921,6750209,6815745,7012353,7208961,7340033,7536641,7733249,7929857,8126465,8323073,8781825,8847361,9568257,9699329,10027009,11862017,13631489,14614529,14942209,21364737,30605313,42270724,42336258,42532868,44498952,44826628,45285379,47906817],"args":[5439493,5832709,6619141,9043973,15925253,15990789,16842757,18350086,36962310,48758789],"addtype":[2686979,8323078,8847366,9699334,44498947,45285380],"accommodate":[42270721],"assemblies":[2883586,4587525,5242884,8454151,12517383,13959171,14680067,32440321,42008582,42729474,42926082,43057153,44367873,44498951],"approach":[46465025],"assemblyname":[5046277,7929861,8323077,8781829,13172741,24576005],"allocated":[37027841,43188225,49217537],"async":[37224449],"augment":[32440321],"additional":[17563649,17760257,18415617,18612225,24903681,28835841,37027841,41222145,43253761,49217537],"assemblyqualifiedname":[7864321,24838145],"array":[1310723,1507331,1638403,1900546,2031619,2883586,3604488,4194306,4259844,4587523,5046275,5242883,5439489,5832705,5963783,6488065,6619137,8323073,8454145,8585217,8847361,8978433,9043969,9306118,9830403,10223618,10289155,10485763,10747909,11010051,11141123,11468803,11599875,11665413,12320769,12517377,12779521,13172737,13893640,13959169,14090248,14680065,14876673,15925249,15990785,16711681,16842753,17039361,17104897,17235969,17301505,17694721,17891329,18022401,18350084,18546689,19005441,19333121,19529729,19988481,20119553,20185089,20250625,20512769,20578305,21168129,21430273,21495809,21626881,22347777,22740993,24576001,24641540,25624577,25690113,27852802,30539777,31260673,31457281,33357825,33554434,34078721,36634625,36962307,38010881,39845889,40697866,41156610,41615362,41746433,42336258,42926082,43646979,43974657,44433411,45088771,47513601,47710211,48758785,49348609,49414145,49676289,49807361,49938433,50003969],"accelerated":[4390918,11927558,16711682,17039361,17104897,17235970,17301505,17694721,17891330,18022402,18546690,19005441,19333121,19529729,19988482,20119553,20185089,20250626,20512769,20578306,21168130,21430274,21495809,21626881,22347778,22740994,26738691,27787267,27918339,28770307,44040198,47513606],"asynchronously":[917505,4915201,46202881],"analysis":[13369345],"addhosttypes":[7798785,8060929,8257537,11927553,12320773,15007745,15335425,24707073,34537473,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"alternative":[40042497],"appear":[27852801,39190529],"active":[4390913,11927553,16580609,19791873,44040193,46333953,47185921,47513601],"affinity":[20905985,21299201,21692417,22020097,22216705,22478849,22675457,22806529,22937601,23658497,25231361,39911425,43974657,47513601,49348609,49479681,49676289,49807361,49872898,49938433,50003969],"arrays":[25624577,27852802,40697857,41746434,47710209],"attempts":[21102593,21561345,23461889,24313857,36765697,40042497,45481985,46465025],"ambiguous":[12976129,13303809,13500417,13697025,13828097,14024705,25034753,26083329,27656193,37289985,38141953,38862849,46792705,47579137],"associate":[16646145,17432577,17563649,17629185,18219009,18284545,18415617,18808833,19202049,20381697,20774913,20840449,20905985,21692417,21757953,22478849,22544385,22675457,22806529,23658497,23986177,32243713,32899073,34013185,35389441,39452673,39911425,40239105,46399489,46530561,47448065],"accessflags":[39256069,42270721,46923777],"attribute":[983044,1376260,1769476,3211268,3801092,4194309,4325380,24903681,28311554,28442626,28508162,29032450,29097986,29949954,33095681,38993921,40108033,40501260,42795009,42860556,43057161,43253768,44105737,44367884,47644673],"addassembly":[2686980,7733254,7929862,8781830,21364742,44498948,44826629],"application":[16711681,17235969,17891329,18022401,18546689,19988481,20250625,20578305,21168129,21430273,22347777,22740993,28835841,40828929,41222145,48300033,48889857],"argcount":[6094854,13893638,14090246],"accessible":[5177345,5308417,27852802,32702465,34668545,42336257,46137345,47251457,48889857],"ability":[40501249],"ambiguity":[48889857],"arra":[3604481,9830402,28704769,29360129,32112641,40697859,47710209],"accelerate":[33816577],"addhostobject":[4587521,5046274,5242881,5439489,5636097,5767169,5898241,5963778,6291457,6619137,6750209,6815745,6881281,7208961,7340033,7405569,7536641,7798786,7864321,8060930,8126465,8257538,8650753,8585218,9043970,9306113,9568257,9895937,10027009,11534337,11730945,11796481,11862017,11927554,12058625,12124161,12189697,12255233,12320769,12451841,12582913,12713985,12779521,12910593,13041665,13172737,13369345,13434881,13631489,13893633,14090241,14614529,14942209,15007746,15335426,15728641,16449537,24444929,24576001,24641537,24707074,24838145,25427969,25690113,26673155,27852806,28639239,29753345,34537474,37355521,38338561,41615361,42336257,43974658,44498945,46137345,47251457,47513602,49348610,49414146,49676290,49807362,49938434,50003970],"able":[42336257],"acme":[4587523,5242883,44498947],"activities":[41943041],"accesscontext":[30539777,31260673,31457281,32702469,33357825,34078721,34668545,36634625,38010881,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"assumes":[4587521,5046273,5242881,5439489,5636097,5767169,5898241,5963777,6291457,6750209,6815745,7208961,7340033,7405569,7536641,7864321,8126465,8650753,8585217,9043969,9306113,9568257,9895937,10027009,11862017,13369345,13631489,13893633,14090241,14614529,14942209,24838145],"argument":[2883590,5898241,6619138,7471106,7864322,8650753,9043970,9306113,9895938,10223622,11534337,12189697,12255233,12451841,12713985,16449537,18087937,22478849,22609921,22806529,24182786,24444929,24510467,24838146,27852802,34013185,35389441,38338561,39911425,40239105,41353218,41615366,42926086,44630018],"assumed":[43909121,44564481,44892161,45350913],"affect":[41746433],"assembly":[524289,720897,786433,1441793,1835009,2228225,2686985,2883585,3342337,3407873,3473409,3538945,3670017,3866625,3932161,3997697,4128769,4194305,4259841,4456449,4521985,4587522,4718593,4784129,4849665,4915201,4980737,5046275,5111809,5177345,5242882,5308417,5373953,5439489,5505025,5570561,5636097,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6291457,6356993,6488065,6553601,6619137,6684673,6750209,6815745,6881281,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733262,7798786,7864322,7929860,7995393,8060930,8126465,8192001,8257538,8323075,8388609,8454151,8519681,8585217,8650753,8781828,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10354689,10289153,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927554,11993089,12058625,12124161,12189697,12255233,12320769,12451841,12517383,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172739,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007746,15073281,15138817,15204353,15269889,15335426,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364750,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23789569,23855105,23986177,24117249,24248321,24313857,24444929,24510465,24576003,24641537,24707074,24838146,25034753,25296897,25427969,25690113,25821185,26083329,26476545,27590658,27656193,27852801,28639233,28901377,29753345,29884417,30343169,30474241,30605313,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31391745,31522817,31588353,31653889,31719425,31784961,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685505,33751041,33816581,33882113,33947649,34013185,34144257,34209793,34275329,34340865,34406401,34471937,34537474,34603009,34668546,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36306945,36372481,36438017,36503553,36569089,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,38076417,38141953,38207489,38273025,38338561,38404097,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41222145,41287681,41418753,41484289,41549825,41615361,41680897,41746433,41877505,41943041,42008578,42074113,42139649,42270721,42336257,42401793,42598401,42795010,42860545,42926082,42991617,43057157,43122689,43188225,43253761,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974659,44040193,44105729,44171265,44236801,44302337,44367877,44433409,44498957,44564481,44695553,44761089,44826632,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46333953,46399489,46465025,46530561,46596097,46661633,46792705,46858241,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513603,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348611,49414147,49479681,49545217,49610753,49676291,49741825,49807363,49872897,49938435,50003971],"applies":[6619137,7471105,24838145,36765697,42401793],"applied":[40501249],"assemblynames":[4587525,5242885,13959173,14680069],"action":[1310721,1507329,1638401,2031617,2752513,3604481,5701633,8912907,9109515,9306113,20971535,22413313,27525121,28966913,29884427,40697857,42467329,42663937,43646977,44433409,45088769,47710209,49479681,49872897],"accelerating":[41943041,44761090],"allowing":[36438017],"advantage":[20447233],"assigning":[9306113,46333953,47185921],"abstractclassattribute":[38928385,39714817,41091073,41484289,41680897,42139649,42795009,43450369,43515905,44302337,45154305,46202881,49020929,49348609,49414145,50003969],"administrator":[589825],"astype":[2883585,6291462,10223617,41615361,42926081],"applications":[37945345,43974657,49348609,49807361],"abstract":[786433,3866625,3932161,4128769,4194305,4915203,6553601,8912897,9109505,9175041,9240577,9830401,9961473,10289153,10420225,10485761,10551297,10747905,11010049,11075585,11141121,11468801,11599873,11665409,12845059,13238273,13565953,14221315,14417921,14548993,15073281,15138817,15925251,16252929,16842755,17367041,17498115,18350083,20316161,20709377,20971521,21102593,21561345,21889025,21954561,22085633,22282241,22413313,22872065,23003137,23068673,23134209,23199747,23396353,23461889,23527425,23592961,23855105,24117249,24313857,24903681,28901377,29884417,30343169,30605313,30867457,30998529,31064065,31391745,31522817,31653889,31784963,31981569,32047105,32112641,32178177,32309249,32571393,32636929,32768001,32964611,33226753,33292289,33882113,34275329,34340867,34471937,34799617,34996227,35061761,35192833,35520515,35848193,35979265,36175875,37158913,37683201,37879809,38076417,38666241,38928386,39124993,39321601,39649283,39714818,40566785,41025537,41091074,41287681,41484289,41680898,42139649,42795009,43384833,43450369,43515906,43712513,44171265,44302338,44695553,45154307,45219843,45481985,45875201,46202882,46858243,47382531,47841281,48168963,48300033,48365569,48496641,48562179,48758787,48955393,49020929,49348610,49414146,50003970],"applicable":[42860545,43057153,43253761,44105729,44367873],"addition":[1703937,5767169,9895937,10158081,27852801,41680897,43515905],"available":[9437185,9764865,10616833,13107201,27852801,27983873,28835841,29556737,30212098,30998529,31326209,32571393,33816578,35192833,35454977,35717121,36765697,40042497,40828929,41222145,42074113,43122690,44761089,46596097,48365569,49086465],"address":[8912898,9109506,9961474,15073282,27983873,40828929],"assigned":[6684673,7995393,8978433,28835841,41222145],"accepts":[6094849,13893633,14090241],"arguments":[5046274,5832705,6094850,6619137,6750209,6815745,6881281,7208961,7340033,7536641,8126465,8323073,8585218,8847361,9043969,9306113,9568257,9895937,10027009,11862017,12320769,12582913,12779522,13041665,13172738,13434881,13631489,13893634,14090242,14614529,14942209,15925249,15990785,16842753,18350081,24510465,24576002,25690114,27852803,29753345,30539777,31260673,31457281,33357825,34078721,36438019,36634625,36962305,38010881,39845889,43974657,47513601,48758785,49348609,49414145,49676289,49807361,49938433,50003969]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_98.json b/docs/Reference/fti/FTI_98.json index 76fca2742..97305d1e9 100644 --- a/docs/Reference/fti/FTI_98.json +++ b/docs/Reference/fti/FTI_98.json @@ -1 +1 @@ -{"blank":[35586050,37814273,39452673],"base":[4128770,13697025,14417921,26935297,31916035,41418753,42795009,49086465,49610753],"better":[38338561,40697857,45416449],"benefit":[48824321],"behalf":[35717121,37027841,38404097,38797313,39976961,41222145,41287681,42336257,42467329,47448065,47841281,48627713,48955393,49414145,49610753,49676289,49807361],"bool":[4128772,4587524,5439496,7077891,7536643,8257539,8716291,8847363,9437187,9568259,10092547,11730948,12320771,12386307,12845059,13107204,13631492,13762564,14811139,14942211,16187395,17367043,17432579,17891331,18022403,18284547,18546691,18808835,18939907,19857411,20774915,21233667,21364739,21889028,22544387,23134211,23789571,24313859,24641540,24838147,24903683,25362436,27852803,28573700,28639235,29622275,30801924,31195139,33226755,33882117,34471941,35520517,35913733,36241413,36765701,37814277,38535173,38928389,39059461,39190533,39452677,39649285,41549829,43319301,43581444,43909125,44695557,44826628,44957699,45678597,47120389,47644677,47972357,48168965],"byref":[13762563,17694722,18284546,18808834,19202050,19726338,19857410,20512770,20774914,21102594,21233666,21299202,21364738,21954562,22151170,22544386,23134210,23920642,24838146,24903682,25886722,30277634,31195138,32112642,33226754,42008578],"bytes":[1900546,1966082,2031618,2359298,2424834,10289156,11075588,11337732,12124164,30736385,31522817,31850497,32243717,32505857,32964609,36896769,37158913,37879809,38666241,39256065,39714817,40239105,40763393,41156609,41353217,41877505,41943043,42598403,43974659,45023235,45154305,46071809,46661633,46727169,47054849,47710211,48234501],"blocked":[46858241,47382529,48037889,48365569,48562177],"bidirectional":[48824322],"buggy":[44761089],"begin":[39124993],"b6d1":[23265281,23724033,25034753,27525121,29425665,30343169],"behavior":[2228234,3866634,26148865,31916033,34013185,35782657,35913729,36241409,37683201,40501259,40632321,43843585,46202881,47644673,48168961,48365570,48758785,48824322,49741834],"bigint":[48824322],"bypassing":[4653057,4784129,5111809,5505025],"begincpuprofile":[4390914,17367046,18022406,21495810,27852806,28639238,29229059,34930691,46202882,48758786],"build":[18284545,18808833,19857409,20774913,21233665,21364737,22544385,23134209,24838145,24903681,31195137,33226753],"binary":[2228225,3866625,40501249,43646977,49741825],"based":[786433,1310721,21692417,34013185,34734082,34996225,35717121,35913731,37027841,37421057,38404097,39780353,39976961,40566785,41287681,42336257,46858241,46989314,47382529,47448065,47775745,48037889,48562177,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"bailoutreason":[34734081,39518213,46989313],"basic":[2228227,3866627,6160386,6356994,6815746,7012354,11599874,12189698,12517378,12976130,13434882,14352386,15073282,15925250,16711682,40501251,49741827],"begins":[4390914,17367041,18022401,21495810,25755649,27852801,28639233,29229058,31391745,34930690,46202882,48758786],"behave":[41353217,46071809,49545217],"biguint64array":[45023233],"breaking":[37158913,37879809,38666241,39256065,47972353],"beginning":[21692417],"bigint64array":[45023233],"bit":[8519681],"byte":[1900547,1966083,2031619,2359299,2424835,3407873,4390924,9043974,10223622,10289160,11075592,11337736,11665414,12124168,12648449,17694726,18284549,18808838,19202053,19726342,19857413,20512773,20774918,21102598,21233670,21299206,21364741,21495820,21954566,22151173,22544390,23134213,23920645,24838150,24903685,25886726,30081030,30277637,30867462,31195141,32112645,33226758,35651590,36569094,41943043,42598403,43974659,45023237,46202892,46596097,47710211,48300033,48758796],"bound":[6029313,6488065,7143425,13172737,13828097,14548993,15335425,16056321,23068673,23658497,24510465,25165825,34668545,38273025,38338561,40566785,40697857,41746433,45416449,46858241,47382529,48037889,48562177,48627713,48955393,49610753],"boolean":[4128770,4259843,4390918,4587522,5046275,5177347,5242883,5439492,5701635,6881281,7077890,7536642,7602181,7667715,8257538,8716290,8847362,9437186,9568258,10092546,11730946,12320771,12386306,12845059,13107202,13631493,13762562,14221313,14286849,14811138,14876673,14942211,15728641,16187394,16384001,17367042,17432581,17694721,17891330,18022402,18153473,18284547,18546690,18808835,18939906,19726337,19857411,20774915,21102593,21233667,21299201,21364739,21495819,21889029,21954561,22544387,22740993,23134211,23789570,24313858,24641538,24838147,24903683,25362437,25886721,26804225,27262977,27852802,28246017,28573698,28639234,29491202,29622274,30081027,30801922,30867459,31195139,32047106,33226755,33882114,34471938,35520514,35651587,35913730,36241410,36569091,36765698,36962306,37617665,37814274,38141953,38535170,38928386,39059458,39190530,39452674,39649282,41549826,43319298,43581442,43909122,44695554,44826626,44957698,45678594,46202886,47120386,47448069,47644674,47972354,48168962,48431106,48627715,48758795,48955395,49086467,49414147,49610755,49676289,49741825,49807363],"boundary":[8323073,8388609,9043969,9175041,9240577,9306113,9895937,10027009,10420225,10944513,11010049,11403265],"background":[44302339],"bar":[5767169,8454145],"baz":[5767169,8454146],"braces":[5767169,7864321,12451841,12582913,12910593,13041665,13369345,13565953,20381697,20905985,23265281,23724033,25034753,27525121,29425665,30343169],"box":[33357825],"binding":[34013185,34996225,35717121,35913732,37027841,38404097,39976961,40566785,41287681,42336257,46858241,47382529,47448065,47644673,48037889,48168961,48562177,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"button":[6553603,7208963,42729475]} \ No newline at end of file +{"blank":[30474242,33619969,48627713],"base":[4194306,24772609,24903683,39714817,44302337,46137345,47251457,49414145,50003969],"better":[34340865,37683201,48955393],"benefit":[48889857],"behalf":[31260673,33357825,34078721,36634625,38010881,38076417,38404097,38469633,39845889,41746433,43974657,49348609,49545217,49676289,49807361,49938433,50003969],"bool":[3932164,4128776,4194308,5636099,6356995,6488067,7077891,7471107,8388611,10420228,10944515,11075588,11272195,12845059,13238276,13369347,13565956,13762563,15925251,16056323,16121859,16318467,17039363,17104899,17301507,17694723,19005443,19333123,19529731,20119555,20185091,20316164,20512771,21495811,21626883,21954564,22085636,22872068,23134211,23330819,23592964,24510467,25034755,28901379,32309252,33226757,33423365,33554437,33619973,33751045,33816581,33882117,34275333,34406405,34668549,35061765,35586053,35979268,36438021,37224453,38600707,39190533,39976965,46465029,46792707,46858243,47316997,47382531,47972357,48037893,48103429,48234499,48627717,48693251],"byref":[10420227,16711682,17039362,17104898,17235970,17301506,17694722,17891330,18022402,18546690,19005442,19333122,19529730,19988482,20119554,20185090,20250626,20512770,20578306,21168130,21430274,21495810,21626882,22347778,22740994,39059458],"bytes":[1310722,1507330,1638402,2031618,3604482,10289156,10485764,11010052,11141124,28114945,28180481,28704769,29360129,30408705,31326215,31522817,33292289,36700161,37027841,37093377,37617665,38273025,38797313,40697859,43188225,43646979,43909121,44433411,44564481,44892161,45088771,45350913,46006273,46071809,46596097,46989313,47710211,49086471,49217537],"blocked":[33947649,43057153,44105729,48431105,49152001],"bidirectional":[48889858],"buggy":[40828929],"begin":[45809665],"b6d1":[22478849,22806529,34013185,35389441,39911425,40239105],"behavior":[1703946,10158090,23920641,24903681,30146561,31457281,34406401,34668545,37486593,38535169,40501249,41680906,43515915,44040193,46465025,47513601,48103425,48889858,49152002],"bigint":[48889858],"bypassing":[3670017,4718593,4980737,7012353],"begincpuprofile":[4390914,11927554,16121862,16318470,26345475,27262979,44040194,47513602,48234502,48693254],"build":[17039361,17104897,17301505,17694721,19005441,19333121,19529729,20119553,20185089,20512769,21495809,21626881],"binary":[1703937,10158081,31064065,41680897,43515905],"based":[131073,720897,27852801,30539777,30736386,31260673,31457281,33357825,33947649,34078721,34734081,35454977,35717121,36634625,38010881,39845889,40960001,43057153,43974657,44105729,46465027,47513601,48431105,48824322,49348609,49414145,49676289,49807361,49938433,50003969],"bailoutreason":[30736385,35323909,48824321],"basic":[1703939,4849666,5177346,5308418,5505026,9371650,9437186,9633794,9764866,10092546,10158083,10354690,10616834,12648450,13107202,41680899,43515907],"begins":[4390914,11927554,16121857,16318465,23461889,24313857,26345474,27262978,44040194,47513602,48234497,48693249],"behave":[37027841,49217537,49872897],"biguint64array":[40697857],"breaking":[33554433,43909121,44564481,44892161,45350913],"beginning":[27852801],"bigint64array":[40697857],"bit":[7405569],"byte":[1310723,1507331,1638403,2031619,2883585,3604483,4390924,10223617,10289160,10485768,11010056,11141128,11468806,11599878,11927564,13631494,16711685,17039365,17104901,17235974,17301510,17694725,17891333,18022405,18546694,19005446,19333125,19529733,19988486,20119558,20185094,20250629,20512774,20578309,21168134,21430278,21495814,21626885,22347782,22740997,26738694,27787270,27918342,28770310,40697861,41615361,42926081,43646979,44040204,44433411,45088771,47513612,47710211],"bound":[5046273,6881281,8585217,12320769,12582913,12779521,13041665,13172737,13434881,24576001,25690113,29753345,33947649,34340865,34734081,37683201,39124993,39321601,43057153,44105729,45219841,48431105,48955393,49676289,49938433,50003969],"boolean":[3932162,4128772,4194306,4390918,5636098,6094849,6356994,6488066,7077890,7471106,7798787,8060931,8257539,8388610,10420226,10944514,11075586,11272195,11927563,12845058,12976129,13238277,13303809,13369346,13500417,13565954,13762563,14024705,15007747,15335427,15925250,16056322,16121858,16318466,17039363,17104899,17235969,17301507,17694723,18546689,19005443,19333123,19529731,19857409,19988481,20119555,20185091,20316162,20512771,21168129,21430273,21495811,21626883,21954562,22085637,22347777,22872069,23134210,23330818,23592962,24510466,24707075,25034757,25100290,25362433,25886721,26083329,26411009,26607617,26738691,27197441,27459586,27656193,27787267,27918339,28770307,28901378,29229058,32309250,33226754,33423362,33554434,33619970,33751042,33816578,33882114,34275330,34406402,34537477,34668546,35061762,35586050,35979266,36438018,37224450,38600706,39190530,39976962,41680897,41746433,43974659,44040198,46465026,46792707,46858242,47316994,47382530,47513611,47906818,47972354,48037890,48103426,48234498,48627714,48693250,49348613,49414147,49676291,49807363,49938435,50003971],"boundary":[6750209,6815745,7208961,7340033,7536641,8126465,9568257,10027009,11862017,13631489,14614529,14942209],"background":[41943043],"bar":[8650753,9895937],"baz":[8650753,9895938],"braces":[5898241,8650753,11534337,12189697,12255233,12451841,12713985,16449537,22478849,22806529,24444929,34013185,35389441,38338561,39911425,40239105],"box":[27983873],"binding":[30539777,31260673,31457281,33357825,33947649,34078721,34406401,34734081,36634625,38010881,39845889,43057153,43974657,44105729,46465028,47513601,48103425,48431105,49348609,49414145,49676289,49807361,49938433,50003969],"button":[4587523,5242883,44498947]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_99.json b/docs/Reference/fti/FTI_99.json index 0328967ba..5bcaa4d19 100644 --- a/docs/Reference/fti/FTI_99.json +++ b/docs/Reference/fti/FTI_99.json @@ -1 +1 @@ -{"consumed":[18284545,18808833,19857409,20774913,21233665,21364737,22544385,23134209,24838145,24903681,31195137,33226753,45547521],"converts":[1703940,3211273,3407884,6160385,6356993,6815745,7012353,8323074,8388610,9043970,9175042,9240578,9306114,9895938,10027010,10420226,10944514,11010050,11403266,11599873,12189697,12517377,12648460,12976129,13434881,14352385,15073281,15925249,16711681,25559042,26017794,28966920,45744137,46596108,47185924,48300044],"call":[131073,4259841,5046273,5177345,5242881,5701633,6160386,6356994,6684673,6815746,7012354,7602177,7667713,11599874,12189698,12517378,12976130,13434882,14352386,15073282,15204354,15400961,15663106,15925250,16711682,18415617,21495809,21692418,24969218,25952258,26148865,28442625,33030145,35192833,35848193,36700161,38600705,40566786,41811969,41877505,42926081,43450369,45875201,46727169,46858242,46989313,47382530,47448065,48037890,48562178,48627713,48758785,48955393,49020929,49086465,49217537,49414145,49610753,49807361],"catchfunc":[9568264],"createscriptengine":[4390918,17629190,17760262,18219014,18677766,19398662,22478854,27721735,46202886],"context":[1572865,4259842,4390915,4784130,5046274,5177346,5242882,5373953,5701634,6094849,7602178,7667714,13893638,15007749,15728642,15859717,15990786,16252934,17235970,18284546,19202050,20512770,21495813,24051714,24903682,27983873,28835841,30867459,31916033,32309251,34537475,35061761,35979265,36044801,36569091,40370178,41680897,45350914,46202883,47448066,48627714,48758789,48955394,49086466,49414146,49610754,49807362],"clean":[9568257],"clear":[2555905,46465025],"contextcallback":[4784133,5373958,6094853,15728645,15990789,17235973,18284549,19202053,20512773,24051717,24903685,32309254,34537477,35061761,36044801,41680897,45350913],"client":[9568257],"calculate":[6684673],"comparison":[35520514,43843585,49479682],"case":[5439489,25755649,31391745,48824322],"converted":[49676289],"comparer":[11796481,12320769,12845063,13303815,29360130,29491202,32571394,34078726,42729474,48431108],"categories":[25427969,43515905,46137345],"cachedocument":[1507329,4587526,42991617],"columnnumber":[34734081,37421061,46989313],"copy":[131073,720897,655361,786433,851969,917505,983041,1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359298,2424833,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,3997697,4063233,4128769,4194305,4325377,4259841,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4915201,4980737,5046273,5111809,5177345,5308417,5242881,5373953,5439489,5505025,5570561,5636097,5701633,5767170,5832705,5898241,5963777,6029315,6094849,6160385,6225921,6291457,6356993,6422529,6488066,6553602,6619137,6684674,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208962,7274498,7340034,7405570,7471105,7536641,7602177,7667713,7733250,7798786,7864322,7929858,7995393,8060930,8126465,8192001,8257538,8323074,8388610,8454146,8519682,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043970,9109505,9175042,9240578,9306114,9371649,9437185,9502721,9568258,9633793,9699329,9764865,9830401,9895938,9961473,10027010,10092545,10158081,10223619,10289156,10354689,10420226,10485762,10551297,10616833,10682371,10747905,10813441,10878977,10944514,11010050,11075588,11141121,11206658,11272193,11337732,11403266,11468801,11534340,11599873,11665411,11730945,11796481,11862017,11927553,11993089,12058625,12124164,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988484,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25362433,25493505,25755649,25821185,25886721,25952257,26214401,26345473,26476545,26542081,27000833,27066369,27525121,27656193,27852801,27918337,28114945,28377089,28442625,28573697,28639233,28770305,29032449,29097985,29163521,29425665,29622273,29753345,30015489,30146561,30212097,30277633,30343169,30670849,30801921,31195137,31260673,31391745,32112641,32178177,32309249,32768001,32833537,32899073,33095681,33226753,33292289,33423361,33488897,33554433,33619969,33751041,33816577,33882113,33947649,34078721,34209793,34340865,34406401,34471937,34537473,34668545,34799617,34865153,35127297,35258369,35323905,35520513,35586049,35913729,36110337,36175873,36241409,36503553,36634625,36700161,36765697,36831233,36896769,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38207489,38273025,38338561,38469633,38535169,38600705,38666241,38731777,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845890,39911425,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501250,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41353217,41418754,41484289,41549825,41615361,41680898,41746433,41811969,41877505,41943042,42008577,42074113,42139650,42205185,42270721,42401793,42467329,42532866,42598402,42663937,42729474,42795010,42860545,42926081,42991618,43057153,43122689,43188225,43253761,43319297,43384833,43450370,43515905,43581441,43646977,43712513,43778050,43843586,43909121,43974658,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498946,44564481,44695553,44761089,44826625,44892161,44957697,45023235,45088769,45154305,45219842,45285377,45350914,45416449,45481986,45547521,45613057,45678593,45744129,45809665,45875202,45940737,46006273,46071809,46137345,46202882,46268417,46333953,46399489,46465025,46530562,46596098,46661633,46727169,46792705,46858241,46923777,47054849,46989314,47120385,47185921,47251457,47316994,47382530,47448066,47513601,47579138,47644673,47710210,47775746,47841281,47906817,47972353,48037890,48103425,48168961,48234498,48300034,48365569,48431106,48496642,48562177,48627714,48693250,48758786,48824321,48889857,48955394,49020930,49086466,49152001,49217538,49283073,49348610,49414146,49479681,49545218,49610754,49676289,49741826,49807362],"customize":[19267585,23986177,24182785,24772609,25755649,31391745],"contexts":[6881281,7733249,8060929,14942209,15138817,15532033,15597569,17432577,17760257,18153473,18677761,19070977,19398657,20054017,20709377,21102593,21168129,21233665,21626881,21757953,21954561,22085633,22413313,22544385,22675457,22806529,23003137,23199745,23265281,23592961,23724033,23855105,24379393,25034753,25821185,26476545,27525121,27656193,27918337,28377089,28770305,29425665,30343169,33488897,36241409],"constructor":[3997697,4063233,4194305,4325377,4456449,4718593,4980737,5898241,5963777,6422529,7405570,9109505,9371649,9699329,9830401,10354689,10813441,11272193,11468801,11796481,11927553,11993089,12320769,12779521,12845057,13303809,14483457,15007745,15138817,15466497,15597569,15794177,15859713,16187393,16318465,16449537,16777217,16973825,17039361,17104897,17170433,17498113,17432577,17563649,17825793,17956865,18350081,18612225,19070977,19136513,19464193,20054017,20185089,20316161,20447233,20840449,21168129,21626881,21692418,21823489,22020097,22085633,22216705,22413313,22609921,22675457,22806529,22937601,23003137,23199745,23265281,23527425,23592961,23724033,23855105,24117249,24379393,24576001,24707073,25034753,25100289,25821185,26214401,26279937,26476545,27000833,27525121,27656193,27918337,28114945,28377089,28508161,28770305,28901377,29294593,29425665,29491201,29556737,29818881,29884417,30343169,30539777,30605313,31588353,31719425,32178177,32636929,32833537,33161217,33488897,35389441,49676289],"continues":[36241409],"constructed":[48824322],"coded":[35848193,49217537],"cancelawaitdebugger":[21495809,29097989,48758785],"contravariance":[6881281,7733249,8060929],"continue":[31916033,44957698,45809665],"collecting":[4390914,17367041,18022401,21495810,27852801,28639233,29229058,34930690,46202882,48758786],"console":[7864321,8060930,9568257,10485761,19267585,23986177,24182785,24772609,25755649,31391745],"contained":[30474241,46465025],"constraints":[19464199,20054023,20185095,21626887,22216711,22413319,22675463,23199751,24117255,24707079,26148865,27918343,28114951,28508166,29556742,41353217,46071809,46202886,47579137,48758790],"configuration":[1572868,4653058,4784130,5111810,5505026,26148865,31916034,35979268,40960001,45350917,48889857],"compiling":[37814273,39452673],"cpuprofilesampleinterval":[34013185,35782657,37552133,44040197,46202881,48758785],"clearscrip":[26148865,31916033,32768001,40960001,48889857],"cpu":[131073,4390916,17367042,18022402,18481153,18874370,21495812,22347778,26148869,27852802,28639234,29229058,30212097,34013185,34930690,35782657,37552130,38600705,43450369,44040194,45875201,46202885,46399489,46989313,47775745,48758789],"completeness":[14811137,18939905,24641537,30801921],"conversion":[2228225,3866625,40501249,48824326,49741825],"caution":[48824321,49545217],"coordinated":[48824321],"convenient":[6553601,7208961,17432577,42729473],"collector":[15204353,15400961,18415617,28442625,45154305],"creating":[18022401,26148865,28639233,46399489],"containing":[1900545,1966081,2031617,2359298,2424833,4784129,5111809,5373953,5505025,6094849,7274497,10223618,10682370,11665410,14221313,17301505,17694721,18743297,19136514,19333121,19529729,24444929,24838145,25886721,30474242,31260673,32374785,33226753,34144257,34734082,37748737,40370178,41025537,41484289,41943041,42008577,42598401,43974657,44498945,45023234,46465026,46923777,46989314,47316993,47710209],"comprise":[26148865,31916033,40960001,48889857],"collects":[4390913,18481153,21495809,30212097,46202881,48758785],"connection":[5832705,6225921,17760257,18219009,19070977,20054017,20185089,20840449,21495809,22609921,23592961,24707073,27918337,29097985,31916034,41418753,42139649,48758785,48824321],"combination":[4653057,4784129,5111809,5505025],"change":[17629185,17760257,18219009,19398657,37158913,37879809,38666241,39256065,47972353],"category":[1572866,4259844,4390918,4653057,4784136,5046276,5111816,5177348,5242884,5373959,5701636,6094854,7602180,7667716,14876679,15269895,15728647,15990791,17235975,18284551,19202055,19857415,20512775,20578311,21364743,21495818,22151175,23330823,24051719,24903687,27983874,28835842,30277639,30867462,31064066,31916033,33095681,33619969,34603010,35061762,35979266,36569094,39845891,41680898,43515906,44105729,45350914,46006278,46137346,46202886,47448068,48627716,48758794,48955396,49086468,49414148,49610756,49807364],"clsid":[4259848,5046280,5177352,5242888,5701640,5767169,7602184,7667720,7864321,12451841,12582913,12910593,13041665,13369345,13500423,13565953,13959175,14024711,14090247,14614535,14680071,20381697,20905985,20971527,21495816,21561351,23265281,23724033,25034753,26411012,27525121,29425665,30343169,30408708,47448072,48627720,48758792,48955400,49086472,49414152,49610760,49807368],"cause":[2490369,41353217,41877505,44761089,46071809,46727169,49217537],"contains":[393217,2293761,2555907,2621441,6488065,6553601,6946817,7208961,7471105,7995393,8126465,8192001,8781825,8847361,8978433,9437185,9502721,9633793,9961473,10092545,10747905,13107202,13828097,24510465,25427969,26148866,26935297,27394049,31916034,39321601,41680897,42401793,42729474,43646977,44630021,46465027,48234497,48431105,49217537],"caught":[9568257,48824321],"class":[196609,262146,327682,393217,458753,589826,720898,655362,851969,917506,983042,1048578,1114113,1179649,1245188,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835012,2097153,2162692,2228234,2293761,2490370,2686980,2621441,2752513,2818052,2949121,3014657,3080196,3145729,3211265,3276801,3342337,3407873,3538945,3670017,3735553,3801089,3866634,3997697,4128769,4194305,4259865,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4915201,4980737,5046297,5111809,5177369,5242905,5308417,5373953,5505025,5439489,5636097,5701657,5767172,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619140,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405570,7471105,7536641,7602201,7667737,7733249,7798788,7864323,7929857,7995393,8060929,8126465,8192001,8257537,8388609,8323073,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10354689,10420225,10485761,10616833,10747905,10813441,10944513,11010049,11141121,11206657,11272193,11403265,11468801,11599873,11730945,11796481,11927553,11993089,12058625,12189697,12320769,12386305,12451844,12517377,12582916,12648449,12713985,12779521,12845057,12910596,12976129,13041668,13107201,13172737,13238273,13303809,13369348,13434881,13500421,13565956,13631489,13697026,13762561,13893633,13828097,13959173,14024709,14090245,14155777,14221313,14286849,14352385,14417922,14483457,14548993,14614533,14680069,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16646145,16580609,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17498113,17432577,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,20054017,20119553,20185089,20250625,20316161,20381700,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905988,20971525,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495833,21561349,21626881,21757953,21692417,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,23003137,23068673,23134209,23199745,23265283,23330817,23396353,23527425,23592961,23658497,23724035,23855105,23920641,23986177,24051713,24117249,24182785,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034755,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411021,26476545,26542081,26607617,26673153,26738689,26804225,26935297,27000833,27066369,27131905,27197441,27262977,27394049,27459585,27525123,27590657,27656193,27721729,27787265,27852801,27983873,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425667,29491201,29556737,29687810,29753345,29818881,29884417,30015489,30081025,30212097,30277633,30343171,30408717,30539777,30605313,30670849,30801921,30867457,30932994,30998529,31064065,31195137,31260673,31326209,31391745,31457281,31588353,31653890,31719425,31784962,31916033,31981570,32047105,32178177,32112641,32243713,32309249,32374785,32440321,32571393,32636929,32702465,32768001,32833537,32899073,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685506,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34406401,34471937,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35192833,35258369,35323905,35454977,35520513,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338562,38404097,38469633,38535169,38600705,38666241,38731777,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845893,39911425,40042497,39976961,40108033,40173569,40239105,40304641,40435713,40501262,40566785,40632321,40697858,40763393,40828929,40894465,40960005,41025537,41091073,41156609,41222145,41287681,41353217,41418757,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42074113,42139653,42205185,42270721,42336257,42401793,42532877,42598401,42663937,42729477,42795013,42860545,42926081,42991621,43057153,43188225,43253761,43319297,43384833,43450373,43515905,43646977,43712513,43778053,43843593,43909121,43974657,44040193,44105729,44236801,44302337,44367873,44433409,44498949,44695553,44761089,44892161,45023233,45088769,45154305,45219847,45350918,45416450,45481989,45547521,45678593,45744133,45809665,45875205,46071809,46137349,46202885,46268417,46399489,46465025,46530573,46596101,46727169,46792705,46858241,46923777,46989317,47120385,47185925,47251457,47316997,47382541,47448094,47579141,47644673,47710209,47775745,47841281,47906817,47972353,48037901,48103425,48168961,48234501,48300037,48365569,48431109,48496645,48562177,48627741,48693255,48758814,48824322,48889861,48955421,49020935,49086493,49152001,49217542,49283077,49348617,49414174,49479681,49545223,49610781,49676289,49741838,49807390],"caches":[5373953,6094849,43515906],"create":[393217,5767169,6029314,6488065,6553601,6684675,6881281,7208961,7274498,7340033,7405569,7733251,7864321,8060930,8388609,8323073,8454146,9043969,9175041,9240577,9306113,9371649,9568257,9895937,10027009,10420225,10944513,11010049,11403265,13041665,13369345,14090241,17432577,21561345,49217537],"common":[25427970,31916033,41943041,43974657,47251457],"close":[44761089],"compile":[4390921,17694728,18087943,18808840,19529735,19726344,20709383,20774920,21102600,21233672,21299208,21495817,21757959,21954568,22544392,24838152,25886728,26345479,30081034,31260679,33226760,35651594,46202889,48758793],"completion":[6094849],"compilation":[18284545,18808833,19857409,20774913,21233665,21364737,22544385,23134209,24838145,24903681,26148865,31195137,33226753,44302338,45547523],"commonjs":[31064066,32309249,33095686,34537473,46137346],"callback":[1572865,4259842,4390915,4784130,5046274,5177346,5242882,5373953,5701634,6094849,6684674,7602178,7667714,7733249,8060929,15728642,15990786,17235970,18284546,19202050,20512770,21495813,24051714,24903682,27983873,28835841,30867459,32309250,34013185,34537474,34996225,35061761,35717121,35979265,36044801,36569091,37027841,38404097,39976961,41287681,41680897,42008577,42336257,45350914,45809667,46202883,47448067,48627715,48758790,48955395,49086467,49414147,49610755,49807363],"contain":[6553601,7208961,9699329,9830401,10354689,10813441,17301505,33357825,44761089],"comments":[131073,196609,262145,327681,393217,458753,589825,720897,655361,786433,851969,917505,983041,1048577,1114113,1179649,1310721,1245185,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4259841,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5242881,5373953,5505025,5439489,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13828097,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16646145,16580609,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21757953,21692417,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31522817,31457281,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32178177,32112641,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40042497,39976961,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43581441,43515905,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,47054849,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361],"cleared":[196609,458753,851969,42729473,48431105],"cancels":[21495809,29753345,48758785],"casts":[3407875,7798785,8519682,8585217,12648451,46596099,48300035],"custom":[1114113,2228225,3866625,4128774,31916033,33292289,36372481,40501249,40960001,45350913,45481986,49741825],"compliance":[49676289],"character":[32374785,34144257,37224449,43646978,44498945,47316993],"components":[7274499],"control":[41549828,41877505,46727169],"componentmodel":[851969],"connect":[1638401,2097153,5832709,6225925,42795009,43778049],"collect":[17367041,18022401,27852801,28639233],"comtype":[5767174,12648449,46596097],"collection":[196609,458753,851969,1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293769,2490369,2555905,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4259842,4390914,5046274,5177346,5242882,5570561,5636097,5701634,6291457,6553611,6619147,7208962,7602178,7667714,8978433,9109505,9502721,9633793,9699330,9830402,9961473,10158081,10354690,10616833,10747905,10813442,11141121,12648450,14811138,15204354,18939906,21495810,24641538,25624579,26279941,28704772,29360130,30801922,31916034,32571394,33030145,33554433,34209793,34734082,35848193,36438017,36634625,39321601,39845889,40370177,40501249,41418753,41680897,42139649,42401793,42532865,42729492,42795009,42991617,43450369,43778049,43843585,44302337,44498945,45219841,45350913,45481985,45875202,46202882,46399489,46465027,46530561,46596098,46989315,47316993,47382529,47448066,47579137,47775745,48037889,48234497,48300033,48431108,48496641,48627714,48693249,48758786,48955394,49020929,49086466,49217538,49348609,49414146,49545217,49610754,49741825,49807362],"correct":[21692417,47972353,48168961,48627713,48955393,49610753],"converting":[19267585,23986177,24182785,24772609,25755649,31391745],"collectcpuprofilesample":[4390913,18481157,21495809,30212101,46202881,48758785],"cacheaccepted":[18284549,18808837,19857413,20774917,21233669,21364741,22544389,23134213,24838149,24903685,31195141,33226757],"cleaning":[9568257],"corresponding":[6029313,6488065,6553601,6684674,7143425,7208961,13172737,13828097,14548993,15335425,16056321,23068673,23658497,24510465,25165825,42729473,45154305],"cachekind":[17694725,18284549,18808837,19202053,19726341,19857413,20512773,20774917,21102597,21233669,21299205,21364741,21954565,22151173,22544389,23134213,23920645,24838149,24903685,25886725,30277637,31195141,32112645,33226757],"conjunction":[44761089],"called":[9764865,13631489,16121857,21037057,21889025,25362433,26542081,29097985,29753345,31916034,33423361,36044801,42008577,45350913,46792705],"clearscript":[65537,131077,196610,262146,327682,393218,458754,524289,589826,655365,720901,786437,851973,917509,983045,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997701,4063237,4128774,4194310,4259842,4325381,4390914,4456453,4521989,4587526,4653062,4718597,4784135,4849666,4915205,4980741,5046274,5111814,5177346,5242882,5308421,5373960,5439493,5505029,5570562,5636098,5701634,5767173,5832709,5898245,5963781,6029317,6094856,6160389,6225925,6291458,6356997,6422533,6488069,6553606,6619142,6684677,6750213,6815750,6881285,6946821,7012358,7077893,7143429,7208965,7274501,7340037,7405573,7471110,7536645,7602178,7667714,7733253,7798789,7864325,7929861,7995397,8060933,8126469,8192005,8257541,8323077,8388613,8454149,8519685,8585221,8650757,8716293,8781830,8847365,8912901,8978437,9043973,9109509,9175045,9240581,9306117,9371653,9437190,9502725,9568261,9633797,9699333,9764870,9830405,9895941,9961477,10027013,10092549,10158085,10223621,10289157,10354693,10420229,10485765,10551301,10616837,10682373,10747909,10813445,10878981,10944517,11010053,11075589,11141125,11206661,11272197,11337733,11403269,11468805,11534341,11599877,11665413,11730949,11796485,11862021,11927557,11993093,12058629,12124165,12189701,12255237,12320773,12386309,12451846,12517382,12582917,12648450,12713989,12779525,12845061,12910598,12976134,13041670,13107205,13172742,13238277,13303813,13369349,13434885,13500421,13565958,13631493,13697030,13762565,13828101,13893637,13959174,14024709,14090245,14155781,14221318,14286853,14352390,14417925,14483461,14548997,14614534,14680069,14745605,14811141,14876678,14942213,15007749,15073285,15138821,15204357,15269894,15335429,15400965,15466501,15532037,15597573,15663109,15728647,15794181,15859717,15925254,15990791,16056325,16121861,16187397,16252933,16318469,16384005,16449542,16515077,16580613,16646149,16711685,16777221,16842757,16908293,16973831,17039365,17104901,17170437,17235975,17301509,17367045,17432583,17498118,17563654,17629190,17694727,17760262,17825797,17891333,17956871,18022406,18087941,18153477,18219014,18284552,18350086,18415621,18481157,18546693,18612230,18677765,18743302,18808838,18874373,18939909,19005445,19070982,19136518,19202056,19267589,19333125,19398662,19464199,19529734,19595269,19660805,19726342,19791877,19857415,19922949,19988485,20054023,20119557,20185095,20250629,20316165,20381701,20447238,20512776,20578310,20643845,20709381,20774918,20840454,20905989,20971526,21037061,21102598,21168133,21233670,21299206,21364743,21430277,21495810,21561350,21626886,21692423,21757957,21823493,21889029,21954566,22020102,22085637,22151175,22216710,22282245,22347781,22413319,22478853,22544390,22609926,22675462,22740998,22806534,22872069,22937605,23003143,23068678,23134214,23199751,23265287,23330822,23396358,23461893,23527430,23592966,23658501,23724039,23789573,23855109,23920646,23986181,24051719,24117255,24182789,24248325,24313861,24379398,24444933,24510470,24576006,24641541,24707079,24772613,24838151,24903688,24969221,25034758,25100295,25165830,25231362,25296898,25362437,25427971,25493509,25559042,25624578,25690114,25755653,25821190,25886727,25952261,26017794,26083330,26148867,26214405,26279938,26345477,26411010,26476551,26542085,26607618,26673154,26738690,26804226,26869762,26935299,27000838,27066373,27131906,27197442,27262978,27328514,27394051,27459586,27525127,27590658,27656197,27721730,27787266,27852805,27918343,27983874,28049410,28114950,28180482,28246018,28311554,28377094,28442629,28508162,28573701,28639238,28704770,28770310,28835842,28901378,28966914,29032453,29097989,29163525,29229058,29294594,29360130,29425670,29491202,29556738,29622277,29687810,29753349,29818882,29884418,29949954,30015493,30081026,30146565,30212101,30277639,30343174,30408706,30474242,30539778,30605314,30670853,30736386,30801925,30867458,30932994,30998530,31064066,31129602,31195142,31260678,31326210,31391749,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916035,31981570,32047106,32112646,32178182,32243714,32309253,32374786,32440322,32505858,32571394,32636930,32702466,32768005,32833543,32899077,32964610,33030146,33095685,33161218,33226759,33292294,33357825,33423365,33488902,33554437,33619973,33685506,33751045,33816581,33882118,33947653,34013186,34078725,34144258,34209797,34275330,34340869,34406405,34471941,34537477,34603010,34668549,34734082,34799621,34865157,34930690,34996226,35061762,35127301,35192834,35258373,35323909,35389442,35454978,35520517,35586053,35651586,35717122,35782658,35848194,35913733,35979266,36044802,36110341,36175877,36241415,36306946,36372483,36438018,36503557,36569090,36634629,36700165,36765701,36831237,36896773,36962306,37027842,37093381,37158918,37224453,37289989,37355525,37421062,37486597,37552133,37617666,37683205,37748741,37814277,37879814,37945349,38010885,38076421,38141954,38207493,38273029,38338565,38404098,38469637,38535173,38600709,38666246,38731781,38797314,38862853,38928389,38993925,39059461,39124997,39190533,39256070,39321605,39387141,39452677,39518213,39583749,39649285,39714821,39780358,39845894,39911429,39976962,40042501,40108037,40173573,40239109,40304645,40370182,40435717,40501254,40566789,40632325,40697861,40763397,40828933,40894469,40960007,41025541,41091077,41156613,41222149,41287682,41353221,41418759,41484293,41549829,41615365,41680901,41746437,41811973,41877509,41943045,42008582,42074117,42139655,42205189,42270725,42336258,42401797,42467333,42532872,42598405,42663941,42729479,42795015,42860549,42926085,42991622,43057157,43122693,43188229,43253765,43319301,43384837,43450374,43515909,43581445,43646981,43712517,43778055,43843591,43909125,43974661,44040197,44105733,44171269,44236805,44302341,44367877,44433413,44498951,44564485,44630029,44695557,44761093,44826629,44892165,44957701,45023237,45088773,45154309,45219847,45285381,45350918,45416453,45481990,45547525,45613061,45678597,45744134,45809669,45875206,45940741,46006277,46071813,46137350,46202886,46268421,46333957,46399493,46465029,46530567,46596103,46661637,46727173,46792709,46858245,46923781,46989318,47054853,47120389,47185926,47251461,47316999,47382535,47448074,47513605,47579142,47644677,47710213,47775749,47841285,47906821,47972359,48037895,48103429,48168965,48234502,48300039,48365573,48431111,48496646,48562181,48627721,48693254,48758791,48824326,48889862,48955401,49020935,49086472,49152005,49217542,49283078,49348615,49414152,49479685,49545222,49610762,49676294,49741830,49807368],"clearnocheck":[2293761,2621441,12320769,12713989,42729473,48431105],"calls":[7405569],"compare":[43843585],"compatibility":[8257538,33882113,37158913,37879809,38666241,39256065],"compiled":[3735553,4390921,17235970,17694722,18087938,18284546,18808834,19202050,19529730,19726338,19857410,19922946,20119554,20512770,20578306,20709379,20774914,21102595,21233667,21299202,21364738,21495819,21757955,21954563,22151170,22544387,22740994,23134210,23330818,23396354,23920642,24051714,24838146,24903682,25886722,26148865,26345474,28442629,30081033,30277634,31195138,31260674,32112642,32702466,33226754,35651593,37617665,38141953,40173569,40828929,43515905,46202889,48496644,48758795],"connects":[1638401,2097153,5832705,6225921,42795009,43778049],"classes":[2228233,3866633,17432577,25427969,26148865,26935297,27394049,31916033,40501257,46530561,47382529,49741833],"consolet":[7864322,8060930,9568260,10485762],"column":[34734081,37421058,46989313],"cstr":[25755649,31391745],"command":[4259841,5046273,5177345,5242881,5701633,7602177,7667713,19267596,21495809,23986188,24182796,24772620,25755662,31391758,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"continuationcallback":[31916033,34013185,34996225,35717121,37027841,38404097,39976961,41287681,42336257,44957702,45809676,47448065,48627713,48758785,48955393,49086465,49414145,49610753,49807361],"completes":[4390913,18874369,21495809,22347777,46202881,48758785],"completed":[5373953,6094849,9568257,18874369,22347777],"cancelinterrupt":[21037057,21495809,29753349,48758785],"contact":[524289],"compiles":[4390921,17235969,18284545,19202049,19857409,19922945,20119553,20512769,20578305,21364737,21495817,22151169,23134209,23330817,23920641,24051713,24903681,30277633,30867465,31195137,32112641,36569097,46202889,48758793],"checking":[2293763,2621443,12386305,12713985,13238273,42729475,48431107],"calling":[1703938,2228225,3211268,3866625,3932162,5046274,5177346,5242882,5701634,6160385,6291458,6356993,7602178,7667714,11599873,12189697,12320769,13434881,15073281,15400961,18415617,23461889,24313858,25559041,26017793,27066369,28442625,28573698,28966916,29622274,30670849,40501249,45744132,47185922,47448066,48627714,48758785,48955394,49152002,49414146,49545218,49610754,49741825,49807362],"checkaccess":[3932161,5046273,5177345,5242881,5701633,6291457,7602177,7667713,24313861,28573703,29622277,47448065,48627713,48955393,49152001,49414145,49545217,49610753,49807361],"copies":[1900546,1966082,2031618,2359300,2424834,2555905,10289153,11075585,11337729,11534337,12124161,19988481,41943042,42598402,43974658,45023236,46465025,47710210],"catch":[9568257,38928385,44695553],"caused":[12779521,16777217,31129602,35848194,36306945,39583745,44433409,44564481,45613057,47251458,49217538,49283073],"collectgarbage":[4259841,4390913,5046273,5177345,5242881,5701633,7602178,7667713,14811141,18939909,21495810,24641542,30801926,46202881,47448066,48627713,48758786,48955393,49086465,49414145,49610753,49807361],"consoles":[19267585,23986177,24182785,24772609,25755649,31391745],"code":[1245185,1703940,1835009,2162689,2228225,2686977,2818049,2883585,3080193,3211272,3407873,3473409,3866625,4259878,5046310,5177382,5242918,5570561,5701670,5767169,6029313,6160386,6356995,6488065,6553601,6684673,6815746,6881281,7012355,7208961,7274497,7340033,7405569,7602214,7667750,7733249,7798785,7864321,7929857,8060929,8257537,8323073,8388609,8454145,8519681,9043969,9175041,9240577,9306113,9568259,9764865,9895937,10027009,10420225,10485761,10944513,11010049,11206657,11403265,11599873,12189697,12386305,12451841,12517377,12582913,12648449,12713985,12910593,12976129,13041665,13172738,13238273,13369345,13434881,13500417,13565953,13697026,13828098,13959169,14024705,14090241,14221321,14286850,14352385,14417922,14548994,14614529,14680065,14745601,14876674,14942218,15073281,15204353,15269889,15335426,15532042,15663105,15728642,15794177,15925249,15990785,16056322,16384010,16449537,16515081,16973825,17432590,17498113,17694726,18087942,18153483,18284545,18743304,18808839,19267585,19529734,19726342,19857409,20381697,20709382,20774919,20905985,20971521,21102598,21233671,21299206,21364737,21495846,21561345,21692420,21757958,21954566,22282241,22544391,22740993,23068674,23134209,23658498,23986177,24182785,24510466,24772609,24838151,24903681,24969217,25165826,25559042,25755649,25886726,25952257,26017794,26345478,26411016,26738690,27262980,27590664,28246020,28966920,30408712,30932993,31129602,31195137,31260678,31391745,31457281,31916041,32440322,33226759,34013188,34471937,34996228,35717125,35782657,35848193,36306945,36700161,36765697,37027845,37158917,37617668,37814274,38141956,38404101,38535169,38797313,38928385,39452674,39976965,40304641,40501249,40566785,41222145,41287685,41549825,41680897,42336261,42467329,42532866,42729473,43319297,43581441,43843586,44171265,44695553,44892163,45547524,45678595,45744136,46202881,46465025,46530562,46596098,46792706,47185924,47251458,47382530,47448107,47579137,47775745,47841281,47972353,48037890,48168961,48300034,48562179,48627756,48758827,48824323,48955436,49020929,49086506,49217537,49283073,49348611,49414187,49479681,49610796,49676291,49741825,49807403],"core":[327681,720898,655362,851970,917506,983044,3932161,3997698,4063234,4128770,4194306,4325378,4456450,4521986,4587522,4653058,4718594,4784130,4915202,4980738,5046273,5111810,5308418,5373954,5439490,5505026,5701633,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291457,6356994,6422530,6488067,6553604,6619138,6684675,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208964,7274498,7340034,7405570,7471106,7536642,7602177,7733251,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17104898,17170434,17301506,17432578,17498114,17563650,17825794,17891330,17956866,18153474,18350082,18546690,18612226,18743298,19005442,19136514,19267586,19595266,19660802,19988482,20381698,20905986,20971522,21561346,21692418,22282242,22872068,23003141,23068674,23265285,23461892,23658498,23724037,23789570,24182788,24248322,24313860,24510466,24576005,24641540,25100293,25165826,25362436,25493506,25821189,25952260,26476549,26542084,27066372,27394051,27525125,28573700,29032450,29163524,29622276,29949953,30015492,30146564,30539777,30670852,30998529,31391748,31588353,32047105,32178181,32309250,32768002,32833541,32899074,33095682,33292290,33423362,33488901,33554434,33619970,33751042,33816578,33882114,33947650,34078722,34209794,34340866,34406402,34471938,34537474,34668546,34799618,34865154,35127298,35258370,35323906,35520514,35586050,35717121,35913730,36110338,36175874,36241410,36503554,36700162,36765698,36831234,37027841,37224450,37289986,37355522,37486594,37748738,37814274,38010882,38076418,38338562,38404097,38535170,38731778,39059458,39124994,39387140,39583746,39845890,39911426,40042500,40304642,40370178,40501250,40566786,40697860,40894466,40960002,41091074,41222148,41418754,41615362,41680898,41746436,41943042,42008578,42074116,42139650,42205186,42467330,42532866,42598402,42663938,42729474,42795010,42860546,42991618,43057154,43122690,43188226,43319298,43515906,43581442,43646978,43778050,43843586,43909122,43974658,44105730,44171266,44433410,44498946,44564482,44630018,44826626,44892162,44957698,45023234,45219842,45285378,45350914,45481986,45613058,45678594,45744130,45809666,45940738,46006274,46137346,46268418,46333954,46465026,46530562,46596098,46661634,46792706,46858242,46923778,47054850,47120386,47185922,47251458,47316994,47382530,47448072,47513602,47644674,47710210,47841282,47972354,48037890,48103426,48168962,48300034,48431106,48562178,48627713,48693250,48955393,49020930,49086467,49152004,49217538,49283074,49348610,49414150,49479682,49545221,49610753,49676290,49741826,49807366],"consecutive":[34013185,35782657,37093377,40108033,46202881,48758785],"correspond":[34668545,38273025,41746433],"conversions":[17432577],"creates":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359298,2424833,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407884,3473409,3538945,3670017,3735553,3801089,3866625,4259849,4390928,5046281,5177353,5242889,5570561,5636097,5701641,6291457,6684673,6881282,7274497,7340034,7405570,7602185,7667721,7733250,7864322,7929859,8060930,8454145,8912897,9371649,10223617,10682369,11665409,12451841,12582913,12648459,13041665,13369345,13500417,14090241,17629185,17694721,17760257,18087937,18219009,18677761,18808833,19398657,19529729,19726337,20709377,20774913,20971521,21102593,21233665,21299201,21495826,21561345,21757953,21954561,22478849,22544385,24838145,25886721,26083330,26345473,26607618,26673155,27721734,30081033,30408712,31260673,33226753,35651593,39845889,40501249,41418753,41680897,41943041,42139649,42532865,42598401,42729473,42795009,42991617,43450369,43778049,43843585,43974657,44498945,45023234,45219841,45350913,45481985,45875201,46202896,46530561,46596107,46989313,47316993,47382529,47448073,47579137,47710209,47775745,48037889,48234497,48300044,48431105,48496641,48627721,48693249,48758802,48955401,49020929,49086473,49217537,49348609,49414153,49545217,49610761,49741825,49807369],"created":[17367041,17629185,17760257,18022401,18219009,18677761,18874369,19398657,21823489,22020097,22085633,22216705,22347777,22478849,22609921,22675457,22806529,23199745,23592961,24117249,24707073,27852801,27918337,28639233],"callbackt":[6684674],"configuratio":[4653057,4784129,5111809,5505025],"cached":[1507330,4521986,4587522,4915201,38076417,42991618,43515905],"considered":[39124993],"caching":[26148865,45547523],"copyto":[2555905,46465025],"callable":[6029313,6488065,7143425,7340033,7405569,8912897,9371649,12451841,12582913,12910593,13041665,13172737,13369345,13500417,13565953,13697025,13828097,13959169,14024705,14090241,14417921,14548993,14614529,14680065,15335425,16056321,20381697,20905985,20971521,21561345,21692417,22282241,23068673,23658497,24510465,25165825,31916034,46596097,48300033],"convert":[2228225,3866625,6160385,6356993,6815745,7012353,8323073,8388609,9043969,9175041,9240577,9306113,9895937,10027009,10420225,10944513,11010049,11403265,11599873,12189697,12517377,12976129,13434881,14352385,15073281,15925249,16711681,23986177,24182785,24772609,25755649,31391745,40501249,47644673,49741825],"containskey":[2293761,2555905,2621441,13107207,42729473,46465025,48431105],"corporation":[131073,196609,262145,327681,393217,458753,589825,720897,655361,786433,851969,917505,983041,1048577,1114113,1179649,1310721,1245185,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4259841,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5242881,5373953,5505025,5439489,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8388609,8323073,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13828097,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16646145,16580609,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21757953,21692417,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31522817,31457281,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32178177,32112641,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40042497,39976961,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43581441,43515905,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,47054849,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361],"customattributeloader":[1114115,4128770,4456454,31916033,33292300,36372481,40960001,45481993],"cnn":[9568257],"consuming":[4390918,18284545,18808833,19857409,20774913,21233665,21364737,21495814,22544385,23134209,24838145,24903681,30081027,30867459,31195137,33226753,35651587,36569091,46202886,48758790],"char":[3407873,8388614,10223617,10289153,11075585,11337729,11665409,12124161,12648449,17694721,18284545,18808833,19202049,19726337,19857409,20512769,20774913,21102593,21233665,21299201,21364737,21954561,22151169,22544385,23134209,23920641,24838145,24903681,25886721,30277633,31195137,32112641,33226753,45023233,46596097,48300033],"cleanup":[1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,2097153,2162689,2228225,2293761,2490369,2621441,2686977,2752513,2818049,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3670017,3735553,3801089,3866625,4259841,4390913,5046273,5177345,5242881,5570561,5636097,5701633,6291457,7602177,7667713,9568257,12648449,15204353,21495809,39845889,40501249,41418753,41680897,42139649,42532865,42729473,42795009,42991617,43450369,43778049,43843585,44498945,45219841,45350913,45481985,45875201,46202881,46530561,46596097,46989313,47316993,47382529,47448065,47579137,47775745,48037889,48234497,48300033,48431105,48496641,48627713,48693249,48758785,48955393,49020929,49086465,49217537,49348609,49414145,49545217,49610753,49741825,49807361],"child":[34734081,36634626,46989313],"contextual":[15007745,15859713],"compiledocument":[4390921,17235974,18284550,19202054,19857414,19922950,20119558,20512774,20578310,21364742,21495817,22151174,23134214,23330822,23920646,24051718,24903686,30277638,30867466,31195142,32112646,36569098,46202889,48758793],"currently":[1703938,3211268,6160385,6356993,11599873,12189697,13434881,14942209,15073281,15138817,15532033,15597569,17432577,17760257,18153473,18677761,19070977,19398657,20054017,20709377,21102593,21168129,21233665,21626881,21757953,21954561,22085633,22413313,22544385,22675457,22806529,23003137,23199745,23265281,23592961,23724033,23855105,24379393,25034753,25559041,25821185,26017793,26476545,27525121,27656193,27918337,28377089,28770305,28966916,29425665,30343169,33488897,34537473,37814273,39452673,40304641,45744132,47185922],"cast":[3407874,7798788,8519690,8585217,12648450,46596098,48300034],"constructors":[40501249,41680897,42532865,42729473,42991617,43843585,44498945,45350913,45481985,46202881,46530561,46596097,47316993,47382529,47448065,47579137,48037889,48300033,48431105,48627713,48758785,48955393,49086465,49217537,49283073,49348609,49414145,49610753,49807361],"critical":[4128769],"current":[131073,1114116,1179652,1245187,1376260,1441796,1507332,1572868,1638404,1769476,1835011,2097156,2162691,2228228,2293764,2490372,2621444,2686979,2752516,2818051,2949124,3014657,3080195,3145732,3276804,3342340,3407876,3473410,3538948,3670020,3735556,3801092,3866628,4259844,4390916,5046278,5177350,5242886,5570562,5636100,5701638,6291460,7602182,7667718,7864321,8454145,12648452,12779521,14155778,16580610,16777217,17629185,17760257,18219009,19398657,19660802,21495812,21692417,24313858,25493506,27066369,29032450,31129603,34996226,35717121,35848197,36306946,37027841,38404097,38535169,39190529,39583745,39649281,39845892,39976962,40501252,41287682,41418756,41680898,42074113,42139652,42336258,42532867,42729476,42795012,42991620,43319297,43450372,43581441,43515905,43778052,43843587,44367873,44433409,44498948,44564481,44761089,44892161,45219844,45350916,45481988,45613057,45678593,45875204,46202884,46268424,46530563,46596100,46989316,47251459,47316996,47382531,47448071,47579140,47775746,48037891,48168961,48234500,48300036,48431108,48496644,48627720,48693252,48758788,48955400,49020932,49086470,49217545,49283075,49348611,49414151,49545220,49610760,49676289,49741828,49807367],"compatible":[3407873,8257538,12648449,46596097,48300033],"causing":[41549825],"causes":[4259841,5046273,5177345,5242881,5701633,7602177,7667713,16121857,21037057,21495809,26542081,35848193,38928385,39190529,39649281,41353217,44695553,46071809,47448065,48627713,48758785,48955393,49086465,49217537,49414145,49610753,49807361],"com":[4259856,4849665,5046288,5177360,5242896,5701648,5767170,6619137,7274497,7602192,7667728,7864322,9371649,9568257,12451841,12582913,12648451,12910593,13041665,13369345,13500417,13565953,13959169,14024705,14090241,14614529,14680065,20381697,20905985,20971521,21495824,21561345,24248322,26411016,30408712,40304642,46596099,47448080,48103425,48627728,48758800,48955408,49086480,49414160,49610768,49807376],"copied":[10289154,11075586,11337730,11534338,12124162,19988482],"count":[131073,1310721,10289157,11075589,11337733,12124165,30474241,34734081,38600705,46465025,46989313,47775745],"collections":[6029314,6553602,7208962,8388609,8323073,8454145,9043969,9175041,9240577,9306113,9895937,10027009,10420225,10944513,11010049,11403265,12845057,13303809,21692417,42729474],"certain":[9371649,14221313,14286849,14745601,14876673,14942209,15269889,15532033,15728641,15990785,16384001,16515073,17432577,18153473,18743297],"cache":[1507329,4390924,4587522,9764865,17694724,18284548,18808836,19202052,19726340,19857412,20512772,20774916,21102596,21233668,21299204,21364740,21495820,21954564,22151172,22544388,23134212,23920644,24838148,24903684,25886724,30081030,30277636,30867462,31195140,32112644,33226756,34603009,35454977,35651590,36569094,38076417,39845889,42991618,43515905,45547526,46202892,48758796],"cachebytes":[17694725,18284550,18808838,19202053,19726341,19857414,20512773,20774918,21102597,21233670,21299205,21364742,21954565,22151173,22544390,23134214,23920645,24838150,24903686,25886725,30277637,31195142,32112645,33226758],"check":[33357825],"childnodes":[34734081,36634629,46989313],"contents":[1900547,1966083,2031619,2359300,2424835,4784134,5111814,5505030,10223618,10551298,10682370,10878978,11665410,11862018,12255234,19136518,26869762,27328514,32374786,34144257,36503558,41943043,42598403,43188229,43974659,44498946,45023236,47316993,47710211],"copyright":[131073,196609,262145,327681,393217,458753,589825,720897,655361,786433,851969,917505,983041,1048577,1114113,1179649,1310721,1245185,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4259841,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5242881,5373953,5505025,5439489,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8388609,8323073,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13828097,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16646145,16580609,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21757953,21692417,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22937601,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31522817,31457281,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32178177,32112641,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40042497,39976961,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43581441,43515905,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,47054849,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361],"clr":[6553604,7208962],"controls":[34013186,34996226,35717122,36765697,37027842,38404098,39976962,41287682,42336258,45678593,47448066,48627714,48758786,48955394,49086466,49414146,49610754,49807362]} \ No newline at end of file +{"consumed":[17039361,17104897,17301505,17694721,19005441,19333121,19529729,20119553,20185089,20512769,21495809,21626881,44761089],"converts":[1048580,3080201,2883596,4849665,5177345,5308417,5505025,6750210,6815746,7208962,7340034,7536642,8126466,9371649,9437185,9568258,9633793,9764865,10027010,10092545,10223628,10354689,10616833,11862018,12648449,13107201,13631490,14614530,14942210,23724034,24379394,41484297,41615372,42926092,43319304,43450372],"call":[1441793,4849666,5177346,5308418,5505026,7798785,8060929,8257537,9306113,9371650,9437186,9633794,9764866,10092546,10354690,10616834,11927553,12648450,13107202,15007745,15335425,17367041,22282242,23003138,23199745,23920641,24707073,27852802,28835841,29294593,30081025,33947650,34537473,34734082,35651585,37093377,37552129,38731777,41222145,41418753,43057154,43974657,44105730,45416449,45875201,46071809,47054849,47513601,48300034,48431106,48562178,48824321,49283073,49348609,49414145,49676289,49807361,49938433,50003969],"catchfunc":[13369352],"createscriptengine":[4390918,16973830,17563654,17760262,18415622,18612230,19202054,28573703,44040198],"context":[1114113,3866625,4390915,4915201,4980738,7798786,8060930,8257538,10551302,11206661,11927557,13303810,14548998,15007746,15335426,16384002,16515077,16711682,17694722,19529730,19726338,20578306,24707074,24903681,25952257,27000833,27918339,28770307,34537474,36765699,38141954,39583746,40042499,40894465,42270722,42532865,43974658,44040195,46268417,46923777,47513605,49348610,49414146,49676290,49807362,49938434,50003970],"clean":[13369345],"clear":[1900545,42336257],"contextcallback":[3866630,4915205,4980741,13303813,16384005,16711685,17694725,19529733,19726341,20578309,36765701,38141957,40042502,40894465,42270721,46268417,46923777],"client":[13369345],"calculate":[9306113],"comparison":[33751042,40501249,43778050],"case":[4128769,23461889,24313857,48889858],"converted":[41746433],"comparer":[10878977,11272193,13762567,14155783,25100290,28049410,29425666,34209798,44498946,47906820],"categories":[25624577,35782657,42139649],"cachedocument":[917505,3932166,46202881],"columnnumber":[30736385,35454981,48824321],"copy":[524289,720897,786433,851969,983041,1114113,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1966081,2031617,2097153,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,917505,3211265,2818049,2883585,3342337,3407873,3473409,3538945,3604482,3670017,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587522,4653057,4718593,4784129,4849665,4915201,4980737,5046274,5111809,5177345,5242882,5308417,5373953,5439490,5505025,5570561,5636098,5701633,5767170,5832705,5898242,5963778,6029313,6094849,6160385,6225921,6291458,6356993,6422529,6488065,6553601,6619137,6684673,6750210,6815746,6881281,6946817,7012353,7077889,7143425,7208962,7274497,7340034,7405570,7471105,7536642,7602177,7667713,7733249,7798785,7864322,7929857,7995393,8060929,8126466,8192001,8257537,8323073,8388609,8454145,8519681,8585219,8650754,8716289,8781825,8847361,8912897,8978433,9043970,9109505,9175041,9240577,9306114,9371649,9437185,9502721,9568258,9633793,9699329,9764865,9830403,9895938,9961473,10027010,10092545,10158081,10223617,10289156,10354689,10420225,10485764,10551297,10616833,10682369,10747908,10813441,10878977,10944513,11010052,11075585,11141124,11206657,11272193,11337729,11403265,11468803,11534337,11599875,11665412,11730945,11796481,11862018,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369346,13434881,13500417,13565953,13631490,13697025,13762561,13828097,13893634,13959169,14024705,14090242,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614530,14680065,14745601,14811137,14876673,14942210,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23789569,23855105,23986177,24117249,24248321,24313857,24444929,24510465,24576001,24641537,24707073,24838146,25034753,25296897,25427969,25690113,25821185,26083329,26476545,27656193,27852801,28639233,28901377,29753345,29884417,30343169,30474241,30605313,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31391745,31522817,31588353,31653889,31719425,31784961,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36306945,36372481,36438017,36503553,36569089,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,38076417,38141953,38207489,38273025,38338561,38404097,38535169,38600705,38666241,38731777,38797313,38862849,38928386,38993922,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714818,39780353,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501250,40566785,40632322,40697859,40763393,40828929,40894466,40960002,41025537,41091074,41222146,41287681,41418754,41484289,41549825,41615362,41680898,41746433,41877505,41943041,42074113,42139649,42270722,42336257,42401793,42598401,42795009,42860546,42926082,43057154,43122689,43188225,43253762,43384833,43450369,43515906,43581442,43646978,43712513,43778049,43843585,43909121,43974658,44040194,44105730,44171265,44236802,44302338,44367874,44433410,44498946,44564481,44695553,44761089,44892161,44957698,45023234,45088770,45154306,45219841,45350913,45416450,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202882,46333953,46399489,46465025,46530561,46596097,46661633,46792705,46858241,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513602,47579137,47710210,47775745,47841281,47906818,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824322,48889857,48955393,49020929,49086466,49152001,49217537,49283074,49348610,49414146,49479681,49545217,49610753,49676290,49741826,49807362,49872898,49938434,50003970],"customize":[14417921,21102593,21561345,23461889,24313857,45481985],"contexts":[6094849,13893633,14090241,16646145,17432577,17563649,17629185,17956865,18219009,18284545,18415617,18808833,19005441,19202049,19988481,20185089,20381697,20774913,20840449,20905985,21168129,21692417,21757953,22151169,22478849,22544385,22675457,22806529,23658497,23986177,25034753,26083329,32243713,32899073,34013185,34668545,35389441,39452673,39911425,40239105,46399489,46530561,46792705,47448065,47579137],"constructor":[3407873,3473409,3538945,4456449,4521985,5373953,6029313,6619137,7143425,7667713,8192001,8454145,8519681,9043970,9502721,10682369,10813441,10878977,11206657,11272193,11337729,11993089,12517377,13762561,13959169,14155777,14286849,14352385,14483457,14680065,14745601,14811137,15204353,15269889,15466497,15532033,15597569,15794177,15859713,15925249,16515073,16646145,17432577,17629185,18153473,18219009,18284545,18481153,18808833,18874369,19070977,19595265,19660801,19922945,20054017,20381697,20643841,20774913,20840449,20905985,21037057,21233665,21299201,21692417,21757953,22020097,22216705,22478849,22544385,22675457,22806529,22937601,23265281,23658497,23986177,25034753,25100289,25296897,25559041,25821185,26476545,26804225,26869761,26935297,27066369,27328513,27721729,27852802,28246017,28377089,29163521,29622273,30801921,31588353,32243713,32899073,33030145,34013185,35389441,36241409,39387137,39452673,39911425,40239105,41746433,42008577,42205185,45613057,45940737,46399489,46530561,47448065],"continues":[34668545],"constructed":[48889858],"coded":[28835841,41222145],"cancelawaitdebugger":[11927553,18677765,47513601],"contravariance":[6094849,13893633,14090241],"continue":[24903681,34144257,38600706],"collecting":[4390914,11927554,16121857,16318465,26345474,27262978,44040194,47513602,48234497,48693249],"console":[5898241,13369345,13893634,14417921,21102593,21561345,23461889,24313857,24838145,45481985],"contained":[29818881,42336257],"constraints":[18153479,18808839,18874375,19070983,19922951,20643847,20840455,21037063,21757959,22544391,23920641,26869766,29622278,37027841,44040198,44957697,46530567,47448071,47513606,49217537],"configuration":[1114116,3670018,4718594,4980738,7012354,23920641,24903682,42270725,42532868,42795009,49020929],"compiling":[33619969,48627713],"cpuprofilesampleinterval":[30146561,31457281,44040193,46333957,47185925,47513601],"clearscrip":[23920641,24903681,32440321,42795009,49020929],"cpu":[1441793,4390916,11927556,16121858,16318466,16580609,18087938,19791873,22609922,23920645,26345474,27262978,30146561,31457281,35651585,40960001,41418753,44040197,45416449,46333954,47185922,47513605,47775745,48234498,48693250,48824321],"completeness":[12845057,16056321,20316161,21954561],"conversion":[1703937,10158081,41680897,43515905,48889862],"caution":[48889857,49872897],"coordinated":[48889857],"corresponds":[34603009],"convenient":[4587521,5242881,25034753,44498945],"collector":[17367041,23199745,43188225,45875201,48300033],"creating":[16121857,23920641,47775745,48693249],"containing":[1310721,1507329,1638401,2031617,3604482,3670017,3866625,4718593,4915201,4980737,5439489,9830402,11468802,11599874,13828097,14024705,15532034,16777217,17170433,17301505,18350081,18546689,18743297,21495809,21823489,22347777,27131905,29491201,29818882,30736386,31784961,36110337,36896769,39059457,39583746,40697858,41287681,42336258,43581441,43646977,44433409,45088769,45154305,47710209,48824322],"comprise":[23920641,24903681,42795009,49020929],"collects":[4390913,11927553,16580609,19791873,44040193,47513601],"connection":[4784129,7602177,11927553,18284545,18415617,18612225,18677761,18874369,20054017,20381697,20643841,22544385,24903682,44302337,45023233,45613057,47448065,47513601,48889857],"combination":[3670017,4718593,4980737,7012353],"change":[17563649,17760257,18415617,18612225,33554433,43909121,44564481,44892161,45350913],"category":[1114114,3670024,3866631,4390918,4915206,4980744,7012353,7798788,8060932,8257540,11927562,13303815,13500423,15007748,15335428,16384007,16711687,16908295,17039367,17694727,18022407,18939911,19529735,19726343,20578311,21626887,22740999,24707076,24903681,25952258,27000834,27394050,27918342,28770310,30015490,32833537,33488897,34537476,35127297,35782658,35913734,37289991,38141959,38928387,40894466,42139650,42270722,42532866,43974660,44040198,46268418,47513610,49348612,49414148,49676292,49807364,49938436,50003972],"clsid":[5898241,7798792,8060936,8257544,8650753,11534337,11730951,11796487,11927560,12058631,12124167,12189697,12255233,12451841,12713985,12910599,15007752,15335432,15728647,16449537,22478849,22806529,24444929,24707080,25427975,25493508,26214404,34013185,34537480,35389441,37355527,38338561,39911425,40239105,43974664,47513608,49348616,49414152,49676296,49807368,49938440,50003976],"cause":[1966081,37027841,37093377,40828929,41222145,46071809,49217537],"contains":[655361,1900547,2686977,4587521,5046273,5242881,5570561,6160385,6225921,6356993,6488065,6684673,7733249,7929857,7995393,8323073,8388609,8781825,8978433,11075586,13172737,14876673,21364737,23920642,24576001,24772609,24903682,25231361,25624577,31064065,36569089,37945349,38207489,40894465,41222145,42336259,44498946,47906817,49086465],"caught":[13369345,48889857],"class":[65538,196610,262145,327682,393217,458754,524290,655361,786433,851969,983044,1048577,1114113,1245185,1376260,1703946,1769476,1835010,1966082,2097153,2162689,2228226,2293761,2359297,2424833,2490369,2555905,2621441,3145729,2686977,2949121,3080193,917505,3211268,2818049,2883585,3342338,3473409,3538945,3670017,3801092,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325380,4390913,4456449,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111812,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898243,5963777,6029313,6094849,6160385,6225921,6291460,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7471105,7602177,7667713,7733249,7798809,7864321,7929857,7995393,8060953,8126465,8192001,8257561,8323073,8388609,8454145,8519681,8650756,8585217,8716289,8781825,8847361,8978433,9043970,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9895937,10027009,10092545,10158090,10223617,10354689,10420225,10551297,10616833,10682369,10813441,10878977,10944513,11075585,11206657,11272193,11337729,11403265,11534340,11730949,11796485,11862017,11927577,11993089,12058629,12124165,12189700,12255236,12320769,12386305,12451844,12517377,12582913,12648449,12713988,12779521,12845057,12910597,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007769,15138817,15204353,15269889,15335449,15400961,15466497,15532033,15597569,15663105,15728645,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449540,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20643841,20578305,20774913,20840449,20905985,20971521,21037057,21168129,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22216705,22151169,22282241,22413313,22347777,22478851,22544385,22609921,22675457,22740993,22806531,22872065,22937601,23003137,23068673,23199745,23265281,23330817,23396353,23527425,23461889,23592961,23658497,23724033,23789569,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444932,24510465,24576001,24641537,24707097,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427973,25493517,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214413,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27590657,27721729,27656193,27787265,27852801,27918337,28049409,28246017,28311554,28377089,28442626,28508162,28573697,28639233,28770305,28835841,28966913,29032450,29097986,29163521,29229057,29294593,29425665,29491201,29556737,29687809,29622273,29753345,29949954,30015489,30081025,30146561,30277633,30605313,30539777,30670849,30736385,30801921,30867457,30932993,31064065,31195137,31260673,31326209,31457281,31588353,31719425,31784961,31916033,31981569,32047105,32243713,32374785,32440321,32505857,32571393,32702465,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013187,34078721,34144257,34209793,34275329,34340866,34406401,34537497,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35258369,35323905,35389443,35454977,35520513,35586049,35651585,35717121,35782657,35848193,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355525,37486593,37552129,37617665,37683202,37748737,37814273,37879809,38010881,38141953,38207489,38273025,38338564,38404097,38535169,38666241,38731777,38797313,38862849,38928389,38993925,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39649281,39714821,39780353,39911427,39845889,39976961,40042497,40108033,40173569,40239107,40304641,40370177,40435713,40501257,40632325,40566785,40697857,40763393,40828929,40894465,40960001,41025537,41091077,41156609,41222150,41287681,41353217,41418757,41484293,41549825,41615365,41680910,41746433,41811969,41877505,41943041,42008577,42074117,42139653,42270726,42336257,42401793,42532865,42598401,42729473,42795013,42860557,42926085,42991617,43057165,43122689,43188225,43253769,43319297,43384833,43450373,43515918,43581445,43646977,43712513,43778049,43843585,43909121,43974686,44040197,44105741,44171265,44236807,44302341,44367885,44433409,44498949,44564481,44630017,44695553,44761089,44826625,44892161,44957701,45023237,45088769,45154309,45219841,45285377,45350913,45416453,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46202885,46333953,46399489,46137346,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251458,47316993,47382529,47448065,47513630,47579137,47644673,47710209,47775745,47841281,47906821,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48758785,48693249,48824325,48889858,48955394,49020933,49086469,49152001,49217537,49283079,49348638,49414173,49479681,49545217,49610753,49676317,49741831,49807390,49872903,49938461,50003997],"caches":[3866625,4915201,35782658],"create":[655361,4587521,5046273,5242881,5439490,5898241,5963777,6094849,6619137,6750209,6815745,7208961,7340033,7536641,8126465,8650753,8585218,9043969,9306115,9568257,9895938,10027009,11534337,11730945,11862017,13369345,13631489,13893634,14090243,14614529,14942209,24444929,25034753,37355521,41222145],"common":[24903681,25624578,43122689,44433409,47710209],"close":[40828929],"compile":[4390921,11927561,16777223,17235976,17301512,17956871,18546696,18743303,19005448,19136519,19464199,19988488,20119560,20185096,20512776,21168136,21430280,21495816,22151175,22347784,26738698,27787274,44040201,47513609],"completion":[4915201],"compilation":[17039361,17104897,17301505,17694721,19005441,19333121,19529729,20119553,20185089,20512769,21495809,21626881,23920641,41943042,44761091],"commonjs":[30015490,32833542,36765697,40042497,42139650],"callback":[1114113,3866625,4390915,4915201,4980738,7798786,8060930,8257538,9306114,11927557,13303810,13893633,14090241,15007746,15335426,16384002,16711682,17694722,19529730,19726338,20578306,24707074,25952257,27000833,27918339,28770307,30539777,31260673,31457281,33357825,34078721,34144259,34537474,36634625,36765698,38010881,38141954,39059457,39845889,40042498,40894465,42270722,42532865,43974659,44040195,46268417,46923777,47513606,49348611,49414147,49676291,49807363,49938435,50003971],"contain":[4587521,5242881,8454145,12517377,13959169,14680065,18350081,27983873,40828929],"comments":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,3145729,2686977,3014657,2949121,3080193,2752513,917505,3211265,2818049,2883585,3342337,3407873,3473409,3276801,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7471105,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8650753,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13959169,13893633,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20643841,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21168129,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22216705,22151169,22282241,22413313,22347777,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23527425,23461889,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24969217,24903681,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27721729,27656193,27787265,27852801,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29622273,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30605313,30539777,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39911425,39845889,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41287681,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44171265,44105729,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46202881,46268417,46333953,46399489,46137345,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48758785,48693249,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"cleared":[262145,393217,786433,44498945,47906817],"cancels":[11927553,19267585,47513601],"casts":[2883587,6291457,7274497,7405570,10223619,41615363,42926083],"custom":[1703937,2359297,4194310,10158081,24903681,33095681,38993922,41680897,42270721,42795009,43515905,47644673],"compliance":[41746433],"character":[27131905,29491201,31064066,41025537,43581441,45154305],"components":[5439491],"control":[37093377,37224452,46071809],"componentmodel":[786433],"connect":[2818049,4063233,4784133,7602181,39714817,40632321],"collect":[16121857,16318465,48234497,48693249],"comtype":[2883585,8650758,42926081],"collection":[262145,393217,786433,851969,917505,983041,1114113,1245185,1376257,1703937,1769473,1900545,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2686985,2621441,3145729,3014657,2949121,3211265,2818049,2883586,3801089,4063233,4325377,4390914,4587531,4653057,5111819,5242882,5701633,6225921,6422529,6946817,7733249,7798786,7929857,8060930,8257538,8323073,8454146,8716289,8781825,8847361,9699329,10158081,10223617,11927554,11993089,12386305,12517378,12845058,13959170,14680066,15007746,15335426,16056322,20316162,21364737,21954562,24707074,24903682,28049410,28835841,29425666,30081025,30736386,34537474,34865153,36372481,36569089,38207489,38928385,38993921,39583745,39714817,40501249,40632321,40894465,40960001,41091073,41222146,41418753,41615361,41680897,41943041,42008581,42270721,42336259,42729473,42860545,42926082,43057153,43253761,43515905,43581441,43974658,44040194,44105729,44171265,44236801,44302337,44367873,44498964,44695553,44826628,44957697,45023233,45154305,45285379,45416450,46202881,47513602,47775745,47906820,48300034,48824323,49086465,49283073,49348610,49414146,49676290,49741825,49807362,49872897,49938434,50003970],"correct":[27852801,33554433,34406401,49676289,49938433,50003969],"converting":[14417921,21102593,21561345,23461889,24313857,45481985],"collectcpuprofilesample":[4390913,11927553,16580613,19791877,44040193,47513601],"cacheaccepted":[17039365,17104901,17301509,17694725,19005445,19333125,19529733,20119557,20185093,20512773,21495813,21626885],"cleaning":[13369345],"corresponding":[4587521,5046273,5242881,6881281,8585217,9306114,12320769,12582913,12779521,13041665,13172737,13434881,24576001,25690113,29753345,43188225,44498945],"cachekind":[16711685,17039365,17104901,17235973,17301509,17694725,17891333,18022405,18546693,19005445,19333125,19529733,19988485,20119557,20185093,20250629,20512773,20578309,21168133,21430277,21495813,21626885,22347781,22740997],"conjunction":[40828929],"called":[9175041,13238273,14221313,18677761,19267585,22085633,22872065,23068673,23527425,24903682,30932993,39059457,42270721,42598401,46923777],"clearscript":[65538,131074,196610,262146,327682,393218,458754,524293,589825,655362,720901,786437,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441797,1507330,1572865,1638402,1703938,1769474,1835013,1900546,1966082,2031618,2097154,2162690,2228229,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342341,3407877,3473413,3538949,3604482,3670022,3735554,3801090,3866632,3932166,3997701,4063234,4128773,4194310,4259845,4325378,4390914,4456453,4521989,4587526,4653058,4718597,4784133,4849669,4915208,4980743,5046277,5111814,5177349,5242885,5308422,5373957,5439493,5505030,5570566,5636101,5701634,5767173,5832709,5898245,5963781,6029318,6094853,6160389,6225922,6291461,6356998,6422530,6488069,6553605,6619141,6684678,6750213,6815749,6881285,6946818,7012358,7077893,7143429,7208965,7274501,7340037,7405573,7471109,7536645,7602181,7667717,7733253,7798786,7864325,7929861,7995397,8060930,8126469,8192005,8257538,8323077,8388613,8454149,8519685,8585221,8650757,8716290,8781829,8847365,8912901,8978437,9043973,9109509,9175046,9240581,9306117,9371653,9437189,9502725,9568261,9633797,9699333,9764869,9830405,9895941,9961477,10027013,10092550,10158082,10223618,10289157,10354693,10420229,10485765,10551301,10616838,10682373,10747909,10813445,10878981,10944517,11010053,11075589,11141125,11206661,11272197,11337733,11403269,11468805,11534342,11599877,11665413,11730949,11796486,11862021,11927554,11993093,12058629,12124166,12189702,12255237,12320773,12386306,12451845,12517381,12582917,12648454,12713990,12779526,12845061,12910597,12976133,13041669,13107206,13172742,13238277,13303815,13369349,13434886,13500422,13565957,13631493,13697029,13762565,13828102,13893637,13959173,14024710,14090245,14155781,14221317,14286853,14352389,14417925,14483463,14548997,14614533,14680069,14745607,14811141,14876677,14942213,15007746,15073285,15138821,15204357,15269893,15335426,15400965,15466502,15532038,15597573,15663109,15728645,15794181,15859718,15925253,15990789,16056325,16121862,16187397,16252933,16318469,16384007,16449541,16515077,16580613,16646149,16711688,16777222,16842757,16908294,16973829,17039367,17104902,17170437,17235974,17301511,17367045,17432581,17498117,17563654,17629190,17694728,17760262,17825797,17891334,17956869,18022407,18087941,18153479,18219013,18284550,18350085,18415622,18481157,18546695,18612230,18677765,18743302,18808838,18874375,18939910,19005446,19070982,19136517,19202053,19267589,19333126,19398661,19464197,19529736,19595270,19660805,19726343,19791877,19857414,19922950,19988486,20054022,20119558,20185094,20250630,20316165,20381702,20447238,20512774,20578312,20643847,20709381,20774918,20840454,20905990,20971525,21037063,21102597,21168134,21233670,21299206,21364741,21430278,21495815,21561349,21626887,21692423,21757959,21823493,21889029,21954565,22020103,22085637,22151173,22216710,22282245,22347783,22413317,22478855,22544391,22609925,22675462,22740999,22806535,22872069,22937607,23003141,23068677,23134213,23199749,23265286,23330821,23396357,23461893,23527429,23592965,23658503,23724034,23789573,23855109,23920643,23986181,24051714,24117253,24182786,24248325,24313861,24379394,24444933,24510469,24576005,24641541,24707074,24772611,24838149,24903683,24969218,25034759,25100290,25165826,25231363,25296902,25362434,25427974,25493506,25559042,25624579,25690117,25755650,25821189,25886722,25952258,26017794,26083333,26148866,26214402,26279938,26345474,26411010,26476550,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656197,27721730,27787266,27852807,27918338,27983873,28049410,28114946,28180482,28246018,28311554,28377090,28442626,28508162,28573698,28639237,28704770,28770306,28835842,28901381,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,29556738,29622274,29687810,29753350,29818882,29884421,29949954,30015490,30081026,30146562,30212098,30277634,30343173,30408706,30474245,30539778,30605317,30670850,30736386,30801925,30867461,30932997,30998533,31064069,31129605,31195141,31260674,31326210,31391749,31457282,31522821,31588358,31653893,31719429,31784965,31850501,31916034,31981573,32047109,32112645,32178181,32243717,32309253,32374789,32440325,32505861,32571397,32636933,32702469,32768005,32833541,32899078,32964613,33030150,33095686,33161221,33226757,33292293,33357826,33423365,33488901,33554439,33619973,33685509,33751045,33816582,33882117,33947653,34013190,34078722,34144261,34209797,34275333,34340869,34406405,34471941,34537474,34603013,34668551,34734085,34799621,34865157,34930693,34996229,35061765,35127301,35192837,35258373,35323909,35389446,35454982,35520517,35586053,35651589,35717126,35782661,35848197,35913733,35979269,36044805,36110341,36175877,36241410,36306949,36372485,36438021,36503557,36569093,36634626,36700165,36765701,36831237,36896773,36962309,37027845,37093381,37158917,37224453,37289990,37355526,37421061,37486597,37552133,37617669,37683205,37748741,37814277,37879813,37945357,38010882,38076421,38141959,38207493,38273029,38338566,38404101,38469634,38535173,38600709,38666245,38731781,38797317,38862853,38928390,38993926,39059462,39124997,39190533,39256069,39321605,39387141,39452678,39518213,39583750,39649285,39714823,39780357,39845890,39911431,39976965,40042501,40108037,40173573,40239110,40304645,40370181,40435717,40501255,40566789,40632327,40697861,40763397,40828933,40894469,40960005,41025541,41091078,41156610,41222150,41287685,41353218,41418758,41484294,41549829,41615367,41680902,41746438,41811970,41877509,41943045,42008578,42074118,42139654,42205186,42270726,42336261,42401797,42467330,42532866,42598405,42663938,42729474,42795015,42860552,42926087,42991618,43057159,43122693,43188229,43253767,43319298,43384837,43450374,43515910,43581447,43646981,43712517,43778053,43843589,43909126,43974664,44040198,44105735,44171269,44236807,44302343,44367879,44433413,44498951,44564486,44630018,44695557,44761093,44826626,44892166,44957702,45023239,45088773,45154311,45219845,45285378,45350918,45416454,45481989,45547525,45613062,45678597,45744133,45809669,45875205,45940741,46006277,46071813,46137350,46202886,46268418,46333957,46399493,46465029,46530567,46596101,46661637,46727170,46792709,46858245,46923778,46989317,47054853,47120389,47185925,47251461,47316997,47382533,47448071,47513607,47579141,47644675,47710213,47775749,47841285,47906823,47972357,48037893,48103429,48168965,48234501,48300037,48365573,48431109,48496645,48562181,48627717,48693254,48758789,48824326,48889862,48955397,49020934,49086470,49152005,49217541,49283079,49348618,49414152,49479685,49545221,49610757,49676297,49741830,49807368,49872902,49938441,50003978],"clearnocheck":[2686977,6225921,11272193,31195141,44498945,47906817],"calls":[9043969],"compare":[40501249],"compatibility":[5636098,33816577,43909121,44564481,44892161,45350913],"compiled":[2621441,4390921,11927563,16187394,16384002,16711682,16777218,16908290,17039362,17104898,17235970,17301506,17694722,17956867,17891330,18022402,18546690,18743298,18939906,19005443,19136514,19333122,19398658,19464194,19529730,19726338,19857410,19988483,20119554,20185091,20250626,20447234,20512770,20578306,21168131,21430274,21495810,21626882,22151171,22347778,22740994,23199749,23920641,26411009,26738697,27197441,27787273,29687810,35782657,40370177,40763393,41091076,44040201,47513611],"closest":[34603009],"connects":[2818049,4063233,4784129,7602177,39714817,40632321],"classes":[1703945,10158089,23920641,24772609,24903681,25034753,25231361,25624577,41680905,43057153,43515913,44367873],"consolet":[5898242,13369348,13893634,24838146],"column":[30736385,35454978,48824321],"cstr":[23461889,24313857],"command":[7798785,8060929,8257537,11927553,14417932,15007745,15335425,21102604,21561356,23461902,24313870,24707073,34537473,43974657,45481996,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"continuationcallback":[24903681,30539777,31260673,31457281,33357825,34078721,34144268,36634625,38010881,38600710,39845889,43974657,47513601,49348609,49414145,49676289,49807361,49938433,50003969],"completes":[4390913,11927553,18087937,22609921,44040193,47513601],"completed":[3866625,4915201,13369345,18087937,22609921],"cancelinterrupt":[11927553,19267589,23068673,47513601],"contact":[589825],"compiles":[4390921,11927561,16187393,16384001,16711681,16908289,17039361,17104897,17694721,17891329,18022401,18939905,19333121,19398657,19529729,19726337,20250625,20578305,21626881,22740993,27918345,28770313,44040201,47513609],"checking":[2686979,6225923,10944513,11403265,31195137,44498947,47906819],"calling":[1048578,1703937,2752514,3080196,4849665,5177345,5701634,7798786,8060930,9371649,9437185,9633793,9764865,10158081,11272193,15007746,15335426,17367041,20709377,22413313,23199745,23330818,23592962,23724033,24248321,24379393,24707074,28901378,34537474,41484292,41680897,43319300,43450370,43515905,43974658,45875201,47513601,49348610,49479682,49676290,49807362,49872898,49938434,50003970],"checkaccess":[2752513,5701633,7798785,8060929,15007745,15335425,23330821,23592967,24707073,28901381,34537473,43974657,49348609,49479681,49676289,49807361,49872897,49938433,50003969],"copies":[1310722,1507330,1638402,1900545,2031618,3604484,10289153,10485761,10747905,11010049,11141121,11665409,40697860,42336257,43646978,44433410,45088770,47710210],"catch":[13369345,47972353,48037889],"caused":[11337729,19660801,28835842,29556737,30212098,31391745,31653889,32047105,35848193,41222146,42074113,43122690],"collectgarbage":[4390913,7798785,8060929,8257537,11927554,12845061,15007745,15335425,16056325,20316166,21954566,24707073,34537474,43974657,44040193,47513602,49348610,49414145,49676289,49807361,49938433,50003969],"consoles":[14417921,21102593,21561345,23461889,24313857,45481985],"code":[983041,1048580,1179649,1376257,1703937,1769473,3014657,3080200,3211265,2883585,3801089,4325377,4587521,4849666,5046273,5177347,5242881,5308419,5439489,5505026,5636097,5767169,5898241,5963777,6094849,6291457,6750209,6815745,6946817,7208961,7340033,7405569,7536641,7798822,7864321,8060966,8126465,8257574,8650753,8585217,9043969,9175041,9306113,9371649,9437185,9568257,9633793,9764865,9895937,10027009,10092545,10158081,10223617,10616833,10944513,11403265,11534337,11730945,11796481,11862017,11927590,12058625,12124161,12189697,12255233,12320770,12451841,12582914,12648449,12713985,12779522,12910593,12976130,13041666,13107201,13172738,13303810,13369347,13434882,13500418,13631489,13697025,13828104,13893633,14024713,14090241,14417921,14614529,14745601,14942209,15007782,15335462,15466497,15728641,16449537,16777222,17039361,17104897,17235974,17301511,17694721,17956870,18546694,18743302,19005447,19136518,19333121,19464198,19529729,19857409,19988486,20119559,20185095,20512775,21102593,21168134,21430278,21495815,21561345,21626881,22151174,22282241,22347782,23003137,23461889,23724034,24313857,24379394,24444929,24576002,24707110,24838145,24903689,25034766,25165826,25427969,25493512,25690114,25821185,25886724,26083339,26214408,26411012,26476545,26607620,26673154,27197444,27590664,27656202,27852804,28639233,28835841,29556737,29753346,29949953,30146561,30212098,30539780,30670849,30998529,31195137,31260677,31457284,32702467,33226753,33357829,33423363,33554433,33619970,34078725,34275329,34406401,34537510,34603009,34734081,35586049,35979265,36438017,36634629,37224449,37289985,37355521,38010885,38076417,38141953,38338561,38404097,38469633,38862857,39845893,40501250,40894465,40960001,41222145,41484296,41615362,41680897,41746435,42074113,42336257,42401793,42598402,42860546,42926082,43057154,43122690,43253763,43319304,43450372,43515905,43778049,43909125,43974699,44040193,44105730,44367874,44498945,44761092,44957697,45481985,46137346,46792714,47054849,47251458,47513643,47579146,47972353,48037889,48300033,48431107,48562177,48627714,48889859,49283073,49348651,49414186,49545217,49676332,49807403,49938476,50004012],"core":[327681,524290,786434,1835010,2228228,2752513,3342338,3407874,3473410,3538946,3670018,3866626,3932162,3997698,4128770,4194306,4259842,4456450,4521986,4587524,4718594,4784130,4849666,4915202,4980738,5046275,5111810,5177346,5242884,5308418,5373954,5439490,5505026,5570562,5636098,5701633,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6291458,6356994,6488066,6553602,6619138,6684674,6750210,6815746,6881282,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7864322,7929858,7995394,8126466,8192002,8323074,8388610,8454146,8519682,8585218,8650754,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306115,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10354690,10289154,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11993090,12058626,12124162,12189698,12255234,12320770,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090243,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15073282,15138818,15204354,15269890,15335425,15466498,15532034,15728642,15794178,15859714,15925250,15990786,16252930,16449538,16515074,16646146,16842754,17432578,17498114,18350082,19660802,20709380,20905989,20971524,21299205,21364738,21561348,21692421,21889028,21954564,22020101,22216709,22413316,22478853,22675461,22806533,22872068,22937605,23003140,23134210,23330820,23396354,23461892,23527428,23592964,23658501,23855106,24117250,24248324,24444930,24510466,24576002,24641538,24707073,24838146,25034754,25231363,25296898,25427970,25690114,25821186,26083330,26476546,26935297,27459585,27525121,27656194,27852802,28377089,28639234,28901380,28966913,29753346,29884420,30343172,30474242,30605314,30867458,30932994,30998530,31064066,31129602,31195138,31391746,31522818,31653890,31719426,31784962,31850498,31981570,32047106,32112642,32178178,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32964610,33030146,33095682,33161218,33226754,33292290,33357825,33423362,33488898,33554434,33619970,33685506,33751042,33816578,33882114,33947650,34144258,34209794,34275330,34340866,34406402,34471938,34537473,34603010,34668546,34734082,34799618,34865154,34930690,34996226,35061762,35127298,35192834,35258370,35520514,35586050,35782658,35848194,35913730,35979266,36175874,36306946,36438018,36634625,36765698,36962306,37158916,37289986,37355522,37421058,37683204,37879812,37945346,38010881,38076418,38141954,38338562,38404100,38600706,38862850,38928386,38993922,39059458,39124996,39256066,39518212,39583746,39649282,39714818,39911429,40042498,40108034,40173570,40435714,40501250,40566786,40632322,40697858,40894466,41025538,41222146,41287682,41484290,41615362,41680898,41746434,42074114,42139650,42270722,42336258,42401794,42598402,42795010,42860546,42926082,43057154,43122690,43253762,43450370,43515906,43581442,43646978,43712514,43778050,43974662,44105730,44171266,44236802,44302338,44367874,44433410,44498946,44695554,45023234,45088770,45154306,45219842,45678594,45744130,45809666,45875202,46137346,46202882,46465026,46792706,46858242,47054850,47251458,47316994,47382530,47579138,47710210,47841282,47906818,48103426,48168962,48300034,48365570,48431106,48562178,48758786,49283074,49348616,49414147,49479684,49545218,49610754,49676289,49741826,49807366,49872901,49938433,50003969],"consecutive":[30146561,31457281,36831233,37748737,44040193,47513601],"correspond":[39124993,39321601,45219841],"conversions":[25034753],"creates":[851969,983041,1114113,1245185,1310721,1376257,1507329,1638401,1703937,1769473,1966081,2031617,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,917505,3211265,2883595,2818049,3604482,3801089,4063233,4325377,4390928,4653057,5439489,5701633,5767171,5898242,5963778,6094850,6225921,6422529,6619137,6946817,7798793,8060937,8257545,8716289,9043970,9306113,9830401,9895937,10158081,10223628,11468801,11534337,11599873,11730945,11796481,11927570,12058625,12386305,12451841,13893634,14090242,15007753,15335433,16777217,16973825,17235969,17301505,17563649,17760257,17956865,18415617,18546689,18612225,18743297,19005441,19136513,19202049,19464193,19988481,20119553,20185089,20512769,21168129,21430273,21495809,22151169,22347777,24444929,24641537,24707081,24969218,25493512,26738697,27787273,28573702,34537481,37355521,38338561,38928385,38993921,39714817,40501249,40632321,40697858,40894465,40960001,41091073,41156610,41222145,41353219,41418753,41615372,41680897,42270721,42860545,42926091,43057153,43253761,43515905,43581441,43646977,43974665,44040208,44105729,44236801,44302337,44367873,44433409,44498945,44957697,45023233,45088769,45154305,45416449,46202881,47513618,47710209,47906817,48824321,49086465,49283073,49348617,49414153,49676297,49741825,49807369,49872897,49938441,50003977],"created":[16121857,16318465,16973825,17563649,17760257,18087937,18415617,18612225,19202049,19922945,20381697,20643841,20774913,20840449,21037057,21233665,21757953,22544385,22609921,39387137,45613057,46399489,48234497,48693249],"callbackt":[9306114],"configuratio":[3670017,4718593,4980737,7012353],"cached":[917506,3932162,6553601,9240578,30867457,35782657,46202882],"considered":[45809665],"caching":[23920641,44761091],"copyto":[1900545,42336257],"callable":[5046273,5963777,6619137,6881281,8585217,9043969,11534337,11730945,11796481,12058625,12124161,12189697,12255233,12320769,12451841,12582913,12713985,12779521,12910593,13041665,13172737,13434881,15728641,16449537,24444929,24576001,24641537,24903682,25427969,25690113,27852801,28639233,29753345,37355521,38338561,41615361,42926081,46137345,47251457],"convert":[1703937,4849665,5177345,5308417,5505025,6750209,6815745,7208961,7340033,7536641,8126465,9371649,9437185,9568257,9633793,9764865,10027009,10092545,10158081,10354689,10616833,11862017,12648449,13107201,13631489,14614529,14942209,21102593,21561345,23461889,24313857,41680897,43515905,45481985,48103425],"containskey":[1900545,2686977,6225921,11075591,42336257,44498945,47906817],"corporation":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,3145729,2686977,3014657,2949121,3080193,2752513,917505,3211265,2818049,2883585,3342337,3407873,3473409,3276801,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7471105,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8650753,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20643841,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21168129,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22216705,22151169,22282241,22413313,22347777,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23527425,23461889,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24969217,24903681,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27721729,27656193,27787265,27852801,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29622273,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30605313,30539777,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39911425,39845889,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41287681,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44171265,44105729,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46202881,46268417,46333953,46399489,46137345,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48758785,48693249,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"customattributeloader":[2359299,3538950,4194306,24903681,33095692,38993929,42795009,47644673],"cnn":[13369345],"consuming":[4390918,11927558,17039361,17104897,17301505,17694721,19005441,19333121,19529729,20119553,20185089,20512769,21495809,21626881,26738691,27787267,27918339,28770307,44040198,47513606],"char":[2883585,10223617,10289153,10485761,11010049,11141121,11468801,11599873,14614534,16711681,17039361,17104897,17235969,17301505,17694721,17891329,18022401,18546689,19005441,19333121,19529729,19988481,20119553,20185089,20250625,20512769,20578305,21168129,21430273,21495809,21626881,22347777,22740993,40697857,41615361,42926081],"cleanup":[851969,917505,983041,1114113,1245185,1376257,1703937,1769473,1966081,2097153,2293761,2359297,2424833,2490369,2555905,2621441,2686977,3145729,3014657,2949121,3211265,2818049,2883585,3801089,4063233,4325377,4390913,4653057,5701633,6225921,6422529,6946817,7798785,8060929,8257537,8716289,10158081,10223617,11927553,12386305,13369345,15007745,15335425,24707073,34537473,38928385,38993921,39714817,40501249,40632321,40894465,40960001,41091073,41222145,41418753,41615361,41680897,42270721,42860545,42926081,43057153,43253761,43515905,43581441,43974657,44040193,44105729,44236801,44302337,44367873,44498945,44957697,45023233,45154305,45416449,46202881,47513601,47906817,48300033,48824321,49086465,49283073,49348609,49414145,49676289,49741825,49807361,49872897,49938433,50003969],"child":[30736385,36372482,48824321],"contextual":[11206657,16515073],"compiledocument":[4390921,11927561,16187398,16384006,16711686,16908294,17039366,17104902,17694726,17891334,18022406,18939910,19333126,19398662,19529734,19726342,20250630,20578310,21626886,22740998,27918346,28770314,44040201,47513609],"currently":[1048578,3080196,4849665,5177345,9371649,9437185,9633793,9764865,16646145,17432577,17563649,17629185,17956865,18219009,18284545,18415617,18808833,19005441,19202049,19988481,20185089,20381697,20774913,20840449,20905985,21168129,21692417,21757953,22151169,22478849,22544385,22675457,22806529,23658497,23724033,23986177,24379393,25034753,26083329,32243713,32899073,33619969,34013185,35389441,36765697,39452673,39911425,40239105,41484292,42401793,43319300,43450370,46399489,46530561,46792705,47448065,47579137,48627713],"cast":[2883586,6291460,7274497,7405578,10223618,41615362,42926082],"constructors":[38993921,40501249,40894465,41222145,41615361,42074113,42270721,42860545,42926081,43057153,43253761,43515905,43581441,43974657,44040193,44105729,44367873,44498945,44957697,45154305,46202881,47513601,47906817,49348609,49414145,49676289,49807361,49938433,50003969],"critical":[4194305],"current":[851972,917508,983043,1114116,1245188,1376259,1441793,1703940,1769475,1966084,2097156,2162689,2293764,2359300,2424836,2490372,2555908,2621444,2686980,3145732,2949124,3014658,2818052,3211267,2883588,3801091,4063236,4325379,4390916,4653060,5701636,5898241,6225924,6422532,6946818,7798790,8060934,8257540,8716292,9895937,10158084,10223620,11337729,11927556,12386308,15007750,15138818,15335430,16252930,17563649,17760257,18415617,18612225,19660801,23330818,23396354,24117250,24248321,24707078,27852801,28835845,29556738,30212099,30539778,31260674,31391745,31653889,32047105,32702465,33161224,33226753,33357825,33423361,34078722,34275329,34406401,34537478,34799618,35782657,35848193,35979265,36634625,38010881,38928388,38993924,39190529,39518209,39714820,39845890,39976961,40501251,40632324,40828929,40894466,40960002,41091076,41222153,41418756,41615364,41680900,41746433,42074115,42270724,42860547,42926084,43057155,43122691,43253763,43515908,43581444,43843585,43974663,44040196,44105731,44236804,44302340,44367875,44498948,44957700,45023236,45154308,45416452,46202884,47513604,47906820,48824324,49086468,49283076,49348615,49414150,49676296,49741828,49807367,49872900,49938440,50003976],"compatible":[2883585,5636098,10223617,41615361,42926081],"causing":[37224449],"causes":[7798785,8060929,8257537,11927553,14221313,15007745,15335425,23068673,23527425,24707073,28835841,34537473,37027841,39190529,39976961,41222145,43974657,47513601,47972353,48037889,49217537,49348609,49414145,49676289,49807361,49938433,50003969],"com":[2883587,3735553,5111809,5439489,5898242,6619137,7798800,8060944,8257552,8650754,11534337,11730945,11796481,11927568,12058625,12124161,12189697,12255233,12451841,12713985,12910593,13369345,15007760,15335440,15728641,16449537,23855106,24444929,24707088,25427969,25493512,26214408,34537488,37355521,38338561,42401794,42926083,43974672,47513616,49348624,49414160,49610753,49676304,49807376,49938448,50003984],"copied":[10289154,10485762,10747906,11010050,11141122,11665410],"count":[131073,1441793,10289157,10485765,11010053,11141125,29818881,30736385,35651585,40960001,42336257,48824321],"collections":[4587522,5242882,6750209,6815745,7208961,7340033,7536641,8126465,8585218,9568257,9895937,10027009,11862017,13631489,13762561,14155777,14614529,14942209,27852801,44498946],"certain":[6619137,12976129,13303809,13500417,13697025,13828097,14024705,25034753,26083329,27656193,37289985,38141953,38862849,46792705,47579137],"cache":[917505,3932162,4390924,9175041,11927564,16711684,17039364,17104900,17235972,17301508,17694724,17891332,18022404,18546692,19005444,19333124,19529732,19988484,20119556,20185092,20250628,20512772,20578308,21168132,21430276,21495812,21626884,22347780,22740996,26738694,27394049,27787270,27918342,28770310,30867457,35782657,38928385,44040204,44761094,46202882,46727169,47513612],"cachebytes":[16711685,17039366,17104902,17235973,17301510,17694726,17891333,18022405,18546693,19005446,19333126,19529734,19988485,20119558,20185094,20250629,20512774,20578309,21168133,21430277,21495814,21626886,22347781,22740997],"check":[27983873],"childnodes":[30736385,36372485,48824321],"contents":[1310723,1507331,1638403,2031619,3604484,3670022,4718598,4980742,8912898,9109506,9830402,9961474,11468802,11599874,15073282,15532038,27131905,29491202,32964613,40566790,40697860,42467330,42663938,43581442,43646979,44433411,45088771,45154305,47710211],"copyright":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,3145729,2686977,3014657,2949121,3080193,2752513,917505,3211265,2818049,2883585,3342337,3407873,3473409,3276801,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7471105,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8650753,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20643841,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21168129,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22216705,22151169,22282241,22413313,22347777,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23527425,23461889,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24969217,24903681,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27721729,27656193,27787265,27852801,27918337,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29622273,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30605313,30539777,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39911425,39845889,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41287681,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44171265,44105729,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46202881,46268417,46333953,46399489,46137345,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48758785,48693249,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969],"clr":[4587524,5242882],"controls":[30539778,31260674,31457282,33357826,33423361,34078722,35586049,36634626,38010882,39845890,43974658,47513602,49348610,49414146,49676290,49807362,49938434,50003970]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_Files.json b/docs/Reference/fti/FTI_Files.json index dc7a649e5..0dbd332b4 100644 --- a/docs/Reference/fti/FTI_Files.json +++ b/docs/Reference/fti/FTI_Files.json @@ -1 +1 @@ -["ClearScript Library - Redirect\u0000index.html\u000018","ClearScript Library - Search\u0000search.html\u000011","V8CpuProfile.Node.HitLine.HitCount Field\u0000html/F_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine_HitCount.htm\u0000125","HostTypeCollection Events\u0000html/Events_T_Microsoft_ClearScript_HostTypeCollection.htm\u000067","Undefined Fields\u0000html/Fields_T_Microsoft_ClearScript_Undefined.htm\u000052","NullSyncInvoker Fields\u0000html/Fields_T_Microsoft_ClearScript_Windows_Core_NullSyncInvoker.htm\u000054","ScriptEngineException Events\u0000html/Events_T_Microsoft_ClearScript_ScriptEngineException.htm\u000071","PropertyBag Events\u0000html/Events_T_Microsoft_ClearScript_PropertyBag.htm\u000060","General Error\u0000html/GeneralError.htm\u000032","VoidResult Fields\u0000html/Fields_T_Microsoft_ClearScript_VoidResult.htm\u000052","Undefined.Value Field\u0000html/F_Microsoft_ClearScript_Undefined_Value.htm\u0000100","VoidResult.Value Field\u0000html/F_Microsoft_ClearScript_VoidResult_Value.htm\u0000100","V8CpuProfile.Node.HitLine.LineNumber Field\u0000html/F_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine_LineNumber.htm\u000098","PropertyBag.PropertyChanged Event\u0000html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm\u0000156","Nothing.Value Field\u0000html/F_Microsoft_ClearScript_Windows_Nothing_Value.htm\u0000104","NullSyncInvoker.Instance Field\u0000html/F_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Instance.htm\u0000106","Nothing Fields\u0000html/Fields_T_Microsoft_ClearScript_Windows_Nothing.htm\u000053","CustomAttributeLoader Methods\u0000html/Methods_T_Microsoft_ClearScript_CustomAttributeLoader.htm\u0000172","Document Methods\u0000html/Methods_T_Microsoft_ClearScript_Document.htm\u0000158","DefaultScriptUsageAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u0000221","HitLine Fields\u0000html/Fields_T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u000066","DocumentCategory Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentCategory.htm\u0000158","EventConnection Methods\u0000html/Methods_T_Microsoft_ClearScript_EventConnection.htm\u0000170","DocumentLoader Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentLoader.htm\u0000193","DocumentSettings Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentSettings.htm\u0000231","EventSource Methods\u0000html/Methods_T_Microsoft_ClearScript_EventSource.htm\u0000171","Extensions Methods\u0000html/Methods_T_Microsoft_ClearScript_Extensions.htm\u0000143","EventConnection(T) Methods\u0000html/Methods_T_Microsoft_ClearScript_EventConnection_1.htm\u0000181","ImmutableValueAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u0000221","IArrayBuffer Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u0000136","IArrayBufferView Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u0000129","ITypedArray Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000164","EventSource(T) Methods\u0000html/Methods_T_Microsoft_ClearScript_EventSource_1.htm\u0000175","NoDefaultScriptAccessAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u0000221","DynamicHostObject Methods\u0000html/Methods_T_Microsoft_ClearScript_DynamicHostObject.htm\u0000716","HostTypeCollection Methods\u0000html/Methods_T_Microsoft_ClearScript_HostTypeCollection.htm\u0000441","ITypedArray(T) Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000205","IDataView Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000164","ScriptEngineException Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptEngineException.htm\u0000214","IPropertyBag Methods\u0000html/Methods_T_Microsoft_ClearScript_IPropertyBag.htm\u0000305","PropertyBag Methods\u0000html/Methods_T_Microsoft_ClearScript_PropertyBag.htm\u0000240","ScriptMemberAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000221","Undefined Methods\u0000html/Methods_T_Microsoft_ClearScript_Undefined.htm\u0000158","ScriptUsageAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u0000221","IScriptableObject Methods\u0000html/Methods_T_Microsoft_ClearScript_IScriptableObject.htm\u000057","V8CpuProfile Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u0000182","ScriptInterruptedException Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u000067","NoScriptAccessAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u0000221","Node Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000161","JavaScriptExtensions Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_JavaScriptExtensions.htm\u0000258","Sample Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u0000161","StringDocument Methods\u0000html/Methods_T_Microsoft_ClearScript_StringDocument.htm\u0000158","HostFunctions Methods\u0000html/Methods_T_Microsoft_ClearScript_HostFunctions.htm\u0000852","HitLine Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u0000164","V8RuntimeConstraints Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000159","IHostWindow Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_IHostWindow.htm\u000053","VoidResult Methods\u0000html/Methods_T_Microsoft_ClearScript_VoidResult.htm\u0000158","V8Script Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8Script.htm\u0000169","V8RuntimeHeapInfo Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000159","ScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptObject.htm\u0000798","ISyncInvoker Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_ISyncInvoker.htm\u0000107","DefaultScriptUsageAttribute Constructor\u0000html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm\u000091","DocumentInfo Constructor (String)\u0000html/M_Microsoft_ClearScript_DocumentInfo__ctor.htm\u0000127","CustomAttributeLoader.LoadCustomAttributes(T) Method\u0000html/M_Microsoft_ClearScript_CustomAttributeLoader_LoadCustomAttributes__1.htm\u0000316","DefaultScriptUsageAttribute Constructor (ScriptAccess)\u0000html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1.htm\u0000133","ScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptEngine.htm\u00001266","DocumentInfo Constructor (Uri)\u0000html/M_Microsoft_ClearScript_DocumentInfo__ctor_1.htm\u0000127","V8Runtime Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8Runtime.htm\u0000749","CustomAttributeLoader Constructor\u0000html/M_Microsoft_ClearScript_CustomAttributeLoader__ctor.htm\u000089","DocumentLoader.GetCachedDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_GetCachedDocument.htm\u0000163","DocumentLoader.CacheDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_CacheDocument.htm\u0000222","DocumentSettings.AddSystemDocument Method (String, Document)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument.htm\u0000216","DocumentSettings Constructor\u0000html/M_Microsoft_ClearScript_DocumentSettings__ctor.htm\u000089","DocumentSettings.AddSystemDocument Method (String, DocumentCategory, String, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_2.htm\u0000285","IWindowsScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u000054","DocumentLoader.DiscardCachedDocuments Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_DiscardCachedDocuments.htm\u0000104","Document Constructor\u0000html/M_Microsoft_ClearScript_Document__ctor.htm\u000089","VBScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_VBScriptEngine.htm\u00001662","DocumentSettings.AddSystemDocument Method (String, DocumentCategory, String)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_1.htm\u0000245","VBScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u00001661","JScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u00001661","EventConnection.disconnect Method\u0000html/M_Microsoft_ClearScript_EventConnection_disconnect.htm\u000098","DocumentLoader.LoadDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_LoadDocument.htm\u0000389","DynamicHostObject.HasMember Method\u0000html/M_Microsoft_ClearScript_DynamicHostObject_HasMember.htm\u0000203","DocumentSettings.AddSystemDocument Method (String, String)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_3.htm\u0000205","DocumentInfo Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentInfo.htm\u0000159","Nothing Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Nothing.htm\u0000159","JScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_JScriptEngine.htm\u00001662","ExtendedHostFunctions.comType Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_comType.htm\u0000354","EventSource(T).connect Method\u0000html/M_Microsoft_ClearScript_EventSource_1_connect.htm\u0000166","DynamicHostObject Constructor\u0000html/M_Microsoft_ClearScript_DynamicHostObject__ctor.htm\u000089","ExtendedHostFunctions Constructor\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions__ctor.htm\u000089","ExtendedHostFunctions.type Method (String, Object[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type.htm\u0000415","DocumentLoader.LoadDocumentAsync Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_LoadDocumentAsync.htm\u0000387","Extensions.ToHostType Method (Type)\u0000html/M_Microsoft_ClearScript_Extensions_ToHostType.htm\u0000248","EventSource.connect Method\u0000html/M_Microsoft_ClearScript_EventSource_connect.htm\u0000148","NullSyncInvoker Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_NullSyncInvoker.htm\u0000222","Extensions.ToRestrictedHostObject(T) Method (T)\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject__1.htm\u0000288","DocumentLoader Constructor\u0000html/M_Microsoft_ClearScript_DocumentLoader__ctor.htm\u000089","ExtendedHostFunctions.type Method (String, String, Object[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_1.htm\u0000485","ExtendedHostFunctions.lib Method (HostTypeCollection, String[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm\u0000432","ExtendedHostFunctions.typeLibEnums(T) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_typeLibEnums__1.htm\u0000280","HostFunctions.del(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_del__1.htm\u0000414","ExtendedHostFunctions.arrType(T) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_arrType__1.htm\u0000206","Extensions.ToHostType Method (Type, ScriptEngine)\u0000html/M_Microsoft_ClearScript_Extensions_ToHostType_1.htm\u0000289","HostFunctions.func Method (Int32, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_func.htm\u0000280","HostFunctions.getElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_getElement.htm\u0000227","Extensions.ToRestrictedHostObject(T) Method (T, ScriptEngine)\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject__1_1.htm\u0000328","HostFunctions.isTypeObj Method (Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_isTypeObj.htm\u0000205","ExtendedHostFunctions.type Method (Type)\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_2.htm\u0000219","ExtendedHostFunctions.lib Method (String[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib_1.htm\u0000357","HostFunctions.flags(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_flags__1.htm\u0000375","HostFunctions.newArr(T) Method (Int32[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newArr__1.htm\u0000299","HostFunctions.newObj(T) Method (Object[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj__1.htm\u0000356","HostFunctions.getProperty Method (IPropertyBag, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_getProperty.htm\u0000211","HostFunctions.isTypeObj(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isTypeObj__1.htm\u0000191","WindowsScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine.htm\u00001650","WindowsScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u00001659","HostFunctions.func(T) Method (Int32, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_func__1.htm\u0000479","HostFunctions.asType(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_asType__1.htm\u0000310","ExtendedHostFunctions.newComObj Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_newComObj.htm\u0000358","HostFunctions.newObj Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj.htm\u0000212","HostFunctions.setElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_setElement.htm\u0000268","HostFunctions.proc Method\u0000html/M_Microsoft_ClearScript_HostFunctions_proc.htm\u0000418","HostFunctions.getProperty Method (IDynamicMetaObjectProvider, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_getProperty_1.htm\u0000211","HostFunctions.setProperty Method (IDynamicMetaObjectProvider, String, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_setProperty_1.htm\u0000255","HostFunctions.isType(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isType__1.htm\u0000271","HostFunctions.toInt32 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt32.htm\u0000308","HostFunctions.toChar Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toChar.htm\u0000308","HostFunctions.newVar(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newVar__1.htm\u0000463","HostFunctions.cast(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_cast__1.htm\u0000256","HostFunctions.toStaticType Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toStaticType.htm\u0000191","HostFunctions.newObj Method (IDynamicMetaObjectProvider, Object[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj_1.htm\u0000225","HostFunctions.isNull Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isNull.htm\u0000175","HostFunctions.setProperty Method (IPropertyBag, String, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_setProperty.htm\u0000255","HostFunctions.removeElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_removeElement.htm\u0000227","HostFunctions.newArr Method (Int32[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newArr.htm\u0000206","HostTypeCollection.AddAssembly Method (Assembly)\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm\u0000137","HostFunctions.toByte Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toByte.htm\u0000308","HostTypeCollection Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor.htm\u000092","HostFunctions.toDecimal Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toDecimal.htm\u0000308","HostFunctions.toUInt16 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt16.htm\u0000308","HostFunctions.toInt64 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt64.htm\u0000308","HostFunctions.newObj Method (Object, Object[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj_2.htm\u0000297","HostFunctions.removeProperty Method (IPropertyBag, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_removeProperty.htm\u0000211","HostTypeCollection.AddType Method (String, String, Type[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType.htm\u0000240","HostFunctions.tryCatch Method\u0000html/M_Microsoft_ClearScript_HostFunctions_tryCatch.htm\u0000550","HostTypeCollection.AddAssembly Method (Assembly, Predicate(Type))\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_1.htm\u0000199","HostTypeCollection Constructor (Predicate(Type), String[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_2.htm\u0000231","IScriptableObject.OnExposedToScriptCode Method\u0000html/M_Microsoft_ClearScript_IScriptableObject_OnExposedToScriptCode.htm\u0000186","HostTypeCollection Constructor (Predicate(Type), Assembly[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_1.htm\u0000222","HostFunctions.toDouble Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toDouble.htm\u0000308","HostTypeCollection.AddAssembly Method (String)\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_2.htm\u0000146","HostFunctions.toUInt32 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt32.htm\u0000308","HostFunctions.removeProperty Method (IDynamicMetaObjectProvider, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_removeProperty_1.htm\u0000211","HostTypeCollection.AddType Method (String, Type[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType_1.htm\u0000196","IArrayBufferView.GetBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_GetBytes.htm\u0000131","IArrayBufferView.ReadBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_ReadBytes.htm\u0000268","HostTypeCollection Constructor (Assembly[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_3.htm\u0000162","HostFunctions.toSByte Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toSByte.htm\u0000308","HostFunctions.typeOf Method (Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_typeOf.htm\u0000305","IArrayBuffer.InvokeWithDirectAccess(T) Method (Func(IntPtr, T))\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_InvokeWithDirectAccess__1.htm\u0000254","HostTypeCollection.AddType Method (Type)\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType_2.htm\u0000130","ITypedArray(T).ToArray Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_ToArray.htm\u0000128","HostTypeCollection.AddAssembly Method (String, Predicate(Type))\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_3.htm\u0000208","HostTypeCollection Constructor (String[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_4.htm\u0000171","IArrayBufferView.InvokeWithDirectAccess Method (Action(IntPtr))\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_InvokeWithDirectAccess.htm\u0000199","HostFunctions.toInt16 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt16.htm\u0000308","HostFunctions.toUInt64 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt64.htm\u0000308","IArrayBufferView.WriteBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_WriteBytes.htm\u0000268","HostTypeCollection.GetNamespaceNode Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_GetNamespaceNode.htm\u0000152","HostFunctions.typeOf(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_typeOf__1.htm\u0000277","ImmutableValueAttribute Constructor\u0000html/M_Microsoft_ClearScript_ImmutableValueAttribute__ctor.htm\u000089","IArrayBuffer.ReadBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_ReadBytes.htm\u0000268","HostFunctions.toSingle Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toSingle.htm\u0000308","NoScriptAccessAttribute Constructor\u0000html/M_Microsoft_ClearScript_NoScriptAccessAttribute__ctor.htm\u000089","ITypedArray(T).Write Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Write.htm\u0000264","JavaScriptExtensions.ToPromise Method (ValueTask)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_2.htm\u0000267","IArrayBuffer.GetBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_GetBytes.htm\u0000135","PropertyBag.Remove Method\u0000html/M_Microsoft_ClearScript_PropertyBag_Remove.htm\u0000169","PropertyBag Constructor\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor.htm\u000097","IArrayBufferView.InvokeWithDirectAccess(T) Method (Func(IntPtr, T))\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_InvokeWithDirectAccess__1.htm\u0000248","HostFunctions Constructor\u0000html/M_Microsoft_ClearScript_HostFunctions__ctor.htm\u000089","ScriptEngineException Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_2.htm\u0000126","PropertyBag.Add Method\u0000html/M_Microsoft_ClearScript_PropertyBag_Add.htm\u0000187","IArrayBuffer.WriteBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_WriteBytes.htm\u0000269","JavaScriptExtensions.ToPromise Method (Task)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise.htm\u0000251","IArrayBuffer.InvokeWithDirectAccess Method (Action(IntPtr))\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_InvokeWithDirectAccess.htm\u0000205","PropertyBag Constructor (Boolean)\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_1.htm\u0000156","PropertyBag.RemovePropertyNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_RemovePropertyNoCheck.htm\u0000160","ScriptEngine.AddCOMObject Method (String, HostItemFlags, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_2.htm\u0000294","JavaScriptExtensions.ToPromise Method (ValueTask, ScriptEngine)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_3.htm\u0000307","ScriptEngine.AddCOMObject Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_6.htm\u0000254","ExtendedHostFunctions Methods\u0000html/Methods_T_Microsoft_ClearScript_ExtendedHostFunctions.htm\u00001233","PropertyBag.ClearNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_ClearNoCheck.htm\u0000109","ScriptEngineException Constructor (String, Exception)\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_3.htm\u0000168","PropertyBag Constructor (Boolean, IEqualityComparer(String))\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_2.htm\u0000201","ScriptEngine.AddCOMType Method (String, HostItemFlags, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_2.htm\u0000294","JavaScriptExtensions.ToPromise Method (Task, ScriptEngine)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_1.htm\u0000291","ScriptEngine.AddCOMObject Method (String, HostItemFlags, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_3.htm\u0000338","PropertyBag.ContainsKey Method\u0000html/M_Microsoft_ClearScript_PropertyBag_ContainsKey.htm\u0000175","ScriptEngine.AddHostType Method (String, HostItemFlags, Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_3.htm\u0000287","PropertyBag.SetPropertyNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_SetPropertyNoCheck.htm\u0000172","PropertyBag Constructor (IEqualityComparer(String))\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_3.htm\u0000162","ScriptEngine.AddCOMObject Method (String, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_7.htm\u0000298","JavaScriptExtensions.ToPromise(T) Method (Task(T))\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1.htm\u0000292","ScriptEngine.AddCOMObject Method (String, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_4.htm\u0000219","ScriptEngine.AddCOMType Method (String, HostItemFlags, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_3.htm\u0000338","ScriptEngine.Dispose Method (Boolean)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Dispose_1.htm\u0000205","ScriptEngine.AddRestrictedHostObject(T) Method (String, HostItemFlags, T)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1.htm\u0000289","PropertyBag.TryGetValue Method\u0000html/M_Microsoft_ClearScript_PropertyBag_TryGetValue.htm\u0000230","ScriptEngine.AddHostType Method (String, String, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_4.htm\u0000357","ScriptEngineException.GetObjectData Method\u0000html/M_Microsoft_ClearScript_ScriptEngineException_GetObjectData.htm\u0000199","ScriptEngine.AddCOMType Method (String, HostItemFlags, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm\u0000259","ScriptEngine.AddCOMType Method (String, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_4.htm\u0000219","ScriptEngine.AddCOMObject Method (String, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_5.htm\u0000263","ScriptEngineException.ToString Method\u0000html/M_Microsoft_ClearScript_ScriptEngineException_ToString.htm\u0000126","ScriptEngine.Evaluate Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate.htm\u0000238","ScriptEngine.EvaluateDocument Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument.htm\u0000206","JavaScriptExtensions.ToPromise(T) Method (Task(T), ScriptEngine)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_1.htm\u0000331","ScriptEngine.AddRestrictedHostObject(T) Method (String, T)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1_1.htm\u0000251","ScriptEngineException Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor.htm\u000091","ScriptEngine.AddHostType Method (String, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_5.htm\u0000313","ScriptEngine.AddCOMType Method (String, HostItemFlags, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_1.htm\u0000303","ScriptEngine.AddCOMType Method (String, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_5.htm\u0000263","ScriptEngine.ExecuteDocument Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument.htm\u0000169","ScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_CollectGarbage.htm\u0000131","ScriptEngine.EvaluateDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument_1.htm\u0000246","ScriptEngine.Execute Method (String, Boolean, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_2.htm\u0000310","ScriptEngineException Constructor (SerializationInfo, StreamingContext)\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_1.htm\u0000167","JavaScriptExtensions.ToPromise(T) Method (ValueTask(T))\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_2.htm\u0000309","ScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine__ctor.htm\u0000227","ScriptEngine.Finalize Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Finalize.htm\u0000167","ScriptEngine.ExecuteDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument_1.htm\u0000209","ScriptEngine.AddHostType Method (String, Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_6.htm\u0000247","ScriptEngine.Dispose Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Dispose.htm\u0000169","ScriptInterruptedException Constructor\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm\u000091","ScriptEngine.Execute Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_3.htm\u0000250","ScriptEngine Constructor (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine__ctor_1.htm\u0000192","ScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_GetStackTrace.htm\u0000148","ScriptEngine.EvaluateDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument_2.htm\u0000287","ScriptMemberAttribute Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_4.htm\u0000136","ScriptInterruptedException Constructor (SerializationInfo, StreamingContext)\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_1.htm\u0000167","JavaScriptExtensions.ToPromise(T) Method (ValueTask(T), ScriptEngine)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_3.htm\u0000348","ScriptEngine.ExecuteDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument_2.htm\u0000250","ScriptEngine.AddHostType Method (Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_7.htm\u0000227","ScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Interrupt.htm\u0000115","ScriptObject.Invoke Method\u0000html/M_Microsoft_ClearScript_ScriptObject_Invoke.htm\u0000196","ScriptInterruptedException.GetObjectData Method\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException_GetObjectData.htm\u0000191","ScriptInterruptedException Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_2.htm\u0000126","ScriptEngine.Evaluate Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_1.htm\u0000228","ScriptMemberAttribute Constructor (String, ScriptAccess)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_5.htm\u0000177","ScriptEngine.Execute Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_1.htm\u0000192","ScriptInterruptedException.ToString Method\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException_ToString.htm\u0000125","ScriptObject.SetProperty Method (Int32, Object)\u0000html/M_Microsoft_ClearScript_ScriptObject_SetProperty.htm\u0000169","JavaScriptExtensions.ToTask Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToTask.htm\u0000256","ScriptInterruptedException Constructor (String, Exception)\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_3.htm\u0000168","ScriptEngine.Invoke Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Invoke.htm\u0000202","ScriptObject.InvokeMethod Method\u0000html/M_Microsoft_ClearScript_ScriptObject_InvokeMethod.htm\u0000195","ScriptMemberAttribute Constructor (String, ScriptAccess, ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_6.htm\u0000217","V8RuntimeConstraints Constructor\u0000html/M_Microsoft_ClearScript_V8_V8RuntimeConstraints__ctor.htm\u000091","ScriptMemberAttribute Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm\u000091","NoDefaultScriptAccessAttribute Constructor\u0000html/M_Microsoft_ClearScript_NoDefaultScriptAccessAttribute__ctor.htm\u000089","V8Runtime.CompileDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_2.htm\u0000240","ScriptObject.SetProperty Method (String, Object[])\u0000html/M_Microsoft_ClearScript_ScriptObject_SetProperty_1.htm\u0000222","V8Runtime.BeginCpuProfile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile.htm\u0000160","ScriptEngine.Evaluate Method (String, Boolean, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_2.htm\u0000545","ScriptMemberAttribute Constructor (String, ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_7.htm\u0000175","ScriptMemberAttribute Constructor (ScriptAccess)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_1.htm\u0000133","V8Runtime.CreateScriptEngine Method (V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_1.htm\u0000221","V8Runtime.Compile Method (DocumentInfo, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_2.htm\u0000336","V8Runtime.CreateScriptEngine Method (String, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_5.htm\u0000319","ScriptUsageAttribute Constructor\u0000html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm\u000091","ScriptObject.DeleteProperty Method (Int32)\u0000html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm\u0000151","ScriptMemberAttribute Constructor (ScriptAccess, ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_2.htm\u0000172","V8Runtime.BeginCpuProfile Method (String, V8CpuProfileFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile_1.htm\u0000198","V8Runtime.Compile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_3.htm\u0000152","ScriptEngine.Evaluate Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_3.htm\u0000286","V8Runtime.CreateScriptEngine Method (V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_2.htm\u0000262","V8Runtime.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_3.htm\u0000404","ScriptMemberAttribute Constructor (ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_3.htm\u0000131","V8Runtime.Dispose Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Dispose.htm\u0000169","V8Runtime.CollectCpuProfileSample Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CollectCpuProfileSample.htm\u0000102","ScriptObject.DeleteProperty Method (String)\u0000html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty_1.htm\u0000153","ScriptUsageAttribute Constructor (ScriptAccess)\u0000html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor_1.htm\u0000133","V8Runtime.CreateScriptEngine Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_3.htm\u0000195","ScriptEngine.Execute Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute.htm\u0000201","V8Runtime.Compile Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_4.htm\u0000325","V8Runtime.EndCpuProfile Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_EndCpuProfile.htm\u0000161","V8Runtime.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CollectGarbage.htm\u0000129","ScriptObject.GetProperty Method (Int32)\u0000html/M_Microsoft_ClearScript_ScriptObject_GetProperty.htm\u0000152","V8Runtime Constructor (String, V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_11.htm\u0000232","StringDocument Constructor\u0000html/M_Microsoft_ClearScript_StringDocument__ctor.htm\u0000154","V8Runtime.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_4.htm\u0000367","ScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteCommand.htm\u0000206","V8Runtime.GetHeapInfo Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_GetHeapInfo.htm\u0000111","V8Runtime.CreateScriptEngine Method (String, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_4.htm\u0000277","V8Runtime Constructor (V8RuntimeConstraints, V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_2.htm\u0000173","V8Runtime.Compile Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile.htm\u0000195","ScriptObject.GetProperty Method (String, Object[])\u0000html/M_Microsoft_ClearScript_ScriptObject_GetProperty_1.htm\u0000209","Undefined.ToString Method\u0000html/M_Microsoft_ClearScript_Undefined_ToString.htm\u0000140","V8Runtime.Compile Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_5.htm\u0000291","V8Runtime.WriteHeapSnapshot Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_WriteHeapSnapshot.htm\u0000147","V8Runtime.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_5.htm\u0000363","V8ScriptEngine.CompileDocument Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument.htm\u0000159","ITypedArray(T).Read Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Read.htm\u0000264","V8Runtime Constructor (String, V8RuntimeConstraints, V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_9.htm\u0000271","V8Runtime.CompileDocument Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument.htm\u0000159","V8Runtime Constructor (V8RuntimeConstraints, V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_3.htm\u0000215","V8CpuProfile.ToJson Method\u0000html/M_Microsoft_ClearScript_V8_V8CpuProfile_ToJson.htm\u0000128","V8Runtime Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor.htm\u000094","ScriptEngine.AddCOMType Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_6.htm\u0000254","V8Runtime Constructor (V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_4.htm\u0000134","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_4.htm\u0000367","V8Runtime.CompileDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_1.htm\u0000199","V8CpuProfile.WriteJson Method\u0000html/M_Microsoft_ClearScript_V8_V8CpuProfile_WriteJson.htm\u0000148","V8Runtime.Compile Method (String, String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_6.htm\u0000211","V8ScriptEngine.Compile Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_4.htm\u0000323","V8Runtime Constructor (V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_5.htm\u0000175","ScriptEngine.AddCOMType Method (String, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_7.htm\u0000298","ScriptEngine.AddCOMObject Method (String, HostItemFlags, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm\u0000259","V8ScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Interrupt.htm\u0000128","V8ScriptEngine.Compile Method (String, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_8.htm\u0000351","V8Runtime Constructor (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_6.htm\u0000151","V8Runtime.Compile Method (String, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_7.htm\u0000386","V8ScriptEngine.Compile Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_5.htm\u0000290","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_5.htm\u0000363","V8ScriptEngine.WriteRuntimeHeapSnapshot Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_WriteRuntimeHeapSnapshot.htm\u0000151","V8ScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u00002143","ScriptEngine.AddCOMObject Method (String, HostItemFlags, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_1.htm\u0000303","V8Runtime Constructor (String, V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_7.htm\u0000190","ScriptEngine.AddHostObject Method (String, HostItemFlags, Object)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm\u0000482","V8ScriptEngine.Compile Method (String, String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_6.htm\u0000209","V8ScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm\u0000109","V8ScriptEngine.Dispose Method (Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm\u0000208","V8Runtime.Compile Method (String, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_8.htm\u0000352","V8ScriptEngine Constructor (V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_4.htm\u0000149","V8ScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_6.htm\u0000166","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_6.htm\u0000326","V8ScriptEngine Constructor (V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_1.htm\u0000154","ScriptEngine.AddHostObject Method (String, Object)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject_1.htm\u0000197","V8ScriptEngine.EndCpuProfile Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_EndCpuProfile.htm\u0000161","V8Runtime Constructor (String, V8RuntimeConstraints, V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_8.htm\u0000230","V8Runtime.CreateScriptEngine Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm\u0000138","V8ScriptEngine.Compile Method (String, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_7.htm\u0000384","V8ScriptEngine Constructor (V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_5.htm\u0000190","V8ScriptEngine Constructor (String, V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_7.htm\u0000210","V8ScriptEngine.Evaluate Method (V8Script)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm\u0000169","V8ScriptEngine Constructor (String, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_10.htm\u0000205","ISyncInvoker.Invoke(T) Method (Func(T))\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_Invoke__1.htm\u0000193","JScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm\u000094","VBScriptEngine Constructor (String, WindowsScriptEngineFlags, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_3.htm\u0000239","ScriptEngine.AddHostType Method (HostItemFlags, Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType.htm\u0000267","V8ScriptEngine.CompileDocument Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_7.htm\u0000323","V8ScriptEngine Constructor (String, V8RuntimeConstraints, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_8.htm\u0000250","WindowsScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine__ctor.htm\u0000342","V8ScriptEngine.CompileDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_1.htm\u0000199","V8ScriptEngine.Execute Method (V8Script)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm\u0000169","ISyncInvoker.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_VerifyAccess.htm\u0000100","JScriptEngine Constructor (WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_1.htm\u0000134","V8ScriptEngine Constructor (String, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_11.htm\u0000247","ScriptEngine.AddHostTypes Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostTypes.htm\u0000237","VBScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_4.htm\u0000361","IHostWindow.EnableModeless Method\u0000html/M_Microsoft_ClearScript_Windows_IHostWindow_EnableModeless.htm\u0000127","JScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_2.htm\u0000151","V8ScriptEngine.CompileDocument Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_8.htm\u0000286","V8ScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_ExecuteCommand.htm\u0000225","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_2.htm\u0000240","V8ScriptEngine Constructor (V8RuntimeConstraints, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_2.htm\u0000193","JScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine_ExecuteCommand.htm\u0000229","IWindowsScriptObject.GetUnderlyingObject Method\u0000html/M_Microsoft_ClearScript_Windows_IWindowsScriptObject_GetUnderlyingObject.htm\u0000114","WindowsScriptEngine.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_CheckAccess.htm\u0000129","JScriptEngine Constructor (String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_3.htm\u0000190","V8ScriptEngine.GetRuntimeHeapInfo Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetRuntimeHeapInfo.htm\u0000119","ScriptEngine.AddHostType Method (String, HostItemFlags, String, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_1.htm\u0000397","JScriptEngine Constructor (ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor.htm\u0000138","WindowsScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_CollectGarbage.htm\u0000149","V8ScriptEngine Constructor (V8RuntimeConstraints, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_3.htm\u0000235","JScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine_ExecuteCommand.htm\u0000225","V8ScriptEngine.Compile Method (DocumentInfo, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_1.htm\u0000367","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_3.htm\u0000404","V8ScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetStackTrace.htm\u0000159","JScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_4.htm\u0000313","JScriptEngine Constructor (WindowsScriptEngineFlags, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_1.htm\u0000179","ScriptEngine.AddHostType Method (String, HostItemFlags, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_2.htm\u0000353","HostFunctions.getProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_getProperty.htm\u000079","ExtendedHostFunctions.type Method\u0000html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_type.htm\u000082","WindowsScriptEngine.Dispose Method (Boolean)\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Dispose.htm\u0000212","Microsoft.ClearScript.JavaScript Namespace\u0000html/N_Microsoft_ClearScript_JavaScript.htm\u0000111","Nothing.ToString Method\u0000html/M_Microsoft_ClearScript_Windows_Nothing_ToString.htm\u0000144","Extensions.ToHostType Method\u0000html/Overload_Microsoft_ClearScript_Extensions_ToHostType.htm\u000083","HostTypeCollection.AddType Method\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection_AddType.htm\u000099","HostFunctions.isTypeObj Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_isTypeObj.htm\u000092","VBScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine_ExecuteCommand.htm\u0000272","JScriptEngine Constructor (String, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_2.htm\u0000196","V8ScriptEngine.Compile Method (DocumentInfo, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_2.htm\u0000335","WindowsScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_GetStackTrace.htm\u0000185","Extensions.ToRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_Extensions_ToRestrictedHostObject.htm\u000099","HostFunctions.newArr Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_newArr.htm\u000070","Microsoft.ClearScript.V8 Namespace\u0000html/N_Microsoft_ClearScript_V8.htm\u0000219","VBScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm\u000094","HostTypeCollection Constructor\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection__ctor.htm\u0000142","V8ScriptEngine.Compile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_3.htm\u0000150","ScriptEngine.AddCOMType Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm\u0000317","JScriptEngine Constructor (String, WindowsScriptEngineFlags, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_3.htm\u0000239","WindowsScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Interrupt.htm\u0000130","HostFunctions.func Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_func.htm\u000080","HostFunctions.newObj Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_newObj.htm\u0000117","ScriptEngine.AddHostObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm\u000069","ScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Dispose.htm\u000066","IArrayBufferView.InvokeWithDirectAccess Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_IArrayBufferView_InvokeWithDirectAccess.htm\u000086","Microsoft.ClearScript.Windows Namespace\u0000html/N_Microsoft_ClearScript_Windows.htm\u0000139","VBScriptEngine Constructor (WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_1.htm\u0000134","WindowsScriptEngine.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_VerifyAccess.htm\u0000106","ScriptObject.DeleteProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm\u000057","HostFunctions.removeProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_removeProperty.htm\u000073","ScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Evaluate.htm\u000096","IArrayBuffer.InvokeWithDirectAccess Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_IArrayBuffer_InvokeWithDirectAccess.htm\u000090","Microsoft.ClearScript.Windows.Core Namespace\u0000html/N_Microsoft_ClearScript_Windows_Core.htm\u0000103","ScriptObject.GetProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_GetProperty.htm\u000066","JScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_4.htm\u0000361","ScriptEngine.AddHostType Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostType.htm\u0000221","VBScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_2.htm\u0000151","V8Runtime.CreateScriptEngine Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm\u0000141","HostFunctions.setProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_setProperty.htm\u000079","V8ScriptEngine.BeginCpuProfile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile.htm\u0000161","V8ScriptEngine Constructor (String, V8RuntimeConstraints, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_9.htm\u0000291","ScriptEngine.EvaluateDocument Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_EvaluateDocument.htm\u000082","ScriptObject.Item Property\u0000html/Overload_Microsoft_ClearScript_ScriptObject_Item.htm\u000067","V8Runtime Constructor (V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_1.htm\u0000134","HostFunctions.typeOf Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_typeOf.htm\u000092","ScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Execute.htm\u000096","ScriptObject.SetProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_SetProperty.htm\u000068","VBScriptEngine Constructor (String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_3.htm\u0000190","V8Script.Dispose Method\u0000html/M_Microsoft_ClearScript_V8_V8Script_Dispose.htm\u0000162","V8Runtime Constructor\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime__ctor.htm\u0000265","NullSyncInvoker.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_CheckAccess.htm\u0000153","V8ScriptEngine.BeginCpuProfile Method (String, V8CpuProfileFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile_1.htm\u0000199","HostTypeCollection.AddAssembly Method\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm\u0000117","V8Runtime Constructor (String, V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_10.htm\u0000190","ScriptEngine.ExecuteDocument Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_ExecuteDocument.htm\u000082","ScriptUsageAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm\u000058","JavaScriptExtensions.ToPromise Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise.htm\u0000242","VoidResult.ToString Method\u0000html/M_Microsoft_ClearScript_VoidResult_ToString.htm\u0000140","V8ScriptEngine.CancelAwaitDebugger Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CancelAwaitDebugger.htm\u0000114","NullSyncInvoker.Invoke Method (Action)\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Invoke.htm\u0000176","V8Runtime.BeginCpuProfile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile.htm\u000064","ScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptEngine__ctor.htm\u000069","HostTypeCollection Properties\u0000html/Properties_T_Microsoft_ClearScript_HostTypeCollection.htm\u0000118","VBScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_4.htm\u0000313","PropertyBag Constructor\u0000html/Overload_Microsoft_ClearScript_PropertyBag__ctor.htm\u000088","V8ScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm\u0000277","ISyncInvoker.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_CheckAccess.htm\u0000122","ImmutableValueAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u000067","V8ScriptEngine.CancelInterrupt Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CancelInterrupt.htm\u0000111","ScriptEngineException Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptEngineException__ctor.htm\u000087","ScriptInterruptedException Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm\u000087","ISyncInvoker.Invoke Method\u0000html/Overload_Microsoft_ClearScript_Windows_Core_ISyncInvoker_Invoke.htm\u000075","NullSyncInvoker.Invoke(T) Method (Func(T))\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Invoke__1.htm\u0000238","V8Runtime.Compile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_Compile.htm\u0000233","ISyncInvoker.Invoke Method (Action)\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_Invoke.htm\u0000140","V8ScriptEngine.CollectCpuProfileSample Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CollectCpuProfileSample.htm\u0000102","V8Runtime.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_6.htm\u0000326","WindowsScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine__ctor.htm\u0000296","ScriptEngine.AddCOMObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm\u0000317","IPropertyBag Properties\u0000html/Properties_T_Microsoft_ClearScript_IPropertyBag.htm\u0000169","JScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor.htm\u0000142","ScriptMemberAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm\u0000167","NullSyncInvoker.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_VerifyAccess.htm\u0000130","ITypedArray(T) Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000109","V8ScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CollectGarbage.htm\u0000145","V8Runtime.CompileDocument Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_CompileDocument.htm\u0000251","ScriptMemberAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000117","NullSyncInvoker.Invoke Method\u0000html/Overload_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Invoke.htm\u000075","ModuleCategory Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ModuleCategory.htm\u000064","IScriptEngineException Properties\u0000html/Properties_T_Microsoft_ClearScript_IScriptEngineException.htm\u0000165","V8Runtime.CompileDocument Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_7.htm\u0000323","V8ScriptEngine.Compile Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm\u0000193","ScriptObject Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptObject.htm\u000099","VBScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine_ExecuteCommand.htm\u0000276","V8RuntimeConstraints Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000136","IArrayBuffer Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u000054","VBScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor.htm\u0000142","NoDefaultScriptAccessAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u000085","DefaultScriptUsageAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm\u000059","ScriptUsageAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u000079","IArrayBufferView Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u000070","Microsoft.ClearScript Namespace\u0000html/N_Microsoft_ClearScript.htm\u0000516","NoScriptAccessAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u000086","WindowsScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Dispose.htm\u000084","V8Runtime.CompileDocument Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_8.htm\u0000286","VBScriptEngine Constructor (ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor.htm\u0000138","V8RuntimeHeapInfo Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u000091","DocumentSettings.ContextCallback Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_ContextCallback.htm\u0000225","StringDocument Properties\u0000html/Properties_T_Microsoft_ClearScript_StringDocument.htm\u000094","ScriptEngine.AddRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject.htm\u000081","IDataView Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IDataView.htm\u000091","PropertyBag Properties\u0000html/Properties_T_Microsoft_ClearScript_PropertyBag.htm\u000090","JScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm\u0000124","V8Script Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Script.htm\u000068","HostSettings.AuxiliarySearchPath Property\u0000html/P_Microsoft_ClearScript_HostSettings_AuxiliarySearchPath.htm\u0000170","VBScriptEngine Constructor (WindowsScriptEngineFlags, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_1.htm\u0000179","DocumentSettings.FileNameExtensions Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_FileNameExtensions.htm\u0000140","ITypedArray Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u000098","V8CpuProfile Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u000086","ModuleCategory.CommonJS Property\u0000html/P_Microsoft_ClearScript_JavaScript_ModuleCategory_CommonJS.htm\u0000124","VBScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm\u0000124","V8Runtime.Compile Method (DocumentInfo, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_1.htm\u0000370","HostSettings.CustomAttributeLoader Property\u0000html/P_Microsoft_ClearScript_HostSettings_CustomAttributeLoader.htm\u0000141","Page Not Found\u0000html/PageNotFound.htm\u000066","DocumentSettings.LoadCallback Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_LoadCallback.htm\u0000142","VBScriptEngine Constructor (String, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_2.htm\u0000196","PropertyBag.Keys Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Keys.htm\u0000169","ModuleCategory.Standard Property\u0000html/P_Microsoft_ClearScript_JavaScript_ModuleCategory_Standard.htm\u0000126","DefaultScriptUsageAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u000078","ScriptEngine.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DocumentSettings.htm\u0000136","DocumentSettings.Loader Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_Loader.htm\u0000134","HostSettings.UseAssemblyTable Property\u0000html/P_Microsoft_ClearScript_HostSettings_UseAssemblyTable.htm\u0000207","ScriptEngine.Name Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Name.htm\u0000120","V8ScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u0000565","PropertyBag.Comparer Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Comparer.htm\u0000147","Document Properties\u0000html/Properties_T_Microsoft_ClearScript_Document.htm\u000073","PropertyBag.Values Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Values.htm\u0000169","V8Settings Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Settings.htm\u000062","IScriptEngineException.EngineName Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_EngineName.htm\u0000115","DocumentSettings.SearchPath Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_SearchPath.htm\u0000144","ScriptEngine.EnableAutoHostVariables Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnableAutoHostVariables.htm\u0000187","DocumentInfo.ContextCallback Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_ContextCallback.htm\u0000224","DocumentCategory Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentCategory.htm\u000065","ScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Script.htm\u0000158","Node Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000164","PropertyBag.Item Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Item.htm\u0000213","ScriptEngineException.EngineName Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_EngineName.htm\u0000133","V8ScriptEngine.BeginCpuProfile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile.htm\u000064","ScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptEngine.htm\u0000319","DocumentInfo Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentInfo.htm\u000096","DocumentInfo.Flags Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Flags.htm\u0000153","Sample Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u000065","ScriptEngine.UndefinedImportValue Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_UndefinedImportValue.htm\u0000190","ScriptObject.PropertyNames Property\u0000html/P_Microsoft_ClearScript_ScriptObject_PropertyNames.htm\u0000149","DocumentInfo Constructor\u0000html/Overload_Microsoft_ClearScript_DocumentInfo__ctor.htm\u000064","DocumentLoader Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentLoader.htm\u000063","ScriptEngine.EnableNullResultWrapping Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnableNullResultWrapping.htm\u0000217","DocumentInfo.Name Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Name.htm\u0000146","V8ScriptEngine.Compile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm\u0000232","JScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_Core_JScriptEngine.htm\u0000496","V8Runtime Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Runtime.htm\u0000168","ScriptEngineException Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptEngineException.htm\u0000292","ScriptEngine.UseReflectionBindFallback Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_UseReflectionBindFallback.htm\u0000190","DocumentSettings.AddSystemDocument Method\u0000html/Overload_Microsoft_ClearScript_DocumentSettings_AddSystemDocument.htm\u0000110","DocumentSettings Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentSettings.htm\u0000117","ScriptUsageAttribute.Access Property\u0000html/P_Microsoft_ClearScript_ScriptUsageAttribute_Access.htm\u0000117","DocumentInfo.SourceMapUri Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_SourceMapUri.htm\u0000139","ScriptEngine.EnforceAnonymousTypeAccess Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnforceAnonymousTypeAccess.htm\u0000216","ScriptInterruptedException Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000123","HostSettings Properties\u0000html/Properties_T_Microsoft_ClearScript_HostSettings.htm\u000079","ExtendedHostFunctions.lib Method\u0000html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm\u000075","StringDocument.Contents Property\u0000html/P_Microsoft_ClearScript_StringDocument_Contents.htm\u0000145","V8ScriptEngine.CompileDocument Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument.htm\u0000251","V8CpuProfile.Node.ChildNodes Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ChildNodes.htm\u0000167","ScriptEngine.VoidResultValue Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_VoidResultValue.htm\u0000198","ScriptEngine.ExposeHostObjectStaticMembers Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_ExposeHostObjectStaticMembers.htm\u0000139","DocumentInfo.Uri Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Uri.htm\u0000130","V8RuntimeHeapInfo.UsedHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_UsedHeapSize.htm\u0000120","V8ScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm\u000083","VBScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_Core_VBScriptEngine.htm\u0000496","V8ScriptEngine.RuntimeHeapSizeSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_RuntimeHeapSizeSampleInterval.htm\u0000154","V8RuntimeConstraints.MaxExecutableSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxExecutableSize.htm\u0000281","StringDocument.Encoding Property\u0000html/P_Microsoft_ClearScript_StringDocument_Encoding.htm\u0000137","ScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_FileNameExtension.htm\u0000127","ScriptInterruptedException.EngineName Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_EngineName.htm\u0000133","V8CpuProfile.Node.ColumnNumber Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ColumnNumber.htm\u0000144","DocumentLoader.Default Property\u0000html/P_Microsoft_ClearScript_DocumentLoader_Default.htm\u0000120","V8Runtime.CpuProfileSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_CpuProfileSampleInterval.htm\u0000164","V8ScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm\u0000133","V8ScriptEngine.RuntimeHeapSizeViolationPolicy Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_RuntimeHeapSizeViolationPolicy.htm\u0000141","StringDocument.Info Property\u0000html/P_Microsoft_ClearScript_StringDocument_Info.htm\u0000128","ScriptEngine.FormatCode Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_FormatCode.htm\u0000175","V8RuntimeConstraints.MaxNewSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxNewSpaceSize.htm\u0000191","V8CpuProfile.Node.FunctionName Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_FunctionName.htm\u0000123","ScriptInterruptedException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ErrorDetails.htm\u0000136","DocumentLoader.MaxCacheSize Property\u0000html/P_Microsoft_ClearScript_DocumentLoader_MaxCacheSize.htm\u0000180","V8ScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm\u0000133","V8Runtime.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_DocumentSettings.htm\u0000138","V8ScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_Script.htm\u0000167","ScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Global.htm\u0000170","WindowsScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine.htm\u0000482","V8CpuProfile.EndTimestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_EndTimestamp.htm\u0000147","ScriptInterruptedException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ExecutionStarted.htm\u0000137","V8CpuProfile.Node.HitCount Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitCount.htm\u0000144","V8RuntimeConstraints.MaxOldSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxOldSpaceSize.htm\u0000191","DocumentSettings.AccessFlags Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_AccessFlags.htm\u0000128","IHostWindow Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_IHostWindow.htm\u000061","V8Settings.GlobalFlags Property\u0000html/P_Microsoft_ClearScript_V8_V8Settings_GlobalFlags.htm\u0000162","V8Runtime.EnableInterruptPropagation Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_EnableInterruptPropagation.htm\u0000203","V8CpuProfile.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Name.htm\u0000117","ScriptInterruptedException.IsFatal Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_IsFatal.htm\u0000132","DocumentAccessFlags Enumeration\u0000html/T_Microsoft_ClearScript_DocumentAccessFlags.htm\u0000196","V8ScriptEngine.SuppressExtensionMethodEnumeration Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressExtensionMethodEnumeration.htm\u0000206","V8RuntimeConstraints.MaxYoungSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxYoungSpaceSize.htm\u0000249","V8CpuProfile.Node.HitLines Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLines.htm\u0000171","JScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_Core_JScriptEngine_FileNameExtension.htm\u0000151","V8Runtime.FormatCode Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_FormatCode.htm\u0000177","V8CpuProfile.Node.BailoutReason Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_BailoutReason.htm\u0000130","ScriptInterruptedException.ScriptException Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ScriptException.htm\u0000144","V8ScriptEngine.SuppressInstanceMethodEnumeration Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressInstanceMethodEnumeration.htm\u0000187","V8RuntimeHeapInfo.HeapSizeLimit Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_HeapSizeLimit.htm\u0000120","V8CpuProfile.Node.LineNumber Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_LineNumber.htm\u0000144","DocumentCategory Class\u0000html/T_Microsoft_ClearScript_DocumentCategory.htm\u0000249","ScriptMemberAttribute.Flags Property\u0000html/P_Microsoft_ClearScript_ScriptMemberAttribute_Flags.htm\u0000133","JScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u0000513","VBScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_Core_VBScriptEngine_FileNameExtension.htm\u0000151","V8Runtime.HeapSizeSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_HeapSizeSampleInterval.htm\u0000154","V8Script.DocumentInfo Property\u0000html/P_Microsoft_ClearScript_V8_V8Script_DocumentInfo.htm\u0000118","V8RuntimeHeapInfo.TotalHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSize.htm\u0000120","HostItemFlags Enumeration\u0000html/T_Microsoft_ClearScript_HostItemFlags.htm\u0000237","DocumentContextCallback Delegate\u0000html/T_Microsoft_ClearScript_DocumentContextCallback.htm\u0000187","V8CpuProfile.Node.NodeId Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_NodeId.htm\u0000146","DynamicHostObject Class\u0000html/T_Microsoft_ClearScript_DynamicHostObject.htm\u0000813","ScriptMemberAttribute.Name Property\u0000html/P_Microsoft_ClearScript_ScriptMemberAttribute_Name.htm\u0000203","V8Runtime.HeapSizeViolationPolicy Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_HeapSizeViolationPolicy.htm\u0000141","WindowsScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Global.htm\u0000183","V8RuntimeHeapInfo.TotalHeapSizeExecutable Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSizeExecutable.htm\u0000121","V8Script.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8Script_Name.htm\u0000180","DocumentFlags Enumeration\u0000html/T_Microsoft_ClearScript_DocumentFlags.htm\u0000133","HostSettings Class\u0000html/T_Microsoft_ClearScript_HostSettings.htm\u0000155","V8CpuProfile.Node.ScriptId Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ScriptId.htm\u0000141","ScriptObject.Engine Property\u0000html/P_Microsoft_ClearScript_ScriptObject_Engine.htm\u0000124","V8RuntimeHeapInfo.TotalPhysicalSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalPhysicalSize.htm\u0000121","WindowsScriptEngine.HostWindow Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_HostWindow.htm\u0000150","VBScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u0000513","V8Runtime.MaxHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_MaxHeapSize.htm\u0000284","EventConnection Class\u0000html/T_Microsoft_ClearScript_EventConnection.htm\u0000252","V8CpuProfile.Node.ScriptName Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ScriptName.htm\u0000128","V8Settings.EnableTopLevelAwait Property\u0000html/P_Microsoft_ClearScript_V8_V8Settings_EnableTopLevelAwait.htm\u0000307","ScriptObject.Item Property (Int32)\u0000html/P_Microsoft_ClearScript_ScriptObject_Item.htm\u0000194","DocumentInfo Structure\u0000html/T_Microsoft_ClearScript_DocumentInfo.htm\u0000305","WindowsScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Script.htm\u0000171","V8CpuProfile.RootNode Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_RootNode.htm\u0000128","V8Runtime.MaxStackUsage Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_MaxStackUsage.htm\u0000211","IArrayBufferView Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u0000213","DocumentLoadCallback Delegate\u0000html/T_Microsoft_ClearScript_DocumentLoadCallback.htm\u0000155","WindowsScriptEngine.SyncInvoker Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_SyncInvoker.htm\u0000127","EventConnection(T) Class\u0000html/T_Microsoft_ClearScript_EventConnection_1.htm\u0000295","ScriptObject.Item Property (String, Object[])\u0000html/P_Microsoft_ClearScript_ScriptObject_Item_1.htm\u0000276","V8Runtime.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_Name.htm\u0000122","WindowsScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u0000506","V8CpuProfile.Samples Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Samples.htm\u0000163","IHostWindow.OwnerHandle Property\u0000html/P_Microsoft_ClearScript_Windows_IHostWindow_OwnerHandle.htm\u0000121","ScriptUsageAttribute Class\u0000html/T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u0000550","IDataView Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000275","ScriptObject.PropertyIndices Property\u0000html/P_Microsoft_ClearScript_ScriptObject_PropertyIndices.htm\u0000147","HostTypeCollection Class\u0000html/T_Microsoft_ClearScript_HostTypeCollection.htm\u0000838","EventSource Class\u0000html/T_Microsoft_ClearScript_EventSource.htm\u0000245","ScriptEngineException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ErrorDetails.htm\u0000136","V8CpuProfile.Sample.Node Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Sample_Node.htm\u0000130","DocumentLoader Class\u0000html/T_Microsoft_ClearScript_DocumentLoader.htm\u0000293","DefaultScriptUsageAttribute.Access Property\u0000html/P_Microsoft_ClearScript_DefaultScriptUsageAttribute_Access.htm\u0000116","IScriptEngineException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ErrorDetails.htm\u0000118","Document.Contents Property\u0000html/P_Microsoft_ClearScript_Document_Contents.htm\u0000126","JScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_JScriptEngine_FileNameExtension.htm\u0000147","ScriptEngineException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ExecutionStarted.htm\u0000137","V8CpuProfile.Sample.Timestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Sample_Timestamp.htm\u0000148","V8CpuProfile.Sample Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u0000254","DocumentCategory.MaxCacheSize Property\u0000html/P_Microsoft_ClearScript_DocumentCategory_MaxCacheSize.htm\u0000191","IScriptEngineException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ExecutionStarted.htm\u0000119","Document.Encoding Property\u0000html/P_Microsoft_ClearScript_Document_Encoding.htm\u0000145","VBScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_VBScriptEngine_FileNameExtension.htm\u0000147","EventSource(T) Class\u0000html/T_Microsoft_ClearScript_EventSource_1.htm\u0000281","ImmutableValueAttribute Class\u0000html/T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u0000452","ScriptEngineException.IsFatal Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_IsFatal.htm\u0000132","ITypedArray Interface\u0000html/T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000288","V8ScriptEngine.CpuProfileSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_CpuProfileSampleInterval.htm\u0000164","DocumentCategory.Script Property\u0000html/P_Microsoft_ClearScript_DocumentCategory_Script.htm\u0000122","IScriptEngineException.HResult Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_HResult.htm\u0000114","V8CpuProfile.StartTimestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_StartTimestamp.htm\u0000147","V8GlobalFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8GlobalFlags.htm\u0000188","WindowsScriptEngine.Dispatcher Property\u0000html/P_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispatcher.htm\u0000122","ScriptEngineException.ScriptException Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ScriptException.htm\u0000144","StringDocument Class\u0000html/T_Microsoft_ClearScript_StringDocument.htm\u0000299","IScriptEngineException.InnerException Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_InnerException.htm\u0000126","ClearScript Library Reference\u0000html/R_Project_Reference.htm\u0000149","V8ScriptEngine.EnableRuntimeInterruptPropagation Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_EnableRuntimeInterruptPropagation.htm\u0000203","V8RuntimeConstraints.HeapExpansionMultiplier Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_HeapExpansionMultiplier.htm\u0000224","IScriptEngineException.IsFatal Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_IsFatal.htm\u0000114","ScriptEngine.AccessContext Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_AccessContext.htm\u0000199","ContinuationCallback Delegate\u0000html/T_Microsoft_ClearScript_ContinuationCallback.htm\u0000122","ITypedArray(T) Interface\u0000html/T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000438","V8ScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_FileNameExtension.htm\u0000147","V8RuntimeConstraints.MaxArrayBufferAllocation Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxArrayBufferAllocation.htm\u0000184","Undefined Class\u0000html/T_Microsoft_ClearScript_Undefined.htm\u0000266","IScriptEngineException.Message Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_Message.htm\u0000110","DocumentSettings Class\u0000html/T_Microsoft_ClearScript_DocumentSettings.htm\u0000388","V8ScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_Global.htm\u0000179","CustomAttributeLoader Class\u0000html/T_Microsoft_ClearScript_CustomAttributeLoader.htm\u0000239","V8CacheKind Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8CacheKind.htm\u0000181","IScriptEngineException.ScriptException Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ScriptException.htm\u0000126","ScriptEngine.AllowReflection Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_AllowReflection.htm\u0000202","JavaScriptExtensions Class\u0000html/T_Microsoft_ClearScript_JavaScript_JavaScriptExtensions.htm\u0000354","ScriptEngine.ContinuationCallback Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_ContinuationCallback.htm\u0000177","V8CpuProfile Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u0000286","IArrayBufferView.ArrayBuffer Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_ArrayBuffer.htm\u0000113","DocumentInfo.Category Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Category.htm\u0000134","V8ScriptEngine.MaxRuntimeHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeHeapSize.htm\u0000284","ModuleCategory Class\u0000html/T_Microsoft_ClearScript_JavaScript_ModuleCategory.htm\u0000141","V8Runtime Class\u0000html/T_Microsoft_ClearScript_V8_V8Runtime.htm\u00001189","ScriptEngine.Current Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Current.htm\u0000175","IArrayBufferView.Offset Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Offset.htm\u0000117","V8CpuProfileFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfileFlags.htm\u0000129","IPropertyBag Interface\u0000html/T_Microsoft_ClearScript_IPropertyBag.htm\u0000738","DefaultScriptUsageAttribute Class\u0000html/T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u0000512","ExtendedHostFunctions Class\u0000html/T_Microsoft_ClearScript_ExtendedHostFunctions.htm\u00001326","IArrayBufferView.Size Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Size.htm\u0000114","V8ScriptEngine.MaxRuntimeStackUsage Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeStackUsage.htm\u0000214","IScriptableObject Interface\u0000html/T_Microsoft_ClearScript_IScriptableObject.htm\u0000116","ScriptEngine.DefaultAccess Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DefaultAccess.htm\u0000202","Document.Info Property\u0000html/P_Microsoft_ClearScript_Document_Info.htm\u0000121","V8CpuProfile.Node Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000357","IArrayBuffer.Size Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBuffer_Size.htm\u0000116","ScriptEngine.DisableExtensionMethods Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableExtensionMethods.htm\u0000128","Extensions Class\u0000html/T_Microsoft_ClearScript_Extensions.htm\u0000238","IScriptEngineException Interface\u0000html/T_Microsoft_ClearScript_IScriptEngineException.htm\u0000215","Document Class\u0000html/T_Microsoft_ClearScript_Document.htm\u0000274","NoDefaultScriptAccessAttribute Class\u0000html/T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u0000558","WindowsScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine.htm\u00002246","ITypedArray.Length Property\u0000html/P_Microsoft_ClearScript_JavaScript_ITypedArray_Length.htm\u0000113","V8RuntimeConstraints Class\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000336","ScriptEngine.DisableFloatNarrowing Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableFloatNarrowing.htm\u0000186","IArrayBuffer Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u0000200","V8CpuProfile.Node.HitLine Structure\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u0000248","IHostWindow Interface\u0000html/T_Microsoft_ClearScript_Windows_IHostWindow.htm\u0000135","V8RuntimeFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeFlags.htm\u0000178","ScriptEngine.DisableListIndexTypeRestriction Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableListIndexTypeRestriction.htm\u0000192","NoScriptAccessAttribute Class\u0000html/T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u0000594","IWindowsScriptObject Interface\u0000html/T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u0000106","ScriptEngine.DisableTypeRestriction Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableTypeRestriction.htm\u0000200","V8RuntimeHeapInfo Class\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000271","HostFunctions Class\u0000html/T_Microsoft_ClearScript_HostFunctions.htm\u0000956","V8RuntimeViolationPolicy Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeViolationPolicy.htm\u0000208","PropertyBag Class\u0000html/T_Microsoft_ClearScript_PropertyBag.htm\u0000633","V8Script Class\u0000html/T_Microsoft_ClearScript_V8_V8Script.htm\u0000282","ScriptAccess Enumeration\u0000html/T_Microsoft_ClearScript_ScriptAccess.htm\u0000192","JScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u00002361","Nothing Class\u0000html/T_Microsoft_ClearScript_Windows_Nothing.htm\u0000289","V8ScriptEngine Class\u0000html/T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u00003053","V8ScriptEngineFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8ScriptEngineFlags.htm\u0000571","V8Settings Class\u0000html/T_Microsoft_ClearScript_V8_V8Settings.htm\u0000140","VBScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u00002361","VoidResult Class\u0000html/T_Microsoft_ClearScript_VoidResult.htm\u0000290","ScriptEngine Class\u0000html/T_Microsoft_ClearScript_ScriptEngine.htm\u00001671","ISyncInvoker Interface\u0000html/T_Microsoft_ClearScript_Windows_Core_ISyncInvoker.htm\u0000167","ScriptEngineException Class\u0000html/T_Microsoft_ClearScript_ScriptEngineException.htm\u0000670","ScriptInterruptedException Class\u0000html/T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000313","ScriptMemberAttribute Class\u0000html/T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000640","JScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_Core_JScriptEngine.htm\u00002334","ScriptMemberFlags Enumeration\u0000html/T_Microsoft_ClearScript_ScriptMemberFlags.htm\u0000211","NullSyncInvoker Class\u0000html/T_Microsoft_ClearScript_Windows_Core_NullSyncInvoker.htm\u0000334","WindowsScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u00002299","WindowsScriptEngineFlags Enumeration\u0000html/T_Microsoft_ClearScript_Windows_WindowsScriptEngineFlags.htm\u0000424","ScriptObject Class\u0000html/T_Microsoft_ClearScript_ScriptObject.htm\u0000945","VBScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_Core_VBScriptEngine.htm\u00002334"] \ No newline at end of file +["ClearScript Library - Redirect\u0000index.html\u000018","VoidResult Fields\u0000html/Fields_T_Microsoft_ClearScript_VoidResult.htm\u000052","HitLine Fields\u0000html/Fields_T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u000066","Nothing Fields\u0000html/Fields_T_Microsoft_ClearScript_Windows_Nothing.htm\u000053","HostTypeCollection Events\u0000html/Events_T_Microsoft_ClearScript_HostTypeCollection.htm\u000067","NullSyncInvoker Fields\u0000html/Fields_T_Microsoft_ClearScript_Windows_Core_NullSyncInvoker.htm\u000054","PropertyBag Events\u0000html/Events_T_Microsoft_ClearScript_PropertyBag.htm\u000060","Undefined Fields\u0000html/Fields_T_Microsoft_ClearScript_Undefined.htm\u000052","Undefined.Value Field\u0000html/F_Microsoft_ClearScript_Undefined_Value.htm\u0000100","General Error\u0000html/GeneralError.htm\u000032","ScriptEngineException Events\u0000html/Events_T_Microsoft_ClearScript_ScriptEngineException.htm\u000071","V8CpuProfile.Node.HitLine.LineNumber Field\u0000html/F_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine_LineNumber.htm\u000098","PropertyBag.PropertyChanged Event\u0000html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm\u0000156","Document Methods\u0000html/Methods_T_Microsoft_ClearScript_Document.htm\u0000158","DocumentLoader Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentLoader.htm\u0000193","DefaultScriptUsageAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u0000221","Extensions Methods\u0000html/Methods_T_Microsoft_ClearScript_Extensions.htm\u0000143","DocumentSettings Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentSettings.htm\u0000231","IScriptableObject Methods\u0000html/Methods_T_Microsoft_ClearScript_IScriptableObject.htm\u000057","EventConnection Methods\u0000html/Methods_T_Microsoft_ClearScript_EventConnection.htm\u0000170","IArrayBuffer Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u0000136","ImmutableValueAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u0000221","V8CpuProfile.Node.HitLine.HitCount Field\u0000html/F_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine_HitCount.htm\u0000125","IDataView Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000164","ClearScript Library - Search\u0000search.html\u000011","ITypedArray Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000164","DynamicHostObject Methods\u0000html/Methods_T_Microsoft_ClearScript_DynamicHostObject.htm\u0000716","NoDefaultScriptAccessAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u0000221","VoidResult.Value Field\u0000html/F_Microsoft_ClearScript_VoidResult_Value.htm\u0000100","IPropertyBag Methods\u0000html/Methods_T_Microsoft_ClearScript_IPropertyBag.htm\u0000305","ScriptEngineException Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptEngineException.htm\u0000214","IArrayBufferView Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u0000129","V8CpuProfile Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u0000182","ScriptInterruptedException Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u000067","NullSyncInvoker.Instance Field\u0000html/F_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Instance.htm\u0000106","Sample Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u0000161","CustomAttributeLoader Methods\u0000html/Methods_T_Microsoft_ClearScript_CustomAttributeLoader.htm\u0000172","V8RuntimeConstraints Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000159","V8RuntimeHeapInfo Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000159","Node Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000161","V8Script Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8Script.htm\u0000169","HostTypeCollection Methods\u0000html/Methods_T_Microsoft_ClearScript_HostTypeCollection.htm\u0000441","ISyncInvoker Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_ISyncInvoker.htm\u0000107","EventSource(T) Methods\u0000html/Methods_T_Microsoft_ClearScript_EventSource_1.htm\u0000175","ExtendedHostFunctions Methods\u0000html/Methods_T_Microsoft_ClearScript_ExtendedHostFunctions.htm\u00001233","StringDocument Methods\u0000html/Methods_T_Microsoft_ClearScript_StringDocument.htm\u0000158","DocumentInfo Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentInfo.htm\u0000159","JavaScriptExtensions Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_JavaScriptExtensions.htm\u0000258","DocumentCategory Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentCategory.htm\u0000158","NoScriptAccessAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u0000221","IHostWindow Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_IHostWindow.htm\u000053","Nothing.Value Field\u0000html/F_Microsoft_ClearScript_Windows_Nothing_Value.htm\u0000104","DocumentInfo Constructor (Uri)\u0000html/M_Microsoft_ClearScript_DocumentInfo__ctor_1.htm\u0000127","DefaultScriptUsageAttribute Constructor\u0000html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm\u000091","CustomAttributeLoader Constructor\u0000html/M_Microsoft_ClearScript_CustomAttributeLoader__ctor.htm\u000089","ITypedArray(T) Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000205","DocumentSettings.AddSystemDocument Method (String, DocumentCategory, String)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_1.htm\u0000245","IWindowsScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u000054","ScriptUsageAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u0000221","DocumentLoader.LoadDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_LoadDocument.htm\u0000389","DocumentLoader.CacheDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_CacheDocument.htm\u0000222","EventConnection.disconnect Method\u0000html/M_Microsoft_ClearScript_EventConnection_disconnect.htm\u000098","EventSource Methods\u0000html/Methods_T_Microsoft_ClearScript_EventSource.htm\u0000171","DynamicHostObject.HasMember Method\u0000html/M_Microsoft_ClearScript_DynamicHostObject_HasMember.htm\u0000203","CustomAttributeLoader.LoadCustomAttributes(T) Method\u0000html/M_Microsoft_ClearScript_CustomAttributeLoader_LoadCustomAttributes__1.htm\u0000316","ExtendedHostFunctions.arrType(T) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_arrType__1.htm\u0000206","ScriptMemberAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000221","V8Runtime Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8Runtime.htm\u0000749","DynamicHostObject Constructor\u0000html/M_Microsoft_ClearScript_DynamicHostObject__ctor.htm\u000089","DocumentInfo Constructor (String)\u0000html/M_Microsoft_ClearScript_DocumentInfo__ctor.htm\u0000127","ExtendedHostFunctions.lib Method (HostTypeCollection, String[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm\u0000432","EventConnection(T) Methods\u0000html/Methods_T_Microsoft_ClearScript_EventConnection_1.htm\u0000181","DocumentSettings.AddSystemDocument Method (String, String)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_3.htm\u0000205","EventSource(T).connect Method\u0000html/M_Microsoft_ClearScript_EventSource_1_connect.htm\u0000166","Extensions.ToHostType Method (Type)\u0000html/M_Microsoft_ClearScript_Extensions_ToHostType.htm\u0000248","DocumentLoader.LoadDocumentAsync Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_LoadDocumentAsync.htm\u0000387","DocumentSettings.AddSystemDocument Method (String, DocumentCategory, String, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_2.htm\u0000285","ExtendedHostFunctions.type Method (String, String, Object[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_1.htm\u0000485","ExtendedHostFunctions.typeLibEnums(T) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_typeLibEnums__1.htm\u0000280","Extensions.ToRestrictedHostObject(T) Method (T)\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject__1.htm\u0000288","ExtendedHostFunctions.lib Method (String[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib_1.htm\u0000357","Extensions.ToRestrictedHostObject(T) Method (T, ScriptEngine)\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject__1_1.htm\u0000328","DocumentLoader Constructor\u0000html/M_Microsoft_ClearScript_DocumentLoader__ctor.htm\u000089","HostFunctions.flags(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_flags__1.htm\u0000375","Extensions.ToHostType Method (Type, ScriptEngine)\u0000html/M_Microsoft_ClearScript_Extensions_ToHostType_1.htm\u0000289","HostFunctions.getProperty Method (IPropertyBag, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_getProperty.htm\u0000211","HostFunctions.isType(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isType__1.htm\u0000271","NullSyncInvoker Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_NullSyncInvoker.htm\u0000222","HostFunctions.newObj Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj.htm\u0000212","HostFunctions.newObj Method (IDynamicMetaObjectProvider, Object[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj_1.htm\u0000225","ExtendedHostFunctions.newComObj Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_newComObj.htm\u0000358","HostFunctions.newArr(T) Method (Int32[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newArr__1.htm\u0000299","DefaultScriptUsageAttribute Constructor (ScriptAccess)\u0000html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1.htm\u0000133","HostFunctions.func Method (Int32, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_func.htm\u0000280","HostFunctions.getProperty Method (IDynamicMetaObjectProvider, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_getProperty_1.htm\u0000211","PropertyBag Methods\u0000html/Methods_T_Microsoft_ClearScript_PropertyBag.htm\u0000240","HostFunctions.asType(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_asType__1.htm\u0000310","HostFunctions.removeProperty Method (IPropertyBag, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_removeProperty.htm\u0000211","Undefined Methods\u0000html/Methods_T_Microsoft_ClearScript_Undefined.htm\u0000158","HostFunctions.removeElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_removeElement.htm\u0000227","DocumentLoader.DiscardCachedDocuments Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_DiscardCachedDocuments.htm\u0000104","HostFunctions.newObj Method (Object, Object[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj_2.htm\u0000297","HostFunctions.setProperty Method (IPropertyBag, String, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_setProperty.htm\u0000255","HostFunctions.toDecimal Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toDecimal.htm\u0000308","HostFunctions.toInt16 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt16.htm\u0000308","ExtendedHostFunctions.type Method (Type)\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_2.htm\u0000219","HitLine Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u0000164","DocumentSettings.AddSystemDocument Method (String, Document)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument.htm\u0000216","HostFunctions.isNull Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isNull.htm\u0000175","ExtendedHostFunctions Constructor\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions__ctor.htm\u000089","HostFunctions.toInt32 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt32.htm\u0000308","HostFunctions.toStaticType Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toStaticType.htm\u0000191","HostFunctions.toUInt32 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt32.htm\u0000308","HostFunctions.cast(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_cast__1.htm\u0000256","HostFunctions.isTypeObj Method (Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_isTypeObj.htm\u0000205","HostFunctions.toUInt64 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt64.htm\u0000308","EventSource.connect Method\u0000html/M_Microsoft_ClearScript_EventSource_connect.htm\u0000148","DocumentSettings Constructor\u0000html/M_Microsoft_ClearScript_DocumentSettings__ctor.htm\u000089","HostTypeCollection.AddAssembly Method (Assembly)\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm\u0000137","WindowsScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u00001659","HostFunctions.typeOf(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_typeOf__1.htm\u0000277","HostTypeCollection.AddAssembly Method (String)\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_2.htm\u0000146","HostFunctions.setProperty Method (IDynamicMetaObjectProvider, String, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_setProperty_1.htm\u0000255","JScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u00001661","HostFunctions.toSByte Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toSByte.htm\u0000308","Document Constructor\u0000html/M_Microsoft_ClearScript_Document__ctor.htm\u000089","ScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptEngine.htm\u00001266","HostTypeCollection.AddType Method (String, String, Type[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType.htm\u0000240","HostFunctions.removeProperty Method (IDynamicMetaObjectProvider, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_removeProperty_1.htm\u0000211","HostTypeCollection Constructor (Assembly[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_3.htm\u0000162","HostFunctions Constructor\u0000html/M_Microsoft_ClearScript_HostFunctions__ctor.htm\u000089","ExtendedHostFunctions.type Method (String, Object[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type.htm\u0000415","ExtendedHostFunctions.comType Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_comType.htm\u0000354","Nothing Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Nothing.htm\u0000159","HostTypeCollection.AddAssembly Method (String, Predicate(Type))\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_3.htm\u0000208","HostTypeCollection.AddType Method (String, Type[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType_1.htm\u0000196","IArrayBufferView.InvokeWithDirectAccess Method (Action(IntPtr))\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_InvokeWithDirectAccess.htm\u0000199","HostFunctions.setElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_setElement.htm\u0000268","HostFunctions.newObj(T) Method (Object[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj__1.htm\u0000356","IArrayBuffer.InvokeWithDirectAccess Method (Action(IntPtr))\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_InvokeWithDirectAccess.htm\u0000205","IScriptableObject.OnExposedToScriptCode Method\u0000html/M_Microsoft_ClearScript_IScriptableObject_OnExposedToScriptCode.htm\u0000186","DocumentLoader.GetCachedDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_GetCachedDocument.htm\u0000163","HostFunctions.del(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_del__1.htm\u0000414","JavaScriptExtensions.ToPromise Method (Task)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise.htm\u0000251","JavaScriptExtensions.ToPromise Method (ValueTask)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_2.htm\u0000267","ImmutableValueAttribute Constructor\u0000html/M_Microsoft_ClearScript_ImmutableValueAttribute__ctor.htm\u000089","HostFunctions.toDouble Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toDouble.htm\u0000308","JavaScriptExtensions.ToPromise(T) Method (Task(T))\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1.htm\u0000292","HostTypeCollection.AddType Method (Type)\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType_2.htm\u0000130","JavaScriptExtensions.ToPromise(T) Method (ValueTask(T))\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_2.htm\u0000309","ITypedArray(T).ToArray Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_ToArray.htm\u0000128","HostFunctions.newVar(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newVar__1.htm\u0000463","IArrayBufferView.InvokeWithDirectAccess(T) Method (Func(IntPtr, T))\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_InvokeWithDirectAccess__1.htm\u0000248","HostFunctions.toSingle Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toSingle.htm\u0000308","JavaScriptExtensions.ToPromise Method (Task, ScriptEngine)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_1.htm\u0000291","ScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptObject.htm\u0000798","HostFunctions Methods\u0000html/Methods_T_Microsoft_ClearScript_HostFunctions.htm\u0000852","JavaScriptExtensions.ToTask Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToTask.htm\u0000256","IArrayBuffer.ReadBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_ReadBytes.htm\u0000268","PropertyBag.TryGetValue Method\u0000html/M_Microsoft_ClearScript_PropertyBag_TryGetValue.htm\u0000230","IArrayBufferView.ReadBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_ReadBytes.htm\u0000268","ScriptEngineException.GetObjectData Method\u0000html/M_Microsoft_ClearScript_ScriptEngineException_GetObjectData.htm\u0000199","JavaScriptExtensions.ToPromise Method (ValueTask, ScriptEngine)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_3.htm\u0000307","ScriptEngineException Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_2.htm\u0000126","ITypedArray(T).Write Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Write.htm\u0000264","ScriptEngineException Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor.htm\u000091","PropertyBag Constructor\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor.htm\u000097","PropertyBag.RemovePropertyNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_RemovePropertyNoCheck.htm\u0000160","IArrayBuffer.WriteBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_WriteBytes.htm\u0000269","PropertyBag.ContainsKey Method\u0000html/M_Microsoft_ClearScript_PropertyBag_ContainsKey.htm\u0000175","IArrayBufferView.WriteBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_WriteBytes.htm\u0000268","ScriptEngineException Constructor (SerializationInfo, StreamingContext)\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_1.htm\u0000167","PropertyBag Constructor (Boolean)\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_1.htm\u0000156","ScriptEngineException Constructor (String, Exception)\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_3.htm\u0000168","PropertyBag.SetPropertyNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_SetPropertyNoCheck.htm\u0000172","IArrayBufferView.GetBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_GetBytes.htm\u0000131","ScriptEngine.AddCOMObject Method (String, HostItemFlags, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_3.htm\u0000338","IArrayBuffer.GetBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_GetBytes.htm\u0000135","ITypedArray(T).Read Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Read.htm\u0000264","ScriptEngine.AddCOMObject Method (String, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_5.htm\u0000263","ScriptEngine.AddCOMObject Method (String, HostItemFlags, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm\u0000259","HostFunctions.toUInt16 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt16.htm\u0000308","V8ScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u00002143","HostTypeCollection Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor.htm\u000092","ScriptEngine.AddCOMObject Method (String, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_4.htm\u0000219","ScriptEngine.AddCOMType Method (String, HostItemFlags, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_1.htm\u0000303","ScriptEngine.AddCOMType Method (String, HostItemFlags, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_3.htm\u0000338","ScriptEngine.AddCOMType Method (String, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_7.htm\u0000298","ScriptEngine.AddHostTypes Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostTypes.htm\u0000237","VoidResult Methods\u0000html/Methods_T_Microsoft_ClearScript_VoidResult.htm\u0000158","ScriptEngine.AddCOMObject Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_6.htm\u0000254","HostTypeCollection Constructor (Predicate(Type), Assembly[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_1.htm\u0000222","ScriptEngine.AddHostType Method (String, Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_6.htm\u0000247","JavaScriptExtensions.ToPromise(T) Method (Task(T), ScriptEngine)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_1.htm\u0000331","ScriptEngine.AddCOMType Method (String, HostItemFlags, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_2.htm\u0000294","ScriptEngine.AddHostType Method (String, HostItemFlags, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_2.htm\u0000353","ScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_CollectGarbage.htm\u0000131","ScriptEngine.AddCOMType Method (String, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_4.htm\u0000219","ScriptEngine.EvaluateDocument Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument.htm\u0000206","ScriptEngine.AddHostType Method (Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_7.htm\u0000227","JavaScriptExtensions.ToPromise(T) Method (ValueTask(T), ScriptEngine)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_3.htm\u0000348","ScriptEngine.AddHostType Method (String, HostItemFlags, String, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_1.htm\u0000397","ScriptEngine.Dispose Method (Boolean)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Dispose_1.htm\u0000205","ScriptEngine.EvaluateDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument_2.htm\u0000287","HostFunctions.tryCatch Method\u0000html/M_Microsoft_ClearScript_HostFunctions_tryCatch.htm\u0000550","ScriptEngine.AddHostType Method (String, HostItemFlags, Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_3.htm\u0000287","ScriptEngine.EvaluateDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument_1.htm\u0000246","PropertyBag.Remove Method\u0000html/M_Microsoft_ClearScript_PropertyBag_Remove.htm\u0000169","HostFunctions.toByte Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toByte.htm\u0000308","ScriptEngine.ExecuteDocument Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument.htm\u0000169","PropertyBag Constructor (Boolean, IEqualityComparer(String))\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_2.htm\u0000201","ScriptEngine.Execute Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute.htm\u0000201","HostFunctions.proc Method\u0000html/M_Microsoft_ClearScript_HostFunctions_proc.htm\u0000418","HostTypeCollection Constructor (Predicate(Type), String[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_2.htm\u0000231","ScriptEngine.Evaluate Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate.htm\u0000238","HostFunctions.func(T) Method (Int32, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_func__1.htm\u0000479","PropertyBag Constructor (IEqualityComparer(String))\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_3.htm\u0000162","ScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Interrupt.htm\u0000115","ScriptMemberAttribute Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm\u000091","ScriptInterruptedException Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_2.htm\u0000126","ScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteCommand.htm\u0000206","ScriptMemberAttribute Constructor (ScriptAccess, ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_2.htm\u0000172","ScriptInterruptedException.GetObjectData Method\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException_GetObjectData.htm\u0000191","HostFunctions.toChar Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toChar.htm\u0000308","HostTypeCollection Constructor (String[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_4.htm\u0000171","ScriptMemberAttribute Constructor (String, ScriptAccess, ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_6.htm\u0000217","NoDefaultScriptAccessAttribute Constructor\u0000html/M_Microsoft_ClearScript_NoDefaultScriptAccessAttribute__ctor.htm\u000089","HostFunctions.getElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_getElement.htm\u0000227","HostFunctions.toInt64 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt64.htm\u0000308","VBScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u00001661","IArrayBuffer.InvokeWithDirectAccess(T) Method (Func(IntPtr, T))\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_InvokeWithDirectAccess__1.htm\u0000254","ScriptInterruptedException.ToString Method\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException_ToString.htm\u0000125","ScriptUsageAttribute Constructor\u0000html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm\u000091","NoScriptAccessAttribute Constructor\u0000html/M_Microsoft_ClearScript_NoScriptAccessAttribute__ctor.htm\u000089","VBScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_VBScriptEngine.htm\u00001662","V8CpuProfile.ToJson Method\u0000html/M_Microsoft_ClearScript_V8_V8CpuProfile_ToJson.htm\u0000128","ScriptMemberAttribute Constructor (String, ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_7.htm\u0000175","StringDocument Constructor\u0000html/M_Microsoft_ClearScript_StringDocument__ctor.htm\u0000154","V8RuntimeConstraints Constructor\u0000html/M_Microsoft_ClearScript_V8_V8RuntimeConstraints__ctor.htm\u000091","V8CpuProfile.WriteJson Method\u0000html/M_Microsoft_ClearScript_V8_V8CpuProfile_WriteJson.htm\u0000148","ScriptEngine.AddCOMType Method (String, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_5.htm\u0000263","ScriptInterruptedException Constructor\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm\u000091","ScriptUsageAttribute Constructor (ScriptAccess)\u0000html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor_1.htm\u0000133","ScriptObject.Invoke Method\u0000html/M_Microsoft_ClearScript_ScriptObject_Invoke.htm\u0000196","ScriptEngine.Invoke Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Invoke.htm\u0000202","V8Runtime.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CollectGarbage.htm\u0000129","V8Runtime.BeginCpuProfile Method (String, V8CpuProfileFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile_1.htm\u0000198","V8Runtime.CompileDocument Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument.htm\u0000159","Undefined.ToString Method\u0000html/M_Microsoft_ClearScript_Undefined_ToString.htm\u0000140","V8Runtime.BeginCpuProfile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile.htm\u0000160","V8Runtime.CompileDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_2.htm\u0000240","ScriptEngine.AddCOMType Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_6.htm\u0000254","ScriptInterruptedException Constructor (SerializationInfo, StreamingContext)\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_1.htm\u0000167","V8Runtime.CollectCpuProfileSample Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CollectCpuProfileSample.htm\u0000102","ScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine__ctor.htm\u0000227","V8Runtime.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_4.htm\u0000367","V8Runtime.Compile Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile.htm\u0000195","ScriptObject.InvokeMethod Method\u0000html/M_Microsoft_ClearScript_ScriptObject_InvokeMethod.htm\u0000195","V8Runtime.CompileDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_1.htm\u0000199","V8Runtime.CreateScriptEngine Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm\u0000138","V8Runtime.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_5.htm\u0000363","V8Runtime.CompileDocument Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_7.htm\u0000323","V8Runtime.GetHeapInfo Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_GetHeapInfo.htm\u0000111","V8Runtime.Compile Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_5.htm\u0000291","V8Runtime.Compile Method (DocumentInfo, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_1.htm\u0000370","V8Runtime.Dispose Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Dispose.htm\u0000169","ScriptEngine Constructor (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine__ctor_1.htm\u0000192","ScriptObject.SetProperty Method (Int32, Object)\u0000html/M_Microsoft_ClearScript_ScriptObject_SetProperty.htm\u0000169","V8Runtime.CreateScriptEngine Method (String, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_4.htm\u0000277","V8Runtime Constructor (String, V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_10.htm\u0000190","V8Runtime.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_3.htm\u0000404","V8Runtime.CreateScriptEngine Method (V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_1.htm\u0000221","V8Runtime.WriteHeapSnapshot Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_WriteHeapSnapshot.htm\u0000147","V8Runtime.CompileDocument Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_8.htm\u0000286","V8Runtime.Compile Method (String, String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_6.htm\u0000211","V8Runtime.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_6.htm\u0000326","V8Runtime.EndCpuProfile Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_EndCpuProfile.htm\u0000161","V8Runtime Constructor (V8RuntimeConstraints, V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_2.htm\u0000173","V8Runtime Constructor (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_6.htm\u0000151","V8Runtime Constructor (String, V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_11.htm\u0000232","ScriptObject.SetProperty Method (String, Object[])\u0000html/M_Microsoft_ClearScript_ScriptObject_SetProperty_1.htm\u0000222","V8Runtime.CreateScriptEngine Method (String, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_5.htm\u0000319","V8Runtime Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor.htm\u000094","V8Runtime.Compile Method (DocumentInfo, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_2.htm\u0000336","V8Runtime.CreateScriptEngine Method (V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_2.htm\u0000262","V8ScriptEngine.CancelAwaitDebugger Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CancelAwaitDebugger.htm\u0000114","V8ScriptEngine.Compile Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm\u0000193","V8Runtime Constructor (String, V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_7.htm\u0000190","V8Runtime Constructor (V8RuntimeConstraints, V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_3.htm\u0000215","V8ScriptEngine.CompileDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_1.htm\u0000199","V8Runtime.Compile Method (String, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_7.htm\u0000386","V8Runtime Constructor (V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_1.htm\u0000134","V8Runtime.Compile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_3.htm\u0000152","V8Runtime.CreateScriptEngine Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_3.htm\u0000195","V8ScriptEngine.CancelInterrupt Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CancelInterrupt.htm\u0000111","V8ScriptEngine.CompileDocument Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_7.htm\u0000323","V8ScriptEngine.CompileDocument Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument.htm\u0000159","V8ScriptEngine.Compile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_3.htm\u0000150","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_3.htm\u0000404","V8Runtime Constructor (V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_4.htm\u0000134","ScriptInterruptedException Constructor (String, Exception)\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_3.htm\u0000168","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_2.htm\u0000240","V8ScriptEngine.CollectCpuProfileSample Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CollectCpuProfileSample.htm\u0000102","V8ScriptEngine.Evaluate Method (V8Script)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm\u0000169","V8ScriptEngine Constructor (V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_1.htm\u0000154","V8Runtime.Compile Method (String, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_8.htm\u0000352","V8Runtime Constructor (V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_5.htm\u0000175","V8Runtime.Compile Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_4.htm\u0000325","V8ScriptEngine.Compile Method (String, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_7.htm\u0000384","V8ScriptEngine.CompileDocument Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_8.htm\u0000286","V8ScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CollectGarbage.htm\u0000145","V8ScriptEngine Constructor (String, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_11.htm\u0000247","V8ScriptEngine.Execute Method (V8Script)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm\u0000169","V8ScriptEngine.Compile Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_4.htm\u0000323","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_4.htm\u0000367","V8ScriptEngine Constructor (V8RuntimeConstraints, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_3.htm\u0000235","ISyncInvoker.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_VerifyAccess.htm\u0000100","V8ScriptEngine Constructor (String, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_10.htm\u0000205","V8ScriptEngine Constructor (String, V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_7.htm\u0000210","JScriptEngine Constructor (String, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_2.htm\u0000196","NullSyncInvoker.Invoke Method (Action)\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Invoke.htm\u0000176","V8ScriptEngine Constructor (V8RuntimeConstraints, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_2.htm\u0000193","V8ScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_ExecuteCommand.htm\u0000225","V8ScriptEngine.Compile Method (String, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_8.htm\u0000351","V8ScriptEngine Constructor (V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_4.htm\u0000149","VBScriptEngine Constructor (ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor.htm\u0000138","HostTypeCollection.AddAssembly Method (Assembly, Predicate(Type))\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_1.htm\u0000199","V8ScriptEngine.Compile Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_5.htm\u0000290","V8ScriptEngine.Compile Method (DocumentInfo, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_1.htm\u0000367","JScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine_ExecuteCommand.htm\u0000229","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_5.htm\u0000363","JScriptEngine Constructor (String, WindowsScriptEngineFlags, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_3.htm\u0000239","V8ScriptEngine Constructor (String, V8RuntimeConstraints, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_8.htm\u0000250","V8ScriptEngine.GetRuntimeHeapInfo Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetRuntimeHeapInfo.htm\u0000119","NullSyncInvoker.Invoke(T) Method (Func(T))\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Invoke__1.htm\u0000238","WindowsScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_CollectGarbage.htm\u0000149","VBScriptEngine Constructor (WindowsScriptEngineFlags, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_1.htm\u0000179","V8ScriptEngine.Dispose Method (Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm\u0000208","V8ScriptEngine.Compile Method (String, String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_6.htm\u0000209","JScriptEngine Constructor (ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor.htm\u0000138","V8ScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetStackTrace.htm\u0000159","V8ScriptEngine.Compile Method (DocumentInfo, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_2.htm\u0000335","NullSyncInvoker.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_VerifyAccess.htm\u0000130","VBScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_4.htm\u0000361","V8ScriptEngine Constructor (String, V8RuntimeConstraints, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_9.htm\u0000291","V8ScriptEngine.EndCpuProfile Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_EndCpuProfile.htm\u0000161","VBScriptEngine Constructor (String, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_2.htm\u0000196","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_6.htm\u0000326","JScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_4.htm\u0000361","WindowsScriptEngine.Dispose Method (Boolean)\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Dispose.htm\u0000212","JScriptEngine Constructor (WindowsScriptEngineFlags, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_1.htm\u0000179","WindowsScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_GetStackTrace.htm\u0000185","V8ScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Interrupt.htm\u0000128","IHostWindow.EnableModeless Method\u0000html/M_Microsoft_ClearScript_Windows_IHostWindow_EnableModeless.htm\u0000127","V8Script.Dispose Method\u0000html/M_Microsoft_ClearScript_V8_V8Script_Dispose.htm\u0000162","JScriptEngine Constructor (WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_1.htm\u0000134","WindowsScriptEngine.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_CheckAccess.htm\u0000129","Nothing.ToString Method\u0000html/M_Microsoft_ClearScript_Windows_Nothing_ToString.htm\u0000144","VBScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine_ExecuteCommand.htm\u0000276","WindowsScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Interrupt.htm\u0000130","NullSyncInvoker.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_CheckAccess.htm\u0000153","VBScriptEngine Constructor (String, WindowsScriptEngineFlags, ISyncInvoker)\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_3.htm\u0000239","Extensions.ToHostType Method\u0000html/Overload_Microsoft_ClearScript_Extensions_ToHostType.htm\u000083","V8ScriptEngine.WriteRuntimeHeapSnapshot Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_WriteRuntimeHeapSnapshot.htm\u0000151","IWindowsScriptObject.GetUnderlyingObject Method\u0000html/M_Microsoft_ClearScript_Windows_IWindowsScriptObject_GetUnderlyingObject.htm\u0000114","Microsoft.ClearScript.V8 Namespace\u0000html/N_Microsoft_ClearScript_V8.htm\u0000219","JScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_2.htm\u0000151","HostFunctions.setProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_setProperty.htm\u000079","VoidResult.ToString Method\u0000html/M_Microsoft_ClearScript_VoidResult_ToString.htm\u0000140","HostFunctions.isTypeObj Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_isTypeObj.htm\u000092","WindowsScriptEngine.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_VerifyAccess.htm\u0000106","VBScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine_ExecuteCommand.htm\u0000272","Extensions.ToRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_Extensions_ToRestrictedHostObject.htm\u000099","ScriptEngine.AddCOMObject Method (String, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_7.htm\u0000298","HostFunctions.isTypeObj(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isTypeObj__1.htm\u0000191","ScriptEngine.AddHostType Method (String, String, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_4.htm\u0000357","HostFunctions.newArr Method (Int32[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newArr.htm\u0000206","JScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_JScriptEngine.htm\u00001662","Microsoft.ClearScript.Windows Namespace\u0000html/N_Microsoft_ClearScript_Windows.htm\u0000139","HostFunctions.typeOf Method (Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_typeOf.htm\u0000305","Microsoft.ClearScript Namespace\u0000html/N_Microsoft_ClearScript.htm\u0000516","HostFunctions.func Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_func.htm\u000080","ScriptEngine.Evaluate Method (String, Boolean, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_2.htm\u0000545","PropertyBag Constructor\u0000html/Overload_Microsoft_ClearScript_PropertyBag__ctor.htm\u000088","ScriptEngine.AddRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject.htm\u000081","Microsoft.ClearScript.Windows.Core Namespace\u0000html/N_Microsoft_ClearScript_Windows_Core.htm\u0000103","ScriptMemberAttribute Constructor (ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_3.htm\u0000131","ScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Dispose.htm\u000066","ScriptEngine.AddCOMType Method (String, HostItemFlags, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm\u0000259","ScriptEngine.AddCOMObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm\u0000317","ScriptEngineException Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptEngineException__ctor.htm\u000087","Microsoft.ClearScript.JavaScript Namespace\u0000html/N_Microsoft_ClearScript_JavaScript.htm\u0000111","ScriptEngine.AddHostType Method (String, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_5.htm\u0000313","HostFunctions.getProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_getProperty.htm\u000079","ScriptMemberAttribute Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_4.htm\u0000136","ScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Evaluate.htm\u000096","ScriptEngine.EvaluateDocument Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_EvaluateDocument.htm\u000082","ScriptObject.DeleteProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm\u000057","ScriptEngine.Evaluate Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_3.htm\u0000286","ScriptObject.Item Property\u0000html/Overload_Microsoft_ClearScript_ScriptObject_Item.htm\u000067","ScriptEngine.AddCOMType Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm\u0000317","ScriptObject.GetProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_GetProperty.htm\u000066","V8ScriptEngine.BeginCpuProfile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile.htm\u000064","V8ScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm\u0000133","ScriptMemberAttribute Constructor (String, ScriptAccess)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_5.htm\u0000177","ScriptObject.SetProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_SetProperty.htm\u000068","ScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Execute.htm\u000096","ScriptEngine.AddHostObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm\u000069","V8Runtime.Compile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_Compile.htm\u0000233","ScriptUsageAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm\u000058","V8ScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm\u0000277","VBScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor.htm\u0000142","ScriptEngine.ExecuteDocument Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_ExecuteDocument.htm\u000082","JScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm\u0000124","Document Properties\u0000html/Properties_T_Microsoft_ClearScript_Document.htm\u000073","V8ScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm\u0000133","V8Runtime.BeginCpuProfile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile.htm\u000064","ScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptEngine__ctor.htm\u000069","DocumentCategory Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentCategory.htm\u000065","WindowsScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Dispose.htm\u000084","ISyncInvoker.Invoke Method\u0000html/Overload_Microsoft_ClearScript_Windows_Core_ISyncInvoker_Invoke.htm\u000075","ScriptEngine.AddHostType Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostType.htm\u0000221","ScriptEngine.Evaluate Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_1.htm\u0000228","VBScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm\u0000124","V8ScriptEngine.Compile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm\u0000232","ScriptEngine.AddHostObject Method (String, HostItemFlags, Object)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm\u0000482","V8Runtime.CompileDocument Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_CompileDocument.htm\u0000251","Page Not Found\u0000html/PageNotFound.htm\u000066","HostTypeCollection Properties\u0000html/Properties_T_Microsoft_ClearScript_HostTypeCollection.htm\u0000118","IArrayBuffer Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u000054","IDataView Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IDataView.htm\u000091","ScriptInterruptedException Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm\u000087","NoDefaultScriptAccessAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u000085","JScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor.htm\u0000142","DefaultScriptUsageAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u000078","ImmutableValueAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u000067","V8Runtime.CreateScriptEngine Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm\u0000141","ScriptEngine.AddHostObject Method (String, Object)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject_1.htm\u0000197","ITypedArray Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u000098","V8ScriptEngine.CompileDocument Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument.htm\u0000251","ScriptEngineException Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptEngineException.htm\u0000292","ISyncInvoker.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_CheckAccess.htm\u0000122","NullSyncInvoker.Invoke Method\u0000html/Overload_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Invoke.htm\u000075","NoScriptAccessAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u000086","ScriptUsageAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u000079","ScriptMemberAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm\u0000167","V8ScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm\u000083","Sample Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u000065","ITypedArray(T) Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000109","PropertyBag Properties\u0000html/Properties_T_Microsoft_ClearScript_PropertyBag.htm\u000090","StringDocument Properties\u0000html/Properties_T_Microsoft_ClearScript_StringDocument.htm\u000094","ScriptInterruptedException Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000123","V8Runtime Constructor\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime__ctor.htm\u0000265","V8Script Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Script.htm\u000068","ScriptEngine.AddHostType Method (HostItemFlags, Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType.htm\u0000267","IPropertyBag Properties\u0000html/Properties_T_Microsoft_ClearScript_IPropertyBag.htm\u0000169","ISyncInvoker.Invoke Method (Action)\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_Invoke.htm\u0000140","ScriptMemberAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000117","ModuleCategory Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ModuleCategory.htm\u000064","V8CpuProfile Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u000086","V8Runtime Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Runtime.htm\u0000168","IScriptEngineException Properties\u0000html/Properties_T_Microsoft_ClearScript_IScriptEngineException.htm\u0000165","ScriptObject Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptObject.htm\u000099","ISyncInvoker.Invoke(T) Method (Func(T))\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_Invoke__1.htm\u0000193","IArrayBufferView Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u000070","DocumentInfo.Name Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Name.htm\u0000146","ScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptEngine.htm\u0000329","PropertyBag.Add Method\u0000html/M_Microsoft_ClearScript_PropertyBag_Add.htm\u0000187","V8RuntimeConstraints Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000136","Node Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000164","VBScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm\u000094","DocumentLoader.MaxCacheSize Property\u0000html/P_Microsoft_ClearScript_DocumentLoader_MaxCacheSize.htm\u0000180","DocumentSettings.LoadCallback Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_LoadCallback.htm\u0000142","IScriptEngineException.HResult Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_HResult.htm\u0000114","Document.Encoding Property\u0000html/P_Microsoft_ClearScript_Document_Encoding.htm\u0000145","DocumentInfo.SourceMapUri Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_SourceMapUri.htm\u0000139","PropertyBag.ClearNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_ClearNoCheck.htm\u0000109","VBScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u0000530","V8RuntimeHeapInfo Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000111","IScriptEngineException.ScriptException Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ScriptException.htm\u0000126","V8ScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u0000582","IArrayBuffer.Size Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBuffer_Size.htm\u0000116","VBScriptEngine Constructor (WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_1.htm\u0000134","IScriptEngineException.InnerException Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_InnerException.htm\u0000126","DocumentSettings.Loader Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_Loader.htm\u0000134","Document.Info Property\u0000html/P_Microsoft_ClearScript_Document_Info.htm\u0000121","DocumentInfo.Uri Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Uri.htm\u0000130","V8Settings Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Settings.htm\u000062","ScriptEngineException.EngineName Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_EngineName.htm\u0000133","ScriptEngineException.ScriptException Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ScriptException.htm\u0000144","ITypedArray.Length Property\u0000html/P_Microsoft_ClearScript_JavaScript_ITypedArray_Length.htm\u0000113","IArrayBufferView.ArrayBuffer Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_ArrayBuffer.htm\u0000113","VBScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_2.htm\u0000151","IScriptEngineException.IsFatal Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_IsFatal.htm\u0000114","DocumentSettings.SearchPath Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_SearchPath.htm\u0000144","HostSettings.AuxiliarySearchPath Property\u0000html/P_Microsoft_ClearScript_HostSettings_AuxiliarySearchPath.htm\u0000170","DocumentLoader.Default Property\u0000html/P_Microsoft_ClearScript_DocumentLoader_Default.htm\u0000120","ScriptEngineException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ErrorDetails.htm\u0000136","IArrayBufferView.Offset Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Offset.htm\u0000117","ScriptEngine.AccessContext Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_AccessContext.htm\u0000199","IScriptEngineException.Message Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_Message.htm\u0000110","ModuleCategory.CommonJS Property\u0000html/P_Microsoft_ClearScript_JavaScript_ModuleCategory_CommonJS.htm\u0000124","VBScriptEngine Constructor (String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_3.htm\u0000190","Document.Contents Property\u0000html/P_Microsoft_ClearScript_Document_Contents.htm\u0000126","ScriptMemberAttribute Constructor (ScriptAccess)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_1.htm\u0000133","HostSettings.CustomAttributeLoader Property\u0000html/P_Microsoft_ClearScript_HostSettings_CustomAttributeLoader.htm\u0000141","ScriptEngine.Current Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Current.htm\u0000175","ScriptEngineException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ExecutionStarted.htm\u0000137","IArrayBufferView.Size Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Size.htm\u0000114","JScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_Core_JScriptEngine.htm\u0000513","ScriptEngine.AllowReflection Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_AllowReflection.htm\u0000202","ModuleCategory.Standard Property\u0000html/P_Microsoft_ClearScript_JavaScript_ModuleCategory_Standard.htm\u0000126","ScriptEngine.DisableListIndexTypeRestriction Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableListIndexTypeRestriction.htm\u0000192","ScriptEngine.FormatCode Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_FormatCode.htm\u0000175","ScriptEngine.Name Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Name.htm\u0000120","ScriptEngine.EnableNullResultWrapping Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnableNullResultWrapping.htm\u0000217","HostSettings.UseAssemblyTable Property\u0000html/P_Microsoft_ClearScript_HostSettings_UseAssemblyTable.htm\u0000207","ScriptEngineException.IsFatal Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_IsFatal.htm\u0000132","ScriptEngine.DefaultAccess Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DefaultAccess.htm\u0000202","VBScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_4.htm\u0000313","WindowsScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u0000523","ScriptEngine.ContinuationCallback Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_ContinuationCallback.htm\u0000177","PropertyBag.Comparer Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Comparer.htm\u0000147","ScriptInterruptedException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ExecutionStarted.htm\u0000137","ScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Global.htm\u0000170","ScriptEngine.DisableTypeRestriction Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableTypeRestriction.htm\u0000200","IScriptEngineException.EngineName Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_EngineName.htm\u0000115","WindowsScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine.htm\u00001650","ScriptEngine.NullExportValue Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_NullExportValue.htm\u0000209","ScriptEngine.EnforceAnonymousTypeAccess Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnforceAnonymousTypeAccess.htm\u0000216","ScriptMemberAttribute.Name Property\u0000html/P_Microsoft_ClearScript_ScriptMemberAttribute_Name.htm\u0000203","ScriptEngineException.ToString Method\u0000html/M_Microsoft_ClearScript_ScriptEngineException_ToString.htm\u0000126","HostTypeCollection.GetNamespaceNode Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_GetNamespaceNode.htm\u0000152","DefaultScriptUsageAttribute.Access Property\u0000html/P_Microsoft_ClearScript_DefaultScriptUsageAttribute_Access.htm\u0000116","ScriptObject.PropertyIndices Property\u0000html/P_Microsoft_ClearScript_ScriptObject_PropertyIndices.htm\u0000147","ScriptInterruptedException.IsFatal Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_IsFatal.htm\u0000132","DocumentCategory.Script Property\u0000html/P_Microsoft_ClearScript_DocumentCategory_Script.htm\u0000122","IScriptEngineException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ErrorDetails.htm\u0000118","ScriptEngine.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DocumentSettings.htm\u0000136","V8CpuProfile.Node.BailoutReason Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_BailoutReason.htm\u0000130","WindowsScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine__ctor.htm\u0000296","V8CpuProfile.Node.ColumnNumber Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ColumnNumber.htm\u0000144","ScriptObject.Engine Property\u0000html/P_Microsoft_ClearScript_ScriptObject_Engine.htm\u0000124","ScriptEngine.ExposeHostObjectStaticMembers Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_ExposeHostObjectStaticMembers.htm\u0000139","V8CpuProfile.Node.HitCount Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitCount.htm\u0000144","V8CpuProfile.Node.LineNumber Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_LineNumber.htm\u0000144","DocumentCategory.MaxCacheSize Property\u0000html/P_Microsoft_ClearScript_DocumentCategory_MaxCacheSize.htm\u0000191","ScriptInterruptedException.ScriptException Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ScriptException.htm\u0000144","DocumentInfo.Category Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Category.htm\u0000134","IScriptEngineException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ExecutionStarted.htm\u0000119","V8CpuProfile.Node.FunctionName Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_FunctionName.htm\u0000123","V8CpuProfile.Node.ScriptId Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ScriptId.htm\u0000141","ScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_FileNameExtension.htm\u0000127","DefaultScriptUsageAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm\u000059","ScriptObject.Item Property (Int32)\u0000html/P_Microsoft_ClearScript_ScriptObject_Item.htm\u0000194","V8CpuProfile.Node.ChildNodes Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ChildNodes.htm\u0000167","ScriptEngine.EnableAutoHostVariables Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnableAutoHostVariables.htm\u0000187","V8CpuProfile.Node.NodeId Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_NodeId.htm\u0000146","V8CpuProfile.Node.HitLines Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLines.htm\u0000171","VBScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_Core_VBScriptEngine.htm\u0000513","V8RuntimeHeapInfo.TotalHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSize.htm\u0000120","DocumentInfo.ContextCallback Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_ContextCallback.htm\u0000224","V8Runtime.HeapSizeSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_HeapSizeSampleInterval.htm\u0000154","V8CpuProfile.Node.ScriptName Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ScriptName.htm\u0000128","ScriptObject.Item Property (String, Object[])\u0000html/P_Microsoft_ClearScript_ScriptObject_Item_1.htm\u0000276","V8Runtime.MaxHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_MaxHeapSize.htm\u0000284","V8ScriptEngine.MaxRuntimeStackUsage Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeStackUsage.htm\u0000214","JScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_Core_JScriptEngine_FileNameExtension.htm\u0000151","V8Settings.EnableTopLevelAwait Property\u0000html/P_Microsoft_ClearScript_V8_V8Settings_EnableTopLevelAwait.htm\u0000307","ScriptEngine.ExecuteDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument_1.htm\u0000209","ScriptEngine.AddCOMObject Method (String, HostItemFlags, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_1.htm\u0000303","DocumentInfo.Flags Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Flags.htm\u0000153","V8Runtime.HeapSizeViolationPolicy Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_HeapSizeViolationPolicy.htm\u0000141","V8CpuProfile.RootNode Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_RootNode.htm\u0000128","V8RuntimeHeapInfo.TotalHeapSizeExecutable Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSizeExecutable.htm\u0000121","WindowsScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Global.htm\u0000183","V8ScriptEngine.RuntimeHeapSizeSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_RuntimeHeapSizeSampleInterval.htm\u0000154","V8Settings.GlobalFlags Property\u0000html/P_Microsoft_ClearScript_V8_V8Settings_GlobalFlags.htm\u0000162","VBScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_Core_VBScriptEngine_FileNameExtension.htm\u0000151","ClearScript Library Reference\u0000html/R_Project_Reference.htm\u0000149","WindowsScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine.htm\u0000499","IHostWindow.OwnerHandle Property\u0000html/P_Microsoft_ClearScript_Windows_IHostWindow_OwnerHandle.htm\u0000121","ScriptEngine.ExecuteDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument_2.htm\u0000250","V8CpuProfile.Samples Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Samples.htm\u0000163","V8RuntimeHeapInfo.TotalPhysicalSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalPhysicalSize.htm\u0000121","ScriptEngine.AddCOMObject Method (String, HostItemFlags, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_2.htm\u0000294","WindowsScriptEngine.HostWindow Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_HostWindow.htm\u0000150","IHostWindow Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_IHostWindow.htm\u000061","V8ScriptEngine.RuntimeHeapSizeViolationPolicy Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_RuntimeHeapSizeViolationPolicy.htm\u0000141","ContinuationCallback Delegate\u0000html/T_Microsoft_ClearScript_ContinuationCallback.htm\u0000122","JScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_JScriptEngine_FileNameExtension.htm\u0000147","V8CpuProfile.Sample.Node Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Sample_Node.htm\u0000130","V8RuntimeHeapInfo.UsedHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_UsedHeapSize.htm\u0000120","ScriptEngine.Execute Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_1.htm\u0000192","DocumentCategory Class\u0000html/T_Microsoft_ClearScript_DocumentCategory.htm\u0000249","CustomAttributeLoader Class\u0000html/T_Microsoft_ClearScript_CustomAttributeLoader.htm\u0000239","DocumentLoadCallback Delegate\u0000html/T_Microsoft_ClearScript_DocumentLoadCallback.htm\u0000155","WindowsScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Script.htm\u0000171","V8ScriptEngine.SuppressExtensionMethodEnumeration Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressExtensionMethodEnumeration.htm\u0000206","DocumentSettings.AccessFlags Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_AccessFlags.htm\u0000128","V8ScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_Script.htm\u0000167","V8ScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm\u0000109","JScriptEngine Constructor (String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_3.htm\u0000190","WindowsScriptEngine.SyncInvoker Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_SyncInvoker.htm\u0000127","DocumentContextCallback Delegate\u0000html/T_Microsoft_ClearScript_DocumentContextCallback.htm\u0000187","ScriptObject.PropertyNames Property\u0000html/P_Microsoft_ClearScript_ScriptObject_PropertyNames.htm\u0000149","EventSource Class\u0000html/T_Microsoft_ClearScript_EventSource.htm\u0000245","V8CpuProfile.Sample.Timestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Sample_Timestamp.htm\u0000148","JScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u0000530","WindowsScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine__ctor.htm\u0000342","V8ScriptEngine.SuppressInstanceMethodEnumeration Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressInstanceMethodEnumeration.htm\u0000187","DocumentSettings.ContextCallback Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_ContextCallback.htm\u0000225","DocumentFlags Enumeration\u0000html/T_Microsoft_ClearScript_DocumentFlags.htm\u0000133","ScriptUsageAttribute.Access Property\u0000html/P_Microsoft_ClearScript_ScriptUsageAttribute_Access.htm\u0000117","JScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_4.htm\u0000313","V8CpuProfile.StartTimestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_StartTimestamp.htm\u0000147","V8Script.DocumentInfo Property\u0000html/P_Microsoft_ClearScript_V8_V8Script_DocumentInfo.htm\u0000118","DocumentSettings.FileNameExtensions Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_FileNameExtensions.htm\u0000140","ImmutableValueAttribute Class\u0000html/T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u0000452","StringDocument.Contents Property\u0000html/P_Microsoft_ClearScript_StringDocument_Contents.htm\u0000145","EventSource(T) Class\u0000html/T_Microsoft_ClearScript_EventSource_1.htm\u0000281","ITypedArray(T) Interface\u0000html/T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000438","V8Script.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8Script_Name.htm\u0000180","V8RuntimeConstraints.HeapExpansionMultiplier Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_HeapExpansionMultiplier.htm\u0000224","DocumentInfo Structure\u0000html/T_Microsoft_ClearScript_DocumentInfo.htm\u0000305","V8CpuProfile.Node.HitLine Structure\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u0000248","StringDocument.Encoding Property\u0000html/P_Microsoft_ClearScript_StringDocument_Encoding.htm\u0000137","V8Script Class\u0000html/T_Microsoft_ClearScript_V8_V8Script.htm\u0000282","HostFunctions.newArr Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_newArr.htm\u000070","ScriptEngineException Class\u0000html/T_Microsoft_ClearScript_ScriptEngineException.htm\u0000670","StringDocument.Info Property\u0000html/P_Microsoft_ClearScript_StringDocument_Info.htm\u0000128","HostFunctions.newObj Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_newObj.htm\u0000117","V8CpuProfile.Sample Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u0000254","JavaScriptExtensions Class\u0000html/T_Microsoft_ClearScript_JavaScript_JavaScriptExtensions.htm\u0000354","V8CpuProfile.EndTimestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_EndTimestamp.htm\u0000147","HostFunctions Class\u0000html/T_Microsoft_ClearScript_HostFunctions.htm\u0000956","ScriptObject Class\u0000html/T_Microsoft_ClearScript_ScriptObject.htm\u0000945","WindowsScriptEngineFlags Enumeration\u0000html/T_Microsoft_ClearScript_Windows_WindowsScriptEngineFlags.htm\u0000424","HostFunctions.removeProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_removeProperty.htm\u000073","V8CpuProfile.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Name.htm\u0000117","V8GlobalFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8GlobalFlags.htm\u0000188","HostTypeCollection Constructor\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection__ctor.htm\u0000142","ScriptInterruptedException Class\u0000html/T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000313","ModuleCategory Class\u0000html/T_Microsoft_ClearScript_JavaScript_ModuleCategory.htm\u0000141","DocumentInfo Constructor\u0000html/Overload_Microsoft_ClearScript_DocumentInfo__ctor.htm\u000064","DocumentSettings Class\u0000html/T_Microsoft_ClearScript_DocumentSettings.htm\u0000388","IPropertyBag Interface\u0000html/T_Microsoft_ClearScript_IPropertyBag.htm\u0000738","HostItemFlags Enumeration\u0000html/T_Microsoft_ClearScript_HostItemFlags.htm\u0000237","IArrayBufferView.InvokeWithDirectAccess Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_IArrayBufferView_InvokeWithDirectAccess.htm\u000086","DocumentSettings.AddSystemDocument Method\u0000html/Overload_Microsoft_ClearScript_DocumentSettings_AddSystemDocument.htm\u0000110","IScriptableObject Interface\u0000html/T_Microsoft_ClearScript_IScriptableObject.htm\u0000116","IArrayBuffer.InvokeWithDirectAccess Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_IArrayBuffer_InvokeWithDirectAccess.htm\u000090","ExtendedHostFunctions.lib Method\u0000html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm\u000075","HostSettings Class\u0000html/T_Microsoft_ClearScript_HostSettings.htm\u0000155","ScriptUsageAttribute Class\u0000html/T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u0000550","ExtendedHostFunctions Class\u0000html/T_Microsoft_ClearScript_ExtendedHostFunctions.htm\u00001326","ExtendedHostFunctions.type Method\u0000html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_type.htm\u000082","NoDefaultScriptAccessAttribute Class\u0000html/T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u0000558","IScriptEngineException Interface\u0000html/T_Microsoft_ClearScript_IScriptEngineException.htm\u0000215","V8RuntimeConstraints.MaxArrayBufferAllocation Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxArrayBufferAllocation.htm\u0000184","ScriptMemberAttribute Class\u0000html/T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000640","JavaScriptExtensions.ToPromise Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise.htm\u0000242","VBScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_VBScriptEngine_FileNameExtension.htm\u0000147","Extensions Class\u0000html/T_Microsoft_ClearScript_Extensions.htm\u0000238","DynamicHostObject Class\u0000html/T_Microsoft_ClearScript_DynamicHostObject.htm\u0000813","StringDocument Class\u0000html/T_Microsoft_ClearScript_StringDocument.htm\u0000299","IArrayBuffer Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u0000200","PropertyBag.Item Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Item.htm\u0000213","ScriptMemberFlags Enumeration\u0000html/T_Microsoft_ClearScript_ScriptMemberFlags.htm\u0000211","WindowsScriptEngine.Dispatcher Property\u0000html/P_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispatcher.htm\u0000122","V8RuntimeConstraints.MaxExecutableSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxExecutableSize.htm\u0000281","VBScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_Core_VBScriptEngine.htm\u00002351","V8Runtime Class\u0000html/T_Microsoft_ClearScript_V8_V8Runtime.htm\u00001189","NoScriptAccessAttribute Class\u0000html/T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u0000594","PropertyBag.Keys Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Keys.htm\u0000169","Undefined Class\u0000html/T_Microsoft_ClearScript_Undefined.htm\u0000266","EventConnection Class\u0000html/T_Microsoft_ClearScript_EventConnection.htm\u0000252","DefaultScriptUsageAttribute Class\u0000html/T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u0000512","IArrayBufferView Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u0000213","HostTypeCollection Class\u0000html/T_Microsoft_ClearScript_HostTypeCollection.htm\u0000838","V8RuntimeConstraints.MaxNewSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxNewSpaceSize.htm\u0000191","HostFunctions.typeOf Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_typeOf.htm\u000092","PropertyBag.Values Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Values.htm\u0000169","V8CacheKind Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8CacheKind.htm\u0000181","HostTypeCollection.AddAssembly Method\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm\u0000117","V8RuntimeConstraints.MaxOldSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxOldSpaceSize.htm\u0000191","V8RuntimeConstraints Class\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000336","EventConnection(T) Class\u0000html/T_Microsoft_ClearScript_EventConnection_1.htm\u0000295","IDataView Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000275","Document Class\u0000html/T_Microsoft_ClearScript_Document.htm\u0000274","ScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Script.htm\u0000158","HostTypeCollection.AddType Method\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection_AddType.htm\u000099","V8RuntimeConstraints.MaxYoungSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxYoungSpaceSize.htm\u0000249","V8CpuProfile Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u0000286","JScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine_ExecuteCommand.htm\u0000225","V8RuntimeFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeFlags.htm\u0000178","V8ScriptEngine Constructor (V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_5.htm\u0000190","ScriptMemberAttribute.Flags Property\u0000html/P_Microsoft_ClearScript_ScriptMemberAttribute_Flags.htm\u0000133","ScriptEngine.UndefinedImportValue Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_UndefinedImportValue.htm\u0000191","DocumentAccessFlags Enumeration\u0000html/T_Microsoft_ClearScript_DocumentAccessFlags.htm\u0000196","ScriptEngine.Dispose Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Dispose.htm\u0000169","JScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm\u000094","V8RuntimeHeapInfo.HeapSizeLimit Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_HeapSizeLimit.htm\u0000120","V8Runtime.MaxStackUsage Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_MaxStackUsage.htm\u0000211","ScriptEngine.AddRestrictedHostObject(T) Method (String, HostItemFlags, T)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1.htm\u0000289","DocumentLoader Class\u0000html/T_Microsoft_ClearScript_DocumentLoader.htm\u0000293","DocumentInfo Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentInfo.htm\u000096","V8Runtime.CpuProfileSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_CpuProfileSampleInterval.htm\u0000164","V8ScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_6.htm\u0000166","ScriptEngine.UseReflectionBindFallback Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_UseReflectionBindFallback.htm\u0000190","V8Runtime Constructor (String, V8RuntimeConstraints, V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_8.htm\u0000230","V8RuntimeHeapInfo.TotalAvailableSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalAvailableSize.htm\u0000121","V8Runtime.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_Name.htm\u0000122","DocumentLoader Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentLoader.htm\u000063","ScriptEngine.Execute Method (String, Boolean, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_2.htm\u0000310","ScriptObject.DeleteProperty Method (Int32)\u0000html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm\u0000151","DocumentSettings Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentSettings.htm\u0000117","V8RuntimeHeapInfo.TotalExternalSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalExternalSize.htm\u0000121","ScriptEngine.VoidResultValue Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_VoidResultValue.htm\u0000199","V8Runtime.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_DocumentSettings.htm\u0000138","V8ScriptEngine.CpuProfileSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_CpuProfileSampleInterval.htm\u0000164","ScriptEngine.AddRestrictedHostObject(T) Method (String, T)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1_1.htm\u0000251","ScriptEngine.DisableExtensionMethods Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableExtensionMethods.htm\u0000128","ScriptObject.DeleteProperty Method (String)\u0000html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty_1.htm\u0000153","V8Runtime Constructor (String, V8RuntimeConstraints, V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_9.htm\u0000271","V8ScriptEngine Class\u0000html/T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u00003070","ScriptEngine.Execute Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_3.htm\u0000250","HostSettings Properties\u0000html/Properties_T_Microsoft_ClearScript_HostSettings.htm\u000079","ITypedArray Interface\u0000html/T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000288","V8CpuProfileFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfileFlags.htm\u0000129","ScriptInterruptedException.EngineName Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_EngineName.htm\u0000133","PropertyBag Class\u0000html/T_Microsoft_ClearScript_PropertyBag.htm\u0000633","V8ScriptEngine.EnableRuntimeInterruptPropagation Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_EnableRuntimeInterruptPropagation.htm\u0000203","V8Runtime.EnableInterruptPropagation Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_EnableInterruptPropagation.htm\u0000203","ScriptEngine.DisableFloatNarrowing Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableFloatNarrowing.htm\u0000186","ScriptObject.GetProperty Method (Int32)\u0000html/M_Microsoft_ClearScript_ScriptObject_GetProperty.htm\u0000152","V8ScriptEngine.BeginCpuProfile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile.htm\u0000161","ScriptEngine.Finalize Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Finalize.htm\u0000167","ScriptInterruptedException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ErrorDetails.htm\u0000136","ScriptAccess Enumeration\u0000html/T_Microsoft_ClearScript_ScriptAccess.htm\u0000192","V8ScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_FileNameExtension.htm\u0000147","ScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_GetStackTrace.htm\u0000148","V8Runtime.FormatCode Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_FormatCode.htm\u0000177","V8ScriptEngine.BeginCpuProfile Method (String, V8CpuProfileFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile_1.htm\u0000199","ScriptObject.GetProperty Method (String, Object[])\u0000html/M_Microsoft_ClearScript_ScriptObject_GetProperty_1.htm\u0000209","V8CpuProfile.Node Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000357","V8ScriptEngineFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8ScriptEngineFlags.htm\u0000572","V8ScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_Global.htm\u0000179","V8Settings Class\u0000html/T_Microsoft_ClearScript_V8_V8Settings.htm\u0000140","V8RuntimeHeapInfo Class\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000291","V8RuntimeViolationPolicy Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeViolationPolicy.htm\u0000208","V8ScriptEngine.MaxRuntimeHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeHeapSize.htm\u0000284","VoidResult Class\u0000html/T_Microsoft_ClearScript_VoidResult.htm\u0000290","WindowsScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine.htm\u00002263","ScriptEngine Class\u0000html/T_Microsoft_ClearScript_ScriptEngine.htm\u00001681","ISyncInvoker Interface\u0000html/T_Microsoft_ClearScript_Windows_Core_ISyncInvoker.htm\u0000167","IHostWindow Interface\u0000html/T_Microsoft_ClearScript_Windows_IHostWindow.htm\u0000135","IWindowsScriptObject Interface\u0000html/T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u0000106","JScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u00002378","Nothing Class\u0000html/T_Microsoft_ClearScript_Windows_Nothing.htm\u0000289","JScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_Core_JScriptEngine.htm\u00002351","NullSyncInvoker Class\u0000html/T_Microsoft_ClearScript_Windows_Core_NullSyncInvoker.htm\u0000334","VBScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u00002378","WindowsScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u00002316"] \ No newline at end of file diff --git a/docs/Reference/html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm b/docs/Reference/html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm index 9c744574b..f2f306b81 100644 --- a/docs/Reference/html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm +++ b/docs/Reference/html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm @@ -4,7 +4,7 @@ Namespace:  Microsoft.ClearScript
Assembly: -  ClearScript.Core (in ClearScript.Core.dll) Version: 7.3.0
Syntax
public event PropertyChangedEventHandler PropertyChanged
See Also