From 8fdaf8e3593a6fe355702a21361bd65723b2e0a9 Mon Sep 17 00:00:00 2001 From: Luiz Fernando Bicalho Date: Sat, 16 May 2026 11:23:32 -0300 Subject: [PATCH 1/6] Add ISerializationCloner for efficient object cloning Introduced the ISerializationCloner interface to support efficient object cloning via serialization. Updated MobileFormatter to implement this interface and provided a Clone method using DTO serialization. Refactored ObjectCloner to use the new interface when available, with fallback to the previous approach. Removed unused usings in MobileFormatter.cs. --- Source/Csla/Core/ObjectCloner.cs | 15 ++++++++--- .../Serialization/ISerializationCloner.cs | 26 +++++++++++++++++++ .../Serialization/Mobile/MobileFormatter.cs | 22 +++++++++++++--- 3 files changed, 55 insertions(+), 8 deletions(-) create mode 100644 Source/Csla/Serialization/ISerializationCloner.cs diff --git a/Source/Csla/Core/ObjectCloner.cs b/Source/Csla/Core/ObjectCloner.cs index 2504957bc5..256228863d 100644 --- a/Source/Csla/Core/ObjectCloner.cs +++ b/Source/Csla/Core/ObjectCloner.cs @@ -52,11 +52,18 @@ public static ObjectCloner GetInstance(ApplicationContext applicationContext) [return: NotNullIfNotNull(nameof(obj))] public object? Clone(object? obj) { - using var buffer = new MemoryStream(); ISerializationFormatter formatter = _applicationContext.GetRequiredService(); - formatter.Serialize(buffer, obj); - buffer.Position = 0; - return formatter.Deserialize(buffer); + if (formatter is ISerializationCloner cloner) + { + return cloner.Clone(obj); + } + else + { + using var buffer = new MemoryStream(); + formatter.Serialize(buffer, obj); + buffer.Position = 0; + return formatter.Deserialize(buffer); + } } } } \ No newline at end of file diff --git a/Source/Csla/Serialization/ISerializationCloner.cs b/Source/Csla/Serialization/ISerializationCloner.cs new file mode 100644 index 0000000000..17307cd8c5 --- /dev/null +++ b/Source/Csla/Serialization/ISerializationCloner.cs @@ -0,0 +1,26 @@ +//----------------------------------------------------------------------- +// +// Copyright (c) Marimer LLC. All rights reserved. +// Website: https://cslanet.com +// +// Defines an object that can clone objects via serialization +//----------------------------------------------------------------------- + +namespace Csla.Serialization +{ + /// + /// Defines an object that can clone objects via serialization of + /// object graphs with improved performance. + /// + public interface ISerializationCloner : ISerializationFormatter + { + /// + /// Clones an object via serialization into an + /// object graph. + /// + /// + /// Object to be cloned. + /// A cloned object graph. + object? Clone(object? obj); + } +} diff --git a/Source/Csla/Serialization/Mobile/MobileFormatter.cs b/Source/Csla/Serialization/Mobile/MobileFormatter.cs index 691257abff..fcbde540b2 100644 --- a/Source/Csla/Serialization/Mobile/MobileFormatter.cs +++ b/Source/Csla/Serialization/Mobile/MobileFormatter.cs @@ -6,8 +6,6 @@ // Serializes and deserializes objects //----------------------------------------------------------------------- -using System.ComponentModel.DataAnnotations; -using System.Diagnostics; using Csla.Configuration; using Csla.Properties; using Csla.Reflection; @@ -25,7 +23,7 @@ namespace Csla.Serialization.Mobile #if TESTING [DebuggerStepThrough] #endif - public sealed class MobileFormatter(ApplicationContext applicationContext) : ISerializationFormatter + public sealed class MobileFormatter(ApplicationContext applicationContext) : ISerializationCloner { internal const string DefaultCtorObsoleteMessage = $"This ctor is only for internal usage to support {nameof(MobileFormatter)}. User another overload if available."; @@ -386,7 +384,7 @@ public List SerializeToDTO(object? obj) return DeserializeAsDTO(data); } - + #endregion /// @@ -401,5 +399,21 @@ public bool IsTypeSerializable(Type type) var options = GetOptions(); return options.CustomSerializers.Any(s => s.CanSerialize(type)); } + + /// + /// Clones an object via serialization into an + /// object graph. + /// + /// + /// Object to be cloned. + /// A cloned object graph. + public object? Clone(object? obj) + { + if (obj == null) + return null; + + var dto = SerializeAsDTO(obj); + return DeserializeAsDTO(dto); + } } } \ No newline at end of file From 8db51877b5a5d62e0fa00a00438937be323b3247 Mon Sep 17 00:00:00 2001 From: Luiz Fernando Bicalho Date: Sat, 16 May 2026 16:18:50 -0300 Subject: [PATCH 2/6] added benchmark --- Source/Csla.Benchmarks/Csla.Benchmarks.csproj | 12 +- .../PerformanceCloner/Model/ChildList.cs | 18 + .../PerformanceCloner/Model/ChildTypes.cs | 55 + .../PerformanceCloner/Model/TestItem.cs | 15325 ++++++++++++++++ .../PerformanceCloner/Model/code.cs | 2876 +++ .../PerformanceClonerBenchmark.cs | 60 + ...lonerBenchmark-report-full-compressed.json | 1 + ...erformanceClonerBenchmark-report-github.md | 34 + ...oner.PerformanceClonerBenchmark-report.csv | 13 + ...ner.PerformanceClonerBenchmark-report.html | 46 + Source/Csla.Benchmarks/Program.cs | 4 +- 11 files changed, 18438 insertions(+), 6 deletions(-) create mode 100644 Source/Csla.Benchmarks/PerformanceCloner/Model/ChildList.cs create mode 100644 Source/Csla.Benchmarks/PerformanceCloner/Model/ChildTypes.cs create mode 100644 Source/Csla.Benchmarks/PerformanceCloner/Model/TestItem.cs create mode 100644 Source/Csla.Benchmarks/PerformanceCloner/Model/code.cs create mode 100644 Source/Csla.Benchmarks/PerformanceCloner/PerformanceClonerBenchmark.cs create mode 100644 Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-full-compressed.json create mode 100644 Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-github.md create mode 100644 Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.csv create mode 100644 Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.html diff --git a/Source/Csla.Benchmarks/Csla.Benchmarks.csproj b/Source/Csla.Benchmarks/Csla.Benchmarks.csproj index 49f05b91df..1dfba06668 100644 --- a/Source/Csla.Benchmarks/Csla.Benchmarks.csproj +++ b/Source/Csla.Benchmarks/Csla.Benchmarks.csproj @@ -2,15 +2,19 @@ Exe - net462;net472;net48;net8.0;net9.0 + net462;net472;net48;net8.0;net9.0;net10.0 enable enable - - - + + + + + + + diff --git a/Source/Csla.Benchmarks/PerformanceCloner/Model/ChildList.cs b/Source/Csla.Benchmarks/PerformanceCloner/Model/ChildList.cs new file mode 100644 index 0000000000..d38b784e53 --- /dev/null +++ b/Source/Csla.Benchmarks/PerformanceCloner/Model/ChildList.cs @@ -0,0 +1,18 @@ +using Csla; + +namespace PropertyPerf.Client.Model; + +public class ChildList : BusinessListBase +{ + [FetchChild] + private async Task Fetch([Inject] IChildDataPortal portal) + { + using (LoadListMode) + { + for (int i = 0; i < 10000; i++) + { + Add(await portal.FetchChildAsync(i)); + } + } + } +} diff --git a/Source/Csla.Benchmarks/PerformanceCloner/Model/ChildTypes.cs b/Source/Csla.Benchmarks/PerformanceCloner/Model/ChildTypes.cs new file mode 100644 index 0000000000..a014b23f6d --- /dev/null +++ b/Source/Csla.Benchmarks/PerformanceCloner/Model/ChildTypes.cs @@ -0,0 +1,55 @@ +using Csla; + +namespace PropertyPerf.Client.Model; + +public class ChildType1 : BusinessBase +{ + public static readonly PropertyInfo IdProperty = RegisterProperty(nameof(Id)); + public int Id + { + get => GetProperty(IdProperty); + set => SetProperty(IdProperty, value); + } + + [FetchChild] + private async Task Fetch(int id) + { + LoadProperty(IdProperty, id); + } +} + +public class ChildType2 : BusinessBase +{ +} + +public class ChildType3 : BusinessBase +{ +} + +public class ChildType4 : BusinessBase +{ +} + +public class ChildType5 : BusinessBase +{ +} + +public class ChildType11 : BusinessBase +{ +} + +public class ChildType12 : BusinessBase +{ +} + +public class ChildType13 : BusinessBase +{ +} + +public class ChildType14 : BusinessBase +{ +} + +public class ChildType15 : BusinessBase +{ +} diff --git a/Source/Csla.Benchmarks/PerformanceCloner/Model/TestItem.cs b/Source/Csla.Benchmarks/PerformanceCloner/Model/TestItem.cs new file mode 100644 index 0000000000..2721102bea --- /dev/null +++ b/Source/Csla.Benchmarks/PerformanceCloner/Model/TestItem.cs @@ -0,0 +1,15325 @@ +using Csla; + +namespace PropertyPerf.Client.Model; +#nullable disable +public class TestItem : BusinessBase +{ + [Create, Fetch] + [RunLocal] + private async Task CreateFetch([Inject] IChildDataPortalFactory childDataPortalFactory) + { + Child1List = await childDataPortalFactory.GetPortal().FetchChildAsync(); + TestChild1 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild2 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild3 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild4 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild5 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild6 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild7 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild8 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild9 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild10 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild11 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild12 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild13 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild14 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild15 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild16 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild17 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild18 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild19 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild20 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild21 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild22 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild23 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild24 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild25 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild26 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild27 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild28 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild29 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild30 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild31 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild32 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild33 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild34 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild35 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild36 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild37 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild38 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild39 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild40 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild41 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild42 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild43 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild44 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild45 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild46 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild47 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild48 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild49 = childDataPortalFactory.GetPortal().CreateChild(); + + TestChild50 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild51 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild52 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild53 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild54 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild55 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild56 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild57 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild58 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild59 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild60 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild61 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild62 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild63 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild64 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild65 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild66 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild67 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild68 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild69 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild70 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild71 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild72 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild73 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild74 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild75 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild76 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild77 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild78 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild79 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild80 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild81 = childDataPortalFactory.GetPortal().CreateChild(); + + TestChild82 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild83 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild84 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild85 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild86 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild87 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild88 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild89 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild90 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild91 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild92 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild93 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild94 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild95 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild96 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild97 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild98 = childDataPortalFactory.GetPortal().CreateChild(); + TestChild99 = childDataPortalFactory.GetPortal().CreateChild(); + + } + + public override string ToString() + { + return "TestItem"; + } + + public static readonly PropertyInfo Child1ListProperty = RegisterProperty(nameof(Child1List)); + public ChildList Child1List + { + get => GetProperty(Child1ListProperty); + set => SetProperty(Child1ListProperty, value); + } + + public static readonly PropertyInfo TestChild1Property = RegisterProperty(nameof(TestChild1)); + public TestChild1 TestChild1 + { + get => GetProperty(TestChild1Property); + set => SetProperty(TestChild1Property, value); + } + + public static readonly PropertyInfo TestChild2Property = RegisterProperty(nameof(TestChild2)); + public TestChild2 TestChild2 + { + get => GetProperty(TestChild2Property); + set => SetProperty(TestChild2Property, value); + } + + public static readonly PropertyInfo TestChild3Property = RegisterProperty(nameof(TestChild3)); + public TestChild3 TestChild3 + { + get => GetProperty(TestChild3Property); + set => SetProperty(TestChild3Property, value); + } + + public static readonly PropertyInfo TestChild4Property = RegisterProperty(nameof(TestChild4)); + public TestChild4 TestChild4 + { + get => GetProperty(TestChild4Property); + set => SetProperty(TestChild4Property, value); + } + + public static readonly PropertyInfo TestChild5Property = RegisterProperty(nameof(TestChild5)); + public TestChild5 TestChild5 + { + get => GetProperty(TestChild5Property); + set => SetProperty(TestChild5Property, value); + } + + public static readonly PropertyInfo TestChild6Property = RegisterProperty(nameof(TestChild6)); + public TestChild6 TestChild6 + { + get => GetProperty(TestChild6Property); + set => SetProperty(TestChild6Property, value); + } + + public static readonly PropertyInfo TestChild7Property = RegisterProperty(nameof(TestChild7)); + public TestChild7 TestChild7 + { + get => GetProperty(TestChild7Property); + set => SetProperty(TestChild7Property, value); + } + + public static readonly PropertyInfo TestChild8Property = RegisterProperty(nameof(TestChild8)); + public TestChild8 TestChild8 + { + get => GetProperty(TestChild8Property); + set => SetProperty(TestChild8Property, value); + } + + public static readonly PropertyInfo TestChild9Property = RegisterProperty(nameof(TestChild9)); + public TestChild9 TestChild9 + { + get => GetProperty(TestChild9Property); + set => SetProperty(TestChild9Property, value); + } + + public static readonly PropertyInfo TestChild10Property = RegisterProperty(nameof(TestChild10)); + public TestChild10 TestChild10 + { + get => GetProperty(TestChild10Property); + set => SetProperty(TestChild10Property, value); + } + + public static readonly PropertyInfo TestChild11Property = RegisterProperty(nameof(TestChild11)); + public TestChild11 TestChild11 + { + get => GetProperty(TestChild11Property); + set => SetProperty(TestChild11Property, value); + } + + public static readonly PropertyInfo TestChild12Property = RegisterProperty(nameof(TestChild12)); + public TestChild12 TestChild12 + { + get => GetProperty(TestChild12Property); + set => SetProperty(TestChild12Property, value); + } + + public static readonly PropertyInfo TestChild13Property = RegisterProperty(nameof(TestChild13)); + public TestChild13 TestChild13 + { + get => GetProperty(TestChild13Property); + set => SetProperty(TestChild13Property, value); + } + + public static readonly PropertyInfo TestChild14Property = RegisterProperty(nameof(TestChild14)); + public TestChild14 TestChild14 + { + get => GetProperty(TestChild14Property); + set => SetProperty(TestChild14Property, value); + } + + public static readonly PropertyInfo TestChild15Property = RegisterProperty(nameof(TestChild15)); + public TestChild15 TestChild15 + { + get => GetProperty(TestChild15Property); + set => SetProperty(TestChild15Property, value); + } + + public static readonly PropertyInfo TestChild16Property = RegisterProperty(nameof(TestChild16)); + public TestChild16 TestChild16 + { + get => GetProperty(TestChild16Property); + set => SetProperty(TestChild16Property, value); + } + + public static readonly PropertyInfo TestChild17Property = RegisterProperty(nameof(TestChild17)); + public TestChild17 TestChild17 + { + get => GetProperty(TestChild17Property); + set => SetProperty(TestChild17Property, value); + } + + public static readonly PropertyInfo TestChild18Property = RegisterProperty(nameof(TestChild18)); + public TestChild18 TestChild18 + { + get => GetProperty(TestChild18Property); + set => SetProperty(TestChild18Property, value); + } + + public static readonly PropertyInfo TestChild19Property = RegisterProperty(nameof(TestChild19)); + public TestChild19 TestChild19 + { + get => GetProperty(TestChild19Property); + set => SetProperty(TestChild19Property, value); + } + + public static readonly PropertyInfo TestChild20Property = RegisterProperty(nameof(TestChild20)); + public TestChild20 TestChild20 + { + get => GetProperty(TestChild20Property); + set => SetProperty(TestChild20Property, value); + } + + public static readonly PropertyInfo TestChild21Property = RegisterProperty(nameof(TestChild21)); + public TestChild21 TestChild21 + { + get => GetProperty(TestChild21Property); + set => SetProperty(TestChild21Property, value); + } + + public static readonly PropertyInfo TestChild22Property = RegisterProperty(nameof(TestChild22)); + public TestChild22 TestChild22 + { + get => GetProperty(TestChild22Property); + set => SetProperty(TestChild22Property, value); + } + + public static readonly PropertyInfo TestChild23Property = RegisterProperty(nameof(TestChild23)); + public TestChild23 TestChild23 + { + get => GetProperty(TestChild23Property); + set => SetProperty(TestChild23Property, value); + } + + public static readonly PropertyInfo TestChild24Property = RegisterProperty(nameof(TestChild24)); + public TestChild24 TestChild24 + { + get => GetProperty(TestChild24Property); + set => SetProperty(TestChild24Property, value); + } + + public static readonly PropertyInfo TestChild25Property = RegisterProperty(nameof(TestChild25)); + public TestChild25 TestChild25 + { + get => GetProperty(TestChild25Property); + set => SetProperty(TestChild25Property, value); + } + + public static readonly PropertyInfo TestChild26Property = RegisterProperty(nameof(TestChild26)); + public TestChild26 TestChild26 + { + get => GetProperty(TestChild26Property); + set => SetProperty(TestChild26Property, value); + } + + public static readonly PropertyInfo TestChild27Property = RegisterProperty(nameof(TestChild27)); + public TestChild27 TestChild27 + { + get => GetProperty(TestChild27Property); + set => SetProperty(TestChild27Property, value); + } + + public static readonly PropertyInfo TestChild28Property = RegisterProperty(nameof(TestChild28)); + public TestChild28 TestChild28 + { + get => GetProperty(TestChild28Property); + set => SetProperty(TestChild28Property, value); + } + + public static readonly PropertyInfo TestChild29Property = RegisterProperty(nameof(TestChild29)); + public TestChild29 TestChild29 + { + get => GetProperty(TestChild29Property); + set => SetProperty(TestChild29Property, value); + } + + public static readonly PropertyInfo TestChild30Property = RegisterProperty(nameof(TestChild30)); + public TestChild30 TestChild30 + { + get => GetProperty(TestChild30Property); + set => SetProperty(TestChild30Property, value); + } + + public static readonly PropertyInfo TestChild31Property = RegisterProperty(nameof(TestChild31)); + public TestChild31 TestChild31 + { + get => GetProperty(TestChild31Property); + set => SetProperty(TestChild31Property, value); + } + + public static readonly PropertyInfo TestChild32Property = RegisterProperty(nameof(TestChild32)); + public TestChild32 TestChild32 + { + get => GetProperty(TestChild32Property); + set => SetProperty(TestChild32Property, value); + } + + public static readonly PropertyInfo TestChild33Property = RegisterProperty(nameof(TestChild33)); + public TestChild33 TestChild33 + { + get => GetProperty(TestChild33Property); + set => SetProperty(TestChild33Property, value); + } + + public static readonly PropertyInfo TestChild34Property = RegisterProperty(nameof(TestChild34)); + public TestChild34 TestChild34 + { + get => GetProperty(TestChild34Property); + set => SetProperty(TestChild34Property, value); + } + + public static readonly PropertyInfo TestChild35Property = RegisterProperty(nameof(TestChild35)); + public TestChild35 TestChild35 + { + get => GetProperty(TestChild35Property); + set => SetProperty(TestChild35Property, value); + } + + public static readonly PropertyInfo TestChild36Property = RegisterProperty(nameof(TestChild36)); + public TestChild36 TestChild36 + { + get => GetProperty(TestChild36Property); + set => SetProperty(TestChild36Property, value); + } + + public static readonly PropertyInfo TestChild37Property = RegisterProperty(nameof(TestChild37)); + public TestChild37 TestChild37 + { + get => GetProperty(TestChild37Property); + set => SetProperty(TestChild37Property, value); + } + + public static readonly PropertyInfo TestChild38Property = RegisterProperty(nameof(TestChild38)); + public TestChild38 TestChild38 + { + get => GetProperty(TestChild38Property); + set => SetProperty(TestChild38Property, value); + } + + public static readonly PropertyInfo TestChild39Property = RegisterProperty(nameof(TestChild39)); + public TestChild39 TestChild39 + { + get => GetProperty(TestChild39Property); + set => SetProperty(TestChild39Property, value); + } + + public static readonly PropertyInfo TestChild40Property = RegisterProperty(nameof(TestChild40)); + public TestChild40 TestChild40 + { + get => GetProperty(TestChild40Property); + set => SetProperty(TestChild40Property, value); + } + + public static readonly PropertyInfo TestChild41Property = RegisterProperty(nameof(TestChild41)); + public TestChild41 TestChild41 + { + get => GetProperty(TestChild41Property); + set => SetProperty(TestChild41Property, value); + } + + public static readonly PropertyInfo TestChild42Property = RegisterProperty(nameof(TestChild42)); + public TestChild42 TestChild42 + { + get => GetProperty(TestChild42Property); + set => SetProperty(TestChild42Property, value); + } + + public static readonly PropertyInfo TestChild43Property = RegisterProperty(nameof(TestChild43)); + public TestChild43 TestChild43 + { + get => GetProperty(TestChild43Property); + set => SetProperty(TestChild43Property, value); + } + + public static readonly PropertyInfo TestChild44Property = RegisterProperty(nameof(TestChild44)); + public TestChild44 TestChild44 + { + get => GetProperty(TestChild44Property); + set => SetProperty(TestChild44Property, value); + } + + public static readonly PropertyInfo TestChild45Property = RegisterProperty(nameof(TestChild45)); + public TestChild45 TestChild45 + { + get => GetProperty(TestChild45Property); + set => SetProperty(TestChild45Property, value); + } + + public static readonly PropertyInfo TestChild46Property = RegisterProperty(nameof(TestChild46)); + public TestChild46 TestChild46 + { + get => GetProperty(TestChild46Property); + set => SetProperty(TestChild46Property, value); + } + + public static readonly PropertyInfo TestChild47Property = RegisterProperty(nameof(TestChild47)); + public TestChild47 TestChild47 + { + get => GetProperty(TestChild47Property); + set => SetProperty(TestChild47Property, value); + } + + public static readonly PropertyInfo TestChild48Property = RegisterProperty(nameof(TestChild48)); + public TestChild48 TestChild48 + { + get => GetProperty(TestChild48Property); + set => SetProperty(TestChild48Property, value); + } + + public static readonly PropertyInfo TestChild49Property = RegisterProperty(nameof(TestChild49)); + public TestChild49 TestChild49 + { + get => GetProperty(TestChild49Property); + set => SetProperty(TestChild49Property, value); + } + + public static readonly PropertyInfo TestChild50Property = RegisterProperty(nameof(TestChild50)); + public TestChild50 TestChild50 + { + get => GetProperty(TestChild50Property); + set => SetProperty(TestChild50Property, value); + } + + public static readonly PropertyInfo TestChild51Property = RegisterProperty(nameof(TestChild51)); + public TestChild51 TestChild51 + { + get => GetProperty(TestChild51Property); + set => SetProperty(TestChild51Property, value); + } + + public static readonly PropertyInfo TestChild52Property = RegisterProperty(nameof(TestChild52)); + public TestChild52 TestChild52 + { + get => GetProperty(TestChild52Property); + set => SetProperty(TestChild52Property, value); + } + + public static readonly PropertyInfo TestChild53Property = RegisterProperty(nameof(TestChild53)); + public TestChild53 TestChild53 + { + get => GetProperty(TestChild53Property); + set => SetProperty(TestChild53Property, value); + } + + public static readonly PropertyInfo TestChild54Property = RegisterProperty(nameof(TestChild54)); + public TestChild54 TestChild54 + { + get => GetProperty(TestChild54Property); + set => SetProperty(TestChild54Property, value); + } + + public static readonly PropertyInfo TestChild55Property = RegisterProperty(nameof(TestChild55)); + public TestChild55 TestChild55 + { + get => GetProperty(TestChild55Property); + set => SetProperty(TestChild55Property, value); + } + + public static readonly PropertyInfo TestChild56Property = RegisterProperty(nameof(TestChild56)); + public TestChild56 TestChild56 + { + get => GetProperty(TestChild56Property); + set => SetProperty(TestChild56Property, value); + } + + public static readonly PropertyInfo TestChild57Property = RegisterProperty(nameof(TestChild57)); + public TestChild57 TestChild57 + { + get => GetProperty(TestChild57Property); + set => SetProperty(TestChild57Property, value); + } + + public static readonly PropertyInfo TestChild58Property = RegisterProperty(nameof(TestChild58)); + public TestChild58 TestChild58 + { + get => GetProperty(TestChild58Property); + set => SetProperty(TestChild58Property, value); + } + + public static readonly PropertyInfo TestChild59Property = RegisterProperty(nameof(TestChild59)); + public TestChild59 TestChild59 + { + get => GetProperty(TestChild59Property); + set => SetProperty(TestChild59Property, value); + } + + public static readonly PropertyInfo TestChild60Property = RegisterProperty(nameof(TestChild60)); + public TestChild60 TestChild60 + { + get => GetProperty(TestChild60Property); + set => SetProperty(TestChild60Property, value); + } + + public static readonly PropertyInfo TestChild61Property = RegisterProperty(nameof(TestChild61)); + public TestChild61 TestChild61 + { + get => GetProperty(TestChild61Property); + set => SetProperty(TestChild61Property, value); + } + + public static readonly PropertyInfo TestChild62Property = RegisterProperty(nameof(TestChild62)); + public TestChild62 TestChild62 + { + get => GetProperty(TestChild62Property); + set => SetProperty(TestChild62Property, value); + } + + public static readonly PropertyInfo TestChild63Property = RegisterProperty(nameof(TestChild63)); + public TestChild63 TestChild63 + { + get => GetProperty(TestChild63Property); + set => SetProperty(TestChild63Property, value); + } + + public static readonly PropertyInfo TestChild64Property = RegisterProperty(nameof(TestChild64)); + public TestChild64 TestChild64 + { + get => GetProperty(TestChild64Property); + set => SetProperty(TestChild64Property, value); + } + + public static readonly PropertyInfo TestChild65Property = RegisterProperty(nameof(TestChild65)); + public TestChild65 TestChild65 + { + get => GetProperty(TestChild65Property); + set => SetProperty(TestChild65Property, value); + } + + public static readonly PropertyInfo TestChild66Property = RegisterProperty(nameof(TestChild66)); + public TestChild66 TestChild66 + { + get => GetProperty(TestChild66Property); + set => SetProperty(TestChild66Property, value); + } + + public static readonly PropertyInfo TestChild67Property = RegisterProperty(nameof(TestChild67)); + public TestChild67 TestChild67 + { + get => GetProperty(TestChild67Property); + set => SetProperty(TestChild67Property, value); + } + + public static readonly PropertyInfo TestChild68Property = RegisterProperty(nameof(TestChild68)); + public TestChild68 TestChild68 + { + get => GetProperty(TestChild68Property); + set => SetProperty(TestChild68Property, value); + } + + public static readonly PropertyInfo TestChild69Property = RegisterProperty(nameof(TestChild69)); + public TestChild69 TestChild69 + { + get => GetProperty(TestChild69Property); + set => SetProperty(TestChild69Property, value); + } + + public static readonly PropertyInfo TestChild70Property = RegisterProperty(nameof(TestChild70)); + public TestChild70 TestChild70 + { + get => GetProperty(TestChild70Property); + set => SetProperty(TestChild70Property, value); + } + + public static readonly PropertyInfo TestChild71Property = RegisterProperty(nameof(TestChild71)); + public TestChild71 TestChild71 + { + get => GetProperty(TestChild71Property); + set => SetProperty(TestChild71Property, value); + } + + public static readonly PropertyInfo TestChild72Property = RegisterProperty(nameof(TestChild72)); + public TestChild72 TestChild72 + { + get => GetProperty(TestChild72Property); + set => SetProperty(TestChild72Property, value); + } + + public static readonly PropertyInfo TestChild73Property = RegisterProperty(nameof(TestChild73)); + public TestChild73 TestChild73 + { + get => GetProperty(TestChild73Property); + set => SetProperty(TestChild73Property, value); + } + + public static readonly PropertyInfo TestChild74Property = RegisterProperty(nameof(TestChild74)); + public TestChild74 TestChild74 + { + get => GetProperty(TestChild74Property); + set => SetProperty(TestChild74Property, value); + } + + public static readonly PropertyInfo TestChild75Property = RegisterProperty(nameof(TestChild75)); + public TestChild75 TestChild75 + { + get => GetProperty(TestChild75Property); + set => SetProperty(TestChild75Property, value); + } + + public static readonly PropertyInfo TestChild76Property = RegisterProperty(nameof(TestChild76)); + public TestChild76 TestChild76 + { + get => GetProperty(TestChild76Property); + set => SetProperty(TestChild76Property, value); + } + + public static readonly PropertyInfo TestChild77Property = RegisterProperty(nameof(TestChild77)); + public TestChild77 TestChild77 + { + get => GetProperty(TestChild77Property); + set => SetProperty(TestChild77Property, value); + } + + public static readonly PropertyInfo TestChild78Property = RegisterProperty(nameof(TestChild78)); + public TestChild78 TestChild78 + { + get => GetProperty(TestChild78Property); + set => SetProperty(TestChild78Property, value); + } + + public static readonly PropertyInfo TestChild79Property = RegisterProperty(nameof(TestChild79)); + public TestChild79 TestChild79 + { + get => GetProperty(TestChild79Property); + set => SetProperty(TestChild79Property, value); + } + + public static readonly PropertyInfo TestChild80Property = RegisterProperty(nameof(TestChild80)); + public TestChild80 TestChild80 + { + get => GetProperty(TestChild80Property); + set => SetProperty(TestChild80Property, value); + } + + public static readonly PropertyInfo TestChild81Property = RegisterProperty(nameof(TestChild81)); + public TestChild81 TestChild81 + { + get => GetProperty(TestChild81Property); + set => SetProperty(TestChild81Property, value); + } + + public static readonly PropertyInfo TestChild82Property = RegisterProperty(nameof(TestChild82)); + public TestChild82 TestChild82 + { + get => GetProperty(TestChild82Property); + set => SetProperty(TestChild82Property, value); + } + + public static readonly PropertyInfo TestChild83Property = RegisterProperty(nameof(TestChild83)); + public TestChild83 TestChild83 + { + get => GetProperty(TestChild83Property); + set => SetProperty(TestChild83Property, value); + } + + public static readonly PropertyInfo TestChild84Property = RegisterProperty(nameof(TestChild84)); + public TestChild84 TestChild84 + { + get => GetProperty(TestChild84Property); + set => SetProperty(TestChild84Property, value); + } + + public static readonly PropertyInfo TestChild85Property = RegisterProperty(nameof(TestChild85)); + public TestChild85 TestChild85 + { + get => GetProperty(TestChild85Property); + set => SetProperty(TestChild85Property, value); + } + + public static readonly PropertyInfo TestChild86Property = RegisterProperty(nameof(TestChild86)); + public TestChild86 TestChild86 + { + get => GetProperty(TestChild86Property); + set => SetProperty(TestChild86Property, value); + } + + public static readonly PropertyInfo TestChild87Property = RegisterProperty(nameof(TestChild87)); + public TestChild87 TestChild87 + { + get => GetProperty(TestChild87Property); + set => SetProperty(TestChild87Property, value); + } + + public static readonly PropertyInfo TestChild88Property = RegisterProperty(nameof(TestChild88)); + public TestChild88 TestChild88 + { + get => GetProperty(TestChild88Property); + set => SetProperty(TestChild88Property, value); + } + + public static readonly PropertyInfo TestChild89Property = RegisterProperty(nameof(TestChild89)); + public TestChild89 TestChild89 + { + get => GetProperty(TestChild89Property); + set => SetProperty(TestChild89Property, value); + } + + public static readonly PropertyInfo TestChild90Property = RegisterProperty(nameof(TestChild90)); + public TestChild90 TestChild90 + { + get => GetProperty(TestChild90Property); + set => SetProperty(TestChild90Property, value); + } + + public static readonly PropertyInfo TestChild91Property = RegisterProperty(nameof(TestChild91)); + public TestChild91 TestChild91 + { + get => GetProperty(TestChild91Property); + set => SetProperty(TestChild91Property, value); + } + + public static readonly PropertyInfo TestChild92Property = RegisterProperty(nameof(TestChild92)); + public TestChild92 TestChild92 + { + get => GetProperty(TestChild92Property); + set => SetProperty(TestChild92Property, value); + } + + public static readonly PropertyInfo TestChild93Property = RegisterProperty(nameof(TestChild93)); + public TestChild93 TestChild93 + { + get => GetProperty(TestChild93Property); + set => SetProperty(TestChild93Property, value); + } + + public static readonly PropertyInfo TestChild94Property = RegisterProperty(nameof(TestChild94)); + public TestChild94 TestChild94 + { + get => GetProperty(TestChild94Property); + set => SetProperty(TestChild94Property, value); + } + + public static readonly PropertyInfo TestChild95Property = RegisterProperty(nameof(TestChild95)); + public TestChild95 TestChild95 + { + get => GetProperty(TestChild95Property); + set => SetProperty(TestChild95Property, value); + } + + public static readonly PropertyInfo TestChild96Property = RegisterProperty(nameof(TestChild96)); + public TestChild96 TestChild96 + { + get => GetProperty(TestChild96Property); + set => SetProperty(TestChild96Property, value); + } + + public static readonly PropertyInfo TestChild97Property = RegisterProperty(nameof(TestChild97)); + public TestChild97 TestChild97 + { + get => GetProperty(TestChild97Property); + set => SetProperty(TestChild97Property, value); + } + + public static readonly PropertyInfo TestChild98Property = RegisterProperty(nameof(TestChild98)); + public TestChild98 TestChild98 + { + get => GetProperty(TestChild98Property); + set => SetProperty(TestChild98Property, value); + } + + public static readonly PropertyInfo TestChild99Property = RegisterProperty(nameof(TestChild99)); + public TestChild99 TestChild99 + { + get => GetProperty(TestChild99Property); + set => SetProperty(TestChild99Property, value); + } + + public static readonly PropertyInfo Child1Property = RegisterProperty(nameof(Child1)); + public ChildType1 Child1 + { + get => GetProperty(Child1Property); + set => SetProperty(Child1Property, value); + } + + public static readonly PropertyInfo Child2Property = RegisterProperty(nameof(Child2)); + public ChildType2 Child2 + { + get => GetProperty(Child2Property); + set => SetProperty(Child2Property, value); + } + + public static readonly PropertyInfo Child3Property = RegisterProperty(nameof(Child3)); + public ChildType3 Child3 + { + get => GetProperty(Child3Property); + set => SetProperty(Child3Property, value); + } + + public static readonly PropertyInfo Child4Property = RegisterProperty(nameof(Child4)); + public ChildType4 Child4 + { + get => GetProperty(Child4Property); + set => SetProperty(Child4Property, value); + } + + public static readonly PropertyInfo Child5Property = RegisterProperty(nameof(Child5)); + public ChildType5 Child5 + { + get => GetProperty(Child5Property); + set => SetProperty(Child5Property, value); + } + + public static readonly PropertyInfo Child11Property = RegisterProperty(nameof(Child11)); + public ChildType1 Child11 + { + get => GetProperty(Child11Property); + set => SetProperty(Child11Property, value); + } + + public static readonly PropertyInfo Child12Property = RegisterProperty(nameof(Child12)); + public ChildType12 Child12 + { + get => GetProperty(Child12Property); + set => SetProperty(Child12Property, value); + } + + public static readonly PropertyInfo Child13Property = RegisterProperty(nameof(Child13)); + public ChildType13 Child13 + { + get => GetProperty(Child13Property); + set => SetProperty(Child13Property, value); + } + + public static readonly PropertyInfo Child14Property = RegisterProperty(nameof(Child14)); + public ChildType14 Child14 + { + get => GetProperty(Child14Property); + set => SetProperty(Child14Property, value); + } + + public static readonly PropertyInfo Child15Property = RegisterProperty(nameof(Child15)); + public ChildType15 Child15 + { + get => GetProperty(Child15Property); + set => SetProperty(Child15Property, value); + } + + public static readonly PropertyInfo BoolValueProperty = RegisterProperty(nameof(BoolValue)); + public bool BoolValue + { + get => GetProperty(BoolValueProperty); + set => SetProperty(BoolValueProperty, value); + } + + public static readonly PropertyInfo IntValueProperty = RegisterProperty(nameof(IntValue)); + public int IntValue + { + get => GetProperty(IntValueProperty); + set => SetProperty(IntValueProperty, value); + } + + public static readonly PropertyInfo DateTimeValueProperty = RegisterProperty(nameof(DateTimeValue)); + public DateTime DateTimeValue + { + get => GetProperty(DateTimeValueProperty); + set => SetProperty(DateTimeValueProperty, value); + } + + public static readonly PropertyInfo GuidValueProperty = RegisterProperty(nameof(GuidValue)); + public Guid GuidValue + { + get => GetProperty(GuidValueProperty); + set => SetProperty(GuidValueProperty, value); + } + + public static readonly PropertyInfo FloatValueProperty = RegisterProperty(nameof(FloatValue)); + public float FloatValue + { + get => GetProperty(FloatValueProperty); + set => SetProperty(FloatValueProperty, value); + } + + public static readonly PropertyInfo Value1Property = RegisterProperty(nameof(Value1)); + public string Value1 + { + get => GetProperty(Value1Property); + set => SetProperty(Value1Property, value); + } + + + public static readonly PropertyInfo Value2Property = RegisterProperty(nameof(Value2)); + public string Value2 + { + get => GetProperty(Value2Property); + set => SetProperty(Value2Property, value); + } + + + public static readonly PropertyInfo Value3Property = RegisterProperty(nameof(Value3)); + public string Value3 + { + get => GetProperty(Value3Property); + set => SetProperty(Value3Property, value); + } + + + public static readonly PropertyInfo Value4Property = RegisterProperty(nameof(Value4)); + public string Value4 + { + get => GetProperty(Value4Property); + set => SetProperty(Value4Property, value); + } + + + public static readonly PropertyInfo Value5Property = RegisterProperty(nameof(Value5)); + public string Value5 + { + get => GetProperty(Value5Property); + set => SetProperty(Value5Property, value); + } + + + public static readonly PropertyInfo Value6Property = RegisterProperty(nameof(Value6)); + public string Value6 + { + get => GetProperty(Value6Property); + set => SetProperty(Value6Property, value); + } + + + public static readonly PropertyInfo Value7Property = RegisterProperty(nameof(Value7)); + public string Value7 + { + get => GetProperty(Value7Property); + set => SetProperty(Value7Property, value); + } + + + public static readonly PropertyInfo Value8Property = RegisterProperty(nameof(Value8)); + public string Value8 + { + get => GetProperty(Value8Property); + set => SetProperty(Value8Property, value); + } + + + public static readonly PropertyInfo Value9Property = RegisterProperty(nameof(Value9)); + public string Value9 + { + get => GetProperty(Value9Property); + set => SetProperty(Value9Property, value); + } + + + public static readonly PropertyInfo Value10Property = RegisterProperty(nameof(Value10)); + public string Value10 + { + get => GetProperty(Value10Property); + set => SetProperty(Value10Property, value); + } + + + public static readonly PropertyInfo Value11Property = RegisterProperty(nameof(Value11)); + public string Value11 + { + get => GetProperty(Value11Property); + set => SetProperty(Value11Property, value); + } + + + public static readonly PropertyInfo Value12Property = RegisterProperty(nameof(Value12)); + public string Value12 + { + get => GetProperty(Value12Property); + set => SetProperty(Value12Property, value); + } + + + public static readonly PropertyInfo Value13Property = RegisterProperty(nameof(Value13)); + public string Value13 + { + get => GetProperty(Value13Property); + set => SetProperty(Value13Property, value); + } + + + public static readonly PropertyInfo Value14Property = RegisterProperty(nameof(Value14)); + public string Value14 + { + get => GetProperty(Value14Property); + set => SetProperty(Value14Property, value); + } + + + public static readonly PropertyInfo Value15Property = RegisterProperty(nameof(Value15)); + public string Value15 + { + get => GetProperty(Value15Property); + set => SetProperty(Value15Property, value); + } + + + public static readonly PropertyInfo Value16Property = RegisterProperty(nameof(Value16)); + public string Value16 + { + get => GetProperty(Value16Property); + set => SetProperty(Value16Property, value); + } + + + public static readonly PropertyInfo Value17Property = RegisterProperty(nameof(Value17)); + public string Value17 + { + get => GetProperty(Value17Property); + set => SetProperty(Value17Property, value); + } + + + public static readonly PropertyInfo Value18Property = RegisterProperty(nameof(Value18)); + public string Value18 + { + get => GetProperty(Value18Property); + set => SetProperty(Value18Property, value); + } + + + public static readonly PropertyInfo Value19Property = RegisterProperty(nameof(Value19)); + public string Value19 + { + get => GetProperty(Value19Property); + set => SetProperty(Value19Property, value); + } + + + public static readonly PropertyInfo Value20Property = RegisterProperty(nameof(Value20)); + public string Value20 + { + get => GetProperty(Value20Property); + set => SetProperty(Value20Property, value); + } + + + public static readonly PropertyInfo Value21Property = RegisterProperty(nameof(Value21)); + public string Value21 + { + get => GetProperty(Value21Property); + set => SetProperty(Value21Property, value); + } + + + public static readonly PropertyInfo Value22Property = RegisterProperty(nameof(Value22)); + public string Value22 + { + get => GetProperty(Value22Property); + set => SetProperty(Value22Property, value); + } + + + public static readonly PropertyInfo Value23Property = RegisterProperty(nameof(Value23)); + public string Value23 + { + get => GetProperty(Value23Property); + set => SetProperty(Value23Property, value); + } + + + public static readonly PropertyInfo Value24Property = RegisterProperty(nameof(Value24)); + public string Value24 + { + get => GetProperty(Value24Property); + set => SetProperty(Value24Property, value); + } + + + public static readonly PropertyInfo Value25Property = RegisterProperty(nameof(Value25)); + public string Value25 + { + get => GetProperty(Value25Property); + set => SetProperty(Value25Property, value); + } + + + public static readonly PropertyInfo Value26Property = RegisterProperty(nameof(Value26)); + public string Value26 + { + get => GetProperty(Value26Property); + set => SetProperty(Value26Property, value); + } + + + public static readonly PropertyInfo Value27Property = RegisterProperty(nameof(Value27)); + public string Value27 + { + get => GetProperty(Value27Property); + set => SetProperty(Value27Property, value); + } + + + public static readonly PropertyInfo Value28Property = RegisterProperty(nameof(Value28)); + public string Value28 + { + get => GetProperty(Value28Property); + set => SetProperty(Value28Property, value); + } + + + public static readonly PropertyInfo Value29Property = RegisterProperty(nameof(Value29)); + public string Value29 + { + get => GetProperty(Value29Property); + set => SetProperty(Value29Property, value); + } + + + public static readonly PropertyInfo Value30Property = RegisterProperty(nameof(Value30)); + public string Value30 + { + get => GetProperty(Value30Property); + set => SetProperty(Value30Property, value); + } + + + public static readonly PropertyInfo Value31Property = RegisterProperty(nameof(Value31)); + public string Value31 + { + get => GetProperty(Value31Property); + set => SetProperty(Value31Property, value); + } + + + public static readonly PropertyInfo Value32Property = RegisterProperty(nameof(Value32)); + public string Value32 + { + get => GetProperty(Value32Property); + set => SetProperty(Value32Property, value); + } + + + public static readonly PropertyInfo Value33Property = RegisterProperty(nameof(Value33)); + public string Value33 + { + get => GetProperty(Value33Property); + set => SetProperty(Value33Property, value); + } + + + public static readonly PropertyInfo Value34Property = RegisterProperty(nameof(Value34)); + public string Value34 + { + get => GetProperty(Value34Property); + set => SetProperty(Value34Property, value); + } + + + public static readonly PropertyInfo Value35Property = RegisterProperty(nameof(Value35)); + public string Value35 + { + get => GetProperty(Value35Property); + set => SetProperty(Value35Property, value); + } + + + public static readonly PropertyInfo Value36Property = RegisterProperty(nameof(Value36)); + public string Value36 + { + get => GetProperty(Value36Property); + set => SetProperty(Value36Property, value); + } + + + public static readonly PropertyInfo Value37Property = RegisterProperty(nameof(Value37)); + public string Value37 + { + get => GetProperty(Value37Property); + set => SetProperty(Value37Property, value); + } + + + public static readonly PropertyInfo Value38Property = RegisterProperty(nameof(Value38)); + public string Value38 + { + get => GetProperty(Value38Property); + set => SetProperty(Value38Property, value); + } + + + public static readonly PropertyInfo Value39Property = RegisterProperty(nameof(Value39)); + public string Value39 + { + get => GetProperty(Value39Property); + set => SetProperty(Value39Property, value); + } + + + public static readonly PropertyInfo Value40Property = RegisterProperty(nameof(Value40)); + public string Value40 + { + get => GetProperty(Value40Property); + set => SetProperty(Value40Property, value); + } + + + public static readonly PropertyInfo Value41Property = RegisterProperty(nameof(Value41)); + public string Value41 + { + get => GetProperty(Value41Property); + set => SetProperty(Value41Property, value); + } + + + public static readonly PropertyInfo Value42Property = RegisterProperty(nameof(Value42)); + public string Value42 + { + get => GetProperty(Value42Property); + set => SetProperty(Value42Property, value); + } + + + public static readonly PropertyInfo Value43Property = RegisterProperty(nameof(Value43)); + public string Value43 + { + get => GetProperty(Value43Property); + set => SetProperty(Value43Property, value); + } + + + public static readonly PropertyInfo Value44Property = RegisterProperty(nameof(Value44)); + public string Value44 + { + get => GetProperty(Value44Property); + set => SetProperty(Value44Property, value); + } + + + public static readonly PropertyInfo Value45Property = RegisterProperty(nameof(Value45)); + public string Value45 + { + get => GetProperty(Value45Property); + set => SetProperty(Value45Property, value); + } + + + public static readonly PropertyInfo Value46Property = RegisterProperty(nameof(Value46)); + public string Value46 + { + get => GetProperty(Value46Property); + set => SetProperty(Value46Property, value); + } + + + public static readonly PropertyInfo Value47Property = RegisterProperty(nameof(Value47)); + public string Value47 + { + get => GetProperty(Value47Property); + set => SetProperty(Value47Property, value); + } + + + public static readonly PropertyInfo Value48Property = RegisterProperty(nameof(Value48)); + public string Value48 + { + get => GetProperty(Value48Property); + set => SetProperty(Value48Property, value); + } + + + public static readonly PropertyInfo Value49Property = RegisterProperty(nameof(Value49)); + public string Value49 + { + get => GetProperty(Value49Property); + set => SetProperty(Value49Property, value); + } + + + public static readonly PropertyInfo Value50Property = RegisterProperty(nameof(Value50)); + public string Value50 + { + get => GetProperty(Value50Property); + set => SetProperty(Value50Property, value); + } + + + public static readonly PropertyInfo Value51Property = RegisterProperty(nameof(Value51)); + public string Value51 + { + get => GetProperty(Value51Property); + set => SetProperty(Value51Property, value); + } + + + public static readonly PropertyInfo Value52Property = RegisterProperty(nameof(Value52)); + public string Value52 + { + get => GetProperty(Value52Property); + set => SetProperty(Value52Property, value); + } + + + public static readonly PropertyInfo Value53Property = RegisterProperty(nameof(Value53)); + public string Value53 + { + get => GetProperty(Value53Property); + set => SetProperty(Value53Property, value); + } + + + public static readonly PropertyInfo Value54Property = RegisterProperty(nameof(Value54)); + public string Value54 + { + get => GetProperty(Value54Property); + set => SetProperty(Value54Property, value); + } + + + public static readonly PropertyInfo Value55Property = RegisterProperty(nameof(Value55)); + public string Value55 + { + get => GetProperty(Value55Property); + set => SetProperty(Value55Property, value); + } + + + public static readonly PropertyInfo Value56Property = RegisterProperty(nameof(Value56)); + public string Value56 + { + get => GetProperty(Value56Property); + set => SetProperty(Value56Property, value); + } + + + public static readonly PropertyInfo Value57Property = RegisterProperty(nameof(Value57)); + public string Value57 + { + get => GetProperty(Value57Property); + set => SetProperty(Value57Property, value); + } + + + public static readonly PropertyInfo Value58Property = RegisterProperty(nameof(Value58)); + public string Value58 + { + get => GetProperty(Value58Property); + set => SetProperty(Value58Property, value); + } + + + public static readonly PropertyInfo Value59Property = RegisterProperty(nameof(Value59)); + public string Value59 + { + get => GetProperty(Value59Property); + set => SetProperty(Value59Property, value); + } + + + public static readonly PropertyInfo Value60Property = RegisterProperty(nameof(Value60)); + public string Value60 + { + get => GetProperty(Value60Property); + set => SetProperty(Value60Property, value); + } + + + public static readonly PropertyInfo Value61Property = RegisterProperty(nameof(Value61)); + public string Value61 + { + get => GetProperty(Value61Property); + set => SetProperty(Value61Property, value); + } + + + public static readonly PropertyInfo Value62Property = RegisterProperty(nameof(Value62)); + public string Value62 + { + get => GetProperty(Value62Property); + set => SetProperty(Value62Property, value); + } + + + public static readonly PropertyInfo Value63Property = RegisterProperty(nameof(Value63)); + public string Value63 + { + get => GetProperty(Value63Property); + set => SetProperty(Value63Property, value); + } + + + public static readonly PropertyInfo Value64Property = RegisterProperty(nameof(Value64)); + public string Value64 + { + get => GetProperty(Value64Property); + set => SetProperty(Value64Property, value); + } + + + public static readonly PropertyInfo Value65Property = RegisterProperty(nameof(Value65)); + public string Value65 + { + get => GetProperty(Value65Property); + set => SetProperty(Value65Property, value); + } + + + public static readonly PropertyInfo Value66Property = RegisterProperty(nameof(Value66)); + public string Value66 + { + get => GetProperty(Value66Property); + set => SetProperty(Value66Property, value); + } + + + public static readonly PropertyInfo Value67Property = RegisterProperty(nameof(Value67)); + public string Value67 + { + get => GetProperty(Value67Property); + set => SetProperty(Value67Property, value); + } + + + public static readonly PropertyInfo Value68Property = RegisterProperty(nameof(Value68)); + public string Value68 + { + get => GetProperty(Value68Property); + set => SetProperty(Value68Property, value); + } + + + public static readonly PropertyInfo Value69Property = RegisterProperty(nameof(Value69)); + public string Value69 + { + get => GetProperty(Value69Property); + set => SetProperty(Value69Property, value); + } + + + public static readonly PropertyInfo Value70Property = RegisterProperty(nameof(Value70)); + public string Value70 + { + get => GetProperty(Value70Property); + set => SetProperty(Value70Property, value); + } + + + public static readonly PropertyInfo Value71Property = RegisterProperty(nameof(Value71)); + public string Value71 + { + get => GetProperty(Value71Property); + set => SetProperty(Value71Property, value); + } + + + public static readonly PropertyInfo Value72Property = RegisterProperty(nameof(Value72)); + public string Value72 + { + get => GetProperty(Value72Property); + set => SetProperty(Value72Property, value); + } + + + public static readonly PropertyInfo Value73Property = RegisterProperty(nameof(Value73)); + public string Value73 + { + get => GetProperty(Value73Property); + set => SetProperty(Value73Property, value); + } + + + public static readonly PropertyInfo Value74Property = RegisterProperty(nameof(Value74)); + public string Value74 + { + get => GetProperty(Value74Property); + set => SetProperty(Value74Property, value); + } + + + public static readonly PropertyInfo Value75Property = RegisterProperty(nameof(Value75)); + public string Value75 + { + get => GetProperty(Value75Property); + set => SetProperty(Value75Property, value); + } + + + public static readonly PropertyInfo Value76Property = RegisterProperty(nameof(Value76)); + public string Value76 + { + get => GetProperty(Value76Property); + set => SetProperty(Value76Property, value); + } + + + public static readonly PropertyInfo Value77Property = RegisterProperty(nameof(Value77)); + public string Value77 + { + get => GetProperty(Value77Property); + set => SetProperty(Value77Property, value); + } + + + public static readonly PropertyInfo Value78Property = RegisterProperty(nameof(Value78)); + public string Value78 + { + get => GetProperty(Value78Property); + set => SetProperty(Value78Property, value); + } + + + public static readonly PropertyInfo Value79Property = RegisterProperty(nameof(Value79)); + public string Value79 + { + get => GetProperty(Value79Property); + set => SetProperty(Value79Property, value); + } + + + public static readonly PropertyInfo Value80Property = RegisterProperty(nameof(Value80)); + public string Value80 + { + get => GetProperty(Value80Property); + set => SetProperty(Value80Property, value); + } + + + public static readonly PropertyInfo Value81Property = RegisterProperty(nameof(Value81)); + public string Value81 + { + get => GetProperty(Value81Property); + set => SetProperty(Value81Property, value); + } + + + public static readonly PropertyInfo Value82Property = RegisterProperty(nameof(Value82)); + public string Value82 + { + get => GetProperty(Value82Property); + set => SetProperty(Value82Property, value); + } + + + public static readonly PropertyInfo Value83Property = RegisterProperty(nameof(Value83)); + public string Value83 + { + get => GetProperty(Value83Property); + set => SetProperty(Value83Property, value); + } + + + public static readonly PropertyInfo Value84Property = RegisterProperty(nameof(Value84)); + public string Value84 + { + get => GetProperty(Value84Property); + set => SetProperty(Value84Property, value); + } + + + public static readonly PropertyInfo Value85Property = RegisterProperty(nameof(Value85)); + public string Value85 + { + get => GetProperty(Value85Property); + set => SetProperty(Value85Property, value); + } + + + public static readonly PropertyInfo Value86Property = RegisterProperty(nameof(Value86)); + public string Value86 + { + get => GetProperty(Value86Property); + set => SetProperty(Value86Property, value); + } + + + public static readonly PropertyInfo Value87Property = RegisterProperty(nameof(Value87)); + public string Value87 + { + get => GetProperty(Value87Property); + set => SetProperty(Value87Property, value); + } + + + public static readonly PropertyInfo Value88Property = RegisterProperty(nameof(Value88)); + public string Value88 + { + get => GetProperty(Value88Property); + set => SetProperty(Value88Property, value); + } + + + public static readonly PropertyInfo Value89Property = RegisterProperty(nameof(Value89)); + public string Value89 + { + get => GetProperty(Value89Property); + set => SetProperty(Value89Property, value); + } + + + public static readonly PropertyInfo Value90Property = RegisterProperty(nameof(Value90)); + public string Value90 + { + get => GetProperty(Value90Property); + set => SetProperty(Value90Property, value); + } + + + public static readonly PropertyInfo Value91Property = RegisterProperty(nameof(Value91)); + public string Value91 + { + get => GetProperty(Value91Property); + set => SetProperty(Value91Property, value); + } + + + public static readonly PropertyInfo Value92Property = RegisterProperty(nameof(Value92)); + public string Value92 + { + get => GetProperty(Value92Property); + set => SetProperty(Value92Property, value); + } + + + public static readonly PropertyInfo Value93Property = RegisterProperty(nameof(Value93)); + public string Value93 + { + get => GetProperty(Value93Property); + set => SetProperty(Value93Property, value); + } + + + public static readonly PropertyInfo Value94Property = RegisterProperty(nameof(Value94)); + public string Value94 + { + get => GetProperty(Value94Property); + set => SetProperty(Value94Property, value); + } + + + public static readonly PropertyInfo Value95Property = RegisterProperty(nameof(Value95)); + public string Value95 + { + get => GetProperty(Value95Property); + set => SetProperty(Value95Property, value); + } + + + public static readonly PropertyInfo Value96Property = RegisterProperty(nameof(Value96)); + public string Value96 + { + get => GetProperty(Value96Property); + set => SetProperty(Value96Property, value); + } + + + public static readonly PropertyInfo Value97Property = RegisterProperty(nameof(Value97)); + public string Value97 + { + get => GetProperty(Value97Property); + set => SetProperty(Value97Property, value); + } + + + public static readonly PropertyInfo Value98Property = RegisterProperty(nameof(Value98)); + public string Value98 + { + get => GetProperty(Value98Property); + set => SetProperty(Value98Property, value); + } + + + public static readonly PropertyInfo Value99Property = RegisterProperty(nameof(Value99)); + public string Value99 + { + get => GetProperty(Value99Property); + set => SetProperty(Value99Property, value); + } + + + public static readonly PropertyInfo Value100Property = RegisterProperty(nameof(Value100)); + public string Value100 + { + get => GetProperty(Value100Property); + set => SetProperty(Value100Property, value); + } + + + public static readonly PropertyInfo Value101Property = RegisterProperty(nameof(Value101)); + public string Value101 + { + get => GetProperty(Value101Property); + set => SetProperty(Value101Property, value); + } + + + public static readonly PropertyInfo Value102Property = RegisterProperty(nameof(Value102)); + public string Value102 + { + get => GetProperty(Value102Property); + set => SetProperty(Value102Property, value); + } + + + public static readonly PropertyInfo Value103Property = RegisterProperty(nameof(Value103)); + public string Value103 + { + get => GetProperty(Value103Property); + set => SetProperty(Value103Property, value); + } + + + public static readonly PropertyInfo Value104Property = RegisterProperty(nameof(Value104)); + public string Value104 + { + get => GetProperty(Value104Property); + set => SetProperty(Value104Property, value); + } + + + public static readonly PropertyInfo Value105Property = RegisterProperty(nameof(Value105)); + public string Value105 + { + get => GetProperty(Value105Property); + set => SetProperty(Value105Property, value); + } + + + public static readonly PropertyInfo Value106Property = RegisterProperty(nameof(Value106)); + public string Value106 + { + get => GetProperty(Value106Property); + set => SetProperty(Value106Property, value); + } + + + public static readonly PropertyInfo Value107Property = RegisterProperty(nameof(Value107)); + public string Value107 + { + get => GetProperty(Value107Property); + set => SetProperty(Value107Property, value); + } + + + public static readonly PropertyInfo Value108Property = RegisterProperty(nameof(Value108)); + public string Value108 + { + get => GetProperty(Value108Property); + set => SetProperty(Value108Property, value); + } + + + public static readonly PropertyInfo Value109Property = RegisterProperty(nameof(Value109)); + public string Value109 + { + get => GetProperty(Value109Property); + set => SetProperty(Value109Property, value); + } + + + public static readonly PropertyInfo Value110Property = RegisterProperty(nameof(Value110)); + public string Value110 + { + get => GetProperty(Value110Property); + set => SetProperty(Value110Property, value); + } + + + public static readonly PropertyInfo Value111Property = RegisterProperty(nameof(Value111)); + public string Value111 + { + get => GetProperty(Value111Property); + set => SetProperty(Value111Property, value); + } + + + public static readonly PropertyInfo Value112Property = RegisterProperty(nameof(Value112)); + public string Value112 + { + get => GetProperty(Value112Property); + set => SetProperty(Value112Property, value); + } + + + public static readonly PropertyInfo Value113Property = RegisterProperty(nameof(Value113)); + public string Value113 + { + get => GetProperty(Value113Property); + set => SetProperty(Value113Property, value); + } + + + public static readonly PropertyInfo Value114Property = RegisterProperty(nameof(Value114)); + public string Value114 + { + get => GetProperty(Value114Property); + set => SetProperty(Value114Property, value); + } + + + public static readonly PropertyInfo Value115Property = RegisterProperty(nameof(Value115)); + public string Value115 + { + get => GetProperty(Value115Property); + set => SetProperty(Value115Property, value); + } + + + public static readonly PropertyInfo Value116Property = RegisterProperty(nameof(Value116)); + public string Value116 + { + get => GetProperty(Value116Property); + set => SetProperty(Value116Property, value); + } + + + public static readonly PropertyInfo Value117Property = RegisterProperty(nameof(Value117)); + public string Value117 + { + get => GetProperty(Value117Property); + set => SetProperty(Value117Property, value); + } + + + public static readonly PropertyInfo Value118Property = RegisterProperty(nameof(Value118)); + public string Value118 + { + get => GetProperty(Value118Property); + set => SetProperty(Value118Property, value); + } + + + public static readonly PropertyInfo Value119Property = RegisterProperty(nameof(Value119)); + public string Value119 + { + get => GetProperty(Value119Property); + set => SetProperty(Value119Property, value); + } + + + public static readonly PropertyInfo Value120Property = RegisterProperty(nameof(Value120)); + public string Value120 + { + get => GetProperty(Value120Property); + set => SetProperty(Value120Property, value); + } + + + public static readonly PropertyInfo Value121Property = RegisterProperty(nameof(Value121)); + public string Value121 + { + get => GetProperty(Value121Property); + set => SetProperty(Value121Property, value); + } + + + public static readonly PropertyInfo Value122Property = RegisterProperty(nameof(Value122)); + public string Value122 + { + get => GetProperty(Value122Property); + set => SetProperty(Value122Property, value); + } + + + public static readonly PropertyInfo Value123Property = RegisterProperty(nameof(Value123)); + public string Value123 + { + get => GetProperty(Value123Property); + set => SetProperty(Value123Property, value); + } + + + public static readonly PropertyInfo Value124Property = RegisterProperty(nameof(Value124)); + public string Value124 + { + get => GetProperty(Value124Property); + set => SetProperty(Value124Property, value); + } + + + public static readonly PropertyInfo Value125Property = RegisterProperty(nameof(Value125)); + public string Value125 + { + get => GetProperty(Value125Property); + set => SetProperty(Value125Property, value); + } + + + public static readonly PropertyInfo Value126Property = RegisterProperty(nameof(Value126)); + public string Value126 + { + get => GetProperty(Value126Property); + set => SetProperty(Value126Property, value); + } + + + public static readonly PropertyInfo Value127Property = RegisterProperty(nameof(Value127)); + public string Value127 + { + get => GetProperty(Value127Property); + set => SetProperty(Value127Property, value); + } + + + public static readonly PropertyInfo Value128Property = RegisterProperty(nameof(Value128)); + public string Value128 + { + get => GetProperty(Value128Property); + set => SetProperty(Value128Property, value); + } + + + public static readonly PropertyInfo Value129Property = RegisterProperty(nameof(Value129)); + public string Value129 + { + get => GetProperty(Value129Property); + set => SetProperty(Value129Property, value); + } + + + public static readonly PropertyInfo Value130Property = RegisterProperty(nameof(Value130)); + public string Value130 + { + get => GetProperty(Value130Property); + set => SetProperty(Value130Property, value); + } + + + public static readonly PropertyInfo Value131Property = RegisterProperty(nameof(Value131)); + public string Value131 + { + get => GetProperty(Value131Property); + set => SetProperty(Value131Property, value); + } + + + public static readonly PropertyInfo Value132Property = RegisterProperty(nameof(Value132)); + public string Value132 + { + get => GetProperty(Value132Property); + set => SetProperty(Value132Property, value); + } + + + public static readonly PropertyInfo Value133Property = RegisterProperty(nameof(Value133)); + public string Value133 + { + get => GetProperty(Value133Property); + set => SetProperty(Value133Property, value); + } + + + public static readonly PropertyInfo Value134Property = RegisterProperty(nameof(Value134)); + public string Value134 + { + get => GetProperty(Value134Property); + set => SetProperty(Value134Property, value); + } + + + public static readonly PropertyInfo Value135Property = RegisterProperty(nameof(Value135)); + public string Value135 + { + get => GetProperty(Value135Property); + set => SetProperty(Value135Property, value); + } + + + public static readonly PropertyInfo Value136Property = RegisterProperty(nameof(Value136)); + public string Value136 + { + get => GetProperty(Value136Property); + set => SetProperty(Value136Property, value); + } + + + public static readonly PropertyInfo Value137Property = RegisterProperty(nameof(Value137)); + public string Value137 + { + get => GetProperty(Value137Property); + set => SetProperty(Value137Property, value); + } + + + public static readonly PropertyInfo Value138Property = RegisterProperty(nameof(Value138)); + public string Value138 + { + get => GetProperty(Value138Property); + set => SetProperty(Value138Property, value); + } + + + public static readonly PropertyInfo Value139Property = RegisterProperty(nameof(Value139)); + public string Value139 + { + get => GetProperty(Value139Property); + set => SetProperty(Value139Property, value); + } + + + public static readonly PropertyInfo Value140Property = RegisterProperty(nameof(Value140)); + public string Value140 + { + get => GetProperty(Value140Property); + set => SetProperty(Value140Property, value); + } + + + public static readonly PropertyInfo Value141Property = RegisterProperty(nameof(Value141)); + public string Value141 + { + get => GetProperty(Value141Property); + set => SetProperty(Value141Property, value); + } + + + public static readonly PropertyInfo Value142Property = RegisterProperty(nameof(Value142)); + public string Value142 + { + get => GetProperty(Value142Property); + set => SetProperty(Value142Property, value); + } + + + public static readonly PropertyInfo Value143Property = RegisterProperty(nameof(Value143)); + public string Value143 + { + get => GetProperty(Value143Property); + set => SetProperty(Value143Property, value); + } + + + public static readonly PropertyInfo Value144Property = RegisterProperty(nameof(Value144)); + public string Value144 + { + get => GetProperty(Value144Property); + set => SetProperty(Value144Property, value); + } + + + public static readonly PropertyInfo Value145Property = RegisterProperty(nameof(Value145)); + public string Value145 + { + get => GetProperty(Value145Property); + set => SetProperty(Value145Property, value); + } + + + public static readonly PropertyInfo Value146Property = RegisterProperty(nameof(Value146)); + public string Value146 + { + get => GetProperty(Value146Property); + set => SetProperty(Value146Property, value); + } + + + public static readonly PropertyInfo Value147Property = RegisterProperty(nameof(Value147)); + public string Value147 + { + get => GetProperty(Value147Property); + set => SetProperty(Value147Property, value); + } + + + public static readonly PropertyInfo Value148Property = RegisterProperty(nameof(Value148)); + public string Value148 + { + get => GetProperty(Value148Property); + set => SetProperty(Value148Property, value); + } + + + public static readonly PropertyInfo Value149Property = RegisterProperty(nameof(Value149)); + public string Value149 + { + get => GetProperty(Value149Property); + set => SetProperty(Value149Property, value); + } + + + public static readonly PropertyInfo Value150Property = RegisterProperty(nameof(Value150)); + public string Value150 + { + get => GetProperty(Value150Property); + set => SetProperty(Value150Property, value); + } + + + public static readonly PropertyInfo Value151Property = RegisterProperty(nameof(Value151)); + public string Value151 + { + get => GetProperty(Value151Property); + set => SetProperty(Value151Property, value); + } + + + public static readonly PropertyInfo Value152Property = RegisterProperty(nameof(Value152)); + public string Value152 + { + get => GetProperty(Value152Property); + set => SetProperty(Value152Property, value); + } + + + public static readonly PropertyInfo Value153Property = RegisterProperty(nameof(Value153)); + public string Value153 + { + get => GetProperty(Value153Property); + set => SetProperty(Value153Property, value); + } + + + public static readonly PropertyInfo Value154Property = RegisterProperty(nameof(Value154)); + public string Value154 + { + get => GetProperty(Value154Property); + set => SetProperty(Value154Property, value); + } + + + public static readonly PropertyInfo Value155Property = RegisterProperty(nameof(Value155)); + public string Value155 + { + get => GetProperty(Value155Property); + set => SetProperty(Value155Property, value); + } + + + public static readonly PropertyInfo Value156Property = RegisterProperty(nameof(Value156)); + public string Value156 + { + get => GetProperty(Value156Property); + set => SetProperty(Value156Property, value); + } + + + public static readonly PropertyInfo Value157Property = RegisterProperty(nameof(Value157)); + public string Value157 + { + get => GetProperty(Value157Property); + set => SetProperty(Value157Property, value); + } + + + public static readonly PropertyInfo Value158Property = RegisterProperty(nameof(Value158)); + public string Value158 + { + get => GetProperty(Value158Property); + set => SetProperty(Value158Property, value); + } + + + public static readonly PropertyInfo Value159Property = RegisterProperty(nameof(Value159)); + public string Value159 + { + get => GetProperty(Value159Property); + set => SetProperty(Value159Property, value); + } + + + public static readonly PropertyInfo Value160Property = RegisterProperty(nameof(Value160)); + public string Value160 + { + get => GetProperty(Value160Property); + set => SetProperty(Value160Property, value); + } + + + public static readonly PropertyInfo Value161Property = RegisterProperty(nameof(Value161)); + public string Value161 + { + get => GetProperty(Value161Property); + set => SetProperty(Value161Property, value); + } + + + public static readonly PropertyInfo Value162Property = RegisterProperty(nameof(Value162)); + public string Value162 + { + get => GetProperty(Value162Property); + set => SetProperty(Value162Property, value); + } + + + public static readonly PropertyInfo Value163Property = RegisterProperty(nameof(Value163)); + public string Value163 + { + get => GetProperty(Value163Property); + set => SetProperty(Value163Property, value); + } + + + public static readonly PropertyInfo Value164Property = RegisterProperty(nameof(Value164)); + public string Value164 + { + get => GetProperty(Value164Property); + set => SetProperty(Value164Property, value); + } + + + public static readonly PropertyInfo Value165Property = RegisterProperty(nameof(Value165)); + public string Value165 + { + get => GetProperty(Value165Property); + set => SetProperty(Value165Property, value); + } + + + public static readonly PropertyInfo Value166Property = RegisterProperty(nameof(Value166)); + public string Value166 + { + get => GetProperty(Value166Property); + set => SetProperty(Value166Property, value); + } + + + public static readonly PropertyInfo Value167Property = RegisterProperty(nameof(Value167)); + public string Value167 + { + get => GetProperty(Value167Property); + set => SetProperty(Value167Property, value); + } + + + public static readonly PropertyInfo Value168Property = RegisterProperty(nameof(Value168)); + public string Value168 + { + get => GetProperty(Value168Property); + set => SetProperty(Value168Property, value); + } + + + public static readonly PropertyInfo Value169Property = RegisterProperty(nameof(Value169)); + public string Value169 + { + get => GetProperty(Value169Property); + set => SetProperty(Value169Property, value); + } + + + public static readonly PropertyInfo Value170Property = RegisterProperty(nameof(Value170)); + public string Value170 + { + get => GetProperty(Value170Property); + set => SetProperty(Value170Property, value); + } + + + public static readonly PropertyInfo Value171Property = RegisterProperty(nameof(Value171)); + public string Value171 + { + get => GetProperty(Value171Property); + set => SetProperty(Value171Property, value); + } + + + public static readonly PropertyInfo Value172Property = RegisterProperty(nameof(Value172)); + public string Value172 + { + get => GetProperty(Value172Property); + set => SetProperty(Value172Property, value); + } + + + public static readonly PropertyInfo Value173Property = RegisterProperty(nameof(Value173)); + public string Value173 + { + get => GetProperty(Value173Property); + set => SetProperty(Value173Property, value); + } + + + public static readonly PropertyInfo Value174Property = RegisterProperty(nameof(Value174)); + public string Value174 + { + get => GetProperty(Value174Property); + set => SetProperty(Value174Property, value); + } + + + public static readonly PropertyInfo Value175Property = RegisterProperty(nameof(Value175)); + public string Value175 + { + get => GetProperty(Value175Property); + set => SetProperty(Value175Property, value); + } + + + public static readonly PropertyInfo Value176Property = RegisterProperty(nameof(Value176)); + public string Value176 + { + get => GetProperty(Value176Property); + set => SetProperty(Value176Property, value); + } + + + public static readonly PropertyInfo Value177Property = RegisterProperty(nameof(Value177)); + public string Value177 + { + get => GetProperty(Value177Property); + set => SetProperty(Value177Property, value); + } + + + public static readonly PropertyInfo Value178Property = RegisterProperty(nameof(Value178)); + public string Value178 + { + get => GetProperty(Value178Property); + set => SetProperty(Value178Property, value); + } + + + public static readonly PropertyInfo Value179Property = RegisterProperty(nameof(Value179)); + public string Value179 + { + get => GetProperty(Value179Property); + set => SetProperty(Value179Property, value); + } + + + public static readonly PropertyInfo Value180Property = RegisterProperty(nameof(Value180)); + public string Value180 + { + get => GetProperty(Value180Property); + set => SetProperty(Value180Property, value); + } + + + public static readonly PropertyInfo Value181Property = RegisterProperty(nameof(Value181)); + public string Value181 + { + get => GetProperty(Value181Property); + set => SetProperty(Value181Property, value); + } + + + public static readonly PropertyInfo Value182Property = RegisterProperty(nameof(Value182)); + public string Value182 + { + get => GetProperty(Value182Property); + set => SetProperty(Value182Property, value); + } + + + public static readonly PropertyInfo Value183Property = RegisterProperty(nameof(Value183)); + public string Value183 + { + get => GetProperty(Value183Property); + set => SetProperty(Value183Property, value); + } + + + public static readonly PropertyInfo Value184Property = RegisterProperty(nameof(Value184)); + public string Value184 + { + get => GetProperty(Value184Property); + set => SetProperty(Value184Property, value); + } + + + public static readonly PropertyInfo Value185Property = RegisterProperty(nameof(Value185)); + public string Value185 + { + get => GetProperty(Value185Property); + set => SetProperty(Value185Property, value); + } + + + public static readonly PropertyInfo Value186Property = RegisterProperty(nameof(Value186)); + public string Value186 + { + get => GetProperty(Value186Property); + set => SetProperty(Value186Property, value); + } + + + public static readonly PropertyInfo Value187Property = RegisterProperty(nameof(Value187)); + public string Value187 + { + get => GetProperty(Value187Property); + set => SetProperty(Value187Property, value); + } + + + public static readonly PropertyInfo Value188Property = RegisterProperty(nameof(Value188)); + public string Value188 + { + get => GetProperty(Value188Property); + set => SetProperty(Value188Property, value); + } + + + public static readonly PropertyInfo Value189Property = RegisterProperty(nameof(Value189)); + public string Value189 + { + get => GetProperty(Value189Property); + set => SetProperty(Value189Property, value); + } + + + public static readonly PropertyInfo Value190Property = RegisterProperty(nameof(Value190)); + public string Value190 + { + get => GetProperty(Value190Property); + set => SetProperty(Value190Property, value); + } + + + public static readonly PropertyInfo Value191Property = RegisterProperty(nameof(Value191)); + public string Value191 + { + get => GetProperty(Value191Property); + set => SetProperty(Value191Property, value); + } + + + public static readonly PropertyInfo Value192Property = RegisterProperty(nameof(Value192)); + public string Value192 + { + get => GetProperty(Value192Property); + set => SetProperty(Value192Property, value); + } + + + public static readonly PropertyInfo Value193Property = RegisterProperty(nameof(Value193)); + public string Value193 + { + get => GetProperty(Value193Property); + set => SetProperty(Value193Property, value); + } + + + public static readonly PropertyInfo Value194Property = RegisterProperty(nameof(Value194)); + public string Value194 + { + get => GetProperty(Value194Property); + set => SetProperty(Value194Property, value); + } + + + public static readonly PropertyInfo Value195Property = RegisterProperty(nameof(Value195)); + public string Value195 + { + get => GetProperty(Value195Property); + set => SetProperty(Value195Property, value); + } + + + public static readonly PropertyInfo Value196Property = RegisterProperty(nameof(Value196)); + public string Value196 + { + get => GetProperty(Value196Property); + set => SetProperty(Value196Property, value); + } + + + public static readonly PropertyInfo Value197Property = RegisterProperty(nameof(Value197)); + public string Value197 + { + get => GetProperty(Value197Property); + set => SetProperty(Value197Property, value); + } + + + public static readonly PropertyInfo Value198Property = RegisterProperty(nameof(Value198)); + public string Value198 + { + get => GetProperty(Value198Property); + set => SetProperty(Value198Property, value); + } + + + public static readonly PropertyInfo Value199Property = RegisterProperty(nameof(Value199)); + public string Value199 + { + get => GetProperty(Value199Property); + set => SetProperty(Value199Property, value); + } + + + public static readonly PropertyInfo Value200Property = RegisterProperty(nameof(Value200)); + public string Value200 + { + get => GetProperty(Value200Property); + set => SetProperty(Value200Property, value); + } + + + public static readonly PropertyInfo Value201Property = RegisterProperty(nameof(Value201)); + public string Value201 + { + get => GetProperty(Value201Property); + set => SetProperty(Value201Property, value); + } + + + public static readonly PropertyInfo Value202Property = RegisterProperty(nameof(Value202)); + public string Value202 + { + get => GetProperty(Value202Property); + set => SetProperty(Value202Property, value); + } + + + public static readonly PropertyInfo Value203Property = RegisterProperty(nameof(Value203)); + public string Value203 + { + get => GetProperty(Value203Property); + set => SetProperty(Value203Property, value); + } + + + public static readonly PropertyInfo Value204Property = RegisterProperty(nameof(Value204)); + public string Value204 + { + get => GetProperty(Value204Property); + set => SetProperty(Value204Property, value); + } + + + public static readonly PropertyInfo Value205Property = RegisterProperty(nameof(Value205)); + public string Value205 + { + get => GetProperty(Value205Property); + set => SetProperty(Value205Property, value); + } + + + public static readonly PropertyInfo Value206Property = RegisterProperty(nameof(Value206)); + public string Value206 + { + get => GetProperty(Value206Property); + set => SetProperty(Value206Property, value); + } + + + public static readonly PropertyInfo Value207Property = RegisterProperty(nameof(Value207)); + public string Value207 + { + get => GetProperty(Value207Property); + set => SetProperty(Value207Property, value); + } + + + public static readonly PropertyInfo Value208Property = RegisterProperty(nameof(Value208)); + public string Value208 + { + get => GetProperty(Value208Property); + set => SetProperty(Value208Property, value); + } + + + public static readonly PropertyInfo Value209Property = RegisterProperty(nameof(Value209)); + public string Value209 + { + get => GetProperty(Value209Property); + set => SetProperty(Value209Property, value); + } + + + public static readonly PropertyInfo Value210Property = RegisterProperty(nameof(Value210)); + public string Value210 + { + get => GetProperty(Value210Property); + set => SetProperty(Value210Property, value); + } + + + public static readonly PropertyInfo Value211Property = RegisterProperty(nameof(Value211)); + public string Value211 + { + get => GetProperty(Value211Property); + set => SetProperty(Value211Property, value); + } + + + public static readonly PropertyInfo Value212Property = RegisterProperty(nameof(Value212)); + public string Value212 + { + get => GetProperty(Value212Property); + set => SetProperty(Value212Property, value); + } + + + public static readonly PropertyInfo Value213Property = RegisterProperty(nameof(Value213)); + public string Value213 + { + get => GetProperty(Value213Property); + set => SetProperty(Value213Property, value); + } + + + public static readonly PropertyInfo Value214Property = RegisterProperty(nameof(Value214)); + public string Value214 + { + get => GetProperty(Value214Property); + set => SetProperty(Value214Property, value); + } + + + public static readonly PropertyInfo Value215Property = RegisterProperty(nameof(Value215)); + public string Value215 + { + get => GetProperty(Value215Property); + set => SetProperty(Value215Property, value); + } + + + public static readonly PropertyInfo Value216Property = RegisterProperty(nameof(Value216)); + public string Value216 + { + get => GetProperty(Value216Property); + set => SetProperty(Value216Property, value); + } + + + public static readonly PropertyInfo Value217Property = RegisterProperty(nameof(Value217)); + public string Value217 + { + get => GetProperty(Value217Property); + set => SetProperty(Value217Property, value); + } + + + public static readonly PropertyInfo Value218Property = RegisterProperty(nameof(Value218)); + public string Value218 + { + get => GetProperty(Value218Property); + set => SetProperty(Value218Property, value); + } + + + public static readonly PropertyInfo Value219Property = RegisterProperty(nameof(Value219)); + public string Value219 + { + get => GetProperty(Value219Property); + set => SetProperty(Value219Property, value); + } + + + public static readonly PropertyInfo Value220Property = RegisterProperty(nameof(Value220)); + public string Value220 + { + get => GetProperty(Value220Property); + set => SetProperty(Value220Property, value); + } + + + public static readonly PropertyInfo Value221Property = RegisterProperty(nameof(Value221)); + public string Value221 + { + get => GetProperty(Value221Property); + set => SetProperty(Value221Property, value); + } + + + public static readonly PropertyInfo Value222Property = RegisterProperty(nameof(Value222)); + public string Value222 + { + get => GetProperty(Value222Property); + set => SetProperty(Value222Property, value); + } + + + public static readonly PropertyInfo Value223Property = RegisterProperty(nameof(Value223)); + public string Value223 + { + get => GetProperty(Value223Property); + set => SetProperty(Value223Property, value); + } + + + public static readonly PropertyInfo Value224Property = RegisterProperty(nameof(Value224)); + public string Value224 + { + get => GetProperty(Value224Property); + set => SetProperty(Value224Property, value); + } + + + public static readonly PropertyInfo Value225Property = RegisterProperty(nameof(Value225)); + public string Value225 + { + get => GetProperty(Value225Property); + set => SetProperty(Value225Property, value); + } + + + public static readonly PropertyInfo Value226Property = RegisterProperty(nameof(Value226)); + public string Value226 + { + get => GetProperty(Value226Property); + set => SetProperty(Value226Property, value); + } + + + public static readonly PropertyInfo Value227Property = RegisterProperty(nameof(Value227)); + public string Value227 + { + get => GetProperty(Value227Property); + set => SetProperty(Value227Property, value); + } + + + public static readonly PropertyInfo Value228Property = RegisterProperty(nameof(Value228)); + public string Value228 + { + get => GetProperty(Value228Property); + set => SetProperty(Value228Property, value); + } + + + public static readonly PropertyInfo Value229Property = RegisterProperty(nameof(Value229)); + public string Value229 + { + get => GetProperty(Value229Property); + set => SetProperty(Value229Property, value); + } + + + public static readonly PropertyInfo Value230Property = RegisterProperty(nameof(Value230)); + public string Value230 + { + get => GetProperty(Value230Property); + set => SetProperty(Value230Property, value); + } + + + public static readonly PropertyInfo Value231Property = RegisterProperty(nameof(Value231)); + public string Value231 + { + get => GetProperty(Value231Property); + set => SetProperty(Value231Property, value); + } + + + public static readonly PropertyInfo Value232Property = RegisterProperty(nameof(Value232)); + public string Value232 + { + get => GetProperty(Value232Property); + set => SetProperty(Value232Property, value); + } + + + public static readonly PropertyInfo Value233Property = RegisterProperty(nameof(Value233)); + public string Value233 + { + get => GetProperty(Value233Property); + set => SetProperty(Value233Property, value); + } + + + public static readonly PropertyInfo Value234Property = RegisterProperty(nameof(Value234)); + public string Value234 + { + get => GetProperty(Value234Property); + set => SetProperty(Value234Property, value); + } + + + public static readonly PropertyInfo Value235Property = RegisterProperty(nameof(Value235)); + public string Value235 + { + get => GetProperty(Value235Property); + set => SetProperty(Value235Property, value); + } + + + public static readonly PropertyInfo Value236Property = RegisterProperty(nameof(Value236)); + public string Value236 + { + get => GetProperty(Value236Property); + set => SetProperty(Value236Property, value); + } + + + public static readonly PropertyInfo Value237Property = RegisterProperty(nameof(Value237)); + public string Value237 + { + get => GetProperty(Value237Property); + set => SetProperty(Value237Property, value); + } + + + public static readonly PropertyInfo Value238Property = RegisterProperty(nameof(Value238)); + public string Value238 + { + get => GetProperty(Value238Property); + set => SetProperty(Value238Property, value); + } + + + public static readonly PropertyInfo Value239Property = RegisterProperty(nameof(Value239)); + public string Value239 + { + get => GetProperty(Value239Property); + set => SetProperty(Value239Property, value); + } + + + public static readonly PropertyInfo Value240Property = RegisterProperty(nameof(Value240)); + public string Value240 + { + get => GetProperty(Value240Property); + set => SetProperty(Value240Property, value); + } + + + public static readonly PropertyInfo Value241Property = RegisterProperty(nameof(Value241)); + public string Value241 + { + get => GetProperty(Value241Property); + set => SetProperty(Value241Property, value); + } + + + public static readonly PropertyInfo Value242Property = RegisterProperty(nameof(Value242)); + public string Value242 + { + get => GetProperty(Value242Property); + set => SetProperty(Value242Property, value); + } + + + public static readonly PropertyInfo Value243Property = RegisterProperty(nameof(Value243)); + public string Value243 + { + get => GetProperty(Value243Property); + set => SetProperty(Value243Property, value); + } + + + public static readonly PropertyInfo Value244Property = RegisterProperty(nameof(Value244)); + public string Value244 + { + get => GetProperty(Value244Property); + set => SetProperty(Value244Property, value); + } + + + public static readonly PropertyInfo Value245Property = RegisterProperty(nameof(Value245)); + public string Value245 + { + get => GetProperty(Value245Property); + set => SetProperty(Value245Property, value); + } + + + public static readonly PropertyInfo Value246Property = RegisterProperty(nameof(Value246)); + public string Value246 + { + get => GetProperty(Value246Property); + set => SetProperty(Value246Property, value); + } + + + public static readonly PropertyInfo Value247Property = RegisterProperty(nameof(Value247)); + public string Value247 + { + get => GetProperty(Value247Property); + set => SetProperty(Value247Property, value); + } + + + public static readonly PropertyInfo Value248Property = RegisterProperty(nameof(Value248)); + public string Value248 + { + get => GetProperty(Value248Property); + set => SetProperty(Value248Property, value); + } + + + public static readonly PropertyInfo Value249Property = RegisterProperty(nameof(Value249)); + public string Value249 + { + get => GetProperty(Value249Property); + set => SetProperty(Value249Property, value); + } + + + public static readonly PropertyInfo Value250Property = RegisterProperty(nameof(Value250)); + public string Value250 + { + get => GetProperty(Value250Property); + set => SetProperty(Value250Property, value); + } + + + public static readonly PropertyInfo Value251Property = RegisterProperty(nameof(Value251)); + public string Value251 + { + get => GetProperty(Value251Property); + set => SetProperty(Value251Property, value); + } + + + public static readonly PropertyInfo Value252Property = RegisterProperty(nameof(Value252)); + public string Value252 + { + get => GetProperty(Value252Property); + set => SetProperty(Value252Property, value); + } + + + public static readonly PropertyInfo Value253Property = RegisterProperty(nameof(Value253)); + public string Value253 + { + get => GetProperty(Value253Property); + set => SetProperty(Value253Property, value); + } + + + public static readonly PropertyInfo Value254Property = RegisterProperty(nameof(Value254)); + public string Value254 + { + get => GetProperty(Value254Property); + set => SetProperty(Value254Property, value); + } + + + public static readonly PropertyInfo Value255Property = RegisterProperty(nameof(Value255)); + public string Value255 + { + get => GetProperty(Value255Property); + set => SetProperty(Value255Property, value); + } + + + public static readonly PropertyInfo Value256Property = RegisterProperty(nameof(Value256)); + public string Value256 + { + get => GetProperty(Value256Property); + set => SetProperty(Value256Property, value); + } + + + public static readonly PropertyInfo Value257Property = RegisterProperty(nameof(Value257)); + public string Value257 + { + get => GetProperty(Value257Property); + set => SetProperty(Value257Property, value); + } + + + public static readonly PropertyInfo Value258Property = RegisterProperty(nameof(Value258)); + public string Value258 + { + get => GetProperty(Value258Property); + set => SetProperty(Value258Property, value); + } + + + public static readonly PropertyInfo Value259Property = RegisterProperty(nameof(Value259)); + public string Value259 + { + get => GetProperty(Value259Property); + set => SetProperty(Value259Property, value); + } + + + public static readonly PropertyInfo Value260Property = RegisterProperty(nameof(Value260)); + public string Value260 + { + get => GetProperty(Value260Property); + set => SetProperty(Value260Property, value); + } + + + public static readonly PropertyInfo Value261Property = RegisterProperty(nameof(Value261)); + public string Value261 + { + get => GetProperty(Value261Property); + set => SetProperty(Value261Property, value); + } + + + public static readonly PropertyInfo Value262Property = RegisterProperty(nameof(Value262)); + public string Value262 + { + get => GetProperty(Value262Property); + set => SetProperty(Value262Property, value); + } + + + public static readonly PropertyInfo Value263Property = RegisterProperty(nameof(Value263)); + public string Value263 + { + get => GetProperty(Value263Property); + set => SetProperty(Value263Property, value); + } + + + public static readonly PropertyInfo Value264Property = RegisterProperty(nameof(Value264)); + public string Value264 + { + get => GetProperty(Value264Property); + set => SetProperty(Value264Property, value); + } + + + public static readonly PropertyInfo Value265Property = RegisterProperty(nameof(Value265)); + public string Value265 + { + get => GetProperty(Value265Property); + set => SetProperty(Value265Property, value); + } + + + public static readonly PropertyInfo Value266Property = RegisterProperty(nameof(Value266)); + public string Value266 + { + get => GetProperty(Value266Property); + set => SetProperty(Value266Property, value); + } + + + public static readonly PropertyInfo Value267Property = RegisterProperty(nameof(Value267)); + public string Value267 + { + get => GetProperty(Value267Property); + set => SetProperty(Value267Property, value); + } + + + public static readonly PropertyInfo Value268Property = RegisterProperty(nameof(Value268)); + public string Value268 + { + get => GetProperty(Value268Property); + set => SetProperty(Value268Property, value); + } + + + public static readonly PropertyInfo Value269Property = RegisterProperty(nameof(Value269)); + public string Value269 + { + get => GetProperty(Value269Property); + set => SetProperty(Value269Property, value); + } + + + public static readonly PropertyInfo Value270Property = RegisterProperty(nameof(Value270)); + public string Value270 + { + get => GetProperty(Value270Property); + set => SetProperty(Value270Property, value); + } + + + public static readonly PropertyInfo Value271Property = RegisterProperty(nameof(Value271)); + public string Value271 + { + get => GetProperty(Value271Property); + set => SetProperty(Value271Property, value); + } + + + public static readonly PropertyInfo Value272Property = RegisterProperty(nameof(Value272)); + public string Value272 + { + get => GetProperty(Value272Property); + set => SetProperty(Value272Property, value); + } + + + public static readonly PropertyInfo Value273Property = RegisterProperty(nameof(Value273)); + public string Value273 + { + get => GetProperty(Value273Property); + set => SetProperty(Value273Property, value); + } + + + public static readonly PropertyInfo Value274Property = RegisterProperty(nameof(Value274)); + public string Value274 + { + get => GetProperty(Value274Property); + set => SetProperty(Value274Property, value); + } + + + public static readonly PropertyInfo Value275Property = RegisterProperty(nameof(Value275)); + public string Value275 + { + get => GetProperty(Value275Property); + set => SetProperty(Value275Property, value); + } + + + public static readonly PropertyInfo Value276Property = RegisterProperty(nameof(Value276)); + public string Value276 + { + get => GetProperty(Value276Property); + set => SetProperty(Value276Property, value); + } + + + public static readonly PropertyInfo Value277Property = RegisterProperty(nameof(Value277)); + public string Value277 + { + get => GetProperty(Value277Property); + set => SetProperty(Value277Property, value); + } + + + public static readonly PropertyInfo Value278Property = RegisterProperty(nameof(Value278)); + public string Value278 + { + get => GetProperty(Value278Property); + set => SetProperty(Value278Property, value); + } + + + public static readonly PropertyInfo Value279Property = RegisterProperty(nameof(Value279)); + public string Value279 + { + get => GetProperty(Value279Property); + set => SetProperty(Value279Property, value); + } + + + public static readonly PropertyInfo Value280Property = RegisterProperty(nameof(Value280)); + public string Value280 + { + get => GetProperty(Value280Property); + set => SetProperty(Value280Property, value); + } + + + public static readonly PropertyInfo Value281Property = RegisterProperty(nameof(Value281)); + public string Value281 + { + get => GetProperty(Value281Property); + set => SetProperty(Value281Property, value); + } + + + public static readonly PropertyInfo Value282Property = RegisterProperty(nameof(Value282)); + public string Value282 + { + get => GetProperty(Value282Property); + set => SetProperty(Value282Property, value); + } + + + public static readonly PropertyInfo Value283Property = RegisterProperty(nameof(Value283)); + public string Value283 + { + get => GetProperty(Value283Property); + set => SetProperty(Value283Property, value); + } + + + public static readonly PropertyInfo Value284Property = RegisterProperty(nameof(Value284)); + public string Value284 + { + get => GetProperty(Value284Property); + set => SetProperty(Value284Property, value); + } + + + public static readonly PropertyInfo Value285Property = RegisterProperty(nameof(Value285)); + public string Value285 + { + get => GetProperty(Value285Property); + set => SetProperty(Value285Property, value); + } + + + public static readonly PropertyInfo Value286Property = RegisterProperty(nameof(Value286)); + public string Value286 + { + get => GetProperty(Value286Property); + set => SetProperty(Value286Property, value); + } + + + public static readonly PropertyInfo Value287Property = RegisterProperty(nameof(Value287)); + public string Value287 + { + get => GetProperty(Value287Property); + set => SetProperty(Value287Property, value); + } + + + public static readonly PropertyInfo Value288Property = RegisterProperty(nameof(Value288)); + public string Value288 + { + get => GetProperty(Value288Property); + set => SetProperty(Value288Property, value); + } + + + public static readonly PropertyInfo Value289Property = RegisterProperty(nameof(Value289)); + public string Value289 + { + get => GetProperty(Value289Property); + set => SetProperty(Value289Property, value); + } + + + public static readonly PropertyInfo Value290Property = RegisterProperty(nameof(Value290)); + public string Value290 + { + get => GetProperty(Value290Property); + set => SetProperty(Value290Property, value); + } + + + public static readonly PropertyInfo Value291Property = RegisterProperty(nameof(Value291)); + public string Value291 + { + get => GetProperty(Value291Property); + set => SetProperty(Value291Property, value); + } + + + public static readonly PropertyInfo Value292Property = RegisterProperty(nameof(Value292)); + public string Value292 + { + get => GetProperty(Value292Property); + set => SetProperty(Value292Property, value); + } + + + public static readonly PropertyInfo Value293Property = RegisterProperty(nameof(Value293)); + public string Value293 + { + get => GetProperty(Value293Property); + set => SetProperty(Value293Property, value); + } + + + public static readonly PropertyInfo Value294Property = RegisterProperty(nameof(Value294)); + public string Value294 + { + get => GetProperty(Value294Property); + set => SetProperty(Value294Property, value); + } + + + public static readonly PropertyInfo Value295Property = RegisterProperty(nameof(Value295)); + public string Value295 + { + get => GetProperty(Value295Property); + set => SetProperty(Value295Property, value); + } + + + public static readonly PropertyInfo Value296Property = RegisterProperty(nameof(Value296)); + public string Value296 + { + get => GetProperty(Value296Property); + set => SetProperty(Value296Property, value); + } + + + public static readonly PropertyInfo Value297Property = RegisterProperty(nameof(Value297)); + public string Value297 + { + get => GetProperty(Value297Property); + set => SetProperty(Value297Property, value); + } + + + public static readonly PropertyInfo Value298Property = RegisterProperty(nameof(Value298)); + public string Value298 + { + get => GetProperty(Value298Property); + set => SetProperty(Value298Property, value); + } + + + public static readonly PropertyInfo Value299Property = RegisterProperty(nameof(Value299)); + public string Value299 + { + get => GetProperty(Value299Property); + set => SetProperty(Value299Property, value); + } + + + public static readonly PropertyInfo Value300Property = RegisterProperty(nameof(Value300)); + public string Value300 + { + get => GetProperty(Value300Property); + set => SetProperty(Value300Property, value); + } + + + public static readonly PropertyInfo Value301Property = RegisterProperty(nameof(Value301)); + public string Value301 + { + get => GetProperty(Value301Property); + set => SetProperty(Value301Property, value); + } + + + public static readonly PropertyInfo Value302Property = RegisterProperty(nameof(Value302)); + public string Value302 + { + get => GetProperty(Value302Property); + set => SetProperty(Value302Property, value); + } + + + public static readonly PropertyInfo Value303Property = RegisterProperty(nameof(Value303)); + public string Value303 + { + get => GetProperty(Value303Property); + set => SetProperty(Value303Property, value); + } + + + public static readonly PropertyInfo Value304Property = RegisterProperty(nameof(Value304)); + public string Value304 + { + get => GetProperty(Value304Property); + set => SetProperty(Value304Property, value); + } + + + public static readonly PropertyInfo Value305Property = RegisterProperty(nameof(Value305)); + public string Value305 + { + get => GetProperty(Value305Property); + set => SetProperty(Value305Property, value); + } + + + public static readonly PropertyInfo Value306Property = RegisterProperty(nameof(Value306)); + public string Value306 + { + get => GetProperty(Value306Property); + set => SetProperty(Value306Property, value); + } + + + public static readonly PropertyInfo Value307Property = RegisterProperty(nameof(Value307)); + public string Value307 + { + get => GetProperty(Value307Property); + set => SetProperty(Value307Property, value); + } + + + public static readonly PropertyInfo Value308Property = RegisterProperty(nameof(Value308)); + public string Value308 + { + get => GetProperty(Value308Property); + set => SetProperty(Value308Property, value); + } + + + public static readonly PropertyInfo Value309Property = RegisterProperty(nameof(Value309)); + public string Value309 + { + get => GetProperty(Value309Property); + set => SetProperty(Value309Property, value); + } + + + public static readonly PropertyInfo Value310Property = RegisterProperty(nameof(Value310)); + public string Value310 + { + get => GetProperty(Value310Property); + set => SetProperty(Value310Property, value); + } + + + public static readonly PropertyInfo Value311Property = RegisterProperty(nameof(Value311)); + public string Value311 + { + get => GetProperty(Value311Property); + set => SetProperty(Value311Property, value); + } + + + public static readonly PropertyInfo Value312Property = RegisterProperty(nameof(Value312)); + public string Value312 + { + get => GetProperty(Value312Property); + set => SetProperty(Value312Property, value); + } + + + public static readonly PropertyInfo Value313Property = RegisterProperty(nameof(Value313)); + public string Value313 + { + get => GetProperty(Value313Property); + set => SetProperty(Value313Property, value); + } + + + public static readonly PropertyInfo Value314Property = RegisterProperty(nameof(Value314)); + public string Value314 + { + get => GetProperty(Value314Property); + set => SetProperty(Value314Property, value); + } + + + public static readonly PropertyInfo Value315Property = RegisterProperty(nameof(Value315)); + public string Value315 + { + get => GetProperty(Value315Property); + set => SetProperty(Value315Property, value); + } + + + public static readonly PropertyInfo Value316Property = RegisterProperty(nameof(Value316)); + public string Value316 + { + get => GetProperty(Value316Property); + set => SetProperty(Value316Property, value); + } + + + public static readonly PropertyInfo Value317Property = RegisterProperty(nameof(Value317)); + public string Value317 + { + get => GetProperty(Value317Property); + set => SetProperty(Value317Property, value); + } + + + public static readonly PropertyInfo Value318Property = RegisterProperty(nameof(Value318)); + public string Value318 + { + get => GetProperty(Value318Property); + set => SetProperty(Value318Property, value); + } + + + public static readonly PropertyInfo Value319Property = RegisterProperty(nameof(Value319)); + public string Value319 + { + get => GetProperty(Value319Property); + set => SetProperty(Value319Property, value); + } + + + public static readonly PropertyInfo Value320Property = RegisterProperty(nameof(Value320)); + public string Value320 + { + get => GetProperty(Value320Property); + set => SetProperty(Value320Property, value); + } + + + public static readonly PropertyInfo Value321Property = RegisterProperty(nameof(Value321)); + public string Value321 + { + get => GetProperty(Value321Property); + set => SetProperty(Value321Property, value); + } + + + public static readonly PropertyInfo Value322Property = RegisterProperty(nameof(Value322)); + public string Value322 + { + get => GetProperty(Value322Property); + set => SetProperty(Value322Property, value); + } + + + public static readonly PropertyInfo Value323Property = RegisterProperty(nameof(Value323)); + public string Value323 + { + get => GetProperty(Value323Property); + set => SetProperty(Value323Property, value); + } + + + public static readonly PropertyInfo Value324Property = RegisterProperty(nameof(Value324)); + public string Value324 + { + get => GetProperty(Value324Property); + set => SetProperty(Value324Property, value); + } + + + public static readonly PropertyInfo Value325Property = RegisterProperty(nameof(Value325)); + public string Value325 + { + get => GetProperty(Value325Property); + set => SetProperty(Value325Property, value); + } + + + public static readonly PropertyInfo Value326Property = RegisterProperty(nameof(Value326)); + public string Value326 + { + get => GetProperty(Value326Property); + set => SetProperty(Value326Property, value); + } + + + public static readonly PropertyInfo Value327Property = RegisterProperty(nameof(Value327)); + public string Value327 + { + get => GetProperty(Value327Property); + set => SetProperty(Value327Property, value); + } + + + public static readonly PropertyInfo Value328Property = RegisterProperty(nameof(Value328)); + public string Value328 + { + get => GetProperty(Value328Property); + set => SetProperty(Value328Property, value); + } + + + public static readonly PropertyInfo Value329Property = RegisterProperty(nameof(Value329)); + public string Value329 + { + get => GetProperty(Value329Property); + set => SetProperty(Value329Property, value); + } + + + public static readonly PropertyInfo Value330Property = RegisterProperty(nameof(Value330)); + public string Value330 + { + get => GetProperty(Value330Property); + set => SetProperty(Value330Property, value); + } + + + public static readonly PropertyInfo Value331Property = RegisterProperty(nameof(Value331)); + public string Value331 + { + get => GetProperty(Value331Property); + set => SetProperty(Value331Property, value); + } + + + public static readonly PropertyInfo Value332Property = RegisterProperty(nameof(Value332)); + public string Value332 + { + get => GetProperty(Value332Property); + set => SetProperty(Value332Property, value); + } + + + public static readonly PropertyInfo Value333Property = RegisterProperty(nameof(Value333)); + public string Value333 + { + get => GetProperty(Value333Property); + set => SetProperty(Value333Property, value); + } + + + public static readonly PropertyInfo Value334Property = RegisterProperty(nameof(Value334)); + public string Value334 + { + get => GetProperty(Value334Property); + set => SetProperty(Value334Property, value); + } + + + public static readonly PropertyInfo Value335Property = RegisterProperty(nameof(Value335)); + public string Value335 + { + get => GetProperty(Value335Property); + set => SetProperty(Value335Property, value); + } + + + public static readonly PropertyInfo Value336Property = RegisterProperty(nameof(Value336)); + public string Value336 + { + get => GetProperty(Value336Property); + set => SetProperty(Value336Property, value); + } + + + public static readonly PropertyInfo Value337Property = RegisterProperty(nameof(Value337)); + public string Value337 + { + get => GetProperty(Value337Property); + set => SetProperty(Value337Property, value); + } + + + public static readonly PropertyInfo Value338Property = RegisterProperty(nameof(Value338)); + public string Value338 + { + get => GetProperty(Value338Property); + set => SetProperty(Value338Property, value); + } + + + public static readonly PropertyInfo Value339Property = RegisterProperty(nameof(Value339)); + public string Value339 + { + get => GetProperty(Value339Property); + set => SetProperty(Value339Property, value); + } + + + public static readonly PropertyInfo Value340Property = RegisterProperty(nameof(Value340)); + public string Value340 + { + get => GetProperty(Value340Property); + set => SetProperty(Value340Property, value); + } + + + public static readonly PropertyInfo Value341Property = RegisterProperty(nameof(Value341)); + public string Value341 + { + get => GetProperty(Value341Property); + set => SetProperty(Value341Property, value); + } + + + public static readonly PropertyInfo Value342Property = RegisterProperty(nameof(Value342)); + public string Value342 + { + get => GetProperty(Value342Property); + set => SetProperty(Value342Property, value); + } + + + public static readonly PropertyInfo Value343Property = RegisterProperty(nameof(Value343)); + public string Value343 + { + get => GetProperty(Value343Property); + set => SetProperty(Value343Property, value); + } + + + public static readonly PropertyInfo Value344Property = RegisterProperty(nameof(Value344)); + public string Value344 + { + get => GetProperty(Value344Property); + set => SetProperty(Value344Property, value); + } + + + public static readonly PropertyInfo Value345Property = RegisterProperty(nameof(Value345)); + public string Value345 + { + get => GetProperty(Value345Property); + set => SetProperty(Value345Property, value); + } + + + public static readonly PropertyInfo Value346Property = RegisterProperty(nameof(Value346)); + public string Value346 + { + get => GetProperty(Value346Property); + set => SetProperty(Value346Property, value); + } + + + public static readonly PropertyInfo Value347Property = RegisterProperty(nameof(Value347)); + public string Value347 + { + get => GetProperty(Value347Property); + set => SetProperty(Value347Property, value); + } + + + public static readonly PropertyInfo Value348Property = RegisterProperty(nameof(Value348)); + public string Value348 + { + get => GetProperty(Value348Property); + set => SetProperty(Value348Property, value); + } + + + public static readonly PropertyInfo Value349Property = RegisterProperty(nameof(Value349)); + public string Value349 + { + get => GetProperty(Value349Property); + set => SetProperty(Value349Property, value); + } + + + public static readonly PropertyInfo Value350Property = RegisterProperty(nameof(Value350)); + public string Value350 + { + get => GetProperty(Value350Property); + set => SetProperty(Value350Property, value); + } + + + public static readonly PropertyInfo Value351Property = RegisterProperty(nameof(Value351)); + public string Value351 + { + get => GetProperty(Value351Property); + set => SetProperty(Value351Property, value); + } + + + public static readonly PropertyInfo Value352Property = RegisterProperty(nameof(Value352)); + public string Value352 + { + get => GetProperty(Value352Property); + set => SetProperty(Value352Property, value); + } + + + public static readonly PropertyInfo Value353Property = RegisterProperty(nameof(Value353)); + public string Value353 + { + get => GetProperty(Value353Property); + set => SetProperty(Value353Property, value); + } + + + public static readonly PropertyInfo Value354Property = RegisterProperty(nameof(Value354)); + public string Value354 + { + get => GetProperty(Value354Property); + set => SetProperty(Value354Property, value); + } + + + public static readonly PropertyInfo Value355Property = RegisterProperty(nameof(Value355)); + public string Value355 + { + get => GetProperty(Value355Property); + set => SetProperty(Value355Property, value); + } + + + public static readonly PropertyInfo Value356Property = RegisterProperty(nameof(Value356)); + public string Value356 + { + get => GetProperty(Value356Property); + set => SetProperty(Value356Property, value); + } + + + public static readonly PropertyInfo Value357Property = RegisterProperty(nameof(Value357)); + public string Value357 + { + get => GetProperty(Value357Property); + set => SetProperty(Value357Property, value); + } + + + public static readonly PropertyInfo Value358Property = RegisterProperty(nameof(Value358)); + public string Value358 + { + get => GetProperty(Value358Property); + set => SetProperty(Value358Property, value); + } + + + public static readonly PropertyInfo Value359Property = RegisterProperty(nameof(Value359)); + public string Value359 + { + get => GetProperty(Value359Property); + set => SetProperty(Value359Property, value); + } + + + public static readonly PropertyInfo Value360Property = RegisterProperty(nameof(Value360)); + public string Value360 + { + get => GetProperty(Value360Property); + set => SetProperty(Value360Property, value); + } + + + public static readonly PropertyInfo Value361Property = RegisterProperty(nameof(Value361)); + public string Value361 + { + get => GetProperty(Value361Property); + set => SetProperty(Value361Property, value); + } + + + public static readonly PropertyInfo Value362Property = RegisterProperty(nameof(Value362)); + public string Value362 + { + get => GetProperty(Value362Property); + set => SetProperty(Value362Property, value); + } + + + public static readonly PropertyInfo Value363Property = RegisterProperty(nameof(Value363)); + public string Value363 + { + get => GetProperty(Value363Property); + set => SetProperty(Value363Property, value); + } + + + public static readonly PropertyInfo Value364Property = RegisterProperty(nameof(Value364)); + public string Value364 + { + get => GetProperty(Value364Property); + set => SetProperty(Value364Property, value); + } + + + public static readonly PropertyInfo Value365Property = RegisterProperty(nameof(Value365)); + public string Value365 + { + get => GetProperty(Value365Property); + set => SetProperty(Value365Property, value); + } + + + public static readonly PropertyInfo Value366Property = RegisterProperty(nameof(Value366)); + public string Value366 + { + get => GetProperty(Value366Property); + set => SetProperty(Value366Property, value); + } + + + public static readonly PropertyInfo Value367Property = RegisterProperty(nameof(Value367)); + public string Value367 + { + get => GetProperty(Value367Property); + set => SetProperty(Value367Property, value); + } + + + public static readonly PropertyInfo Value368Property = RegisterProperty(nameof(Value368)); + public string Value368 + { + get => GetProperty(Value368Property); + set => SetProperty(Value368Property, value); + } + + + public static readonly PropertyInfo Value369Property = RegisterProperty(nameof(Value369)); + public string Value369 + { + get => GetProperty(Value369Property); + set => SetProperty(Value369Property, value); + } + + + public static readonly PropertyInfo Value370Property = RegisterProperty(nameof(Value370)); + public string Value370 + { + get => GetProperty(Value370Property); + set => SetProperty(Value370Property, value); + } + + + public static readonly PropertyInfo Value371Property = RegisterProperty(nameof(Value371)); + public string Value371 + { + get => GetProperty(Value371Property); + set => SetProperty(Value371Property, value); + } + + + public static readonly PropertyInfo Value372Property = RegisterProperty(nameof(Value372)); + public string Value372 + { + get => GetProperty(Value372Property); + set => SetProperty(Value372Property, value); + } + + + public static readonly PropertyInfo Value373Property = RegisterProperty(nameof(Value373)); + public string Value373 + { + get => GetProperty(Value373Property); + set => SetProperty(Value373Property, value); + } + + + public static readonly PropertyInfo Value374Property = RegisterProperty(nameof(Value374)); + public string Value374 + { + get => GetProperty(Value374Property); + set => SetProperty(Value374Property, value); + } + + + public static readonly PropertyInfo Value375Property = RegisterProperty(nameof(Value375)); + public string Value375 + { + get => GetProperty(Value375Property); + set => SetProperty(Value375Property, value); + } + + + public static readonly PropertyInfo Value376Property = RegisterProperty(nameof(Value376)); + public string Value376 + { + get => GetProperty(Value376Property); + set => SetProperty(Value376Property, value); + } + + + public static readonly PropertyInfo Value377Property = RegisterProperty(nameof(Value377)); + public string Value377 + { + get => GetProperty(Value377Property); + set => SetProperty(Value377Property, value); + } + + + public static readonly PropertyInfo Value378Property = RegisterProperty(nameof(Value378)); + public string Value378 + { + get => GetProperty(Value378Property); + set => SetProperty(Value378Property, value); + } + + + public static readonly PropertyInfo Value379Property = RegisterProperty(nameof(Value379)); + public string Value379 + { + get => GetProperty(Value379Property); + set => SetProperty(Value379Property, value); + } + + + public static readonly PropertyInfo Value380Property = RegisterProperty(nameof(Value380)); + public string Value380 + { + get => GetProperty(Value380Property); + set => SetProperty(Value380Property, value); + } + + + public static readonly PropertyInfo Value381Property = RegisterProperty(nameof(Value381)); + public string Value381 + { + get => GetProperty(Value381Property); + set => SetProperty(Value381Property, value); + } + + + public static readonly PropertyInfo Value382Property = RegisterProperty(nameof(Value382)); + public string Value382 + { + get => GetProperty(Value382Property); + set => SetProperty(Value382Property, value); + } + + + public static readonly PropertyInfo Value383Property = RegisterProperty(nameof(Value383)); + public string Value383 + { + get => GetProperty(Value383Property); + set => SetProperty(Value383Property, value); + } + + + public static readonly PropertyInfo Value384Property = RegisterProperty(nameof(Value384)); + public string Value384 + { + get => GetProperty(Value384Property); + set => SetProperty(Value384Property, value); + } + + + public static readonly PropertyInfo Value385Property = RegisterProperty(nameof(Value385)); + public string Value385 + { + get => GetProperty(Value385Property); + set => SetProperty(Value385Property, value); + } + + + public static readonly PropertyInfo Value386Property = RegisterProperty(nameof(Value386)); + public string Value386 + { + get => GetProperty(Value386Property); + set => SetProperty(Value386Property, value); + } + + + public static readonly PropertyInfo Value387Property = RegisterProperty(nameof(Value387)); + public string Value387 + { + get => GetProperty(Value387Property); + set => SetProperty(Value387Property, value); + } + + + public static readonly PropertyInfo Value388Property = RegisterProperty(nameof(Value388)); + public string Value388 + { + get => GetProperty(Value388Property); + set => SetProperty(Value388Property, value); + } + + + public static readonly PropertyInfo Value389Property = RegisterProperty(nameof(Value389)); + public string Value389 + { + get => GetProperty(Value389Property); + set => SetProperty(Value389Property, value); + } + + + public static readonly PropertyInfo Value390Property = RegisterProperty(nameof(Value390)); + public string Value390 + { + get => GetProperty(Value390Property); + set => SetProperty(Value390Property, value); + } + + + public static readonly PropertyInfo Value391Property = RegisterProperty(nameof(Value391)); + public string Value391 + { + get => GetProperty(Value391Property); + set => SetProperty(Value391Property, value); + } + + + public static readonly PropertyInfo Value392Property = RegisterProperty(nameof(Value392)); + public string Value392 + { + get => GetProperty(Value392Property); + set => SetProperty(Value392Property, value); + } + + + public static readonly PropertyInfo Value393Property = RegisterProperty(nameof(Value393)); + public string Value393 + { + get => GetProperty(Value393Property); + set => SetProperty(Value393Property, value); + } + + + public static readonly PropertyInfo Value394Property = RegisterProperty(nameof(Value394)); + public string Value394 + { + get => GetProperty(Value394Property); + set => SetProperty(Value394Property, value); + } + + + public static readonly PropertyInfo Value395Property = RegisterProperty(nameof(Value395)); + public string Value395 + { + get => GetProperty(Value395Property); + set => SetProperty(Value395Property, value); + } + + + public static readonly PropertyInfo Value396Property = RegisterProperty(nameof(Value396)); + public string Value396 + { + get => GetProperty(Value396Property); + set => SetProperty(Value396Property, value); + } + + + public static readonly PropertyInfo Value397Property = RegisterProperty(nameof(Value397)); + public string Value397 + { + get => GetProperty(Value397Property); + set => SetProperty(Value397Property, value); + } + + + public static readonly PropertyInfo Value398Property = RegisterProperty(nameof(Value398)); + public string Value398 + { + get => GetProperty(Value398Property); + set => SetProperty(Value398Property, value); + } + + + public static readonly PropertyInfo Value399Property = RegisterProperty(nameof(Value399)); + public string Value399 + { + get => GetProperty(Value399Property); + set => SetProperty(Value399Property, value); + } + + + public static readonly PropertyInfo Value400Property = RegisterProperty(nameof(Value400)); + public string Value400 + { + get => GetProperty(Value400Property); + set => SetProperty(Value400Property, value); + } + + + public static readonly PropertyInfo Value401Property = RegisterProperty(nameof(Value401)); + public string Value401 + { + get => GetProperty(Value401Property); + set => SetProperty(Value401Property, value); + } + + + public static readonly PropertyInfo Value402Property = RegisterProperty(nameof(Value402)); + public string Value402 + { + get => GetProperty(Value402Property); + set => SetProperty(Value402Property, value); + } + + + public static readonly PropertyInfo Value403Property = RegisterProperty(nameof(Value403)); + public string Value403 + { + get => GetProperty(Value403Property); + set => SetProperty(Value403Property, value); + } + + + public static readonly PropertyInfo Value404Property = RegisterProperty(nameof(Value404)); + public string Value404 + { + get => GetProperty(Value404Property); + set => SetProperty(Value404Property, value); + } + + + public static readonly PropertyInfo Value405Property = RegisterProperty(nameof(Value405)); + public string Value405 + { + get => GetProperty(Value405Property); + set => SetProperty(Value405Property, value); + } + + + public static readonly PropertyInfo Value406Property = RegisterProperty(nameof(Value406)); + public string Value406 + { + get => GetProperty(Value406Property); + set => SetProperty(Value406Property, value); + } + + + public static readonly PropertyInfo Value407Property = RegisterProperty(nameof(Value407)); + public string Value407 + { + get => GetProperty(Value407Property); + set => SetProperty(Value407Property, value); + } + + + public static readonly PropertyInfo Value408Property = RegisterProperty(nameof(Value408)); + public string Value408 + { + get => GetProperty(Value408Property); + set => SetProperty(Value408Property, value); + } + + + public static readonly PropertyInfo Value409Property = RegisterProperty(nameof(Value409)); + public string Value409 + { + get => GetProperty(Value409Property); + set => SetProperty(Value409Property, value); + } + + + public static readonly PropertyInfo Value410Property = RegisterProperty(nameof(Value410)); + public string Value410 + { + get => GetProperty(Value410Property); + set => SetProperty(Value410Property, value); + } + + + public static readonly PropertyInfo Value411Property = RegisterProperty(nameof(Value411)); + public string Value411 + { + get => GetProperty(Value411Property); + set => SetProperty(Value411Property, value); + } + + + public static readonly PropertyInfo Value412Property = RegisterProperty(nameof(Value412)); + public string Value412 + { + get => GetProperty(Value412Property); + set => SetProperty(Value412Property, value); + } + + + public static readonly PropertyInfo Value413Property = RegisterProperty(nameof(Value413)); + public string Value413 + { + get => GetProperty(Value413Property); + set => SetProperty(Value413Property, value); + } + + + public static readonly PropertyInfo Value414Property = RegisterProperty(nameof(Value414)); + public string Value414 + { + get => GetProperty(Value414Property); + set => SetProperty(Value414Property, value); + } + + + public static readonly PropertyInfo Value415Property = RegisterProperty(nameof(Value415)); + public string Value415 + { + get => GetProperty(Value415Property); + set => SetProperty(Value415Property, value); + } + + + public static readonly PropertyInfo Value416Property = RegisterProperty(nameof(Value416)); + public string Value416 + { + get => GetProperty(Value416Property); + set => SetProperty(Value416Property, value); + } + + + public static readonly PropertyInfo Value417Property = RegisterProperty(nameof(Value417)); + public string Value417 + { + get => GetProperty(Value417Property); + set => SetProperty(Value417Property, value); + } + + + public static readonly PropertyInfo Value418Property = RegisterProperty(nameof(Value418)); + public string Value418 + { + get => GetProperty(Value418Property); + set => SetProperty(Value418Property, value); + } + + + public static readonly PropertyInfo Value419Property = RegisterProperty(nameof(Value419)); + public string Value419 + { + get => GetProperty(Value419Property); + set => SetProperty(Value419Property, value); + } + + + public static readonly PropertyInfo Value420Property = RegisterProperty(nameof(Value420)); + public string Value420 + { + get => GetProperty(Value420Property); + set => SetProperty(Value420Property, value); + } + + + public static readonly PropertyInfo Value421Property = RegisterProperty(nameof(Value421)); + public string Value421 + { + get => GetProperty(Value421Property); + set => SetProperty(Value421Property, value); + } + + + public static readonly PropertyInfo Value422Property = RegisterProperty(nameof(Value422)); + public string Value422 + { + get => GetProperty(Value422Property); + set => SetProperty(Value422Property, value); + } + + + public static readonly PropertyInfo Value423Property = RegisterProperty(nameof(Value423)); + public string Value423 + { + get => GetProperty(Value423Property); + set => SetProperty(Value423Property, value); + } + + + public static readonly PropertyInfo Value424Property = RegisterProperty(nameof(Value424)); + public string Value424 + { + get => GetProperty(Value424Property); + set => SetProperty(Value424Property, value); + } + + + public static readonly PropertyInfo Value425Property = RegisterProperty(nameof(Value425)); + public string Value425 + { + get => GetProperty(Value425Property); + set => SetProperty(Value425Property, value); + } + + + public static readonly PropertyInfo Value426Property = RegisterProperty(nameof(Value426)); + public string Value426 + { + get => GetProperty(Value426Property); + set => SetProperty(Value426Property, value); + } + + + public static readonly PropertyInfo Value427Property = RegisterProperty(nameof(Value427)); + public string Value427 + { + get => GetProperty(Value427Property); + set => SetProperty(Value427Property, value); + } + + + public static readonly PropertyInfo Value428Property = RegisterProperty(nameof(Value428)); + public string Value428 + { + get => GetProperty(Value428Property); + set => SetProperty(Value428Property, value); + } + + + public static readonly PropertyInfo Value429Property = RegisterProperty(nameof(Value429)); + public string Value429 + { + get => GetProperty(Value429Property); + set => SetProperty(Value429Property, value); + } + + + public static readonly PropertyInfo Value430Property = RegisterProperty(nameof(Value430)); + public string Value430 + { + get => GetProperty(Value430Property); + set => SetProperty(Value430Property, value); + } + + + public static readonly PropertyInfo Value431Property = RegisterProperty(nameof(Value431)); + public string Value431 + { + get => GetProperty(Value431Property); + set => SetProperty(Value431Property, value); + } + + + public static readonly PropertyInfo Value432Property = RegisterProperty(nameof(Value432)); + public string Value432 + { + get => GetProperty(Value432Property); + set => SetProperty(Value432Property, value); + } + + + public static readonly PropertyInfo Value433Property = RegisterProperty(nameof(Value433)); + public string Value433 + { + get => GetProperty(Value433Property); + set => SetProperty(Value433Property, value); + } + + + public static readonly PropertyInfo Value434Property = RegisterProperty(nameof(Value434)); + public string Value434 + { + get => GetProperty(Value434Property); + set => SetProperty(Value434Property, value); + } + + + public static readonly PropertyInfo Value435Property = RegisterProperty(nameof(Value435)); + public string Value435 + { + get => GetProperty(Value435Property); + set => SetProperty(Value435Property, value); + } + + + public static readonly PropertyInfo Value436Property = RegisterProperty(nameof(Value436)); + public string Value436 + { + get => GetProperty(Value436Property); + set => SetProperty(Value436Property, value); + } + + + public static readonly PropertyInfo Value437Property = RegisterProperty(nameof(Value437)); + public string Value437 + { + get => GetProperty(Value437Property); + set => SetProperty(Value437Property, value); + } + + + public static readonly PropertyInfo Value438Property = RegisterProperty(nameof(Value438)); + public string Value438 + { + get => GetProperty(Value438Property); + set => SetProperty(Value438Property, value); + } + + + public static readonly PropertyInfo Value439Property = RegisterProperty(nameof(Value439)); + public string Value439 + { + get => GetProperty(Value439Property); + set => SetProperty(Value439Property, value); + } + + + public static readonly PropertyInfo Value440Property = RegisterProperty(nameof(Value440)); + public string Value440 + { + get => GetProperty(Value440Property); + set => SetProperty(Value440Property, value); + } + + + public static readonly PropertyInfo Value441Property = RegisterProperty(nameof(Value441)); + public string Value441 + { + get => GetProperty(Value441Property); + set => SetProperty(Value441Property, value); + } + + + public static readonly PropertyInfo Value442Property = RegisterProperty(nameof(Value442)); + public string Value442 + { + get => GetProperty(Value442Property); + set => SetProperty(Value442Property, value); + } + + + public static readonly PropertyInfo Value443Property = RegisterProperty(nameof(Value443)); + public string Value443 + { + get => GetProperty(Value443Property); + set => SetProperty(Value443Property, value); + } + + + public static readonly PropertyInfo Value444Property = RegisterProperty(nameof(Value444)); + public string Value444 + { + get => GetProperty(Value444Property); + set => SetProperty(Value444Property, value); + } + + + public static readonly PropertyInfo Value445Property = RegisterProperty(nameof(Value445)); + public string Value445 + { + get => GetProperty(Value445Property); + set => SetProperty(Value445Property, value); + } + + + public static readonly PropertyInfo Value446Property = RegisterProperty(nameof(Value446)); + public string Value446 + { + get => GetProperty(Value446Property); + set => SetProperty(Value446Property, value); + } + + + public static readonly PropertyInfo Value447Property = RegisterProperty(nameof(Value447)); + public string Value447 + { + get => GetProperty(Value447Property); + set => SetProperty(Value447Property, value); + } + + + public static readonly PropertyInfo Value448Property = RegisterProperty(nameof(Value448)); + public string Value448 + { + get => GetProperty(Value448Property); + set => SetProperty(Value448Property, value); + } + + + public static readonly PropertyInfo Value449Property = RegisterProperty(nameof(Value449)); + public string Value449 + { + get => GetProperty(Value449Property); + set => SetProperty(Value449Property, value); + } + + + public static readonly PropertyInfo Value450Property = RegisterProperty(nameof(Value450)); + public string Value450 + { + get => GetProperty(Value450Property); + set => SetProperty(Value450Property, value); + } + + + public static readonly PropertyInfo Value451Property = RegisterProperty(nameof(Value451)); + public string Value451 + { + get => GetProperty(Value451Property); + set => SetProperty(Value451Property, value); + } + + + public static readonly PropertyInfo Value452Property = RegisterProperty(nameof(Value452)); + public string Value452 + { + get => GetProperty(Value452Property); + set => SetProperty(Value452Property, value); + } + + + public static readonly PropertyInfo Value453Property = RegisterProperty(nameof(Value453)); + public string Value453 + { + get => GetProperty(Value453Property); + set => SetProperty(Value453Property, value); + } + + + public static readonly PropertyInfo Value454Property = RegisterProperty(nameof(Value454)); + public string Value454 + { + get => GetProperty(Value454Property); + set => SetProperty(Value454Property, value); + } + + + public static readonly PropertyInfo Value455Property = RegisterProperty(nameof(Value455)); + public string Value455 + { + get => GetProperty(Value455Property); + set => SetProperty(Value455Property, value); + } + + + public static readonly PropertyInfo Value456Property = RegisterProperty(nameof(Value456)); + public string Value456 + { + get => GetProperty(Value456Property); + set => SetProperty(Value456Property, value); + } + + + public static readonly PropertyInfo Value457Property = RegisterProperty(nameof(Value457)); + public string Value457 + { + get => GetProperty(Value457Property); + set => SetProperty(Value457Property, value); + } + + + public static readonly PropertyInfo Value458Property = RegisterProperty(nameof(Value458)); + public string Value458 + { + get => GetProperty(Value458Property); + set => SetProperty(Value458Property, value); + } + + + public static readonly PropertyInfo Value459Property = RegisterProperty(nameof(Value459)); + public string Value459 + { + get => GetProperty(Value459Property); + set => SetProperty(Value459Property, value); + } + + + public static readonly PropertyInfo Value460Property = RegisterProperty(nameof(Value460)); + public string Value460 + { + get => GetProperty(Value460Property); + set => SetProperty(Value460Property, value); + } + + + public static readonly PropertyInfo Value461Property = RegisterProperty(nameof(Value461)); + public string Value461 + { + get => GetProperty(Value461Property); + set => SetProperty(Value461Property, value); + } + + + public static readonly PropertyInfo Value462Property = RegisterProperty(nameof(Value462)); + public string Value462 + { + get => GetProperty(Value462Property); + set => SetProperty(Value462Property, value); + } + + + public static readonly PropertyInfo Value463Property = RegisterProperty(nameof(Value463)); + public string Value463 + { + get => GetProperty(Value463Property); + set => SetProperty(Value463Property, value); + } + + + public static readonly PropertyInfo Value464Property = RegisterProperty(nameof(Value464)); + public string Value464 + { + get => GetProperty(Value464Property); + set => SetProperty(Value464Property, value); + } + + + public static readonly PropertyInfo Value465Property = RegisterProperty(nameof(Value465)); + public string Value465 + { + get => GetProperty(Value465Property); + set => SetProperty(Value465Property, value); + } + + + public static readonly PropertyInfo Value466Property = RegisterProperty(nameof(Value466)); + public string Value466 + { + get => GetProperty(Value466Property); + set => SetProperty(Value466Property, value); + } + + + public static readonly PropertyInfo Value467Property = RegisterProperty(nameof(Value467)); + public string Value467 + { + get => GetProperty(Value467Property); + set => SetProperty(Value467Property, value); + } + + + public static readonly PropertyInfo Value468Property = RegisterProperty(nameof(Value468)); + public string Value468 + { + get => GetProperty(Value468Property); + set => SetProperty(Value468Property, value); + } + + + public static readonly PropertyInfo Value469Property = RegisterProperty(nameof(Value469)); + public string Value469 + { + get => GetProperty(Value469Property); + set => SetProperty(Value469Property, value); + } + + + public static readonly PropertyInfo Value470Property = RegisterProperty(nameof(Value470)); + public string Value470 + { + get => GetProperty(Value470Property); + set => SetProperty(Value470Property, value); + } + + + public static readonly PropertyInfo Value471Property = RegisterProperty(nameof(Value471)); + public string Value471 + { + get => GetProperty(Value471Property); + set => SetProperty(Value471Property, value); + } + + + public static readonly PropertyInfo Value472Property = RegisterProperty(nameof(Value472)); + public string Value472 + { + get => GetProperty(Value472Property); + set => SetProperty(Value472Property, value); + } + + + public static readonly PropertyInfo Value473Property = RegisterProperty(nameof(Value473)); + public string Value473 + { + get => GetProperty(Value473Property); + set => SetProperty(Value473Property, value); + } + + + public static readonly PropertyInfo Value474Property = RegisterProperty(nameof(Value474)); + public string Value474 + { + get => GetProperty(Value474Property); + set => SetProperty(Value474Property, value); + } + + + public static readonly PropertyInfo Value475Property = RegisterProperty(nameof(Value475)); + public string Value475 + { + get => GetProperty(Value475Property); + set => SetProperty(Value475Property, value); + } + + + public static readonly PropertyInfo Value476Property = RegisterProperty(nameof(Value476)); + public string Value476 + { + get => GetProperty(Value476Property); + set => SetProperty(Value476Property, value); + } + + + public static readonly PropertyInfo Value477Property = RegisterProperty(nameof(Value477)); + public string Value477 + { + get => GetProperty(Value477Property); + set => SetProperty(Value477Property, value); + } + + + public static readonly PropertyInfo Value478Property = RegisterProperty(nameof(Value478)); + public string Value478 + { + get => GetProperty(Value478Property); + set => SetProperty(Value478Property, value); + } + + + public static readonly PropertyInfo Value479Property = RegisterProperty(nameof(Value479)); + public string Value479 + { + get => GetProperty(Value479Property); + set => SetProperty(Value479Property, value); + } + + + public static readonly PropertyInfo Value480Property = RegisterProperty(nameof(Value480)); + public string Value480 + { + get => GetProperty(Value480Property); + set => SetProperty(Value480Property, value); + } + + + public static readonly PropertyInfo Value481Property = RegisterProperty(nameof(Value481)); + public string Value481 + { + get => GetProperty(Value481Property); + set => SetProperty(Value481Property, value); + } + + + public static readonly PropertyInfo Value482Property = RegisterProperty(nameof(Value482)); + public string Value482 + { + get => GetProperty(Value482Property); + set => SetProperty(Value482Property, value); + } + + + public static readonly PropertyInfo Value483Property = RegisterProperty(nameof(Value483)); + public string Value483 + { + get => GetProperty(Value483Property); + set => SetProperty(Value483Property, value); + } + + + public static readonly PropertyInfo Value484Property = RegisterProperty(nameof(Value484)); + public string Value484 + { + get => GetProperty(Value484Property); + set => SetProperty(Value484Property, value); + } + + + public static readonly PropertyInfo Value485Property = RegisterProperty(nameof(Value485)); + public string Value485 + { + get => GetProperty(Value485Property); + set => SetProperty(Value485Property, value); + } + + + public static readonly PropertyInfo Value486Property = RegisterProperty(nameof(Value486)); + public string Value486 + { + get => GetProperty(Value486Property); + set => SetProperty(Value486Property, value); + } + + + public static readonly PropertyInfo Value487Property = RegisterProperty(nameof(Value487)); + public string Value487 + { + get => GetProperty(Value487Property); + set => SetProperty(Value487Property, value); + } + + + public static readonly PropertyInfo Value488Property = RegisterProperty(nameof(Value488)); + public string Value488 + { + get => GetProperty(Value488Property); + set => SetProperty(Value488Property, value); + } + + + public static readonly PropertyInfo Value489Property = RegisterProperty(nameof(Value489)); + public string Value489 + { + get => GetProperty(Value489Property); + set => SetProperty(Value489Property, value); + } + + + public static readonly PropertyInfo Value490Property = RegisterProperty(nameof(Value490)); + public string Value490 + { + get => GetProperty(Value490Property); + set => SetProperty(Value490Property, value); + } + + + public static readonly PropertyInfo Value491Property = RegisterProperty(nameof(Value491)); + public string Value491 + { + get => GetProperty(Value491Property); + set => SetProperty(Value491Property, value); + } + + + public static readonly PropertyInfo Value492Property = RegisterProperty(nameof(Value492)); + public string Value492 + { + get => GetProperty(Value492Property); + set => SetProperty(Value492Property, value); + } + + + public static readonly PropertyInfo Value493Property = RegisterProperty(nameof(Value493)); + public string Value493 + { + get => GetProperty(Value493Property); + set => SetProperty(Value493Property, value); + } + + + public static readonly PropertyInfo Value494Property = RegisterProperty(nameof(Value494)); + public string Value494 + { + get => GetProperty(Value494Property); + set => SetProperty(Value494Property, value); + } + + + public static readonly PropertyInfo Value495Property = RegisterProperty(nameof(Value495)); + public string Value495 + { + get => GetProperty(Value495Property); + set => SetProperty(Value495Property, value); + } + + + public static readonly PropertyInfo Value496Property = RegisterProperty(nameof(Value496)); + public string Value496 + { + get => GetProperty(Value496Property); + set => SetProperty(Value496Property, value); + } + + + public static readonly PropertyInfo Value497Property = RegisterProperty(nameof(Value497)); + public string Value497 + { + get => GetProperty(Value497Property); + set => SetProperty(Value497Property, value); + } + + + public static readonly PropertyInfo Value498Property = RegisterProperty(nameof(Value498)); + public string Value498 + { + get => GetProperty(Value498Property); + set => SetProperty(Value498Property, value); + } + + + public static readonly PropertyInfo Value499Property = RegisterProperty(nameof(Value499)); + public string Value499 + { + get => GetProperty(Value499Property); + set => SetProperty(Value499Property, value); + } + + + public static readonly PropertyInfo Value500Property = RegisterProperty(nameof(Value500)); + public string Value500 + { + get => GetProperty(Value500Property); + set => SetProperty(Value500Property, value); + } + + + public static readonly PropertyInfo Value501Property = RegisterProperty(nameof(Value501)); + public string Value501 + { + get => GetProperty(Value501Property); + set => SetProperty(Value501Property, value); + } + + + public static readonly PropertyInfo Value502Property = RegisterProperty(nameof(Value502)); + public string Value502 + { + get => GetProperty(Value502Property); + set => SetProperty(Value502Property, value); + } + + + public static readonly PropertyInfo Value503Property = RegisterProperty(nameof(Value503)); + public string Value503 + { + get => GetProperty(Value503Property); + set => SetProperty(Value503Property, value); + } + + + public static readonly PropertyInfo Value504Property = RegisterProperty(nameof(Value504)); + public string Value504 + { + get => GetProperty(Value504Property); + set => SetProperty(Value504Property, value); + } + + + public static readonly PropertyInfo Value505Property = RegisterProperty(nameof(Value505)); + public string Value505 + { + get => GetProperty(Value505Property); + set => SetProperty(Value505Property, value); + } + + + public static readonly PropertyInfo Value506Property = RegisterProperty(nameof(Value506)); + public string Value506 + { + get => GetProperty(Value506Property); + set => SetProperty(Value506Property, value); + } + + + public static readonly PropertyInfo Value507Property = RegisterProperty(nameof(Value507)); + public string Value507 + { + get => GetProperty(Value507Property); + set => SetProperty(Value507Property, value); + } + + + public static readonly PropertyInfo Value508Property = RegisterProperty(nameof(Value508)); + public string Value508 + { + get => GetProperty(Value508Property); + set => SetProperty(Value508Property, value); + } + + + public static readonly PropertyInfo Value509Property = RegisterProperty(nameof(Value509)); + public string Value509 + { + get => GetProperty(Value509Property); + set => SetProperty(Value509Property, value); + } + + + public static readonly PropertyInfo Value510Property = RegisterProperty(nameof(Value510)); + public string Value510 + { + get => GetProperty(Value510Property); + set => SetProperty(Value510Property, value); + } + + + public static readonly PropertyInfo Value511Property = RegisterProperty(nameof(Value511)); + public string Value511 + { + get => GetProperty(Value511Property); + set => SetProperty(Value511Property, value); + } + + + public static readonly PropertyInfo Value512Property = RegisterProperty(nameof(Value512)); + public string Value512 + { + get => GetProperty(Value512Property); + set => SetProperty(Value512Property, value); + } + + + public static readonly PropertyInfo Value513Property = RegisterProperty(nameof(Value513)); + public string Value513 + { + get => GetProperty(Value513Property); + set => SetProperty(Value513Property, value); + } + + + public static readonly PropertyInfo Value514Property = RegisterProperty(nameof(Value514)); + public string Value514 + { + get => GetProperty(Value514Property); + set => SetProperty(Value514Property, value); + } + + + public static readonly PropertyInfo Value515Property = RegisterProperty(nameof(Value515)); + public string Value515 + { + get => GetProperty(Value515Property); + set => SetProperty(Value515Property, value); + } + + + public static readonly PropertyInfo Value516Property = RegisterProperty(nameof(Value516)); + public string Value516 + { + get => GetProperty(Value516Property); + set => SetProperty(Value516Property, value); + } + + + public static readonly PropertyInfo Value517Property = RegisterProperty(nameof(Value517)); + public string Value517 + { + get => GetProperty(Value517Property); + set => SetProperty(Value517Property, value); + } + + + public static readonly PropertyInfo Value518Property = RegisterProperty(nameof(Value518)); + public string Value518 + { + get => GetProperty(Value518Property); + set => SetProperty(Value518Property, value); + } + + + public static readonly PropertyInfo Value519Property = RegisterProperty(nameof(Value519)); + public string Value519 + { + get => GetProperty(Value519Property); + set => SetProperty(Value519Property, value); + } + + + public static readonly PropertyInfo Value520Property = RegisterProperty(nameof(Value520)); + public string Value520 + { + get => GetProperty(Value520Property); + set => SetProperty(Value520Property, value); + } + + + public static readonly PropertyInfo Value521Property = RegisterProperty(nameof(Value521)); + public string Value521 + { + get => GetProperty(Value521Property); + set => SetProperty(Value521Property, value); + } + + + public static readonly PropertyInfo Value522Property = RegisterProperty(nameof(Value522)); + public string Value522 + { + get => GetProperty(Value522Property); + set => SetProperty(Value522Property, value); + } + + + public static readonly PropertyInfo Value523Property = RegisterProperty(nameof(Value523)); + public string Value523 + { + get => GetProperty(Value523Property); + set => SetProperty(Value523Property, value); + } + + + public static readonly PropertyInfo Value524Property = RegisterProperty(nameof(Value524)); + public string Value524 + { + get => GetProperty(Value524Property); + set => SetProperty(Value524Property, value); + } + + + public static readonly PropertyInfo Value525Property = RegisterProperty(nameof(Value525)); + public string Value525 + { + get => GetProperty(Value525Property); + set => SetProperty(Value525Property, value); + } + + + public static readonly PropertyInfo Value526Property = RegisterProperty(nameof(Value526)); + public string Value526 + { + get => GetProperty(Value526Property); + set => SetProperty(Value526Property, value); + } + + + public static readonly PropertyInfo Value527Property = RegisterProperty(nameof(Value527)); + public string Value527 + { + get => GetProperty(Value527Property); + set => SetProperty(Value527Property, value); + } + + + public static readonly PropertyInfo Value528Property = RegisterProperty(nameof(Value528)); + public string Value528 + { + get => GetProperty(Value528Property); + set => SetProperty(Value528Property, value); + } + + + public static readonly PropertyInfo Value529Property = RegisterProperty(nameof(Value529)); + public string Value529 + { + get => GetProperty(Value529Property); + set => SetProperty(Value529Property, value); + } + + + public static readonly PropertyInfo Value530Property = RegisterProperty(nameof(Value530)); + public string Value530 + { + get => GetProperty(Value530Property); + set => SetProperty(Value530Property, value); + } + + + public static readonly PropertyInfo Value531Property = RegisterProperty(nameof(Value531)); + public string Value531 + { + get => GetProperty(Value531Property); + set => SetProperty(Value531Property, value); + } + + + public static readonly PropertyInfo Value532Property = RegisterProperty(nameof(Value532)); + public string Value532 + { + get => GetProperty(Value532Property); + set => SetProperty(Value532Property, value); + } + + + public static readonly PropertyInfo Value533Property = RegisterProperty(nameof(Value533)); + public string Value533 + { + get => GetProperty(Value533Property); + set => SetProperty(Value533Property, value); + } + + + public static readonly PropertyInfo Value534Property = RegisterProperty(nameof(Value534)); + public string Value534 + { + get => GetProperty(Value534Property); + set => SetProperty(Value534Property, value); + } + + + public static readonly PropertyInfo Value535Property = RegisterProperty(nameof(Value535)); + public string Value535 + { + get => GetProperty(Value535Property); + set => SetProperty(Value535Property, value); + } + + + public static readonly PropertyInfo Value536Property = RegisterProperty(nameof(Value536)); + public string Value536 + { + get => GetProperty(Value536Property); + set => SetProperty(Value536Property, value); + } + + + public static readonly PropertyInfo Value537Property = RegisterProperty(nameof(Value537)); + public string Value537 + { + get => GetProperty(Value537Property); + set => SetProperty(Value537Property, value); + } + + + public static readonly PropertyInfo Value538Property = RegisterProperty(nameof(Value538)); + public string Value538 + { + get => GetProperty(Value538Property); + set => SetProperty(Value538Property, value); + } + + + public static readonly PropertyInfo Value539Property = RegisterProperty(nameof(Value539)); + public string Value539 + { + get => GetProperty(Value539Property); + set => SetProperty(Value539Property, value); + } + + + public static readonly PropertyInfo Value540Property = RegisterProperty(nameof(Value540)); + public string Value540 + { + get => GetProperty(Value540Property); + set => SetProperty(Value540Property, value); + } + + + public static readonly PropertyInfo Value541Property = RegisterProperty(nameof(Value541)); + public string Value541 + { + get => GetProperty(Value541Property); + set => SetProperty(Value541Property, value); + } + + + public static readonly PropertyInfo Value542Property = RegisterProperty(nameof(Value542)); + public string Value542 + { + get => GetProperty(Value542Property); + set => SetProperty(Value542Property, value); + } + + + public static readonly PropertyInfo Value543Property = RegisterProperty(nameof(Value543)); + public string Value543 + { + get => GetProperty(Value543Property); + set => SetProperty(Value543Property, value); + } + + + public static readonly PropertyInfo Value544Property = RegisterProperty(nameof(Value544)); + public string Value544 + { + get => GetProperty(Value544Property); + set => SetProperty(Value544Property, value); + } + + + public static readonly PropertyInfo Value545Property = RegisterProperty(nameof(Value545)); + public string Value545 + { + get => GetProperty(Value545Property); + set => SetProperty(Value545Property, value); + } + + + public static readonly PropertyInfo Value546Property = RegisterProperty(nameof(Value546)); + public string Value546 + { + get => GetProperty(Value546Property); + set => SetProperty(Value546Property, value); + } + + + public static readonly PropertyInfo Value547Property = RegisterProperty(nameof(Value547)); + public string Value547 + { + get => GetProperty(Value547Property); + set => SetProperty(Value547Property, value); + } + + + public static readonly PropertyInfo Value548Property = RegisterProperty(nameof(Value548)); + public string Value548 + { + get => GetProperty(Value548Property); + set => SetProperty(Value548Property, value); + } + + + public static readonly PropertyInfo Value549Property = RegisterProperty(nameof(Value549)); + public string Value549 + { + get => GetProperty(Value549Property); + set => SetProperty(Value549Property, value); + } + + + public static readonly PropertyInfo Value550Property = RegisterProperty(nameof(Value550)); + public string Value550 + { + get => GetProperty(Value550Property); + set => SetProperty(Value550Property, value); + } + + + public static readonly PropertyInfo Value551Property = RegisterProperty(nameof(Value551)); + public string Value551 + { + get => GetProperty(Value551Property); + set => SetProperty(Value551Property, value); + } + + + public static readonly PropertyInfo Value552Property = RegisterProperty(nameof(Value552)); + public string Value552 + { + get => GetProperty(Value552Property); + set => SetProperty(Value552Property, value); + } + + + public static readonly PropertyInfo Value553Property = RegisterProperty(nameof(Value553)); + public string Value553 + { + get => GetProperty(Value553Property); + set => SetProperty(Value553Property, value); + } + + + public static readonly PropertyInfo Value554Property = RegisterProperty(nameof(Value554)); + public string Value554 + { + get => GetProperty(Value554Property); + set => SetProperty(Value554Property, value); + } + + + public static readonly PropertyInfo Value555Property = RegisterProperty(nameof(Value555)); + public string Value555 + { + get => GetProperty(Value555Property); + set => SetProperty(Value555Property, value); + } + + + public static readonly PropertyInfo Value556Property = RegisterProperty(nameof(Value556)); + public string Value556 + { + get => GetProperty(Value556Property); + set => SetProperty(Value556Property, value); + } + + + public static readonly PropertyInfo Value557Property = RegisterProperty(nameof(Value557)); + public string Value557 + { + get => GetProperty(Value557Property); + set => SetProperty(Value557Property, value); + } + + + public static readonly PropertyInfo Value558Property = RegisterProperty(nameof(Value558)); + public string Value558 + { + get => GetProperty(Value558Property); + set => SetProperty(Value558Property, value); + } + + + public static readonly PropertyInfo Value559Property = RegisterProperty(nameof(Value559)); + public string Value559 + { + get => GetProperty(Value559Property); + set => SetProperty(Value559Property, value); + } + + + public static readonly PropertyInfo Value560Property = RegisterProperty(nameof(Value560)); + public string Value560 + { + get => GetProperty(Value560Property); + set => SetProperty(Value560Property, value); + } + + + public static readonly PropertyInfo Value561Property = RegisterProperty(nameof(Value561)); + public string Value561 + { + get => GetProperty(Value561Property); + set => SetProperty(Value561Property, value); + } + + + public static readonly PropertyInfo Value562Property = RegisterProperty(nameof(Value562)); + public string Value562 + { + get => GetProperty(Value562Property); + set => SetProperty(Value562Property, value); + } + + + public static readonly PropertyInfo Value563Property = RegisterProperty(nameof(Value563)); + public string Value563 + { + get => GetProperty(Value563Property); + set => SetProperty(Value563Property, value); + } + + + public static readonly PropertyInfo Value564Property = RegisterProperty(nameof(Value564)); + public string Value564 + { + get => GetProperty(Value564Property); + set => SetProperty(Value564Property, value); + } + + + public static readonly PropertyInfo Value565Property = RegisterProperty(nameof(Value565)); + public string Value565 + { + get => GetProperty(Value565Property); + set => SetProperty(Value565Property, value); + } + + + public static readonly PropertyInfo Value566Property = RegisterProperty(nameof(Value566)); + public string Value566 + { + get => GetProperty(Value566Property); + set => SetProperty(Value566Property, value); + } + + + public static readonly PropertyInfo Value567Property = RegisterProperty(nameof(Value567)); + public string Value567 + { + get => GetProperty(Value567Property); + set => SetProperty(Value567Property, value); + } + + + public static readonly PropertyInfo Value568Property = RegisterProperty(nameof(Value568)); + public string Value568 + { + get => GetProperty(Value568Property); + set => SetProperty(Value568Property, value); + } + + + public static readonly PropertyInfo Value569Property = RegisterProperty(nameof(Value569)); + public string Value569 + { + get => GetProperty(Value569Property); + set => SetProperty(Value569Property, value); + } + + + public static readonly PropertyInfo Value570Property = RegisterProperty(nameof(Value570)); + public string Value570 + { + get => GetProperty(Value570Property); + set => SetProperty(Value570Property, value); + } + + + public static readonly PropertyInfo Value571Property = RegisterProperty(nameof(Value571)); + public string Value571 + { + get => GetProperty(Value571Property); + set => SetProperty(Value571Property, value); + } + + + public static readonly PropertyInfo Value572Property = RegisterProperty(nameof(Value572)); + public string Value572 + { + get => GetProperty(Value572Property); + set => SetProperty(Value572Property, value); + } + + + public static readonly PropertyInfo Value573Property = RegisterProperty(nameof(Value573)); + public string Value573 + { + get => GetProperty(Value573Property); + set => SetProperty(Value573Property, value); + } + + + public static readonly PropertyInfo Value574Property = RegisterProperty(nameof(Value574)); + public string Value574 + { + get => GetProperty(Value574Property); + set => SetProperty(Value574Property, value); + } + + + public static readonly PropertyInfo Value575Property = RegisterProperty(nameof(Value575)); + public string Value575 + { + get => GetProperty(Value575Property); + set => SetProperty(Value575Property, value); + } + + + public static readonly PropertyInfo Value576Property = RegisterProperty(nameof(Value576)); + public string Value576 + { + get => GetProperty(Value576Property); + set => SetProperty(Value576Property, value); + } + + + public static readonly PropertyInfo Value577Property = RegisterProperty(nameof(Value577)); + public string Value577 + { + get => GetProperty(Value577Property); + set => SetProperty(Value577Property, value); + } + + + public static readonly PropertyInfo Value578Property = RegisterProperty(nameof(Value578)); + public string Value578 + { + get => GetProperty(Value578Property); + set => SetProperty(Value578Property, value); + } + + + public static readonly PropertyInfo Value579Property = RegisterProperty(nameof(Value579)); + public string Value579 + { + get => GetProperty(Value579Property); + set => SetProperty(Value579Property, value); + } + + + public static readonly PropertyInfo Value580Property = RegisterProperty(nameof(Value580)); + public string Value580 + { + get => GetProperty(Value580Property); + set => SetProperty(Value580Property, value); + } + + + public static readonly PropertyInfo Value581Property = RegisterProperty(nameof(Value581)); + public string Value581 + { + get => GetProperty(Value581Property); + set => SetProperty(Value581Property, value); + } + + + public static readonly PropertyInfo Value582Property = RegisterProperty(nameof(Value582)); + public string Value582 + { + get => GetProperty(Value582Property); + set => SetProperty(Value582Property, value); + } + + + public static readonly PropertyInfo Value583Property = RegisterProperty(nameof(Value583)); + public string Value583 + { + get => GetProperty(Value583Property); + set => SetProperty(Value583Property, value); + } + + + public static readonly PropertyInfo Value584Property = RegisterProperty(nameof(Value584)); + public string Value584 + { + get => GetProperty(Value584Property); + set => SetProperty(Value584Property, value); + } + + + public static readonly PropertyInfo Value585Property = RegisterProperty(nameof(Value585)); + public string Value585 + { + get => GetProperty(Value585Property); + set => SetProperty(Value585Property, value); + } + + + public static readonly PropertyInfo Value586Property = RegisterProperty(nameof(Value586)); + public string Value586 + { + get => GetProperty(Value586Property); + set => SetProperty(Value586Property, value); + } + + + public static readonly PropertyInfo Value587Property = RegisterProperty(nameof(Value587)); + public string Value587 + { + get => GetProperty(Value587Property); + set => SetProperty(Value587Property, value); + } + + + public static readonly PropertyInfo Value588Property = RegisterProperty(nameof(Value588)); + public string Value588 + { + get => GetProperty(Value588Property); + set => SetProperty(Value588Property, value); + } + + + public static readonly PropertyInfo Value589Property = RegisterProperty(nameof(Value589)); + public string Value589 + { + get => GetProperty(Value589Property); + set => SetProperty(Value589Property, value); + } + + + public static readonly PropertyInfo Value590Property = RegisterProperty(nameof(Value590)); + public string Value590 + { + get => GetProperty(Value590Property); + set => SetProperty(Value590Property, value); + } + + + public static readonly PropertyInfo Value591Property = RegisterProperty(nameof(Value591)); + public string Value591 + { + get => GetProperty(Value591Property); + set => SetProperty(Value591Property, value); + } + + + public static readonly PropertyInfo Value592Property = RegisterProperty(nameof(Value592)); + public string Value592 + { + get => GetProperty(Value592Property); + set => SetProperty(Value592Property, value); + } + + + public static readonly PropertyInfo Value593Property = RegisterProperty(nameof(Value593)); + public string Value593 + { + get => GetProperty(Value593Property); + set => SetProperty(Value593Property, value); + } + + + public static readonly PropertyInfo Value594Property = RegisterProperty(nameof(Value594)); + public string Value594 + { + get => GetProperty(Value594Property); + set => SetProperty(Value594Property, value); + } + + + public static readonly PropertyInfo Value595Property = RegisterProperty(nameof(Value595)); + public string Value595 + { + get => GetProperty(Value595Property); + set => SetProperty(Value595Property, value); + } + + + public static readonly PropertyInfo Value596Property = RegisterProperty(nameof(Value596)); + public string Value596 + { + get => GetProperty(Value596Property); + set => SetProperty(Value596Property, value); + } + + + public static readonly PropertyInfo Value597Property = RegisterProperty(nameof(Value597)); + public string Value597 + { + get => GetProperty(Value597Property); + set => SetProperty(Value597Property, value); + } + + + public static readonly PropertyInfo Value598Property = RegisterProperty(nameof(Value598)); + public string Value598 + { + get => GetProperty(Value598Property); + set => SetProperty(Value598Property, value); + } + + + public static readonly PropertyInfo Value599Property = RegisterProperty(nameof(Value599)); + public string Value599 + { + get => GetProperty(Value599Property); + set => SetProperty(Value599Property, value); + } + + + public static readonly PropertyInfo Value600Property = RegisterProperty(nameof(Value600)); + public string Value600 + { + get => GetProperty(Value600Property); + set => SetProperty(Value600Property, value); + } + + + public static readonly PropertyInfo Value601Property = RegisterProperty(nameof(Value601)); + public string Value601 + { + get => GetProperty(Value601Property); + set => SetProperty(Value601Property, value); + } + + + public static readonly PropertyInfo Value602Property = RegisterProperty(nameof(Value602)); + public string Value602 + { + get => GetProperty(Value602Property); + set => SetProperty(Value602Property, value); + } + + + public static readonly PropertyInfo Value603Property = RegisterProperty(nameof(Value603)); + public string Value603 + { + get => GetProperty(Value603Property); + set => SetProperty(Value603Property, value); + } + + + public static readonly PropertyInfo Value604Property = RegisterProperty(nameof(Value604)); + public string Value604 + { + get => GetProperty(Value604Property); + set => SetProperty(Value604Property, value); + } + + + public static readonly PropertyInfo Value605Property = RegisterProperty(nameof(Value605)); + public string Value605 + { + get => GetProperty(Value605Property); + set => SetProperty(Value605Property, value); + } + + + public static readonly PropertyInfo Value606Property = RegisterProperty(nameof(Value606)); + public string Value606 + { + get => GetProperty(Value606Property); + set => SetProperty(Value606Property, value); + } + + + public static readonly PropertyInfo Value607Property = RegisterProperty(nameof(Value607)); + public string Value607 + { + get => GetProperty(Value607Property); + set => SetProperty(Value607Property, value); + } + + + public static readonly PropertyInfo Value608Property = RegisterProperty(nameof(Value608)); + public string Value608 + { + get => GetProperty(Value608Property); + set => SetProperty(Value608Property, value); + } + + + public static readonly PropertyInfo Value609Property = RegisterProperty(nameof(Value609)); + public string Value609 + { + get => GetProperty(Value609Property); + set => SetProperty(Value609Property, value); + } + + + public static readonly PropertyInfo Value610Property = RegisterProperty(nameof(Value610)); + public string Value610 + { + get => GetProperty(Value610Property); + set => SetProperty(Value610Property, value); + } + + + public static readonly PropertyInfo Value611Property = RegisterProperty(nameof(Value611)); + public string Value611 + { + get => GetProperty(Value611Property); + set => SetProperty(Value611Property, value); + } + + + public static readonly PropertyInfo Value612Property = RegisterProperty(nameof(Value612)); + public string Value612 + { + get => GetProperty(Value612Property); + set => SetProperty(Value612Property, value); + } + + + public static readonly PropertyInfo Value613Property = RegisterProperty(nameof(Value613)); + public string Value613 + { + get => GetProperty(Value613Property); + set => SetProperty(Value613Property, value); + } + + + public static readonly PropertyInfo Value614Property = RegisterProperty(nameof(Value614)); + public string Value614 + { + get => GetProperty(Value614Property); + set => SetProperty(Value614Property, value); + } + + + public static readonly PropertyInfo Value615Property = RegisterProperty(nameof(Value615)); + public string Value615 + { + get => GetProperty(Value615Property); + set => SetProperty(Value615Property, value); + } + + + public static readonly PropertyInfo Value616Property = RegisterProperty(nameof(Value616)); + public string Value616 + { + get => GetProperty(Value616Property); + set => SetProperty(Value616Property, value); + } + + + public static readonly PropertyInfo Value617Property = RegisterProperty(nameof(Value617)); + public string Value617 + { + get => GetProperty(Value617Property); + set => SetProperty(Value617Property, value); + } + + + public static readonly PropertyInfo Value618Property = RegisterProperty(nameof(Value618)); + public string Value618 + { + get => GetProperty(Value618Property); + set => SetProperty(Value618Property, value); + } + + + public static readonly PropertyInfo Value619Property = RegisterProperty(nameof(Value619)); + public string Value619 + { + get => GetProperty(Value619Property); + set => SetProperty(Value619Property, value); + } + + + public static readonly PropertyInfo Value620Property = RegisterProperty(nameof(Value620)); + public string Value620 + { + get => GetProperty(Value620Property); + set => SetProperty(Value620Property, value); + } + + + public static readonly PropertyInfo Value621Property = RegisterProperty(nameof(Value621)); + public string Value621 + { + get => GetProperty(Value621Property); + set => SetProperty(Value621Property, value); + } + + + public static readonly PropertyInfo Value622Property = RegisterProperty(nameof(Value622)); + public string Value622 + { + get => GetProperty(Value622Property); + set => SetProperty(Value622Property, value); + } + + + public static readonly PropertyInfo Value623Property = RegisterProperty(nameof(Value623)); + public string Value623 + { + get => GetProperty(Value623Property); + set => SetProperty(Value623Property, value); + } + + + public static readonly PropertyInfo Value624Property = RegisterProperty(nameof(Value624)); + public string Value624 + { + get => GetProperty(Value624Property); + set => SetProperty(Value624Property, value); + } + + + public static readonly PropertyInfo Value625Property = RegisterProperty(nameof(Value625)); + public string Value625 + { + get => GetProperty(Value625Property); + set => SetProperty(Value625Property, value); + } + + + public static readonly PropertyInfo Value626Property = RegisterProperty(nameof(Value626)); + public string Value626 + { + get => GetProperty(Value626Property); + set => SetProperty(Value626Property, value); + } + + + public static readonly PropertyInfo Value627Property = RegisterProperty(nameof(Value627)); + public string Value627 + { + get => GetProperty(Value627Property); + set => SetProperty(Value627Property, value); + } + + + public static readonly PropertyInfo Value628Property = RegisterProperty(nameof(Value628)); + public string Value628 + { + get => GetProperty(Value628Property); + set => SetProperty(Value628Property, value); + } + + + public static readonly PropertyInfo Value629Property = RegisterProperty(nameof(Value629)); + public string Value629 + { + get => GetProperty(Value629Property); + set => SetProperty(Value629Property, value); + } + + + public static readonly PropertyInfo Value630Property = RegisterProperty(nameof(Value630)); + public string Value630 + { + get => GetProperty(Value630Property); + set => SetProperty(Value630Property, value); + } + + + public static readonly PropertyInfo Value631Property = RegisterProperty(nameof(Value631)); + public string Value631 + { + get => GetProperty(Value631Property); + set => SetProperty(Value631Property, value); + } + + + public static readonly PropertyInfo Value632Property = RegisterProperty(nameof(Value632)); + public string Value632 + { + get => GetProperty(Value632Property); + set => SetProperty(Value632Property, value); + } + + + public static readonly PropertyInfo Value633Property = RegisterProperty(nameof(Value633)); + public string Value633 + { + get => GetProperty(Value633Property); + set => SetProperty(Value633Property, value); + } + + + public static readonly PropertyInfo Value634Property = RegisterProperty(nameof(Value634)); + public string Value634 + { + get => GetProperty(Value634Property); + set => SetProperty(Value634Property, value); + } + + + public static readonly PropertyInfo Value635Property = RegisterProperty(nameof(Value635)); + public string Value635 + { + get => GetProperty(Value635Property); + set => SetProperty(Value635Property, value); + } + + + public static readonly PropertyInfo Value636Property = RegisterProperty(nameof(Value636)); + public string Value636 + { + get => GetProperty(Value636Property); + set => SetProperty(Value636Property, value); + } + + + public static readonly PropertyInfo Value637Property = RegisterProperty(nameof(Value637)); + public string Value637 + { + get => GetProperty(Value637Property); + set => SetProperty(Value637Property, value); + } + + + public static readonly PropertyInfo Value638Property = RegisterProperty(nameof(Value638)); + public string Value638 + { + get => GetProperty(Value638Property); + set => SetProperty(Value638Property, value); + } + + + public static readonly PropertyInfo Value639Property = RegisterProperty(nameof(Value639)); + public string Value639 + { + get => GetProperty(Value639Property); + set => SetProperty(Value639Property, value); + } + + + public static readonly PropertyInfo Value640Property = RegisterProperty(nameof(Value640)); + public string Value640 + { + get => GetProperty(Value640Property); + set => SetProperty(Value640Property, value); + } + + + public static readonly PropertyInfo Value641Property = RegisterProperty(nameof(Value641)); + public string Value641 + { + get => GetProperty(Value641Property); + set => SetProperty(Value641Property, value); + } + + + public static readonly PropertyInfo Value642Property = RegisterProperty(nameof(Value642)); + public string Value642 + { + get => GetProperty(Value642Property); + set => SetProperty(Value642Property, value); + } + + + public static readonly PropertyInfo Value643Property = RegisterProperty(nameof(Value643)); + public string Value643 + { + get => GetProperty(Value643Property); + set => SetProperty(Value643Property, value); + } + + + public static readonly PropertyInfo Value644Property = RegisterProperty(nameof(Value644)); + public string Value644 + { + get => GetProperty(Value644Property); + set => SetProperty(Value644Property, value); + } + + + public static readonly PropertyInfo Value645Property = RegisterProperty(nameof(Value645)); + public string Value645 + { + get => GetProperty(Value645Property); + set => SetProperty(Value645Property, value); + } + + + public static readonly PropertyInfo Value646Property = RegisterProperty(nameof(Value646)); + public string Value646 + { + get => GetProperty(Value646Property); + set => SetProperty(Value646Property, value); + } + + + public static readonly PropertyInfo Value647Property = RegisterProperty(nameof(Value647)); + public string Value647 + { + get => GetProperty(Value647Property); + set => SetProperty(Value647Property, value); + } + + + public static readonly PropertyInfo Value648Property = RegisterProperty(nameof(Value648)); + public string Value648 + { + get => GetProperty(Value648Property); + set => SetProperty(Value648Property, value); + } + + + public static readonly PropertyInfo Value649Property = RegisterProperty(nameof(Value649)); + public string Value649 + { + get => GetProperty(Value649Property); + set => SetProperty(Value649Property, value); + } + + + public static readonly PropertyInfo Value650Property = RegisterProperty(nameof(Value650)); + public string Value650 + { + get => GetProperty(Value650Property); + set => SetProperty(Value650Property, value); + } + + + public static readonly PropertyInfo Value651Property = RegisterProperty(nameof(Value651)); + public string Value651 + { + get => GetProperty(Value651Property); + set => SetProperty(Value651Property, value); + } + + + public static readonly PropertyInfo Value652Property = RegisterProperty(nameof(Value652)); + public string Value652 + { + get => GetProperty(Value652Property); + set => SetProperty(Value652Property, value); + } + + + public static readonly PropertyInfo Value653Property = RegisterProperty(nameof(Value653)); + public string Value653 + { + get => GetProperty(Value653Property); + set => SetProperty(Value653Property, value); + } + + + public static readonly PropertyInfo Value654Property = RegisterProperty(nameof(Value654)); + public string Value654 + { + get => GetProperty(Value654Property); + set => SetProperty(Value654Property, value); + } + + + public static readonly PropertyInfo Value655Property = RegisterProperty(nameof(Value655)); + public string Value655 + { + get => GetProperty(Value655Property); + set => SetProperty(Value655Property, value); + } + + + public static readonly PropertyInfo Value656Property = RegisterProperty(nameof(Value656)); + public string Value656 + { + get => GetProperty(Value656Property); + set => SetProperty(Value656Property, value); + } + + + public static readonly PropertyInfo Value657Property = RegisterProperty(nameof(Value657)); + public string Value657 + { + get => GetProperty(Value657Property); + set => SetProperty(Value657Property, value); + } + + + public static readonly PropertyInfo Value658Property = RegisterProperty(nameof(Value658)); + public string Value658 + { + get => GetProperty(Value658Property); + set => SetProperty(Value658Property, value); + } + + + public static readonly PropertyInfo Value659Property = RegisterProperty(nameof(Value659)); + public string Value659 + { + get => GetProperty(Value659Property); + set => SetProperty(Value659Property, value); + } + + + public static readonly PropertyInfo Value660Property = RegisterProperty(nameof(Value660)); + public string Value660 + { + get => GetProperty(Value660Property); + set => SetProperty(Value660Property, value); + } + + + public static readonly PropertyInfo Value661Property = RegisterProperty(nameof(Value661)); + public string Value661 + { + get => GetProperty(Value661Property); + set => SetProperty(Value661Property, value); + } + + + public static readonly PropertyInfo Value662Property = RegisterProperty(nameof(Value662)); + public string Value662 + { + get => GetProperty(Value662Property); + set => SetProperty(Value662Property, value); + } + + + public static readonly PropertyInfo Value663Property = RegisterProperty(nameof(Value663)); + public string Value663 + { + get => GetProperty(Value663Property); + set => SetProperty(Value663Property, value); + } + + + public static readonly PropertyInfo Value664Property = RegisterProperty(nameof(Value664)); + public string Value664 + { + get => GetProperty(Value664Property); + set => SetProperty(Value664Property, value); + } + + + public static readonly PropertyInfo Value665Property = RegisterProperty(nameof(Value665)); + public string Value665 + { + get => GetProperty(Value665Property); + set => SetProperty(Value665Property, value); + } + + + public static readonly PropertyInfo Value666Property = RegisterProperty(nameof(Value666)); + public string Value666 + { + get => GetProperty(Value666Property); + set => SetProperty(Value666Property, value); + } + + + public static readonly PropertyInfo Value667Property = RegisterProperty(nameof(Value667)); + public string Value667 + { + get => GetProperty(Value667Property); + set => SetProperty(Value667Property, value); + } + + + public static readonly PropertyInfo Value668Property = RegisterProperty(nameof(Value668)); + public string Value668 + { + get => GetProperty(Value668Property); + set => SetProperty(Value668Property, value); + } + + + public static readonly PropertyInfo Value669Property = RegisterProperty(nameof(Value669)); + public string Value669 + { + get => GetProperty(Value669Property); + set => SetProperty(Value669Property, value); + } + + + public static readonly PropertyInfo Value670Property = RegisterProperty(nameof(Value670)); + public string Value670 + { + get => GetProperty(Value670Property); + set => SetProperty(Value670Property, value); + } + + + public static readonly PropertyInfo Value671Property = RegisterProperty(nameof(Value671)); + public string Value671 + { + get => GetProperty(Value671Property); + set => SetProperty(Value671Property, value); + } + + + public static readonly PropertyInfo Value672Property = RegisterProperty(nameof(Value672)); + public string Value672 + { + get => GetProperty(Value672Property); + set => SetProperty(Value672Property, value); + } + + + public static readonly PropertyInfo Value673Property = RegisterProperty(nameof(Value673)); + public string Value673 + { + get => GetProperty(Value673Property); + set => SetProperty(Value673Property, value); + } + + + public static readonly PropertyInfo Value674Property = RegisterProperty(nameof(Value674)); + public string Value674 + { + get => GetProperty(Value674Property); + set => SetProperty(Value674Property, value); + } + + + public static readonly PropertyInfo Value675Property = RegisterProperty(nameof(Value675)); + public string Value675 + { + get => GetProperty(Value675Property); + set => SetProperty(Value675Property, value); + } + + + public static readonly PropertyInfo Value676Property = RegisterProperty(nameof(Value676)); + public string Value676 + { + get => GetProperty(Value676Property); + set => SetProperty(Value676Property, value); + } + + + public static readonly PropertyInfo Value677Property = RegisterProperty(nameof(Value677)); + public string Value677 + { + get => GetProperty(Value677Property); + set => SetProperty(Value677Property, value); + } + + + public static readonly PropertyInfo Value678Property = RegisterProperty(nameof(Value678)); + public string Value678 + { + get => GetProperty(Value678Property); + set => SetProperty(Value678Property, value); + } + + + public static readonly PropertyInfo Value679Property = RegisterProperty(nameof(Value679)); + public string Value679 + { + get => GetProperty(Value679Property); + set => SetProperty(Value679Property, value); + } + + + public static readonly PropertyInfo Value680Property = RegisterProperty(nameof(Value680)); + public string Value680 + { + get => GetProperty(Value680Property); + set => SetProperty(Value680Property, value); + } + + + public static readonly PropertyInfo Value681Property = RegisterProperty(nameof(Value681)); + public string Value681 + { + get => GetProperty(Value681Property); + set => SetProperty(Value681Property, value); + } + + + public static readonly PropertyInfo Value682Property = RegisterProperty(nameof(Value682)); + public string Value682 + { + get => GetProperty(Value682Property); + set => SetProperty(Value682Property, value); + } + + + public static readonly PropertyInfo Value683Property = RegisterProperty(nameof(Value683)); + public string Value683 + { + get => GetProperty(Value683Property); + set => SetProperty(Value683Property, value); + } + + + public static readonly PropertyInfo Value684Property = RegisterProperty(nameof(Value684)); + public string Value684 + { + get => GetProperty(Value684Property); + set => SetProperty(Value684Property, value); + } + + + public static readonly PropertyInfo Value685Property = RegisterProperty(nameof(Value685)); + public string Value685 + { + get => GetProperty(Value685Property); + set => SetProperty(Value685Property, value); + } + + + public static readonly PropertyInfo Value686Property = RegisterProperty(nameof(Value686)); + public string Value686 + { + get => GetProperty(Value686Property); + set => SetProperty(Value686Property, value); + } + + + public static readonly PropertyInfo Value687Property = RegisterProperty(nameof(Value687)); + public string Value687 + { + get => GetProperty(Value687Property); + set => SetProperty(Value687Property, value); + } + + + public static readonly PropertyInfo Value688Property = RegisterProperty(nameof(Value688)); + public string Value688 + { + get => GetProperty(Value688Property); + set => SetProperty(Value688Property, value); + } + + + public static readonly PropertyInfo Value689Property = RegisterProperty(nameof(Value689)); + public string Value689 + { + get => GetProperty(Value689Property); + set => SetProperty(Value689Property, value); + } + + + public static readonly PropertyInfo Value690Property = RegisterProperty(nameof(Value690)); + public string Value690 + { + get => GetProperty(Value690Property); + set => SetProperty(Value690Property, value); + } + + + public static readonly PropertyInfo Value691Property = RegisterProperty(nameof(Value691)); + public string Value691 + { + get => GetProperty(Value691Property); + set => SetProperty(Value691Property, value); + } + + + public static readonly PropertyInfo Value692Property = RegisterProperty(nameof(Value692)); + public string Value692 + { + get => GetProperty(Value692Property); + set => SetProperty(Value692Property, value); + } + + + public static readonly PropertyInfo Value693Property = RegisterProperty(nameof(Value693)); + public string Value693 + { + get => GetProperty(Value693Property); + set => SetProperty(Value693Property, value); + } + + + public static readonly PropertyInfo Value694Property = RegisterProperty(nameof(Value694)); + public string Value694 + { + get => GetProperty(Value694Property); + set => SetProperty(Value694Property, value); + } + + + public static readonly PropertyInfo Value695Property = RegisterProperty(nameof(Value695)); + public string Value695 + { + get => GetProperty(Value695Property); + set => SetProperty(Value695Property, value); + } + + + public static readonly PropertyInfo Value696Property = RegisterProperty(nameof(Value696)); + public string Value696 + { + get => GetProperty(Value696Property); + set => SetProperty(Value696Property, value); + } + + + public static readonly PropertyInfo Value697Property = RegisterProperty(nameof(Value697)); + public string Value697 + { + get => GetProperty(Value697Property); + set => SetProperty(Value697Property, value); + } + + + public static readonly PropertyInfo Value698Property = RegisterProperty(nameof(Value698)); + public string Value698 + { + get => GetProperty(Value698Property); + set => SetProperty(Value698Property, value); + } + + + public static readonly PropertyInfo Value699Property = RegisterProperty(nameof(Value699)); + public string Value699 + { + get => GetProperty(Value699Property); + set => SetProperty(Value699Property, value); + } + + + public static readonly PropertyInfo Value700Property = RegisterProperty(nameof(Value700)); + public string Value700 + { + get => GetProperty(Value700Property); + set => SetProperty(Value700Property, value); + } + + + public static readonly PropertyInfo Value701Property = RegisterProperty(nameof(Value701)); + public string Value701 + { + get => GetProperty(Value701Property); + set => SetProperty(Value701Property, value); + } + + + public static readonly PropertyInfo Value702Property = RegisterProperty(nameof(Value702)); + public string Value702 + { + get => GetProperty(Value702Property); + set => SetProperty(Value702Property, value); + } + + + public static readonly PropertyInfo Value703Property = RegisterProperty(nameof(Value703)); + public string Value703 + { + get => GetProperty(Value703Property); + set => SetProperty(Value703Property, value); + } + + + public static readonly PropertyInfo Value704Property = RegisterProperty(nameof(Value704)); + public string Value704 + { + get => GetProperty(Value704Property); + set => SetProperty(Value704Property, value); + } + + + public static readonly PropertyInfo Value705Property = RegisterProperty(nameof(Value705)); + public string Value705 + { + get => GetProperty(Value705Property); + set => SetProperty(Value705Property, value); + } + + + public static readonly PropertyInfo Value706Property = RegisterProperty(nameof(Value706)); + public string Value706 + { + get => GetProperty(Value706Property); + set => SetProperty(Value706Property, value); + } + + + public static readonly PropertyInfo Value707Property = RegisterProperty(nameof(Value707)); + public string Value707 + { + get => GetProperty(Value707Property); + set => SetProperty(Value707Property, value); + } + + + public static readonly PropertyInfo Value708Property = RegisterProperty(nameof(Value708)); + public string Value708 + { + get => GetProperty(Value708Property); + set => SetProperty(Value708Property, value); + } + + + public static readonly PropertyInfo Value709Property = RegisterProperty(nameof(Value709)); + public string Value709 + { + get => GetProperty(Value709Property); + set => SetProperty(Value709Property, value); + } + + + public static readonly PropertyInfo Value710Property = RegisterProperty(nameof(Value710)); + public string Value710 + { + get => GetProperty(Value710Property); + set => SetProperty(Value710Property, value); + } + + + public static readonly PropertyInfo Value711Property = RegisterProperty(nameof(Value711)); + public string Value711 + { + get => GetProperty(Value711Property); + set => SetProperty(Value711Property, value); + } + + + public static readonly PropertyInfo Value712Property = RegisterProperty(nameof(Value712)); + public string Value712 + { + get => GetProperty(Value712Property); + set => SetProperty(Value712Property, value); + } + + + public static readonly PropertyInfo Value713Property = RegisterProperty(nameof(Value713)); + public string Value713 + { + get => GetProperty(Value713Property); + set => SetProperty(Value713Property, value); + } + + + public static readonly PropertyInfo Value714Property = RegisterProperty(nameof(Value714)); + public string Value714 + { + get => GetProperty(Value714Property); + set => SetProperty(Value714Property, value); + } + + + public static readonly PropertyInfo Value715Property = RegisterProperty(nameof(Value715)); + public string Value715 + { + get => GetProperty(Value715Property); + set => SetProperty(Value715Property, value); + } + + + public static readonly PropertyInfo Value716Property = RegisterProperty(nameof(Value716)); + public string Value716 + { + get => GetProperty(Value716Property); + set => SetProperty(Value716Property, value); + } + + + public static readonly PropertyInfo Value717Property = RegisterProperty(nameof(Value717)); + public string Value717 + { + get => GetProperty(Value717Property); + set => SetProperty(Value717Property, value); + } + + + public static readonly PropertyInfo Value718Property = RegisterProperty(nameof(Value718)); + public string Value718 + { + get => GetProperty(Value718Property); + set => SetProperty(Value718Property, value); + } + + + public static readonly PropertyInfo Value719Property = RegisterProperty(nameof(Value719)); + public string Value719 + { + get => GetProperty(Value719Property); + set => SetProperty(Value719Property, value); + } + + + public static readonly PropertyInfo Value720Property = RegisterProperty(nameof(Value720)); + public string Value720 + { + get => GetProperty(Value720Property); + set => SetProperty(Value720Property, value); + } + + + public static readonly PropertyInfo Value721Property = RegisterProperty(nameof(Value721)); + public string Value721 + { + get => GetProperty(Value721Property); + set => SetProperty(Value721Property, value); + } + + + public static readonly PropertyInfo Value722Property = RegisterProperty(nameof(Value722)); + public string Value722 + { + get => GetProperty(Value722Property); + set => SetProperty(Value722Property, value); + } + + + public static readonly PropertyInfo Value723Property = RegisterProperty(nameof(Value723)); + public string Value723 + { + get => GetProperty(Value723Property); + set => SetProperty(Value723Property, value); + } + + + public static readonly PropertyInfo Value724Property = RegisterProperty(nameof(Value724)); + public string Value724 + { + get => GetProperty(Value724Property); + set => SetProperty(Value724Property, value); + } + + + public static readonly PropertyInfo Value725Property = RegisterProperty(nameof(Value725)); + public string Value725 + { + get => GetProperty(Value725Property); + set => SetProperty(Value725Property, value); + } + + + public static readonly PropertyInfo Value726Property = RegisterProperty(nameof(Value726)); + public string Value726 + { + get => GetProperty(Value726Property); + set => SetProperty(Value726Property, value); + } + + + public static readonly PropertyInfo Value727Property = RegisterProperty(nameof(Value727)); + public string Value727 + { + get => GetProperty(Value727Property); + set => SetProperty(Value727Property, value); + } + + + public static readonly PropertyInfo Value728Property = RegisterProperty(nameof(Value728)); + public string Value728 + { + get => GetProperty(Value728Property); + set => SetProperty(Value728Property, value); + } + + + public static readonly PropertyInfo Value729Property = RegisterProperty(nameof(Value729)); + public string Value729 + { + get => GetProperty(Value729Property); + set => SetProperty(Value729Property, value); + } + + + public static readonly PropertyInfo Value730Property = RegisterProperty(nameof(Value730)); + public string Value730 + { + get => GetProperty(Value730Property); + set => SetProperty(Value730Property, value); + } + + + public static readonly PropertyInfo Value731Property = RegisterProperty(nameof(Value731)); + public string Value731 + { + get => GetProperty(Value731Property); + set => SetProperty(Value731Property, value); + } + + + public static readonly PropertyInfo Value732Property = RegisterProperty(nameof(Value732)); + public string Value732 + { + get => GetProperty(Value732Property); + set => SetProperty(Value732Property, value); + } + + + public static readonly PropertyInfo Value733Property = RegisterProperty(nameof(Value733)); + public string Value733 + { + get => GetProperty(Value733Property); + set => SetProperty(Value733Property, value); + } + + + public static readonly PropertyInfo Value734Property = RegisterProperty(nameof(Value734)); + public string Value734 + { + get => GetProperty(Value734Property); + set => SetProperty(Value734Property, value); + } + + + public static readonly PropertyInfo Value735Property = RegisterProperty(nameof(Value735)); + public string Value735 + { + get => GetProperty(Value735Property); + set => SetProperty(Value735Property, value); + } + + + public static readonly PropertyInfo Value736Property = RegisterProperty(nameof(Value736)); + public string Value736 + { + get => GetProperty(Value736Property); + set => SetProperty(Value736Property, value); + } + + + public static readonly PropertyInfo Value737Property = RegisterProperty(nameof(Value737)); + public string Value737 + { + get => GetProperty(Value737Property); + set => SetProperty(Value737Property, value); + } + + + public static readonly PropertyInfo Value738Property = RegisterProperty(nameof(Value738)); + public string Value738 + { + get => GetProperty(Value738Property); + set => SetProperty(Value738Property, value); + } + + + public static readonly PropertyInfo Value739Property = RegisterProperty(nameof(Value739)); + public string Value739 + { + get => GetProperty(Value739Property); + set => SetProperty(Value739Property, value); + } + + + public static readonly PropertyInfo Value740Property = RegisterProperty(nameof(Value740)); + public string Value740 + { + get => GetProperty(Value740Property); + set => SetProperty(Value740Property, value); + } + + + public static readonly PropertyInfo Value741Property = RegisterProperty(nameof(Value741)); + public string Value741 + { + get => GetProperty(Value741Property); + set => SetProperty(Value741Property, value); + } + + + public static readonly PropertyInfo Value742Property = RegisterProperty(nameof(Value742)); + public string Value742 + { + get => GetProperty(Value742Property); + set => SetProperty(Value742Property, value); + } + + + public static readonly PropertyInfo Value743Property = RegisterProperty(nameof(Value743)); + public string Value743 + { + get => GetProperty(Value743Property); + set => SetProperty(Value743Property, value); + } + + + public static readonly PropertyInfo Value744Property = RegisterProperty(nameof(Value744)); + public string Value744 + { + get => GetProperty(Value744Property); + set => SetProperty(Value744Property, value); + } + + + public static readonly PropertyInfo Value745Property = RegisterProperty(nameof(Value745)); + public string Value745 + { + get => GetProperty(Value745Property); + set => SetProperty(Value745Property, value); + } + + + public static readonly PropertyInfo Value746Property = RegisterProperty(nameof(Value746)); + public string Value746 + { + get => GetProperty(Value746Property); + set => SetProperty(Value746Property, value); + } + + + public static readonly PropertyInfo Value747Property = RegisterProperty(nameof(Value747)); + public string Value747 + { + get => GetProperty(Value747Property); + set => SetProperty(Value747Property, value); + } + + + public static readonly PropertyInfo Value748Property = RegisterProperty(nameof(Value748)); + public string Value748 + { + get => GetProperty(Value748Property); + set => SetProperty(Value748Property, value); + } + + + public static readonly PropertyInfo Value749Property = RegisterProperty(nameof(Value749)); + public string Value749 + { + get => GetProperty(Value749Property); + set => SetProperty(Value749Property, value); + } + + + public static readonly PropertyInfo Value750Property = RegisterProperty(nameof(Value750)); + public string Value750 + { + get => GetProperty(Value750Property); + set => SetProperty(Value750Property, value); + } + + + public static readonly PropertyInfo Value751Property = RegisterProperty(nameof(Value751)); + public string Value751 + { + get => GetProperty(Value751Property); + set => SetProperty(Value751Property, value); + } + + + public static readonly PropertyInfo Value752Property = RegisterProperty(nameof(Value752)); + public string Value752 + { + get => GetProperty(Value752Property); + set => SetProperty(Value752Property, value); + } + + + public static readonly PropertyInfo Value753Property = RegisterProperty(nameof(Value753)); + public string Value753 + { + get => GetProperty(Value753Property); + set => SetProperty(Value753Property, value); + } + + + public static readonly PropertyInfo Value754Property = RegisterProperty(nameof(Value754)); + public string Value754 + { + get => GetProperty(Value754Property); + set => SetProperty(Value754Property, value); + } + + + public static readonly PropertyInfo Value755Property = RegisterProperty(nameof(Value755)); + public string Value755 + { + get => GetProperty(Value755Property); + set => SetProperty(Value755Property, value); + } + + + public static readonly PropertyInfo Value756Property = RegisterProperty(nameof(Value756)); + public string Value756 + { + get => GetProperty(Value756Property); + set => SetProperty(Value756Property, value); + } + + + public static readonly PropertyInfo Value757Property = RegisterProperty(nameof(Value757)); + public string Value757 + { + get => GetProperty(Value757Property); + set => SetProperty(Value757Property, value); + } + + + public static readonly PropertyInfo Value758Property = RegisterProperty(nameof(Value758)); + public string Value758 + { + get => GetProperty(Value758Property); + set => SetProperty(Value758Property, value); + } + + + public static readonly PropertyInfo Value759Property = RegisterProperty(nameof(Value759)); + public string Value759 + { + get => GetProperty(Value759Property); + set => SetProperty(Value759Property, value); + } + + + public static readonly PropertyInfo Value760Property = RegisterProperty(nameof(Value760)); + public string Value760 + { + get => GetProperty(Value760Property); + set => SetProperty(Value760Property, value); + } + + + public static readonly PropertyInfo Value761Property = RegisterProperty(nameof(Value761)); + public string Value761 + { + get => GetProperty(Value761Property); + set => SetProperty(Value761Property, value); + } + + + public static readonly PropertyInfo Value762Property = RegisterProperty(nameof(Value762)); + public string Value762 + { + get => GetProperty(Value762Property); + set => SetProperty(Value762Property, value); + } + + + public static readonly PropertyInfo Value763Property = RegisterProperty(nameof(Value763)); + public string Value763 + { + get => GetProperty(Value763Property); + set => SetProperty(Value763Property, value); + } + + + public static readonly PropertyInfo Value764Property = RegisterProperty(nameof(Value764)); + public string Value764 + { + get => GetProperty(Value764Property); + set => SetProperty(Value764Property, value); + } + + + public static readonly PropertyInfo Value765Property = RegisterProperty(nameof(Value765)); + public string Value765 + { + get => GetProperty(Value765Property); + set => SetProperty(Value765Property, value); + } + + + public static readonly PropertyInfo Value766Property = RegisterProperty(nameof(Value766)); + public string Value766 + { + get => GetProperty(Value766Property); + set => SetProperty(Value766Property, value); + } + + + public static readonly PropertyInfo Value767Property = RegisterProperty(nameof(Value767)); + public string Value767 + { + get => GetProperty(Value767Property); + set => SetProperty(Value767Property, value); + } + + + public static readonly PropertyInfo Value768Property = RegisterProperty(nameof(Value768)); + public string Value768 + { + get => GetProperty(Value768Property); + set => SetProperty(Value768Property, value); + } + + + public static readonly PropertyInfo Value769Property = RegisterProperty(nameof(Value769)); + public string Value769 + { + get => GetProperty(Value769Property); + set => SetProperty(Value769Property, value); + } + + + public static readonly PropertyInfo Value770Property = RegisterProperty(nameof(Value770)); + public string Value770 + { + get => GetProperty(Value770Property); + set => SetProperty(Value770Property, value); + } + + + public static readonly PropertyInfo Value771Property = RegisterProperty(nameof(Value771)); + public string Value771 + { + get => GetProperty(Value771Property); + set => SetProperty(Value771Property, value); + } + + + public static readonly PropertyInfo Value772Property = RegisterProperty(nameof(Value772)); + public string Value772 + { + get => GetProperty(Value772Property); + set => SetProperty(Value772Property, value); + } + + + public static readonly PropertyInfo Value773Property = RegisterProperty(nameof(Value773)); + public string Value773 + { + get => GetProperty(Value773Property); + set => SetProperty(Value773Property, value); + } + + + public static readonly PropertyInfo Value774Property = RegisterProperty(nameof(Value774)); + public string Value774 + { + get => GetProperty(Value774Property); + set => SetProperty(Value774Property, value); + } + + + public static readonly PropertyInfo Value775Property = RegisterProperty(nameof(Value775)); + public string Value775 + { + get => GetProperty(Value775Property); + set => SetProperty(Value775Property, value); + } + + + public static readonly PropertyInfo Value776Property = RegisterProperty(nameof(Value776)); + public string Value776 + { + get => GetProperty(Value776Property); + set => SetProperty(Value776Property, value); + } + + + public static readonly PropertyInfo Value777Property = RegisterProperty(nameof(Value777)); + public string Value777 + { + get => GetProperty(Value777Property); + set => SetProperty(Value777Property, value); + } + + + public static readonly PropertyInfo Value778Property = RegisterProperty(nameof(Value778)); + public string Value778 + { + get => GetProperty(Value778Property); + set => SetProperty(Value778Property, value); + } + + + public static readonly PropertyInfo Value779Property = RegisterProperty(nameof(Value779)); + public string Value779 + { + get => GetProperty(Value779Property); + set => SetProperty(Value779Property, value); + } + + + public static readonly PropertyInfo Value780Property = RegisterProperty(nameof(Value780)); + public string Value780 + { + get => GetProperty(Value780Property); + set => SetProperty(Value780Property, value); + } + + + public static readonly PropertyInfo Value781Property = RegisterProperty(nameof(Value781)); + public string Value781 + { + get => GetProperty(Value781Property); + set => SetProperty(Value781Property, value); + } + + + public static readonly PropertyInfo Value782Property = RegisterProperty(nameof(Value782)); + public string Value782 + { + get => GetProperty(Value782Property); + set => SetProperty(Value782Property, value); + } + + + public static readonly PropertyInfo Value783Property = RegisterProperty(nameof(Value783)); + public string Value783 + { + get => GetProperty(Value783Property); + set => SetProperty(Value783Property, value); + } + + + public static readonly PropertyInfo Value784Property = RegisterProperty(nameof(Value784)); + public string Value784 + { + get => GetProperty(Value784Property); + set => SetProperty(Value784Property, value); + } + + + public static readonly PropertyInfo Value785Property = RegisterProperty(nameof(Value785)); + public string Value785 + { + get => GetProperty(Value785Property); + set => SetProperty(Value785Property, value); + } + + + public static readonly PropertyInfo Value786Property = RegisterProperty(nameof(Value786)); + public string Value786 + { + get => GetProperty(Value786Property); + set => SetProperty(Value786Property, value); + } + + + public static readonly PropertyInfo Value787Property = RegisterProperty(nameof(Value787)); + public string Value787 + { + get => GetProperty(Value787Property); + set => SetProperty(Value787Property, value); + } + + + public static readonly PropertyInfo Value788Property = RegisterProperty(nameof(Value788)); + public string Value788 + { + get => GetProperty(Value788Property); + set => SetProperty(Value788Property, value); + } + + + public static readonly PropertyInfo Value789Property = RegisterProperty(nameof(Value789)); + public string Value789 + { + get => GetProperty(Value789Property); + set => SetProperty(Value789Property, value); + } + + + public static readonly PropertyInfo Value790Property = RegisterProperty(nameof(Value790)); + public string Value790 + { + get => GetProperty(Value790Property); + set => SetProperty(Value790Property, value); + } + + + public static readonly PropertyInfo Value791Property = RegisterProperty(nameof(Value791)); + public string Value791 + { + get => GetProperty(Value791Property); + set => SetProperty(Value791Property, value); + } + + + public static readonly PropertyInfo Value792Property = RegisterProperty(nameof(Value792)); + public string Value792 + { + get => GetProperty(Value792Property); + set => SetProperty(Value792Property, value); + } + + + public static readonly PropertyInfo Value793Property = RegisterProperty(nameof(Value793)); + public string Value793 + { + get => GetProperty(Value793Property); + set => SetProperty(Value793Property, value); + } + + + public static readonly PropertyInfo Value794Property = RegisterProperty(nameof(Value794)); + public string Value794 + { + get => GetProperty(Value794Property); + set => SetProperty(Value794Property, value); + } + + + public static readonly PropertyInfo Value795Property = RegisterProperty(nameof(Value795)); + public string Value795 + { + get => GetProperty(Value795Property); + set => SetProperty(Value795Property, value); + } + + + public static readonly PropertyInfo Value796Property = RegisterProperty(nameof(Value796)); + public string Value796 + { + get => GetProperty(Value796Property); + set => SetProperty(Value796Property, value); + } + + + public static readonly PropertyInfo Value797Property = RegisterProperty(nameof(Value797)); + public string Value797 + { + get => GetProperty(Value797Property); + set => SetProperty(Value797Property, value); + } + + + public static readonly PropertyInfo Value798Property = RegisterProperty(nameof(Value798)); + public string Value798 + { + get => GetProperty(Value798Property); + set => SetProperty(Value798Property, value); + } + + + public static readonly PropertyInfo Value799Property = RegisterProperty(nameof(Value799)); + public string Value799 + { + get => GetProperty(Value799Property); + set => SetProperty(Value799Property, value); + } + + + public static readonly PropertyInfo Value800Property = RegisterProperty(nameof(Value800)); + public string Value800 + { + get => GetProperty(Value800Property); + set => SetProperty(Value800Property, value); + } + + + public static readonly PropertyInfo Value801Property = RegisterProperty(nameof(Value801)); + public string Value801 + { + get => GetProperty(Value801Property); + set => SetProperty(Value801Property, value); + } + + + public static readonly PropertyInfo Value802Property = RegisterProperty(nameof(Value802)); + public string Value802 + { + get => GetProperty(Value802Property); + set => SetProperty(Value802Property, value); + } + + + public static readonly PropertyInfo Value803Property = RegisterProperty(nameof(Value803)); + public string Value803 + { + get => GetProperty(Value803Property); + set => SetProperty(Value803Property, value); + } + + + public static readonly PropertyInfo Value804Property = RegisterProperty(nameof(Value804)); + public string Value804 + { + get => GetProperty(Value804Property); + set => SetProperty(Value804Property, value); + } + + + public static readonly PropertyInfo Value805Property = RegisterProperty(nameof(Value805)); + public string Value805 + { + get => GetProperty(Value805Property); + set => SetProperty(Value805Property, value); + } + + + public static readonly PropertyInfo Value806Property = RegisterProperty(nameof(Value806)); + public string Value806 + { + get => GetProperty(Value806Property); + set => SetProperty(Value806Property, value); + } + + + public static readonly PropertyInfo Value807Property = RegisterProperty(nameof(Value807)); + public string Value807 + { + get => GetProperty(Value807Property); + set => SetProperty(Value807Property, value); + } + + + public static readonly PropertyInfo Value808Property = RegisterProperty(nameof(Value808)); + public string Value808 + { + get => GetProperty(Value808Property); + set => SetProperty(Value808Property, value); + } + + + public static readonly PropertyInfo Value809Property = RegisterProperty(nameof(Value809)); + public string Value809 + { + get => GetProperty(Value809Property); + set => SetProperty(Value809Property, value); + } + + + public static readonly PropertyInfo Value810Property = RegisterProperty(nameof(Value810)); + public string Value810 + { + get => GetProperty(Value810Property); + set => SetProperty(Value810Property, value); + } + + + public static readonly PropertyInfo Value811Property = RegisterProperty(nameof(Value811)); + public string Value811 + { + get => GetProperty(Value811Property); + set => SetProperty(Value811Property, value); + } + + + public static readonly PropertyInfo Value812Property = RegisterProperty(nameof(Value812)); + public string Value812 + { + get => GetProperty(Value812Property); + set => SetProperty(Value812Property, value); + } + + + public static readonly PropertyInfo Value813Property = RegisterProperty(nameof(Value813)); + public string Value813 + { + get => GetProperty(Value813Property); + set => SetProperty(Value813Property, value); + } + + + public static readonly PropertyInfo Value814Property = RegisterProperty(nameof(Value814)); + public string Value814 + { + get => GetProperty(Value814Property); + set => SetProperty(Value814Property, value); + } + + + public static readonly PropertyInfo Value815Property = RegisterProperty(nameof(Value815)); + public string Value815 + { + get => GetProperty(Value815Property); + set => SetProperty(Value815Property, value); + } + + + public static readonly PropertyInfo Value816Property = RegisterProperty(nameof(Value816)); + public string Value816 + { + get => GetProperty(Value816Property); + set => SetProperty(Value816Property, value); + } + + + public static readonly PropertyInfo Value817Property = RegisterProperty(nameof(Value817)); + public string Value817 + { + get => GetProperty(Value817Property); + set => SetProperty(Value817Property, value); + } + + + public static readonly PropertyInfo Value818Property = RegisterProperty(nameof(Value818)); + public string Value818 + { + get => GetProperty(Value818Property); + set => SetProperty(Value818Property, value); + } + + + public static readonly PropertyInfo Value819Property = RegisterProperty(nameof(Value819)); + public string Value819 + { + get => GetProperty(Value819Property); + set => SetProperty(Value819Property, value); + } + + + public static readonly PropertyInfo Value820Property = RegisterProperty(nameof(Value820)); + public string Value820 + { + get => GetProperty(Value820Property); + set => SetProperty(Value820Property, value); + } + + + public static readonly PropertyInfo Value821Property = RegisterProperty(nameof(Value821)); + public string Value821 + { + get => GetProperty(Value821Property); + set => SetProperty(Value821Property, value); + } + + + public static readonly PropertyInfo Value822Property = RegisterProperty(nameof(Value822)); + public string Value822 + { + get => GetProperty(Value822Property); + set => SetProperty(Value822Property, value); + } + + + public static readonly PropertyInfo Value823Property = RegisterProperty(nameof(Value823)); + public string Value823 + { + get => GetProperty(Value823Property); + set => SetProperty(Value823Property, value); + } + + + public static readonly PropertyInfo Value824Property = RegisterProperty(nameof(Value824)); + public string Value824 + { + get => GetProperty(Value824Property); + set => SetProperty(Value824Property, value); + } + + + public static readonly PropertyInfo Value825Property = RegisterProperty(nameof(Value825)); + public string Value825 + { + get => GetProperty(Value825Property); + set => SetProperty(Value825Property, value); + } + + + public static readonly PropertyInfo Value826Property = RegisterProperty(nameof(Value826)); + public string Value826 + { + get => GetProperty(Value826Property); + set => SetProperty(Value826Property, value); + } + + + public static readonly PropertyInfo Value827Property = RegisterProperty(nameof(Value827)); + public string Value827 + { + get => GetProperty(Value827Property); + set => SetProperty(Value827Property, value); + } + + + public static readonly PropertyInfo Value828Property = RegisterProperty(nameof(Value828)); + public string Value828 + { + get => GetProperty(Value828Property); + set => SetProperty(Value828Property, value); + } + + + public static readonly PropertyInfo Value829Property = RegisterProperty(nameof(Value829)); + public string Value829 + { + get => GetProperty(Value829Property); + set => SetProperty(Value829Property, value); + } + + + public static readonly PropertyInfo Value830Property = RegisterProperty(nameof(Value830)); + public string Value830 + { + get => GetProperty(Value830Property); + set => SetProperty(Value830Property, value); + } + + + public static readonly PropertyInfo Value831Property = RegisterProperty(nameof(Value831)); + public string Value831 + { + get => GetProperty(Value831Property); + set => SetProperty(Value831Property, value); + } + + + public static readonly PropertyInfo Value832Property = RegisterProperty(nameof(Value832)); + public string Value832 + { + get => GetProperty(Value832Property); + set => SetProperty(Value832Property, value); + } + + + public static readonly PropertyInfo Value833Property = RegisterProperty(nameof(Value833)); + public string Value833 + { + get => GetProperty(Value833Property); + set => SetProperty(Value833Property, value); + } + + + public static readonly PropertyInfo Value834Property = RegisterProperty(nameof(Value834)); + public string Value834 + { + get => GetProperty(Value834Property); + set => SetProperty(Value834Property, value); + } + + + public static readonly PropertyInfo Value835Property = RegisterProperty(nameof(Value835)); + public string Value835 + { + get => GetProperty(Value835Property); + set => SetProperty(Value835Property, value); + } + + + public static readonly PropertyInfo Value836Property = RegisterProperty(nameof(Value836)); + public string Value836 + { + get => GetProperty(Value836Property); + set => SetProperty(Value836Property, value); + } + + + public static readonly PropertyInfo Value837Property = RegisterProperty(nameof(Value837)); + public string Value837 + { + get => GetProperty(Value837Property); + set => SetProperty(Value837Property, value); + } + + + public static readonly PropertyInfo Value838Property = RegisterProperty(nameof(Value838)); + public string Value838 + { + get => GetProperty(Value838Property); + set => SetProperty(Value838Property, value); + } + + + public static readonly PropertyInfo Value839Property = RegisterProperty(nameof(Value839)); + public string Value839 + { + get => GetProperty(Value839Property); + set => SetProperty(Value839Property, value); + } + + + public static readonly PropertyInfo Value840Property = RegisterProperty(nameof(Value840)); + public string Value840 + { + get => GetProperty(Value840Property); + set => SetProperty(Value840Property, value); + } + + + public static readonly PropertyInfo Value841Property = RegisterProperty(nameof(Value841)); + public string Value841 + { + get => GetProperty(Value841Property); + set => SetProperty(Value841Property, value); + } + + + public static readonly PropertyInfo Value842Property = RegisterProperty(nameof(Value842)); + public string Value842 + { + get => GetProperty(Value842Property); + set => SetProperty(Value842Property, value); + } + + + public static readonly PropertyInfo Value843Property = RegisterProperty(nameof(Value843)); + public string Value843 + { + get => GetProperty(Value843Property); + set => SetProperty(Value843Property, value); + } + + + public static readonly PropertyInfo Value844Property = RegisterProperty(nameof(Value844)); + public string Value844 + { + get => GetProperty(Value844Property); + set => SetProperty(Value844Property, value); + } + + + public static readonly PropertyInfo Value845Property = RegisterProperty(nameof(Value845)); + public string Value845 + { + get => GetProperty(Value845Property); + set => SetProperty(Value845Property, value); + } + + + public static readonly PropertyInfo Value846Property = RegisterProperty(nameof(Value846)); + public string Value846 + { + get => GetProperty(Value846Property); + set => SetProperty(Value846Property, value); + } + + + public static readonly PropertyInfo Value847Property = RegisterProperty(nameof(Value847)); + public string Value847 + { + get => GetProperty(Value847Property); + set => SetProperty(Value847Property, value); + } + + + public static readonly PropertyInfo Value848Property = RegisterProperty(nameof(Value848)); + public string Value848 + { + get => GetProperty(Value848Property); + set => SetProperty(Value848Property, value); + } + + + public static readonly PropertyInfo Value849Property = RegisterProperty(nameof(Value849)); + public string Value849 + { + get => GetProperty(Value849Property); + set => SetProperty(Value849Property, value); + } + + + public static readonly PropertyInfo Value850Property = RegisterProperty(nameof(Value850)); + public string Value850 + { + get => GetProperty(Value850Property); + set => SetProperty(Value850Property, value); + } + + + public static readonly PropertyInfo Value851Property = RegisterProperty(nameof(Value851)); + public string Value851 + { + get => GetProperty(Value851Property); + set => SetProperty(Value851Property, value); + } + + + public static readonly PropertyInfo Value852Property = RegisterProperty(nameof(Value852)); + public string Value852 + { + get => GetProperty(Value852Property); + set => SetProperty(Value852Property, value); + } + + + public static readonly PropertyInfo Value853Property = RegisterProperty(nameof(Value853)); + public string Value853 + { + get => GetProperty(Value853Property); + set => SetProperty(Value853Property, value); + } + + + public static readonly PropertyInfo Value854Property = RegisterProperty(nameof(Value854)); + public string Value854 + { + get => GetProperty(Value854Property); + set => SetProperty(Value854Property, value); + } + + + public static readonly PropertyInfo Value855Property = RegisterProperty(nameof(Value855)); + public string Value855 + { + get => GetProperty(Value855Property); + set => SetProperty(Value855Property, value); + } + + + public static readonly PropertyInfo Value856Property = RegisterProperty(nameof(Value856)); + public string Value856 + { + get => GetProperty(Value856Property); + set => SetProperty(Value856Property, value); + } + + + public static readonly PropertyInfo Value857Property = RegisterProperty(nameof(Value857)); + public string Value857 + { + get => GetProperty(Value857Property); + set => SetProperty(Value857Property, value); + } + + + public static readonly PropertyInfo Value858Property = RegisterProperty(nameof(Value858)); + public string Value858 + { + get => GetProperty(Value858Property); + set => SetProperty(Value858Property, value); + } + + + public static readonly PropertyInfo Value859Property = RegisterProperty(nameof(Value859)); + public string Value859 + { + get => GetProperty(Value859Property); + set => SetProperty(Value859Property, value); + } + + + public static readonly PropertyInfo Value860Property = RegisterProperty(nameof(Value860)); + public string Value860 + { + get => GetProperty(Value860Property); + set => SetProperty(Value860Property, value); + } + + + public static readonly PropertyInfo Value861Property = RegisterProperty(nameof(Value861)); + public string Value861 + { + get => GetProperty(Value861Property); + set => SetProperty(Value861Property, value); + } + + + public static readonly PropertyInfo Value862Property = RegisterProperty(nameof(Value862)); + public string Value862 + { + get => GetProperty(Value862Property); + set => SetProperty(Value862Property, value); + } + + + public static readonly PropertyInfo Value863Property = RegisterProperty(nameof(Value863)); + public string Value863 + { + get => GetProperty(Value863Property); + set => SetProperty(Value863Property, value); + } + + + public static readonly PropertyInfo Value864Property = RegisterProperty(nameof(Value864)); + public string Value864 + { + get => GetProperty(Value864Property); + set => SetProperty(Value864Property, value); + } + + + public static readonly PropertyInfo Value865Property = RegisterProperty(nameof(Value865)); + public string Value865 + { + get => GetProperty(Value865Property); + set => SetProperty(Value865Property, value); + } + + + public static readonly PropertyInfo Value866Property = RegisterProperty(nameof(Value866)); + public string Value866 + { + get => GetProperty(Value866Property); + set => SetProperty(Value866Property, value); + } + + + public static readonly PropertyInfo Value867Property = RegisterProperty(nameof(Value867)); + public string Value867 + { + get => GetProperty(Value867Property); + set => SetProperty(Value867Property, value); + } + + + public static readonly PropertyInfo Value868Property = RegisterProperty(nameof(Value868)); + public string Value868 + { + get => GetProperty(Value868Property); + set => SetProperty(Value868Property, value); + } + + + public static readonly PropertyInfo Value869Property = RegisterProperty(nameof(Value869)); + public string Value869 + { + get => GetProperty(Value869Property); + set => SetProperty(Value869Property, value); + } + + + public static readonly PropertyInfo Value870Property = RegisterProperty(nameof(Value870)); + public string Value870 + { + get => GetProperty(Value870Property); + set => SetProperty(Value870Property, value); + } + + + public static readonly PropertyInfo Value871Property = RegisterProperty(nameof(Value871)); + public string Value871 + { + get => GetProperty(Value871Property); + set => SetProperty(Value871Property, value); + } + + + public static readonly PropertyInfo Value872Property = RegisterProperty(nameof(Value872)); + public string Value872 + { + get => GetProperty(Value872Property); + set => SetProperty(Value872Property, value); + } + + + public static readonly PropertyInfo Value873Property = RegisterProperty(nameof(Value873)); + public string Value873 + { + get => GetProperty(Value873Property); + set => SetProperty(Value873Property, value); + } + + + public static readonly PropertyInfo Value874Property = RegisterProperty(nameof(Value874)); + public string Value874 + { + get => GetProperty(Value874Property); + set => SetProperty(Value874Property, value); + } + + + public static readonly PropertyInfo Value875Property = RegisterProperty(nameof(Value875)); + public string Value875 + { + get => GetProperty(Value875Property); + set => SetProperty(Value875Property, value); + } + + + public static readonly PropertyInfo Value876Property = RegisterProperty(nameof(Value876)); + public string Value876 + { + get => GetProperty(Value876Property); + set => SetProperty(Value876Property, value); + } + + + public static readonly PropertyInfo Value877Property = RegisterProperty(nameof(Value877)); + public string Value877 + { + get => GetProperty(Value877Property); + set => SetProperty(Value877Property, value); + } + + + public static readonly PropertyInfo Value878Property = RegisterProperty(nameof(Value878)); + public string Value878 + { + get => GetProperty(Value878Property); + set => SetProperty(Value878Property, value); + } + + + public static readonly PropertyInfo Value879Property = RegisterProperty(nameof(Value879)); + public string Value879 + { + get => GetProperty(Value879Property); + set => SetProperty(Value879Property, value); + } + + + public static readonly PropertyInfo Value880Property = RegisterProperty(nameof(Value880)); + public string Value880 + { + get => GetProperty(Value880Property); + set => SetProperty(Value880Property, value); + } + + + public static readonly PropertyInfo Value881Property = RegisterProperty(nameof(Value881)); + public string Value881 + { + get => GetProperty(Value881Property); + set => SetProperty(Value881Property, value); + } + + + public static readonly PropertyInfo Value882Property = RegisterProperty(nameof(Value882)); + public string Value882 + { + get => GetProperty(Value882Property); + set => SetProperty(Value882Property, value); + } + + + public static readonly PropertyInfo Value883Property = RegisterProperty(nameof(Value883)); + public string Value883 + { + get => GetProperty(Value883Property); + set => SetProperty(Value883Property, value); + } + + + public static readonly PropertyInfo Value884Property = RegisterProperty(nameof(Value884)); + public string Value884 + { + get => GetProperty(Value884Property); + set => SetProperty(Value884Property, value); + } + + + public static readonly PropertyInfo Value885Property = RegisterProperty(nameof(Value885)); + public string Value885 + { + get => GetProperty(Value885Property); + set => SetProperty(Value885Property, value); + } + + + public static readonly PropertyInfo Value886Property = RegisterProperty(nameof(Value886)); + public string Value886 + { + get => GetProperty(Value886Property); + set => SetProperty(Value886Property, value); + } + + + public static readonly PropertyInfo Value887Property = RegisterProperty(nameof(Value887)); + public string Value887 + { + get => GetProperty(Value887Property); + set => SetProperty(Value887Property, value); + } + + + public static readonly PropertyInfo Value888Property = RegisterProperty(nameof(Value888)); + public string Value888 + { + get => GetProperty(Value888Property); + set => SetProperty(Value888Property, value); + } + + + public static readonly PropertyInfo Value889Property = RegisterProperty(nameof(Value889)); + public string Value889 + { + get => GetProperty(Value889Property); + set => SetProperty(Value889Property, value); + } + + + public static readonly PropertyInfo Value890Property = RegisterProperty(nameof(Value890)); + public string Value890 + { + get => GetProperty(Value890Property); + set => SetProperty(Value890Property, value); + } + + + public static readonly PropertyInfo Value891Property = RegisterProperty(nameof(Value891)); + public string Value891 + { + get => GetProperty(Value891Property); + set => SetProperty(Value891Property, value); + } + + + public static readonly PropertyInfo Value892Property = RegisterProperty(nameof(Value892)); + public string Value892 + { + get => GetProperty(Value892Property); + set => SetProperty(Value892Property, value); + } + + + public static readonly PropertyInfo Value893Property = RegisterProperty(nameof(Value893)); + public string Value893 + { + get => GetProperty(Value893Property); + set => SetProperty(Value893Property, value); + } + + + public static readonly PropertyInfo Value894Property = RegisterProperty(nameof(Value894)); + public string Value894 + { + get => GetProperty(Value894Property); + set => SetProperty(Value894Property, value); + } + + + public static readonly PropertyInfo Value895Property = RegisterProperty(nameof(Value895)); + public string Value895 + { + get => GetProperty(Value895Property); + set => SetProperty(Value895Property, value); + } + + + public static readonly PropertyInfo Value896Property = RegisterProperty(nameof(Value896)); + public string Value896 + { + get => GetProperty(Value896Property); + set => SetProperty(Value896Property, value); + } + + + public static readonly PropertyInfo Value897Property = RegisterProperty(nameof(Value897)); + public string Value897 + { + get => GetProperty(Value897Property); + set => SetProperty(Value897Property, value); + } + + + public static readonly PropertyInfo Value898Property = RegisterProperty(nameof(Value898)); + public string Value898 + { + get => GetProperty(Value898Property); + set => SetProperty(Value898Property, value); + } + + + public static readonly PropertyInfo Value899Property = RegisterProperty(nameof(Value899)); + public string Value899 + { + get => GetProperty(Value899Property); + set => SetProperty(Value899Property, value); + } + + + public static readonly PropertyInfo Value900Property = RegisterProperty(nameof(Value900)); + public string Value900 + { + get => GetProperty(Value900Property); + set => SetProperty(Value900Property, value); + } + + + public static readonly PropertyInfo Value901Property = RegisterProperty(nameof(Value901)); + public string Value901 + { + get => GetProperty(Value901Property); + set => SetProperty(Value901Property, value); + } + + + public static readonly PropertyInfo Value902Property = RegisterProperty(nameof(Value902)); + public string Value902 + { + get => GetProperty(Value902Property); + set => SetProperty(Value902Property, value); + } + + + public static readonly PropertyInfo Value903Property = RegisterProperty(nameof(Value903)); + public string Value903 + { + get => GetProperty(Value903Property); + set => SetProperty(Value903Property, value); + } + + + public static readonly PropertyInfo Value904Property = RegisterProperty(nameof(Value904)); + public string Value904 + { + get => GetProperty(Value904Property); + set => SetProperty(Value904Property, value); + } + + + public static readonly PropertyInfo Value905Property = RegisterProperty(nameof(Value905)); + public string Value905 + { + get => GetProperty(Value905Property); + set => SetProperty(Value905Property, value); + } + + + public static readonly PropertyInfo Value906Property = RegisterProperty(nameof(Value906)); + public string Value906 + { + get => GetProperty(Value906Property); + set => SetProperty(Value906Property, value); + } + + + public static readonly PropertyInfo Value907Property = RegisterProperty(nameof(Value907)); + public string Value907 + { + get => GetProperty(Value907Property); + set => SetProperty(Value907Property, value); + } + + + public static readonly PropertyInfo Value908Property = RegisterProperty(nameof(Value908)); + public string Value908 + { + get => GetProperty(Value908Property); + set => SetProperty(Value908Property, value); + } + + + public static readonly PropertyInfo Value909Property = RegisterProperty(nameof(Value909)); + public string Value909 + { + get => GetProperty(Value909Property); + set => SetProperty(Value909Property, value); + } + + + public static readonly PropertyInfo Value910Property = RegisterProperty(nameof(Value910)); + public string Value910 + { + get => GetProperty(Value910Property); + set => SetProperty(Value910Property, value); + } + + + public static readonly PropertyInfo Value911Property = RegisterProperty(nameof(Value911)); + public string Value911 + { + get => GetProperty(Value911Property); + set => SetProperty(Value911Property, value); + } + + + public static readonly PropertyInfo Value912Property = RegisterProperty(nameof(Value912)); + public string Value912 + { + get => GetProperty(Value912Property); + set => SetProperty(Value912Property, value); + } + + + public static readonly PropertyInfo Value913Property = RegisterProperty(nameof(Value913)); + public string Value913 + { + get => GetProperty(Value913Property); + set => SetProperty(Value913Property, value); + } + + + public static readonly PropertyInfo Value914Property = RegisterProperty(nameof(Value914)); + public string Value914 + { + get => GetProperty(Value914Property); + set => SetProperty(Value914Property, value); + } + + + public static readonly PropertyInfo Value915Property = RegisterProperty(nameof(Value915)); + public string Value915 + { + get => GetProperty(Value915Property); + set => SetProperty(Value915Property, value); + } + + + public static readonly PropertyInfo Value916Property = RegisterProperty(nameof(Value916)); + public string Value916 + { + get => GetProperty(Value916Property); + set => SetProperty(Value916Property, value); + } + + + public static readonly PropertyInfo Value917Property = RegisterProperty(nameof(Value917)); + public string Value917 + { + get => GetProperty(Value917Property); + set => SetProperty(Value917Property, value); + } + + + public static readonly PropertyInfo Value918Property = RegisterProperty(nameof(Value918)); + public string Value918 + { + get => GetProperty(Value918Property); + set => SetProperty(Value918Property, value); + } + + + public static readonly PropertyInfo Value919Property = RegisterProperty(nameof(Value919)); + public string Value919 + { + get => GetProperty(Value919Property); + set => SetProperty(Value919Property, value); + } + + + public static readonly PropertyInfo Value920Property = RegisterProperty(nameof(Value920)); + public string Value920 + { + get => GetProperty(Value920Property); + set => SetProperty(Value920Property, value); + } + + + public static readonly PropertyInfo Value921Property = RegisterProperty(nameof(Value921)); + public string Value921 + { + get => GetProperty(Value921Property); + set => SetProperty(Value921Property, value); + } + + + public static readonly PropertyInfo Value922Property = RegisterProperty(nameof(Value922)); + public string Value922 + { + get => GetProperty(Value922Property); + set => SetProperty(Value922Property, value); + } + + + public static readonly PropertyInfo Value923Property = RegisterProperty(nameof(Value923)); + public string Value923 + { + get => GetProperty(Value923Property); + set => SetProperty(Value923Property, value); + } + + + public static readonly PropertyInfo Value924Property = RegisterProperty(nameof(Value924)); + public string Value924 + { + get => GetProperty(Value924Property); + set => SetProperty(Value924Property, value); + } + + + public static readonly PropertyInfo Value925Property = RegisterProperty(nameof(Value925)); + public string Value925 + { + get => GetProperty(Value925Property); + set => SetProperty(Value925Property, value); + } + + + public static readonly PropertyInfo Value926Property = RegisterProperty(nameof(Value926)); + public string Value926 + { + get => GetProperty(Value926Property); + set => SetProperty(Value926Property, value); + } + + + public static readonly PropertyInfo Value927Property = RegisterProperty(nameof(Value927)); + public string Value927 + { + get => GetProperty(Value927Property); + set => SetProperty(Value927Property, value); + } + + + public static readonly PropertyInfo Value928Property = RegisterProperty(nameof(Value928)); + public string Value928 + { + get => GetProperty(Value928Property); + set => SetProperty(Value928Property, value); + } + + + public static readonly PropertyInfo Value929Property = RegisterProperty(nameof(Value929)); + public string Value929 + { + get => GetProperty(Value929Property); + set => SetProperty(Value929Property, value); + } + + + public static readonly PropertyInfo Value930Property = RegisterProperty(nameof(Value930)); + public string Value930 + { + get => GetProperty(Value930Property); + set => SetProperty(Value930Property, value); + } + + + public static readonly PropertyInfo Value931Property = RegisterProperty(nameof(Value931)); + public string Value931 + { + get => GetProperty(Value931Property); + set => SetProperty(Value931Property, value); + } + + + public static readonly PropertyInfo Value932Property = RegisterProperty(nameof(Value932)); + public string Value932 + { + get => GetProperty(Value932Property); + set => SetProperty(Value932Property, value); + } + + + public static readonly PropertyInfo Value933Property = RegisterProperty(nameof(Value933)); + public string Value933 + { + get => GetProperty(Value933Property); + set => SetProperty(Value933Property, value); + } + + + public static readonly PropertyInfo Value934Property = RegisterProperty(nameof(Value934)); + public string Value934 + { + get => GetProperty(Value934Property); + set => SetProperty(Value934Property, value); + } + + + public static readonly PropertyInfo Value935Property = RegisterProperty(nameof(Value935)); + public string Value935 + { + get => GetProperty(Value935Property); + set => SetProperty(Value935Property, value); + } + + + public static readonly PropertyInfo Value936Property = RegisterProperty(nameof(Value936)); + public string Value936 + { + get => GetProperty(Value936Property); + set => SetProperty(Value936Property, value); + } + + + public static readonly PropertyInfo Value937Property = RegisterProperty(nameof(Value937)); + public string Value937 + { + get => GetProperty(Value937Property); + set => SetProperty(Value937Property, value); + } + + + public static readonly PropertyInfo Value938Property = RegisterProperty(nameof(Value938)); + public string Value938 + { + get => GetProperty(Value938Property); + set => SetProperty(Value938Property, value); + } + + + public static readonly PropertyInfo Value939Property = RegisterProperty(nameof(Value939)); + public string Value939 + { + get => GetProperty(Value939Property); + set => SetProperty(Value939Property, value); + } + + + public static readonly PropertyInfo Value940Property = RegisterProperty(nameof(Value940)); + public string Value940 + { + get => GetProperty(Value940Property); + set => SetProperty(Value940Property, value); + } + + + public static readonly PropertyInfo Value941Property = RegisterProperty(nameof(Value941)); + public string Value941 + { + get => GetProperty(Value941Property); + set => SetProperty(Value941Property, value); + } + + + public static readonly PropertyInfo Value942Property = RegisterProperty(nameof(Value942)); + public string Value942 + { + get => GetProperty(Value942Property); + set => SetProperty(Value942Property, value); + } + + + public static readonly PropertyInfo Value943Property = RegisterProperty(nameof(Value943)); + public string Value943 + { + get => GetProperty(Value943Property); + set => SetProperty(Value943Property, value); + } + + + public static readonly PropertyInfo Value944Property = RegisterProperty(nameof(Value944)); + public string Value944 + { + get => GetProperty(Value944Property); + set => SetProperty(Value944Property, value); + } + + + public static readonly PropertyInfo Value945Property = RegisterProperty(nameof(Value945)); + public string Value945 + { + get => GetProperty(Value945Property); + set => SetProperty(Value945Property, value); + } + + + public static readonly PropertyInfo Value946Property = RegisterProperty(nameof(Value946)); + public string Value946 + { + get => GetProperty(Value946Property); + set => SetProperty(Value946Property, value); + } + + + public static readonly PropertyInfo Value947Property = RegisterProperty(nameof(Value947)); + public string Value947 + { + get => GetProperty(Value947Property); + set => SetProperty(Value947Property, value); + } + + + public static readonly PropertyInfo Value948Property = RegisterProperty(nameof(Value948)); + public string Value948 + { + get => GetProperty(Value948Property); + set => SetProperty(Value948Property, value); + } + + + public static readonly PropertyInfo Value949Property = RegisterProperty(nameof(Value949)); + public string Value949 + { + get => GetProperty(Value949Property); + set => SetProperty(Value949Property, value); + } + + + public static readonly PropertyInfo Value950Property = RegisterProperty(nameof(Value950)); + public string Value950 + { + get => GetProperty(Value950Property); + set => SetProperty(Value950Property, value); + } + + + public static readonly PropertyInfo Value951Property = RegisterProperty(nameof(Value951)); + public string Value951 + { + get => GetProperty(Value951Property); + set => SetProperty(Value951Property, value); + } + + + public static readonly PropertyInfo Value952Property = RegisterProperty(nameof(Value952)); + public string Value952 + { + get => GetProperty(Value952Property); + set => SetProperty(Value952Property, value); + } + + + public static readonly PropertyInfo Value953Property = RegisterProperty(nameof(Value953)); + public string Value953 + { + get => GetProperty(Value953Property); + set => SetProperty(Value953Property, value); + } + + + public static readonly PropertyInfo Value954Property = RegisterProperty(nameof(Value954)); + public string Value954 + { + get => GetProperty(Value954Property); + set => SetProperty(Value954Property, value); + } + + + public static readonly PropertyInfo Value955Property = RegisterProperty(nameof(Value955)); + public string Value955 + { + get => GetProperty(Value955Property); + set => SetProperty(Value955Property, value); + } + + + public static readonly PropertyInfo Value956Property = RegisterProperty(nameof(Value956)); + public string Value956 + { + get => GetProperty(Value956Property); + set => SetProperty(Value956Property, value); + } + + + public static readonly PropertyInfo Value957Property = RegisterProperty(nameof(Value957)); + public string Value957 + { + get => GetProperty(Value957Property); + set => SetProperty(Value957Property, value); + } + + + public static readonly PropertyInfo Value958Property = RegisterProperty(nameof(Value958)); + public string Value958 + { + get => GetProperty(Value958Property); + set => SetProperty(Value958Property, value); + } + + + public static readonly PropertyInfo Value959Property = RegisterProperty(nameof(Value959)); + public string Value959 + { + get => GetProperty(Value959Property); + set => SetProperty(Value959Property, value); + } + + + public static readonly PropertyInfo Value960Property = RegisterProperty(nameof(Value960)); + public string Value960 + { + get => GetProperty(Value960Property); + set => SetProperty(Value960Property, value); + } + + + public static readonly PropertyInfo Value961Property = RegisterProperty(nameof(Value961)); + public string Value961 + { + get => GetProperty(Value961Property); + set => SetProperty(Value961Property, value); + } + + + public static readonly PropertyInfo Value962Property = RegisterProperty(nameof(Value962)); + public string Value962 + { + get => GetProperty(Value962Property); + set => SetProperty(Value962Property, value); + } + + + public static readonly PropertyInfo Value963Property = RegisterProperty(nameof(Value963)); + public string Value963 + { + get => GetProperty(Value963Property); + set => SetProperty(Value963Property, value); + } + + + public static readonly PropertyInfo Value964Property = RegisterProperty(nameof(Value964)); + public string Value964 + { + get => GetProperty(Value964Property); + set => SetProperty(Value964Property, value); + } + + + public static readonly PropertyInfo Value965Property = RegisterProperty(nameof(Value965)); + public string Value965 + { + get => GetProperty(Value965Property); + set => SetProperty(Value965Property, value); + } + + + public static readonly PropertyInfo Value966Property = RegisterProperty(nameof(Value966)); + public string Value966 + { + get => GetProperty(Value966Property); + set => SetProperty(Value966Property, value); + } + + + public static readonly PropertyInfo Value967Property = RegisterProperty(nameof(Value967)); + public string Value967 + { + get => GetProperty(Value967Property); + set => SetProperty(Value967Property, value); + } + + + public static readonly PropertyInfo Value968Property = RegisterProperty(nameof(Value968)); + public string Value968 + { + get => GetProperty(Value968Property); + set => SetProperty(Value968Property, value); + } + + + public static readonly PropertyInfo Value969Property = RegisterProperty(nameof(Value969)); + public string Value969 + { + get => GetProperty(Value969Property); + set => SetProperty(Value969Property, value); + } + + + public static readonly PropertyInfo Value970Property = RegisterProperty(nameof(Value970)); + public string Value970 + { + get => GetProperty(Value970Property); + set => SetProperty(Value970Property, value); + } + + + public static readonly PropertyInfo Value971Property = RegisterProperty(nameof(Value971)); + public string Value971 + { + get => GetProperty(Value971Property); + set => SetProperty(Value971Property, value); + } + + + public static readonly PropertyInfo Value972Property = RegisterProperty(nameof(Value972)); + public string Value972 + { + get => GetProperty(Value972Property); + set => SetProperty(Value972Property, value); + } + + + public static readonly PropertyInfo Value973Property = RegisterProperty(nameof(Value973)); + public string Value973 + { + get => GetProperty(Value973Property); + set => SetProperty(Value973Property, value); + } + + + public static readonly PropertyInfo Value974Property = RegisterProperty(nameof(Value974)); + public string Value974 + { + get => GetProperty(Value974Property); + set => SetProperty(Value974Property, value); + } + + + public static readonly PropertyInfo Value975Property = RegisterProperty(nameof(Value975)); + public string Value975 + { + get => GetProperty(Value975Property); + set => SetProperty(Value975Property, value); + } + + + public static readonly PropertyInfo Value976Property = RegisterProperty(nameof(Value976)); + public string Value976 + { + get => GetProperty(Value976Property); + set => SetProperty(Value976Property, value); + } + + + public static readonly PropertyInfo Value977Property = RegisterProperty(nameof(Value977)); + public string Value977 + { + get => GetProperty(Value977Property); + set => SetProperty(Value977Property, value); + } + + + public static readonly PropertyInfo Value978Property = RegisterProperty(nameof(Value978)); + public string Value978 + { + get => GetProperty(Value978Property); + set => SetProperty(Value978Property, value); + } + + + public static readonly PropertyInfo Value979Property = RegisterProperty(nameof(Value979)); + public string Value979 + { + get => GetProperty(Value979Property); + set => SetProperty(Value979Property, value); + } + + + public static readonly PropertyInfo Value980Property = RegisterProperty(nameof(Value980)); + public string Value980 + { + get => GetProperty(Value980Property); + set => SetProperty(Value980Property, value); + } + + + public static readonly PropertyInfo Value981Property = RegisterProperty(nameof(Value981)); + public string Value981 + { + get => GetProperty(Value981Property); + set => SetProperty(Value981Property, value); + } + + + public static readonly PropertyInfo Value982Property = RegisterProperty(nameof(Value982)); + public string Value982 + { + get => GetProperty(Value982Property); + set => SetProperty(Value982Property, value); + } + + + public static readonly PropertyInfo Value983Property = RegisterProperty(nameof(Value983)); + public string Value983 + { + get => GetProperty(Value983Property); + set => SetProperty(Value983Property, value); + } + + + public static readonly PropertyInfo Value984Property = RegisterProperty(nameof(Value984)); + public string Value984 + { + get => GetProperty(Value984Property); + set => SetProperty(Value984Property, value); + } + + + public static readonly PropertyInfo Value985Property = RegisterProperty(nameof(Value985)); + public string Value985 + { + get => GetProperty(Value985Property); + set => SetProperty(Value985Property, value); + } + + + public static readonly PropertyInfo Value986Property = RegisterProperty(nameof(Value986)); + public string Value986 + { + get => GetProperty(Value986Property); + set => SetProperty(Value986Property, value); + } + + + public static readonly PropertyInfo Value987Property = RegisterProperty(nameof(Value987)); + public string Value987 + { + get => GetProperty(Value987Property); + set => SetProperty(Value987Property, value); + } + + + public static readonly PropertyInfo Value988Property = RegisterProperty(nameof(Value988)); + public string Value988 + { + get => GetProperty(Value988Property); + set => SetProperty(Value988Property, value); + } + + + public static readonly PropertyInfo Value989Property = RegisterProperty(nameof(Value989)); + public string Value989 + { + get => GetProperty(Value989Property); + set => SetProperty(Value989Property, value); + } + + + public static readonly PropertyInfo Value990Property = RegisterProperty(nameof(Value990)); + public string Value990 + { + get => GetProperty(Value990Property); + set => SetProperty(Value990Property, value); + } + + + public static readonly PropertyInfo Value991Property = RegisterProperty(nameof(Value991)); + public string Value991 + { + get => GetProperty(Value991Property); + set => SetProperty(Value991Property, value); + } + + + public static readonly PropertyInfo Value992Property = RegisterProperty(nameof(Value992)); + public string Value992 + { + get => GetProperty(Value992Property); + set => SetProperty(Value992Property, value); + } + + + public static readonly PropertyInfo Value993Property = RegisterProperty(nameof(Value993)); + public string Value993 + { + get => GetProperty(Value993Property); + set => SetProperty(Value993Property, value); + } + + + public static readonly PropertyInfo Value994Property = RegisterProperty(nameof(Value994)); + public string Value994 + { + get => GetProperty(Value994Property); + set => SetProperty(Value994Property, value); + } + + + public static readonly PropertyInfo Value995Property = RegisterProperty(nameof(Value995)); + public string Value995 + { + get => GetProperty(Value995Property); + set => SetProperty(Value995Property, value); + } + + + public static readonly PropertyInfo Value996Property = RegisterProperty(nameof(Value996)); + public string Value996 + { + get => GetProperty(Value996Property); + set => SetProperty(Value996Property, value); + } + + + public static readonly PropertyInfo Value997Property = RegisterProperty(nameof(Value997)); + public string Value997 + { + get => GetProperty(Value997Property); + set => SetProperty(Value997Property, value); + } + + + public static readonly PropertyInfo Value998Property = RegisterProperty(nameof(Value998)); + public string Value998 + { + get => GetProperty(Value998Property); + set => SetProperty(Value998Property, value); + } + + + public static readonly PropertyInfo Value999Property = RegisterProperty(nameof(Value999)); + public string Value999 + { + get => GetProperty(Value999Property); + set => SetProperty(Value999Property, value); + } + + + public static readonly PropertyInfo Value1000Property = RegisterProperty(nameof(Value1000)); + public string Value1000 + { + get => GetProperty(Value1000Property); + set => SetProperty(Value1000Property, value); + } + + + public static readonly PropertyInfo Value1001Property = RegisterProperty(nameof(Value1001)); + public string Value1001 + { + get => GetProperty(Value1001Property); + set => SetProperty(Value1001Property, value); + } + + + public static readonly PropertyInfo Value1002Property = RegisterProperty(nameof(Value1002)); + public string Value1002 + { + get => GetProperty(Value1002Property); + set => SetProperty(Value1002Property, value); + } + + + public static readonly PropertyInfo Value1003Property = RegisterProperty(nameof(Value1003)); + public string Value1003 + { + get => GetProperty(Value1003Property); + set => SetProperty(Value1003Property, value); + } + + + public static readonly PropertyInfo Value1004Property = RegisterProperty(nameof(Value1004)); + public string Value1004 + { + get => GetProperty(Value1004Property); + set => SetProperty(Value1004Property, value); + } + + + public static readonly PropertyInfo Value1005Property = RegisterProperty(nameof(Value1005)); + public string Value1005 + { + get => GetProperty(Value1005Property); + set => SetProperty(Value1005Property, value); + } + + + public static readonly PropertyInfo Value1006Property = RegisterProperty(nameof(Value1006)); + public string Value1006 + { + get => GetProperty(Value1006Property); + set => SetProperty(Value1006Property, value); + } + + + public static readonly PropertyInfo Value1007Property = RegisterProperty(nameof(Value1007)); + public string Value1007 + { + get => GetProperty(Value1007Property); + set => SetProperty(Value1007Property, value); + } + + + public static readonly PropertyInfo Value1008Property = RegisterProperty(nameof(Value1008)); + public string Value1008 + { + get => GetProperty(Value1008Property); + set => SetProperty(Value1008Property, value); + } + + + public static readonly PropertyInfo Value1009Property = RegisterProperty(nameof(Value1009)); + public string Value1009 + { + get => GetProperty(Value1009Property); + set => SetProperty(Value1009Property, value); + } + + + public static readonly PropertyInfo Value1010Property = RegisterProperty(nameof(Value1010)); + public string Value1010 + { + get => GetProperty(Value1010Property); + set => SetProperty(Value1010Property, value); + } + + + public static readonly PropertyInfo Value1011Property = RegisterProperty(nameof(Value1011)); + public string Value1011 + { + get => GetProperty(Value1011Property); + set => SetProperty(Value1011Property, value); + } + + + public static readonly PropertyInfo Value1012Property = RegisterProperty(nameof(Value1012)); + public string Value1012 + { + get => GetProperty(Value1012Property); + set => SetProperty(Value1012Property, value); + } + + + public static readonly PropertyInfo Value1013Property = RegisterProperty(nameof(Value1013)); + public string Value1013 + { + get => GetProperty(Value1013Property); + set => SetProperty(Value1013Property, value); + } + + + public static readonly PropertyInfo Value1014Property = RegisterProperty(nameof(Value1014)); + public string Value1014 + { + get => GetProperty(Value1014Property); + set => SetProperty(Value1014Property, value); + } + + + public static readonly PropertyInfo Value1015Property = RegisterProperty(nameof(Value1015)); + public string Value1015 + { + get => GetProperty(Value1015Property); + set => SetProperty(Value1015Property, value); + } + + + public static readonly PropertyInfo Value1016Property = RegisterProperty(nameof(Value1016)); + public string Value1016 + { + get => GetProperty(Value1016Property); + set => SetProperty(Value1016Property, value); + } + + + public static readonly PropertyInfo Value1017Property = RegisterProperty(nameof(Value1017)); + public string Value1017 + { + get => GetProperty(Value1017Property); + set => SetProperty(Value1017Property, value); + } + + + public static readonly PropertyInfo Value1018Property = RegisterProperty(nameof(Value1018)); + public string Value1018 + { + get => GetProperty(Value1018Property); + set => SetProperty(Value1018Property, value); + } + + + public static readonly PropertyInfo Value1019Property = RegisterProperty(nameof(Value1019)); + public string Value1019 + { + get => GetProperty(Value1019Property); + set => SetProperty(Value1019Property, value); + } + + + public static readonly PropertyInfo Value1020Property = RegisterProperty(nameof(Value1020)); + public string Value1020 + { + get => GetProperty(Value1020Property); + set => SetProperty(Value1020Property, value); + } + + + public static readonly PropertyInfo Value1021Property = RegisterProperty(nameof(Value1021)); + public string Value1021 + { + get => GetProperty(Value1021Property); + set => SetProperty(Value1021Property, value); + } + + + public static readonly PropertyInfo Value1022Property = RegisterProperty(nameof(Value1022)); + public string Value1022 + { + get => GetProperty(Value1022Property); + set => SetProperty(Value1022Property, value); + } + + + public static readonly PropertyInfo Value1023Property = RegisterProperty(nameof(Value1023)); + public string Value1023 + { + get => GetProperty(Value1023Property); + set => SetProperty(Value1023Property, value); + } + + + public static readonly PropertyInfo Value1024Property = RegisterProperty(nameof(Value1024)); + public string Value1024 + { + get => GetProperty(Value1024Property); + set => SetProperty(Value1024Property, value); + } + + + public static readonly PropertyInfo Value1025Property = RegisterProperty(nameof(Value1025)); + public string Value1025 + { + get => GetProperty(Value1025Property); + set => SetProperty(Value1025Property, value); + } + + + public static readonly PropertyInfo Value1026Property = RegisterProperty(nameof(Value1026)); + public string Value1026 + { + get => GetProperty(Value1026Property); + set => SetProperty(Value1026Property, value); + } + + + public static readonly PropertyInfo Value1027Property = RegisterProperty(nameof(Value1027)); + public string Value1027 + { + get => GetProperty(Value1027Property); + set => SetProperty(Value1027Property, value); + } + + + public static readonly PropertyInfo Value1028Property = RegisterProperty(nameof(Value1028)); + public string Value1028 + { + get => GetProperty(Value1028Property); + set => SetProperty(Value1028Property, value); + } + + + public static readonly PropertyInfo Value1029Property = RegisterProperty(nameof(Value1029)); + public string Value1029 + { + get => GetProperty(Value1029Property); + set => SetProperty(Value1029Property, value); + } + + + public static readonly PropertyInfo Value1030Property = RegisterProperty(nameof(Value1030)); + public string Value1030 + { + get => GetProperty(Value1030Property); + set => SetProperty(Value1030Property, value); + } + + + public static readonly PropertyInfo Value1031Property = RegisterProperty(nameof(Value1031)); + public string Value1031 + { + get => GetProperty(Value1031Property); + set => SetProperty(Value1031Property, value); + } + + + public static readonly PropertyInfo Value1032Property = RegisterProperty(nameof(Value1032)); + public string Value1032 + { + get => GetProperty(Value1032Property); + set => SetProperty(Value1032Property, value); + } + + + public static readonly PropertyInfo Value1033Property = RegisterProperty(nameof(Value1033)); + public string Value1033 + { + get => GetProperty(Value1033Property); + set => SetProperty(Value1033Property, value); + } + + + public static readonly PropertyInfo Value1034Property = RegisterProperty(nameof(Value1034)); + public string Value1034 + { + get => GetProperty(Value1034Property); + set => SetProperty(Value1034Property, value); + } + + + public static readonly PropertyInfo Value1035Property = RegisterProperty(nameof(Value1035)); + public string Value1035 + { + get => GetProperty(Value1035Property); + set => SetProperty(Value1035Property, value); + } + + + public static readonly PropertyInfo Value1036Property = RegisterProperty(nameof(Value1036)); + public string Value1036 + { + get => GetProperty(Value1036Property); + set => SetProperty(Value1036Property, value); + } + + + public static readonly PropertyInfo Value1037Property = RegisterProperty(nameof(Value1037)); + public string Value1037 + { + get => GetProperty(Value1037Property); + set => SetProperty(Value1037Property, value); + } + + + public static readonly PropertyInfo Value1038Property = RegisterProperty(nameof(Value1038)); + public string Value1038 + { + get => GetProperty(Value1038Property); + set => SetProperty(Value1038Property, value); + } + + + public static readonly PropertyInfo Value1039Property = RegisterProperty(nameof(Value1039)); + public string Value1039 + { + get => GetProperty(Value1039Property); + set => SetProperty(Value1039Property, value); + } + + + public static readonly PropertyInfo Value1040Property = RegisterProperty(nameof(Value1040)); + public string Value1040 + { + get => GetProperty(Value1040Property); + set => SetProperty(Value1040Property, value); + } + + + public static readonly PropertyInfo Value1041Property = RegisterProperty(nameof(Value1041)); + public string Value1041 + { + get => GetProperty(Value1041Property); + set => SetProperty(Value1041Property, value); + } + + + public static readonly PropertyInfo Value1042Property = RegisterProperty(nameof(Value1042)); + public string Value1042 + { + get => GetProperty(Value1042Property); + set => SetProperty(Value1042Property, value); + } + + + public static readonly PropertyInfo Value1043Property = RegisterProperty(nameof(Value1043)); + public string Value1043 + { + get => GetProperty(Value1043Property); + set => SetProperty(Value1043Property, value); + } + + + public static readonly PropertyInfo Value1044Property = RegisterProperty(nameof(Value1044)); + public string Value1044 + { + get => GetProperty(Value1044Property); + set => SetProperty(Value1044Property, value); + } + + + public static readonly PropertyInfo Value1045Property = RegisterProperty(nameof(Value1045)); + public string Value1045 + { + get => GetProperty(Value1045Property); + set => SetProperty(Value1045Property, value); + } + + + public static readonly PropertyInfo Value1046Property = RegisterProperty(nameof(Value1046)); + public string Value1046 + { + get => GetProperty(Value1046Property); + set => SetProperty(Value1046Property, value); + } + + + public static readonly PropertyInfo Value1047Property = RegisterProperty(nameof(Value1047)); + public string Value1047 + { + get => GetProperty(Value1047Property); + set => SetProperty(Value1047Property, value); + } + + + public static readonly PropertyInfo Value1048Property = RegisterProperty(nameof(Value1048)); + public string Value1048 + { + get => GetProperty(Value1048Property); + set => SetProperty(Value1048Property, value); + } + + + public static readonly PropertyInfo Value1049Property = RegisterProperty(nameof(Value1049)); + public string Value1049 + { + get => GetProperty(Value1049Property); + set => SetProperty(Value1049Property, value); + } + + + public static readonly PropertyInfo Value1050Property = RegisterProperty(nameof(Value1050)); + public string Value1050 + { + get => GetProperty(Value1050Property); + set => SetProperty(Value1050Property, value); + } + + + public static readonly PropertyInfo Value1051Property = RegisterProperty(nameof(Value1051)); + public string Value1051 + { + get => GetProperty(Value1051Property); + set => SetProperty(Value1051Property, value); + } + + + public static readonly PropertyInfo Value1052Property = RegisterProperty(nameof(Value1052)); + public string Value1052 + { + get => GetProperty(Value1052Property); + set => SetProperty(Value1052Property, value); + } + + + public static readonly PropertyInfo Value1053Property = RegisterProperty(nameof(Value1053)); + public string Value1053 + { + get => GetProperty(Value1053Property); + set => SetProperty(Value1053Property, value); + } + + + public static readonly PropertyInfo Value1054Property = RegisterProperty(nameof(Value1054)); + public string Value1054 + { + get => GetProperty(Value1054Property); + set => SetProperty(Value1054Property, value); + } + + + public static readonly PropertyInfo Value1055Property = RegisterProperty(nameof(Value1055)); + public string Value1055 + { + get => GetProperty(Value1055Property); + set => SetProperty(Value1055Property, value); + } + + + public static readonly PropertyInfo Value1056Property = RegisterProperty(nameof(Value1056)); + public string Value1056 + { + get => GetProperty(Value1056Property); + set => SetProperty(Value1056Property, value); + } + + + public static readonly PropertyInfo Value1057Property = RegisterProperty(nameof(Value1057)); + public string Value1057 + { + get => GetProperty(Value1057Property); + set => SetProperty(Value1057Property, value); + } + + + public static readonly PropertyInfo Value1058Property = RegisterProperty(nameof(Value1058)); + public string Value1058 + { + get => GetProperty(Value1058Property); + set => SetProperty(Value1058Property, value); + } + + + public static readonly PropertyInfo Value1059Property = RegisterProperty(nameof(Value1059)); + public string Value1059 + { + get => GetProperty(Value1059Property); + set => SetProperty(Value1059Property, value); + } + + + public static readonly PropertyInfo Value1060Property = RegisterProperty(nameof(Value1060)); + public string Value1060 + { + get => GetProperty(Value1060Property); + set => SetProperty(Value1060Property, value); + } + + + public static readonly PropertyInfo Value1061Property = RegisterProperty(nameof(Value1061)); + public string Value1061 + { + get => GetProperty(Value1061Property); + set => SetProperty(Value1061Property, value); + } + + + public static readonly PropertyInfo Value1062Property = RegisterProperty(nameof(Value1062)); + public string Value1062 + { + get => GetProperty(Value1062Property); + set => SetProperty(Value1062Property, value); + } + + + public static readonly PropertyInfo Value1063Property = RegisterProperty(nameof(Value1063)); + public string Value1063 + { + get => GetProperty(Value1063Property); + set => SetProperty(Value1063Property, value); + } + + + public static readonly PropertyInfo Value1064Property = RegisterProperty(nameof(Value1064)); + public string Value1064 + { + get => GetProperty(Value1064Property); + set => SetProperty(Value1064Property, value); + } + + + public static readonly PropertyInfo Value1065Property = RegisterProperty(nameof(Value1065)); + public string Value1065 + { + get => GetProperty(Value1065Property); + set => SetProperty(Value1065Property, value); + } + + + public static readonly PropertyInfo Value1066Property = RegisterProperty(nameof(Value1066)); + public string Value1066 + { + get => GetProperty(Value1066Property); + set => SetProperty(Value1066Property, value); + } + + + public static readonly PropertyInfo Value1067Property = RegisterProperty(nameof(Value1067)); + public string Value1067 + { + get => GetProperty(Value1067Property); + set => SetProperty(Value1067Property, value); + } + + + public static readonly PropertyInfo Value1068Property = RegisterProperty(nameof(Value1068)); + public string Value1068 + { + get => GetProperty(Value1068Property); + set => SetProperty(Value1068Property, value); + } + + + public static readonly PropertyInfo Value1069Property = RegisterProperty(nameof(Value1069)); + public string Value1069 + { + get => GetProperty(Value1069Property); + set => SetProperty(Value1069Property, value); + } + + + public static readonly PropertyInfo Value1070Property = RegisterProperty(nameof(Value1070)); + public string Value1070 + { + get => GetProperty(Value1070Property); + set => SetProperty(Value1070Property, value); + } + + + public static readonly PropertyInfo Value1071Property = RegisterProperty(nameof(Value1071)); + public string Value1071 + { + get => GetProperty(Value1071Property); + set => SetProperty(Value1071Property, value); + } + + + public static readonly PropertyInfo Value1072Property = RegisterProperty(nameof(Value1072)); + public string Value1072 + { + get => GetProperty(Value1072Property); + set => SetProperty(Value1072Property, value); + } + + + public static readonly PropertyInfo Value1073Property = RegisterProperty(nameof(Value1073)); + public string Value1073 + { + get => GetProperty(Value1073Property); + set => SetProperty(Value1073Property, value); + } + + + public static readonly PropertyInfo Value1074Property = RegisterProperty(nameof(Value1074)); + public string Value1074 + { + get => GetProperty(Value1074Property); + set => SetProperty(Value1074Property, value); + } + + + public static readonly PropertyInfo Value1075Property = RegisterProperty(nameof(Value1075)); + public string Value1075 + { + get => GetProperty(Value1075Property); + set => SetProperty(Value1075Property, value); + } + + + public static readonly PropertyInfo Value1076Property = RegisterProperty(nameof(Value1076)); + public string Value1076 + { + get => GetProperty(Value1076Property); + set => SetProperty(Value1076Property, value); + } + + + public static readonly PropertyInfo Value1077Property = RegisterProperty(nameof(Value1077)); + public string Value1077 + { + get => GetProperty(Value1077Property); + set => SetProperty(Value1077Property, value); + } + + + public static readonly PropertyInfo Value1078Property = RegisterProperty(nameof(Value1078)); + public string Value1078 + { + get => GetProperty(Value1078Property); + set => SetProperty(Value1078Property, value); + } + + + public static readonly PropertyInfo Value1079Property = RegisterProperty(nameof(Value1079)); + public string Value1079 + { + get => GetProperty(Value1079Property); + set => SetProperty(Value1079Property, value); + } + + + public static readonly PropertyInfo Value1080Property = RegisterProperty(nameof(Value1080)); + public string Value1080 + { + get => GetProperty(Value1080Property); + set => SetProperty(Value1080Property, value); + } + + + public static readonly PropertyInfo Value1081Property = RegisterProperty(nameof(Value1081)); + public string Value1081 + { + get => GetProperty(Value1081Property); + set => SetProperty(Value1081Property, value); + } + + + public static readonly PropertyInfo Value1082Property = RegisterProperty(nameof(Value1082)); + public string Value1082 + { + get => GetProperty(Value1082Property); + set => SetProperty(Value1082Property, value); + } + + + public static readonly PropertyInfo Value1083Property = RegisterProperty(nameof(Value1083)); + public string Value1083 + { + get => GetProperty(Value1083Property); + set => SetProperty(Value1083Property, value); + } + + + public static readonly PropertyInfo Value1084Property = RegisterProperty(nameof(Value1084)); + public string Value1084 + { + get => GetProperty(Value1084Property); + set => SetProperty(Value1084Property, value); + } + + + public static readonly PropertyInfo Value1085Property = RegisterProperty(nameof(Value1085)); + public string Value1085 + { + get => GetProperty(Value1085Property); + set => SetProperty(Value1085Property, value); + } + + + public static readonly PropertyInfo Value1086Property = RegisterProperty(nameof(Value1086)); + public string Value1086 + { + get => GetProperty(Value1086Property); + set => SetProperty(Value1086Property, value); + } + + + public static readonly PropertyInfo Value1087Property = RegisterProperty(nameof(Value1087)); + public string Value1087 + { + get => GetProperty(Value1087Property); + set => SetProperty(Value1087Property, value); + } + + + public static readonly PropertyInfo Value1088Property = RegisterProperty(nameof(Value1088)); + public string Value1088 + { + get => GetProperty(Value1088Property); + set => SetProperty(Value1088Property, value); + } + + + public static readonly PropertyInfo Value1089Property = RegisterProperty(nameof(Value1089)); + public string Value1089 + { + get => GetProperty(Value1089Property); + set => SetProperty(Value1089Property, value); + } + + + public static readonly PropertyInfo Value1090Property = RegisterProperty(nameof(Value1090)); + public string Value1090 + { + get => GetProperty(Value1090Property); + set => SetProperty(Value1090Property, value); + } + + + public static readonly PropertyInfo Value1091Property = RegisterProperty(nameof(Value1091)); + public string Value1091 + { + get => GetProperty(Value1091Property); + set => SetProperty(Value1091Property, value); + } + + + public static readonly PropertyInfo Value1092Property = RegisterProperty(nameof(Value1092)); + public string Value1092 + { + get => GetProperty(Value1092Property); + set => SetProperty(Value1092Property, value); + } + + + public static readonly PropertyInfo Value1093Property = RegisterProperty(nameof(Value1093)); + public string Value1093 + { + get => GetProperty(Value1093Property); + set => SetProperty(Value1093Property, value); + } + + + public static readonly PropertyInfo Value1094Property = RegisterProperty(nameof(Value1094)); + public string Value1094 + { + get => GetProperty(Value1094Property); + set => SetProperty(Value1094Property, value); + } + + + public static readonly PropertyInfo Value1095Property = RegisterProperty(nameof(Value1095)); + public string Value1095 + { + get => GetProperty(Value1095Property); + set => SetProperty(Value1095Property, value); + } + + + public static readonly PropertyInfo Value1096Property = RegisterProperty(nameof(Value1096)); + public string Value1096 + { + get => GetProperty(Value1096Property); + set => SetProperty(Value1096Property, value); + } + + + public static readonly PropertyInfo Value1097Property = RegisterProperty(nameof(Value1097)); + public string Value1097 + { + get => GetProperty(Value1097Property); + set => SetProperty(Value1097Property, value); + } + + + public static readonly PropertyInfo Value1098Property = RegisterProperty(nameof(Value1098)); + public string Value1098 + { + get => GetProperty(Value1098Property); + set => SetProperty(Value1098Property, value); + } + + + public static readonly PropertyInfo Value1099Property = RegisterProperty(nameof(Value1099)); + public string Value1099 + { + get => GetProperty(Value1099Property); + set => SetProperty(Value1099Property, value); + } + + + public static readonly PropertyInfo Value1100Property = RegisterProperty(nameof(Value1100)); + public string Value1100 + { + get => GetProperty(Value1100Property); + set => SetProperty(Value1100Property, value); + } + + + public static readonly PropertyInfo Value1101Property = RegisterProperty(nameof(Value1101)); + public string Value1101 + { + get => GetProperty(Value1101Property); + set => SetProperty(Value1101Property, value); + } + + + public static readonly PropertyInfo Value1102Property = RegisterProperty(nameof(Value1102)); + public string Value1102 + { + get => GetProperty(Value1102Property); + set => SetProperty(Value1102Property, value); + } + + + public static readonly PropertyInfo Value1103Property = RegisterProperty(nameof(Value1103)); + public string Value1103 + { + get => GetProperty(Value1103Property); + set => SetProperty(Value1103Property, value); + } + + + public static readonly PropertyInfo Value1104Property = RegisterProperty(nameof(Value1104)); + public string Value1104 + { + get => GetProperty(Value1104Property); + set => SetProperty(Value1104Property, value); + } + + + public static readonly PropertyInfo Value1105Property = RegisterProperty(nameof(Value1105)); + public string Value1105 + { + get => GetProperty(Value1105Property); + set => SetProperty(Value1105Property, value); + } + + + public static readonly PropertyInfo Value1106Property = RegisterProperty(nameof(Value1106)); + public string Value1106 + { + get => GetProperty(Value1106Property); + set => SetProperty(Value1106Property, value); + } + + + public static readonly PropertyInfo Value1107Property = RegisterProperty(nameof(Value1107)); + public string Value1107 + { + get => GetProperty(Value1107Property); + set => SetProperty(Value1107Property, value); + } + + + public static readonly PropertyInfo Value1108Property = RegisterProperty(nameof(Value1108)); + public string Value1108 + { + get => GetProperty(Value1108Property); + set => SetProperty(Value1108Property, value); + } + + + public static readonly PropertyInfo Value1109Property = RegisterProperty(nameof(Value1109)); + public string Value1109 + { + get => GetProperty(Value1109Property); + set => SetProperty(Value1109Property, value); + } + + + public static readonly PropertyInfo Value1110Property = RegisterProperty(nameof(Value1110)); + public string Value1110 + { + get => GetProperty(Value1110Property); + set => SetProperty(Value1110Property, value); + } + + + public static readonly PropertyInfo Value1111Property = RegisterProperty(nameof(Value1111)); + public string Value1111 + { + get => GetProperty(Value1111Property); + set => SetProperty(Value1111Property, value); + } + + + public static readonly PropertyInfo Value1112Property = RegisterProperty(nameof(Value1112)); + public string Value1112 + { + get => GetProperty(Value1112Property); + set => SetProperty(Value1112Property, value); + } + + + public static readonly PropertyInfo Value1113Property = RegisterProperty(nameof(Value1113)); + public string Value1113 + { + get => GetProperty(Value1113Property); + set => SetProperty(Value1113Property, value); + } + + + public static readonly PropertyInfo Value1114Property = RegisterProperty(nameof(Value1114)); + public string Value1114 + { + get => GetProperty(Value1114Property); + set => SetProperty(Value1114Property, value); + } + + + public static readonly PropertyInfo Value1115Property = RegisterProperty(nameof(Value1115)); + public string Value1115 + { + get => GetProperty(Value1115Property); + set => SetProperty(Value1115Property, value); + } + + + public static readonly PropertyInfo Value1116Property = RegisterProperty(nameof(Value1116)); + public string Value1116 + { + get => GetProperty(Value1116Property); + set => SetProperty(Value1116Property, value); + } + + + public static readonly PropertyInfo Value1117Property = RegisterProperty(nameof(Value1117)); + public string Value1117 + { + get => GetProperty(Value1117Property); + set => SetProperty(Value1117Property, value); + } + + + public static readonly PropertyInfo Value1118Property = RegisterProperty(nameof(Value1118)); + public string Value1118 + { + get => GetProperty(Value1118Property); + set => SetProperty(Value1118Property, value); + } + + + public static readonly PropertyInfo Value1119Property = RegisterProperty(nameof(Value1119)); + public string Value1119 + { + get => GetProperty(Value1119Property); + set => SetProperty(Value1119Property, value); + } + + + public static readonly PropertyInfo Value1120Property = RegisterProperty(nameof(Value1120)); + public string Value1120 + { + get => GetProperty(Value1120Property); + set => SetProperty(Value1120Property, value); + } + + + public static readonly PropertyInfo Value1121Property = RegisterProperty(nameof(Value1121)); + public string Value1121 + { + get => GetProperty(Value1121Property); + set => SetProperty(Value1121Property, value); + } + + + public static readonly PropertyInfo Value1122Property = RegisterProperty(nameof(Value1122)); + public string Value1122 + { + get => GetProperty(Value1122Property); + set => SetProperty(Value1122Property, value); + } + + + public static readonly PropertyInfo Value1123Property = RegisterProperty(nameof(Value1123)); + public string Value1123 + { + get => GetProperty(Value1123Property); + set => SetProperty(Value1123Property, value); + } + + + public static readonly PropertyInfo Value1124Property = RegisterProperty(nameof(Value1124)); + public string Value1124 + { + get => GetProperty(Value1124Property); + set => SetProperty(Value1124Property, value); + } + + + public static readonly PropertyInfo Value1125Property = RegisterProperty(nameof(Value1125)); + public string Value1125 + { + get => GetProperty(Value1125Property); + set => SetProperty(Value1125Property, value); + } + + + public static readonly PropertyInfo Value1126Property = RegisterProperty(nameof(Value1126)); + public string Value1126 + { + get => GetProperty(Value1126Property); + set => SetProperty(Value1126Property, value); + } + + + public static readonly PropertyInfo Value1127Property = RegisterProperty(nameof(Value1127)); + public string Value1127 + { + get => GetProperty(Value1127Property); + set => SetProperty(Value1127Property, value); + } + + + public static readonly PropertyInfo Value1128Property = RegisterProperty(nameof(Value1128)); + public string Value1128 + { + get => GetProperty(Value1128Property); + set => SetProperty(Value1128Property, value); + } + + + public static readonly PropertyInfo Value1129Property = RegisterProperty(nameof(Value1129)); + public string Value1129 + { + get => GetProperty(Value1129Property); + set => SetProperty(Value1129Property, value); + } + + + public static readonly PropertyInfo Value1130Property = RegisterProperty(nameof(Value1130)); + public string Value1130 + { + get => GetProperty(Value1130Property); + set => SetProperty(Value1130Property, value); + } + + + public static readonly PropertyInfo Value1131Property = RegisterProperty(nameof(Value1131)); + public string Value1131 + { + get => GetProperty(Value1131Property); + set => SetProperty(Value1131Property, value); + } + + + public static readonly PropertyInfo Value1132Property = RegisterProperty(nameof(Value1132)); + public string Value1132 + { + get => GetProperty(Value1132Property); + set => SetProperty(Value1132Property, value); + } + + + public static readonly PropertyInfo Value1133Property = RegisterProperty(nameof(Value1133)); + public string Value1133 + { + get => GetProperty(Value1133Property); + set => SetProperty(Value1133Property, value); + } + + + public static readonly PropertyInfo Value1134Property = RegisterProperty(nameof(Value1134)); + public string Value1134 + { + get => GetProperty(Value1134Property); + set => SetProperty(Value1134Property, value); + } + + + public static readonly PropertyInfo Value1135Property = RegisterProperty(nameof(Value1135)); + public string Value1135 + { + get => GetProperty(Value1135Property); + set => SetProperty(Value1135Property, value); + } + + + public static readonly PropertyInfo Value1136Property = RegisterProperty(nameof(Value1136)); + public string Value1136 + { + get => GetProperty(Value1136Property); + set => SetProperty(Value1136Property, value); + } + + + public static readonly PropertyInfo Value1137Property = RegisterProperty(nameof(Value1137)); + public string Value1137 + { + get => GetProperty(Value1137Property); + set => SetProperty(Value1137Property, value); + } + + + public static readonly PropertyInfo Value1138Property = RegisterProperty(nameof(Value1138)); + public string Value1138 + { + get => GetProperty(Value1138Property); + set => SetProperty(Value1138Property, value); + } + + + public static readonly PropertyInfo Value1139Property = RegisterProperty(nameof(Value1139)); + public string Value1139 + { + get => GetProperty(Value1139Property); + set => SetProperty(Value1139Property, value); + } + + + public static readonly PropertyInfo Value1140Property = RegisterProperty(nameof(Value1140)); + public string Value1140 + { + get => GetProperty(Value1140Property); + set => SetProperty(Value1140Property, value); + } + + + public static readonly PropertyInfo Value1141Property = RegisterProperty(nameof(Value1141)); + public string Value1141 + { + get => GetProperty(Value1141Property); + set => SetProperty(Value1141Property, value); + } + + + public static readonly PropertyInfo Value1142Property = RegisterProperty(nameof(Value1142)); + public string Value1142 + { + get => GetProperty(Value1142Property); + set => SetProperty(Value1142Property, value); + } + + + public static readonly PropertyInfo Value1143Property = RegisterProperty(nameof(Value1143)); + public string Value1143 + { + get => GetProperty(Value1143Property); + set => SetProperty(Value1143Property, value); + } + + + public static readonly PropertyInfo Value1144Property = RegisterProperty(nameof(Value1144)); + public string Value1144 + { + get => GetProperty(Value1144Property); + set => SetProperty(Value1144Property, value); + } + + + public static readonly PropertyInfo Value1145Property = RegisterProperty(nameof(Value1145)); + public string Value1145 + { + get => GetProperty(Value1145Property); + set => SetProperty(Value1145Property, value); + } + + + public static readonly PropertyInfo Value1146Property = RegisterProperty(nameof(Value1146)); + public string Value1146 + { + get => GetProperty(Value1146Property); + set => SetProperty(Value1146Property, value); + } + + + public static readonly PropertyInfo Value1147Property = RegisterProperty(nameof(Value1147)); + public string Value1147 + { + get => GetProperty(Value1147Property); + set => SetProperty(Value1147Property, value); + } + + + public static readonly PropertyInfo Value1148Property = RegisterProperty(nameof(Value1148)); + public string Value1148 + { + get => GetProperty(Value1148Property); + set => SetProperty(Value1148Property, value); + } + + + public static readonly PropertyInfo Value1149Property = RegisterProperty(nameof(Value1149)); + public string Value1149 + { + get => GetProperty(Value1149Property); + set => SetProperty(Value1149Property, value); + } + + + public static readonly PropertyInfo Value1150Property = RegisterProperty(nameof(Value1150)); + public string Value1150 + { + get => GetProperty(Value1150Property); + set => SetProperty(Value1150Property, value); + } + + + public static readonly PropertyInfo Value1151Property = RegisterProperty(nameof(Value1151)); + public string Value1151 + { + get => GetProperty(Value1151Property); + set => SetProperty(Value1151Property, value); + } + + + public static readonly PropertyInfo Value1152Property = RegisterProperty(nameof(Value1152)); + public string Value1152 + { + get => GetProperty(Value1152Property); + set => SetProperty(Value1152Property, value); + } + + + public static readonly PropertyInfo Value1153Property = RegisterProperty(nameof(Value1153)); + public string Value1153 + { + get => GetProperty(Value1153Property); + set => SetProperty(Value1153Property, value); + } + + + public static readonly PropertyInfo Value1154Property = RegisterProperty(nameof(Value1154)); + public string Value1154 + { + get => GetProperty(Value1154Property); + set => SetProperty(Value1154Property, value); + } + + + public static readonly PropertyInfo Value1155Property = RegisterProperty(nameof(Value1155)); + public string Value1155 + { + get => GetProperty(Value1155Property); + set => SetProperty(Value1155Property, value); + } + + + public static readonly PropertyInfo Value1156Property = RegisterProperty(nameof(Value1156)); + public string Value1156 + { + get => GetProperty(Value1156Property); + set => SetProperty(Value1156Property, value); + } + + + public static readonly PropertyInfo Value1157Property = RegisterProperty(nameof(Value1157)); + public string Value1157 + { + get => GetProperty(Value1157Property); + set => SetProperty(Value1157Property, value); + } + + + public static readonly PropertyInfo Value1158Property = RegisterProperty(nameof(Value1158)); + public string Value1158 + { + get => GetProperty(Value1158Property); + set => SetProperty(Value1158Property, value); + } + + + public static readonly PropertyInfo Value1159Property = RegisterProperty(nameof(Value1159)); + public string Value1159 + { + get => GetProperty(Value1159Property); + set => SetProperty(Value1159Property, value); + } + + + public static readonly PropertyInfo Value1160Property = RegisterProperty(nameof(Value1160)); + public string Value1160 + { + get => GetProperty(Value1160Property); + set => SetProperty(Value1160Property, value); + } + + + public static readonly PropertyInfo Value1161Property = RegisterProperty(nameof(Value1161)); + public string Value1161 + { + get => GetProperty(Value1161Property); + set => SetProperty(Value1161Property, value); + } + + + public static readonly PropertyInfo Value1162Property = RegisterProperty(nameof(Value1162)); + public string Value1162 + { + get => GetProperty(Value1162Property); + set => SetProperty(Value1162Property, value); + } + + + public static readonly PropertyInfo Value1163Property = RegisterProperty(nameof(Value1163)); + public string Value1163 + { + get => GetProperty(Value1163Property); + set => SetProperty(Value1163Property, value); + } + + + public static readonly PropertyInfo Value1164Property = RegisterProperty(nameof(Value1164)); + public string Value1164 + { + get => GetProperty(Value1164Property); + set => SetProperty(Value1164Property, value); + } + + + public static readonly PropertyInfo Value1165Property = RegisterProperty(nameof(Value1165)); + public string Value1165 + { + get => GetProperty(Value1165Property); + set => SetProperty(Value1165Property, value); + } + + + public static readonly PropertyInfo Value1166Property = RegisterProperty(nameof(Value1166)); + public string Value1166 + { + get => GetProperty(Value1166Property); + set => SetProperty(Value1166Property, value); + } + + + public static readonly PropertyInfo Value1167Property = RegisterProperty(nameof(Value1167)); + public string Value1167 + { + get => GetProperty(Value1167Property); + set => SetProperty(Value1167Property, value); + } + + + public static readonly PropertyInfo Value1168Property = RegisterProperty(nameof(Value1168)); + public string Value1168 + { + get => GetProperty(Value1168Property); + set => SetProperty(Value1168Property, value); + } + + + public static readonly PropertyInfo Value1169Property = RegisterProperty(nameof(Value1169)); + public string Value1169 + { + get => GetProperty(Value1169Property); + set => SetProperty(Value1169Property, value); + } + + + public static readonly PropertyInfo Value1170Property = RegisterProperty(nameof(Value1170)); + public string Value1170 + { + get => GetProperty(Value1170Property); + set => SetProperty(Value1170Property, value); + } + + + public static readonly PropertyInfo Value1171Property = RegisterProperty(nameof(Value1171)); + public string Value1171 + { + get => GetProperty(Value1171Property); + set => SetProperty(Value1171Property, value); + } + + + public static readonly PropertyInfo Value1172Property = RegisterProperty(nameof(Value1172)); + public string Value1172 + { + get => GetProperty(Value1172Property); + set => SetProperty(Value1172Property, value); + } + + + public static readonly PropertyInfo Value1173Property = RegisterProperty(nameof(Value1173)); + public string Value1173 + { + get => GetProperty(Value1173Property); + set => SetProperty(Value1173Property, value); + } + + + public static readonly PropertyInfo Value1174Property = RegisterProperty(nameof(Value1174)); + public string Value1174 + { + get => GetProperty(Value1174Property); + set => SetProperty(Value1174Property, value); + } + + + public static readonly PropertyInfo Value1175Property = RegisterProperty(nameof(Value1175)); + public string Value1175 + { + get => GetProperty(Value1175Property); + set => SetProperty(Value1175Property, value); + } + + + public static readonly PropertyInfo Value1176Property = RegisterProperty(nameof(Value1176)); + public string Value1176 + { + get => GetProperty(Value1176Property); + set => SetProperty(Value1176Property, value); + } + + + public static readonly PropertyInfo Value1177Property = RegisterProperty(nameof(Value1177)); + public string Value1177 + { + get => GetProperty(Value1177Property); + set => SetProperty(Value1177Property, value); + } + + + public static readonly PropertyInfo Value1178Property = RegisterProperty(nameof(Value1178)); + public string Value1178 + { + get => GetProperty(Value1178Property); + set => SetProperty(Value1178Property, value); + } + + + public static readonly PropertyInfo Value1179Property = RegisterProperty(nameof(Value1179)); + public string Value1179 + { + get => GetProperty(Value1179Property); + set => SetProperty(Value1179Property, value); + } + + + public static readonly PropertyInfo Value1180Property = RegisterProperty(nameof(Value1180)); + public string Value1180 + { + get => GetProperty(Value1180Property); + set => SetProperty(Value1180Property, value); + } + + + public static readonly PropertyInfo Value1181Property = RegisterProperty(nameof(Value1181)); + public string Value1181 + { + get => GetProperty(Value1181Property); + set => SetProperty(Value1181Property, value); + } + + + public static readonly PropertyInfo Value1182Property = RegisterProperty(nameof(Value1182)); + public string Value1182 + { + get => GetProperty(Value1182Property); + set => SetProperty(Value1182Property, value); + } + + + public static readonly PropertyInfo Value1183Property = RegisterProperty(nameof(Value1183)); + public string Value1183 + { + get => GetProperty(Value1183Property); + set => SetProperty(Value1183Property, value); + } + + + public static readonly PropertyInfo Value1184Property = RegisterProperty(nameof(Value1184)); + public string Value1184 + { + get => GetProperty(Value1184Property); + set => SetProperty(Value1184Property, value); + } + + + public static readonly PropertyInfo Value1185Property = RegisterProperty(nameof(Value1185)); + public string Value1185 + { + get => GetProperty(Value1185Property); + set => SetProperty(Value1185Property, value); + } + + + public static readonly PropertyInfo Value1186Property = RegisterProperty(nameof(Value1186)); + public string Value1186 + { + get => GetProperty(Value1186Property); + set => SetProperty(Value1186Property, value); + } + + + public static readonly PropertyInfo Value1187Property = RegisterProperty(nameof(Value1187)); + public string Value1187 + { + get => GetProperty(Value1187Property); + set => SetProperty(Value1187Property, value); + } + + + public static readonly PropertyInfo Value1188Property = RegisterProperty(nameof(Value1188)); + public string Value1188 + { + get => GetProperty(Value1188Property); + set => SetProperty(Value1188Property, value); + } + + + public static readonly PropertyInfo Value1189Property = RegisterProperty(nameof(Value1189)); + public string Value1189 + { + get => GetProperty(Value1189Property); + set => SetProperty(Value1189Property, value); + } + + + public static readonly PropertyInfo Value1190Property = RegisterProperty(nameof(Value1190)); + public string Value1190 + { + get => GetProperty(Value1190Property); + set => SetProperty(Value1190Property, value); + } + + + public static readonly PropertyInfo Value1191Property = RegisterProperty(nameof(Value1191)); + public string Value1191 + { + get => GetProperty(Value1191Property); + set => SetProperty(Value1191Property, value); + } + + + public static readonly PropertyInfo Value1192Property = RegisterProperty(nameof(Value1192)); + public string Value1192 + { + get => GetProperty(Value1192Property); + set => SetProperty(Value1192Property, value); + } + + + public static readonly PropertyInfo Value1193Property = RegisterProperty(nameof(Value1193)); + public string Value1193 + { + get => GetProperty(Value1193Property); + set => SetProperty(Value1193Property, value); + } + + + public static readonly PropertyInfo Value1194Property = RegisterProperty(nameof(Value1194)); + public string Value1194 + { + get => GetProperty(Value1194Property); + set => SetProperty(Value1194Property, value); + } + + + public static readonly PropertyInfo Value1195Property = RegisterProperty(nameof(Value1195)); + public string Value1195 + { + get => GetProperty(Value1195Property); + set => SetProperty(Value1195Property, value); + } + + + public static readonly PropertyInfo Value1196Property = RegisterProperty(nameof(Value1196)); + public string Value1196 + { + get => GetProperty(Value1196Property); + set => SetProperty(Value1196Property, value); + } + + + public static readonly PropertyInfo Value1197Property = RegisterProperty(nameof(Value1197)); + public string Value1197 + { + get => GetProperty(Value1197Property); + set => SetProperty(Value1197Property, value); + } + + + public static readonly PropertyInfo Value1198Property = RegisterProperty(nameof(Value1198)); + public string Value1198 + { + get => GetProperty(Value1198Property); + set => SetProperty(Value1198Property, value); + } + + + public static readonly PropertyInfo Value1199Property = RegisterProperty(nameof(Value1199)); + public string Value1199 + { + get => GetProperty(Value1199Property); + set => SetProperty(Value1199Property, value); + } + + + public static readonly PropertyInfo Value1200Property = RegisterProperty(nameof(Value1200)); + public string Value1200 + { + get => GetProperty(Value1200Property); + set => SetProperty(Value1200Property, value); + } + + + public static readonly PropertyInfo Value1201Property = RegisterProperty(nameof(Value1201)); + public string Value1201 + { + get => GetProperty(Value1201Property); + set => SetProperty(Value1201Property, value); + } + + + public static readonly PropertyInfo Value1202Property = RegisterProperty(nameof(Value1202)); + public string Value1202 + { + get => GetProperty(Value1202Property); + set => SetProperty(Value1202Property, value); + } + + + public static readonly PropertyInfo Value1203Property = RegisterProperty(nameof(Value1203)); + public string Value1203 + { + get => GetProperty(Value1203Property); + set => SetProperty(Value1203Property, value); + } + + + public static readonly PropertyInfo Value1204Property = RegisterProperty(nameof(Value1204)); + public string Value1204 + { + get => GetProperty(Value1204Property); + set => SetProperty(Value1204Property, value); + } + + + public static readonly PropertyInfo Value1205Property = RegisterProperty(nameof(Value1205)); + public string Value1205 + { + get => GetProperty(Value1205Property); + set => SetProperty(Value1205Property, value); + } + + + public static readonly PropertyInfo Value1206Property = RegisterProperty(nameof(Value1206)); + public string Value1206 + { + get => GetProperty(Value1206Property); + set => SetProperty(Value1206Property, value); + } + + + public static readonly PropertyInfo Value1207Property = RegisterProperty(nameof(Value1207)); + public string Value1207 + { + get => GetProperty(Value1207Property); + set => SetProperty(Value1207Property, value); + } + + + public static readonly PropertyInfo Value1208Property = RegisterProperty(nameof(Value1208)); + public string Value1208 + { + get => GetProperty(Value1208Property); + set => SetProperty(Value1208Property, value); + } + + + public static readonly PropertyInfo Value1209Property = RegisterProperty(nameof(Value1209)); + public string Value1209 + { + get => GetProperty(Value1209Property); + set => SetProperty(Value1209Property, value); + } + + + public static readonly PropertyInfo Value1210Property = RegisterProperty(nameof(Value1210)); + public string Value1210 + { + get => GetProperty(Value1210Property); + set => SetProperty(Value1210Property, value); + } + + + public static readonly PropertyInfo Value1211Property = RegisterProperty(nameof(Value1211)); + public string Value1211 + { + get => GetProperty(Value1211Property); + set => SetProperty(Value1211Property, value); + } + + + public static readonly PropertyInfo Value1212Property = RegisterProperty(nameof(Value1212)); + public string Value1212 + { + get => GetProperty(Value1212Property); + set => SetProperty(Value1212Property, value); + } + + + public static readonly PropertyInfo Value1213Property = RegisterProperty(nameof(Value1213)); + public string Value1213 + { + get => GetProperty(Value1213Property); + set => SetProperty(Value1213Property, value); + } + + + public static readonly PropertyInfo Value1214Property = RegisterProperty(nameof(Value1214)); + public string Value1214 + { + get => GetProperty(Value1214Property); + set => SetProperty(Value1214Property, value); + } + + + public static readonly PropertyInfo Value1215Property = RegisterProperty(nameof(Value1215)); + public string Value1215 + { + get => GetProperty(Value1215Property); + set => SetProperty(Value1215Property, value); + } + + + public static readonly PropertyInfo Value1216Property = RegisterProperty(nameof(Value1216)); + public string Value1216 + { + get => GetProperty(Value1216Property); + set => SetProperty(Value1216Property, value); + } + + + public static readonly PropertyInfo Value1217Property = RegisterProperty(nameof(Value1217)); + public string Value1217 + { + get => GetProperty(Value1217Property); + set => SetProperty(Value1217Property, value); + } + + + public static readonly PropertyInfo Value1218Property = RegisterProperty(nameof(Value1218)); + public string Value1218 + { + get => GetProperty(Value1218Property); + set => SetProperty(Value1218Property, value); + } + + + public static readonly PropertyInfo Value1219Property = RegisterProperty(nameof(Value1219)); + public string Value1219 + { + get => GetProperty(Value1219Property); + set => SetProperty(Value1219Property, value); + } + + + public static readonly PropertyInfo Value1220Property = RegisterProperty(nameof(Value1220)); + public string Value1220 + { + get => GetProperty(Value1220Property); + set => SetProperty(Value1220Property, value); + } + + + public static readonly PropertyInfo Value1221Property = RegisterProperty(nameof(Value1221)); + public string Value1221 + { + get => GetProperty(Value1221Property); + set => SetProperty(Value1221Property, value); + } + + + public static readonly PropertyInfo Value1222Property = RegisterProperty(nameof(Value1222)); + public string Value1222 + { + get => GetProperty(Value1222Property); + set => SetProperty(Value1222Property, value); + } + + + public static readonly PropertyInfo Value1223Property = RegisterProperty(nameof(Value1223)); + public string Value1223 + { + get => GetProperty(Value1223Property); + set => SetProperty(Value1223Property, value); + } + + + public static readonly PropertyInfo Value1224Property = RegisterProperty(nameof(Value1224)); + public string Value1224 + { + get => GetProperty(Value1224Property); + set => SetProperty(Value1224Property, value); + } + + + public static readonly PropertyInfo Value1225Property = RegisterProperty(nameof(Value1225)); + public string Value1225 + { + get => GetProperty(Value1225Property); + set => SetProperty(Value1225Property, value); + } + + + public static readonly PropertyInfo Value1226Property = RegisterProperty(nameof(Value1226)); + public string Value1226 + { + get => GetProperty(Value1226Property); + set => SetProperty(Value1226Property, value); + } + + + public static readonly PropertyInfo Value1227Property = RegisterProperty(nameof(Value1227)); + public string Value1227 + { + get => GetProperty(Value1227Property); + set => SetProperty(Value1227Property, value); + } + + + public static readonly PropertyInfo Value1228Property = RegisterProperty(nameof(Value1228)); + public string Value1228 + { + get => GetProperty(Value1228Property); + set => SetProperty(Value1228Property, value); + } + + + public static readonly PropertyInfo Value1229Property = RegisterProperty(nameof(Value1229)); + public string Value1229 + { + get => GetProperty(Value1229Property); + set => SetProperty(Value1229Property, value); + } + + + public static readonly PropertyInfo Value1230Property = RegisterProperty(nameof(Value1230)); + public string Value1230 + { + get => GetProperty(Value1230Property); + set => SetProperty(Value1230Property, value); + } + + + public static readonly PropertyInfo Value1231Property = RegisterProperty(nameof(Value1231)); + public string Value1231 + { + get => GetProperty(Value1231Property); + set => SetProperty(Value1231Property, value); + } + + + public static readonly PropertyInfo Value1232Property = RegisterProperty(nameof(Value1232)); + public string Value1232 + { + get => GetProperty(Value1232Property); + set => SetProperty(Value1232Property, value); + } + + + public static readonly PropertyInfo Value1233Property = RegisterProperty(nameof(Value1233)); + public string Value1233 + { + get => GetProperty(Value1233Property); + set => SetProperty(Value1233Property, value); + } + + + public static readonly PropertyInfo Value1234Property = RegisterProperty(nameof(Value1234)); + public string Value1234 + { + get => GetProperty(Value1234Property); + set => SetProperty(Value1234Property, value); + } + + + public static readonly PropertyInfo Value1235Property = RegisterProperty(nameof(Value1235)); + public string Value1235 + { + get => GetProperty(Value1235Property); + set => SetProperty(Value1235Property, value); + } + + + public static readonly PropertyInfo Value1236Property = RegisterProperty(nameof(Value1236)); + public string Value1236 + { + get => GetProperty(Value1236Property); + set => SetProperty(Value1236Property, value); + } + + + public static readonly PropertyInfo Value1237Property = RegisterProperty(nameof(Value1237)); + public string Value1237 + { + get => GetProperty(Value1237Property); + set => SetProperty(Value1237Property, value); + } + + + public static readonly PropertyInfo Value1238Property = RegisterProperty(nameof(Value1238)); + public string Value1238 + { + get => GetProperty(Value1238Property); + set => SetProperty(Value1238Property, value); + } + + + public static readonly PropertyInfo Value1239Property = RegisterProperty(nameof(Value1239)); + public string Value1239 + { + get => GetProperty(Value1239Property); + set => SetProperty(Value1239Property, value); + } + + + public static readonly PropertyInfo Value1240Property = RegisterProperty(nameof(Value1240)); + public string Value1240 + { + get => GetProperty(Value1240Property); + set => SetProperty(Value1240Property, value); + } + + + public static readonly PropertyInfo Value1241Property = RegisterProperty(nameof(Value1241)); + public string Value1241 + { + get => GetProperty(Value1241Property); + set => SetProperty(Value1241Property, value); + } + + + public static readonly PropertyInfo Value1242Property = RegisterProperty(nameof(Value1242)); + public string Value1242 + { + get => GetProperty(Value1242Property); + set => SetProperty(Value1242Property, value); + } + + + public static readonly PropertyInfo Value1243Property = RegisterProperty(nameof(Value1243)); + public string Value1243 + { + get => GetProperty(Value1243Property); + set => SetProperty(Value1243Property, value); + } + + + public static readonly PropertyInfo Value1244Property = RegisterProperty(nameof(Value1244)); + public string Value1244 + { + get => GetProperty(Value1244Property); + set => SetProperty(Value1244Property, value); + } + + + public static readonly PropertyInfo Value1245Property = RegisterProperty(nameof(Value1245)); + public string Value1245 + { + get => GetProperty(Value1245Property); + set => SetProperty(Value1245Property, value); + } + + + public static readonly PropertyInfo Value1246Property = RegisterProperty(nameof(Value1246)); + public string Value1246 + { + get => GetProperty(Value1246Property); + set => SetProperty(Value1246Property, value); + } + + + public static readonly PropertyInfo Value1247Property = RegisterProperty(nameof(Value1247)); + public string Value1247 + { + get => GetProperty(Value1247Property); + set => SetProperty(Value1247Property, value); + } + + + public static readonly PropertyInfo Value1248Property = RegisterProperty(nameof(Value1248)); + public string Value1248 + { + get => GetProperty(Value1248Property); + set => SetProperty(Value1248Property, value); + } + + + public static readonly PropertyInfo Value1249Property = RegisterProperty(nameof(Value1249)); + public string Value1249 + { + get => GetProperty(Value1249Property); + set => SetProperty(Value1249Property, value); + } + + + public static readonly PropertyInfo Value1250Property = RegisterProperty(nameof(Value1250)); + public string Value1250 + { + get => GetProperty(Value1250Property); + set => SetProperty(Value1250Property, value); + } + + + public static readonly PropertyInfo Value1251Property = RegisterProperty(nameof(Value1251)); + public string Value1251 + { + get => GetProperty(Value1251Property); + set => SetProperty(Value1251Property, value); + } + + + public static readonly PropertyInfo Value1252Property = RegisterProperty(nameof(Value1252)); + public string Value1252 + { + get => GetProperty(Value1252Property); + set => SetProperty(Value1252Property, value); + } + + + public static readonly PropertyInfo Value1253Property = RegisterProperty(nameof(Value1253)); + public string Value1253 + { + get => GetProperty(Value1253Property); + set => SetProperty(Value1253Property, value); + } + + + public static readonly PropertyInfo Value1254Property = RegisterProperty(nameof(Value1254)); + public string Value1254 + { + get => GetProperty(Value1254Property); + set => SetProperty(Value1254Property, value); + } + + + public static readonly PropertyInfo Value1255Property = RegisterProperty(nameof(Value1255)); + public string Value1255 + { + get => GetProperty(Value1255Property); + set => SetProperty(Value1255Property, value); + } + + + public static readonly PropertyInfo Value1256Property = RegisterProperty(nameof(Value1256)); + public string Value1256 + { + get => GetProperty(Value1256Property); + set => SetProperty(Value1256Property, value); + } + + + public static readonly PropertyInfo Value1257Property = RegisterProperty(nameof(Value1257)); + public string Value1257 + { + get => GetProperty(Value1257Property); + set => SetProperty(Value1257Property, value); + } + + + public static readonly PropertyInfo Value1258Property = RegisterProperty(nameof(Value1258)); + public string Value1258 + { + get => GetProperty(Value1258Property); + set => SetProperty(Value1258Property, value); + } + + + public static readonly PropertyInfo Value1259Property = RegisterProperty(nameof(Value1259)); + public string Value1259 + { + get => GetProperty(Value1259Property); + set => SetProperty(Value1259Property, value); + } + + + public static readonly PropertyInfo Value1260Property = RegisterProperty(nameof(Value1260)); + public string Value1260 + { + get => GetProperty(Value1260Property); + set => SetProperty(Value1260Property, value); + } + + + public static readonly PropertyInfo Value1261Property = RegisterProperty(nameof(Value1261)); + public string Value1261 + { + get => GetProperty(Value1261Property); + set => SetProperty(Value1261Property, value); + } + + + public static readonly PropertyInfo Value1262Property = RegisterProperty(nameof(Value1262)); + public string Value1262 + { + get => GetProperty(Value1262Property); + set => SetProperty(Value1262Property, value); + } + + + public static readonly PropertyInfo Value1263Property = RegisterProperty(nameof(Value1263)); + public string Value1263 + { + get => GetProperty(Value1263Property); + set => SetProperty(Value1263Property, value); + } + + + public static readonly PropertyInfo Value1264Property = RegisterProperty(nameof(Value1264)); + public string Value1264 + { + get => GetProperty(Value1264Property); + set => SetProperty(Value1264Property, value); + } + + + public static readonly PropertyInfo Value1265Property = RegisterProperty(nameof(Value1265)); + public string Value1265 + { + get => GetProperty(Value1265Property); + set => SetProperty(Value1265Property, value); + } + + + public static readonly PropertyInfo Value1266Property = RegisterProperty(nameof(Value1266)); + public string Value1266 + { + get => GetProperty(Value1266Property); + set => SetProperty(Value1266Property, value); + } + + + public static readonly PropertyInfo Value1267Property = RegisterProperty(nameof(Value1267)); + public string Value1267 + { + get => GetProperty(Value1267Property); + set => SetProperty(Value1267Property, value); + } + + + public static readonly PropertyInfo Value1268Property = RegisterProperty(nameof(Value1268)); + public string Value1268 + { + get => GetProperty(Value1268Property); + set => SetProperty(Value1268Property, value); + } + + + public static readonly PropertyInfo Value1269Property = RegisterProperty(nameof(Value1269)); + public string Value1269 + { + get => GetProperty(Value1269Property); + set => SetProperty(Value1269Property, value); + } + + + public static readonly PropertyInfo Value1270Property = RegisterProperty(nameof(Value1270)); + public string Value1270 + { + get => GetProperty(Value1270Property); + set => SetProperty(Value1270Property, value); + } + + + public static readonly PropertyInfo Value1271Property = RegisterProperty(nameof(Value1271)); + public string Value1271 + { + get => GetProperty(Value1271Property); + set => SetProperty(Value1271Property, value); + } + + + public static readonly PropertyInfo Value1272Property = RegisterProperty(nameof(Value1272)); + public string Value1272 + { + get => GetProperty(Value1272Property); + set => SetProperty(Value1272Property, value); + } + + + public static readonly PropertyInfo Value1273Property = RegisterProperty(nameof(Value1273)); + public string Value1273 + { + get => GetProperty(Value1273Property); + set => SetProperty(Value1273Property, value); + } + + + public static readonly PropertyInfo Value1274Property = RegisterProperty(nameof(Value1274)); + public string Value1274 + { + get => GetProperty(Value1274Property); + set => SetProperty(Value1274Property, value); + } + + + public static readonly PropertyInfo Value1275Property = RegisterProperty(nameof(Value1275)); + public string Value1275 + { + get => GetProperty(Value1275Property); + set => SetProperty(Value1275Property, value); + } + + + public static readonly PropertyInfo Value1276Property = RegisterProperty(nameof(Value1276)); + public string Value1276 + { + get => GetProperty(Value1276Property); + set => SetProperty(Value1276Property, value); + } + + + public static readonly PropertyInfo Value1277Property = RegisterProperty(nameof(Value1277)); + public string Value1277 + { + get => GetProperty(Value1277Property); + set => SetProperty(Value1277Property, value); + } + + + public static readonly PropertyInfo Value1278Property = RegisterProperty(nameof(Value1278)); + public string Value1278 + { + get => GetProperty(Value1278Property); + set => SetProperty(Value1278Property, value); + } + + + public static readonly PropertyInfo Value1279Property = RegisterProperty(nameof(Value1279)); + public string Value1279 + { + get => GetProperty(Value1279Property); + set => SetProperty(Value1279Property, value); + } + + + public static readonly PropertyInfo Value1280Property = RegisterProperty(nameof(Value1280)); + public string Value1280 + { + get => GetProperty(Value1280Property); + set => SetProperty(Value1280Property, value); + } + + + public static readonly PropertyInfo Value1281Property = RegisterProperty(nameof(Value1281)); + public string Value1281 + { + get => GetProperty(Value1281Property); + set => SetProperty(Value1281Property, value); + } + + + public static readonly PropertyInfo Value1282Property = RegisterProperty(nameof(Value1282)); + public string Value1282 + { + get => GetProperty(Value1282Property); + set => SetProperty(Value1282Property, value); + } + + + public static readonly PropertyInfo Value1283Property = RegisterProperty(nameof(Value1283)); + public string Value1283 + { + get => GetProperty(Value1283Property); + set => SetProperty(Value1283Property, value); + } + + + public static readonly PropertyInfo Value1284Property = RegisterProperty(nameof(Value1284)); + public string Value1284 + { + get => GetProperty(Value1284Property); + set => SetProperty(Value1284Property, value); + } + + + public static readonly PropertyInfo Value1285Property = RegisterProperty(nameof(Value1285)); + public string Value1285 + { + get => GetProperty(Value1285Property); + set => SetProperty(Value1285Property, value); + } + + + public static readonly PropertyInfo Value1286Property = RegisterProperty(nameof(Value1286)); + public string Value1286 + { + get => GetProperty(Value1286Property); + set => SetProperty(Value1286Property, value); + } + + + public static readonly PropertyInfo Value1287Property = RegisterProperty(nameof(Value1287)); + public string Value1287 + { + get => GetProperty(Value1287Property); + set => SetProperty(Value1287Property, value); + } + + + public static readonly PropertyInfo Value1288Property = RegisterProperty(nameof(Value1288)); + public string Value1288 + { + get => GetProperty(Value1288Property); + set => SetProperty(Value1288Property, value); + } + + + public static readonly PropertyInfo Value1289Property = RegisterProperty(nameof(Value1289)); + public string Value1289 + { + get => GetProperty(Value1289Property); + set => SetProperty(Value1289Property, value); + } + + + public static readonly PropertyInfo Value1290Property = RegisterProperty(nameof(Value1290)); + public string Value1290 + { + get => GetProperty(Value1290Property); + set => SetProperty(Value1290Property, value); + } + + + public static readonly PropertyInfo Value1291Property = RegisterProperty(nameof(Value1291)); + public string Value1291 + { + get => GetProperty(Value1291Property); + set => SetProperty(Value1291Property, value); + } + + + public static readonly PropertyInfo Value1292Property = RegisterProperty(nameof(Value1292)); + public string Value1292 + { + get => GetProperty(Value1292Property); + set => SetProperty(Value1292Property, value); + } + + + public static readonly PropertyInfo Value1293Property = RegisterProperty(nameof(Value1293)); + public string Value1293 + { + get => GetProperty(Value1293Property); + set => SetProperty(Value1293Property, value); + } + + + public static readonly PropertyInfo Value1294Property = RegisterProperty(nameof(Value1294)); + public string Value1294 + { + get => GetProperty(Value1294Property); + set => SetProperty(Value1294Property, value); + } + + + public static readonly PropertyInfo Value1295Property = RegisterProperty(nameof(Value1295)); + public string Value1295 + { + get => GetProperty(Value1295Property); + set => SetProperty(Value1295Property, value); + } + + + public static readonly PropertyInfo Value1296Property = RegisterProperty(nameof(Value1296)); + public string Value1296 + { + get => GetProperty(Value1296Property); + set => SetProperty(Value1296Property, value); + } + + + public static readonly PropertyInfo Value1297Property = RegisterProperty(nameof(Value1297)); + public string Value1297 + { + get => GetProperty(Value1297Property); + set => SetProperty(Value1297Property, value); + } + + + public static readonly PropertyInfo Value1298Property = RegisterProperty(nameof(Value1298)); + public string Value1298 + { + get => GetProperty(Value1298Property); + set => SetProperty(Value1298Property, value); + } + + + public static readonly PropertyInfo Value1299Property = RegisterProperty(nameof(Value1299)); + public string Value1299 + { + get => GetProperty(Value1299Property); + set => SetProperty(Value1299Property, value); + } + + + public static readonly PropertyInfo Value1300Property = RegisterProperty(nameof(Value1300)); + public string Value1300 + { + get => GetProperty(Value1300Property); + set => SetProperty(Value1300Property, value); + } + + + public static readonly PropertyInfo Value1301Property = RegisterProperty(nameof(Value1301)); + public string Value1301 + { + get => GetProperty(Value1301Property); + set => SetProperty(Value1301Property, value); + } + + + public static readonly PropertyInfo Value1302Property = RegisterProperty(nameof(Value1302)); + public string Value1302 + { + get => GetProperty(Value1302Property); + set => SetProperty(Value1302Property, value); + } + + + public static readonly PropertyInfo Value1303Property = RegisterProperty(nameof(Value1303)); + public string Value1303 + { + get => GetProperty(Value1303Property); + set => SetProperty(Value1303Property, value); + } + + + public static readonly PropertyInfo Value1304Property = RegisterProperty(nameof(Value1304)); + public string Value1304 + { + get => GetProperty(Value1304Property); + set => SetProperty(Value1304Property, value); + } + + + public static readonly PropertyInfo Value1305Property = RegisterProperty(nameof(Value1305)); + public string Value1305 + { + get => GetProperty(Value1305Property); + set => SetProperty(Value1305Property, value); + } + + + public static readonly PropertyInfo Value1306Property = RegisterProperty(nameof(Value1306)); + public string Value1306 + { + get => GetProperty(Value1306Property); + set => SetProperty(Value1306Property, value); + } + + + public static readonly PropertyInfo Value1307Property = RegisterProperty(nameof(Value1307)); + public string Value1307 + { + get => GetProperty(Value1307Property); + set => SetProperty(Value1307Property, value); + } + + + public static readonly PropertyInfo Value1308Property = RegisterProperty(nameof(Value1308)); + public string Value1308 + { + get => GetProperty(Value1308Property); + set => SetProperty(Value1308Property, value); + } + + + public static readonly PropertyInfo Value1309Property = RegisterProperty(nameof(Value1309)); + public string Value1309 + { + get => GetProperty(Value1309Property); + set => SetProperty(Value1309Property, value); + } + + + public static readonly PropertyInfo Value1310Property = RegisterProperty(nameof(Value1310)); + public string Value1310 + { + get => GetProperty(Value1310Property); + set => SetProperty(Value1310Property, value); + } + + + public static readonly PropertyInfo Value1311Property = RegisterProperty(nameof(Value1311)); + public string Value1311 + { + get => GetProperty(Value1311Property); + set => SetProperty(Value1311Property, value); + } + + + public static readonly PropertyInfo Value1312Property = RegisterProperty(nameof(Value1312)); + public string Value1312 + { + get => GetProperty(Value1312Property); + set => SetProperty(Value1312Property, value); + } + + + public static readonly PropertyInfo Value1313Property = RegisterProperty(nameof(Value1313)); + public string Value1313 + { + get => GetProperty(Value1313Property); + set => SetProperty(Value1313Property, value); + } + + + public static readonly PropertyInfo Value1314Property = RegisterProperty(nameof(Value1314)); + public string Value1314 + { + get => GetProperty(Value1314Property); + set => SetProperty(Value1314Property, value); + } + + + public static readonly PropertyInfo Value1315Property = RegisterProperty(nameof(Value1315)); + public string Value1315 + { + get => GetProperty(Value1315Property); + set => SetProperty(Value1315Property, value); + } + + + public static readonly PropertyInfo Value1316Property = RegisterProperty(nameof(Value1316)); + public string Value1316 + { + get => GetProperty(Value1316Property); + set => SetProperty(Value1316Property, value); + } + + + public static readonly PropertyInfo Value1317Property = RegisterProperty(nameof(Value1317)); + public string Value1317 + { + get => GetProperty(Value1317Property); + set => SetProperty(Value1317Property, value); + } + + + public static readonly PropertyInfo Value1318Property = RegisterProperty(nameof(Value1318)); + public string Value1318 + { + get => GetProperty(Value1318Property); + set => SetProperty(Value1318Property, value); + } + + + public static readonly PropertyInfo Value1319Property = RegisterProperty(nameof(Value1319)); + public string Value1319 + { + get => GetProperty(Value1319Property); + set => SetProperty(Value1319Property, value); + } + + + public static readonly PropertyInfo Value1320Property = RegisterProperty(nameof(Value1320)); + public string Value1320 + { + get => GetProperty(Value1320Property); + set => SetProperty(Value1320Property, value); + } + + + public static readonly PropertyInfo Value1321Property = RegisterProperty(nameof(Value1321)); + public string Value1321 + { + get => GetProperty(Value1321Property); + set => SetProperty(Value1321Property, value); + } + + + public static readonly PropertyInfo Value1322Property = RegisterProperty(nameof(Value1322)); + public string Value1322 + { + get => GetProperty(Value1322Property); + set => SetProperty(Value1322Property, value); + } + + + public static readonly PropertyInfo Value1323Property = RegisterProperty(nameof(Value1323)); + public string Value1323 + { + get => GetProperty(Value1323Property); + set => SetProperty(Value1323Property, value); + } + + + public static readonly PropertyInfo Value1324Property = RegisterProperty(nameof(Value1324)); + public string Value1324 + { + get => GetProperty(Value1324Property); + set => SetProperty(Value1324Property, value); + } + + + public static readonly PropertyInfo Value1325Property = RegisterProperty(nameof(Value1325)); + public string Value1325 + { + get => GetProperty(Value1325Property); + set => SetProperty(Value1325Property, value); + } + + + public static readonly PropertyInfo Value1326Property = RegisterProperty(nameof(Value1326)); + public string Value1326 + { + get => GetProperty(Value1326Property); + set => SetProperty(Value1326Property, value); + } + + + public static readonly PropertyInfo Value1327Property = RegisterProperty(nameof(Value1327)); + public string Value1327 + { + get => GetProperty(Value1327Property); + set => SetProperty(Value1327Property, value); + } + + + public static readonly PropertyInfo Value1328Property = RegisterProperty(nameof(Value1328)); + public string Value1328 + { + get => GetProperty(Value1328Property); + set => SetProperty(Value1328Property, value); + } + + + public static readonly PropertyInfo Value1329Property = RegisterProperty(nameof(Value1329)); + public string Value1329 + { + get => GetProperty(Value1329Property); + set => SetProperty(Value1329Property, value); + } + + + public static readonly PropertyInfo Value1330Property = RegisterProperty(nameof(Value1330)); + public string Value1330 + { + get => GetProperty(Value1330Property); + set => SetProperty(Value1330Property, value); + } + + + public static readonly PropertyInfo Value1331Property = RegisterProperty(nameof(Value1331)); + public string Value1331 + { + get => GetProperty(Value1331Property); + set => SetProperty(Value1331Property, value); + } + + + public static readonly PropertyInfo Value1332Property = RegisterProperty(nameof(Value1332)); + public string Value1332 + { + get => GetProperty(Value1332Property); + set => SetProperty(Value1332Property, value); + } + + + public static readonly PropertyInfo Value1333Property = RegisterProperty(nameof(Value1333)); + public string Value1333 + { + get => GetProperty(Value1333Property); + set => SetProperty(Value1333Property, value); + } + + + public static readonly PropertyInfo Value1334Property = RegisterProperty(nameof(Value1334)); + public string Value1334 + { + get => GetProperty(Value1334Property); + set => SetProperty(Value1334Property, value); + } + + + public static readonly PropertyInfo Value1335Property = RegisterProperty(nameof(Value1335)); + public string Value1335 + { + get => GetProperty(Value1335Property); + set => SetProperty(Value1335Property, value); + } + + + public static readonly PropertyInfo Value1336Property = RegisterProperty(nameof(Value1336)); + public string Value1336 + { + get => GetProperty(Value1336Property); + set => SetProperty(Value1336Property, value); + } + + + public static readonly PropertyInfo Value1337Property = RegisterProperty(nameof(Value1337)); + public string Value1337 + { + get => GetProperty(Value1337Property); + set => SetProperty(Value1337Property, value); + } + + + public static readonly PropertyInfo Value1338Property = RegisterProperty(nameof(Value1338)); + public string Value1338 + { + get => GetProperty(Value1338Property); + set => SetProperty(Value1338Property, value); + } + + + public static readonly PropertyInfo Value1339Property = RegisterProperty(nameof(Value1339)); + public string Value1339 + { + get => GetProperty(Value1339Property); + set => SetProperty(Value1339Property, value); + } + + + public static readonly PropertyInfo Value1340Property = RegisterProperty(nameof(Value1340)); + public string Value1340 + { + get => GetProperty(Value1340Property); + set => SetProperty(Value1340Property, value); + } + + + public static readonly PropertyInfo Value1341Property = RegisterProperty(nameof(Value1341)); + public string Value1341 + { + get => GetProperty(Value1341Property); + set => SetProperty(Value1341Property, value); + } + + + public static readonly PropertyInfo Value1342Property = RegisterProperty(nameof(Value1342)); + public string Value1342 + { + get => GetProperty(Value1342Property); + set => SetProperty(Value1342Property, value); + } + + + public static readonly PropertyInfo Value1343Property = RegisterProperty(nameof(Value1343)); + public string Value1343 + { + get => GetProperty(Value1343Property); + set => SetProperty(Value1343Property, value); + } + + + public static readonly PropertyInfo Value1344Property = RegisterProperty(nameof(Value1344)); + public string Value1344 + { + get => GetProperty(Value1344Property); + set => SetProperty(Value1344Property, value); + } + + + public static readonly PropertyInfo Value1345Property = RegisterProperty(nameof(Value1345)); + public string Value1345 + { + get => GetProperty(Value1345Property); + set => SetProperty(Value1345Property, value); + } + + + public static readonly PropertyInfo Value1346Property = RegisterProperty(nameof(Value1346)); + public string Value1346 + { + get => GetProperty(Value1346Property); + set => SetProperty(Value1346Property, value); + } + + + public static readonly PropertyInfo Value1347Property = RegisterProperty(nameof(Value1347)); + public string Value1347 + { + get => GetProperty(Value1347Property); + set => SetProperty(Value1347Property, value); + } + + + public static readonly PropertyInfo Value1348Property = RegisterProperty(nameof(Value1348)); + public string Value1348 + { + get => GetProperty(Value1348Property); + set => SetProperty(Value1348Property, value); + } + + + public static readonly PropertyInfo Value1349Property = RegisterProperty(nameof(Value1349)); + public string Value1349 + { + get => GetProperty(Value1349Property); + set => SetProperty(Value1349Property, value); + } + + + public static readonly PropertyInfo Value1350Property = RegisterProperty(nameof(Value1350)); + public string Value1350 + { + get => GetProperty(Value1350Property); + set => SetProperty(Value1350Property, value); + } + + + public static readonly PropertyInfo Value1351Property = RegisterProperty(nameof(Value1351)); + public string Value1351 + { + get => GetProperty(Value1351Property); + set => SetProperty(Value1351Property, value); + } + + + public static readonly PropertyInfo Value1352Property = RegisterProperty(nameof(Value1352)); + public string Value1352 + { + get => GetProperty(Value1352Property); + set => SetProperty(Value1352Property, value); + } + + + public static readonly PropertyInfo Value1353Property = RegisterProperty(nameof(Value1353)); + public string Value1353 + { + get => GetProperty(Value1353Property); + set => SetProperty(Value1353Property, value); + } + + + public static readonly PropertyInfo Value1354Property = RegisterProperty(nameof(Value1354)); + public string Value1354 + { + get => GetProperty(Value1354Property); + set => SetProperty(Value1354Property, value); + } + + + public static readonly PropertyInfo Value1355Property = RegisterProperty(nameof(Value1355)); + public string Value1355 + { + get => GetProperty(Value1355Property); + set => SetProperty(Value1355Property, value); + } + + + public static readonly PropertyInfo Value1356Property = RegisterProperty(nameof(Value1356)); + public string Value1356 + { + get => GetProperty(Value1356Property); + set => SetProperty(Value1356Property, value); + } + + + public static readonly PropertyInfo Value1357Property = RegisterProperty(nameof(Value1357)); + public string Value1357 + { + get => GetProperty(Value1357Property); + set => SetProperty(Value1357Property, value); + } + + + public static readonly PropertyInfo Value1358Property = RegisterProperty(nameof(Value1358)); + public string Value1358 + { + get => GetProperty(Value1358Property); + set => SetProperty(Value1358Property, value); + } + + + public static readonly PropertyInfo Value1359Property = RegisterProperty(nameof(Value1359)); + public string Value1359 + { + get => GetProperty(Value1359Property); + set => SetProperty(Value1359Property, value); + } + + + public static readonly PropertyInfo Value1360Property = RegisterProperty(nameof(Value1360)); + public string Value1360 + { + get => GetProperty(Value1360Property); + set => SetProperty(Value1360Property, value); + } + + + public static readonly PropertyInfo Value1361Property = RegisterProperty(nameof(Value1361)); + public string Value1361 + { + get => GetProperty(Value1361Property); + set => SetProperty(Value1361Property, value); + } + + + public static readonly PropertyInfo Value1362Property = RegisterProperty(nameof(Value1362)); + public string Value1362 + { + get => GetProperty(Value1362Property); + set => SetProperty(Value1362Property, value); + } + + + public static readonly PropertyInfo Value1363Property = RegisterProperty(nameof(Value1363)); + public string Value1363 + { + get => GetProperty(Value1363Property); + set => SetProperty(Value1363Property, value); + } + + + public static readonly PropertyInfo Value1364Property = RegisterProperty(nameof(Value1364)); + public string Value1364 + { + get => GetProperty(Value1364Property); + set => SetProperty(Value1364Property, value); + } + + + public static readonly PropertyInfo Value1365Property = RegisterProperty(nameof(Value1365)); + public string Value1365 + { + get => GetProperty(Value1365Property); + set => SetProperty(Value1365Property, value); + } + + + public static readonly PropertyInfo Value1366Property = RegisterProperty(nameof(Value1366)); + public string Value1366 + { + get => GetProperty(Value1366Property); + set => SetProperty(Value1366Property, value); + } + + + public static readonly PropertyInfo Value1367Property = RegisterProperty(nameof(Value1367)); + public string Value1367 + { + get => GetProperty(Value1367Property); + set => SetProperty(Value1367Property, value); + } + + + public static readonly PropertyInfo Value1368Property = RegisterProperty(nameof(Value1368)); + public string Value1368 + { + get => GetProperty(Value1368Property); + set => SetProperty(Value1368Property, value); + } + + + public static readonly PropertyInfo Value1369Property = RegisterProperty(nameof(Value1369)); + public string Value1369 + { + get => GetProperty(Value1369Property); + set => SetProperty(Value1369Property, value); + } + + + public static readonly PropertyInfo Value1370Property = RegisterProperty(nameof(Value1370)); + public string Value1370 + { + get => GetProperty(Value1370Property); + set => SetProperty(Value1370Property, value); + } + + + public static readonly PropertyInfo Value1371Property = RegisterProperty(nameof(Value1371)); + public string Value1371 + { + get => GetProperty(Value1371Property); + set => SetProperty(Value1371Property, value); + } + + + public static readonly PropertyInfo Value1372Property = RegisterProperty(nameof(Value1372)); + public string Value1372 + { + get => GetProperty(Value1372Property); + set => SetProperty(Value1372Property, value); + } + + + public static readonly PropertyInfo Value1373Property = RegisterProperty(nameof(Value1373)); + public string Value1373 + { + get => GetProperty(Value1373Property); + set => SetProperty(Value1373Property, value); + } + + + public static readonly PropertyInfo Value1374Property = RegisterProperty(nameof(Value1374)); + public string Value1374 + { + get => GetProperty(Value1374Property); + set => SetProperty(Value1374Property, value); + } + + + public static readonly PropertyInfo Value1375Property = RegisterProperty(nameof(Value1375)); + public string Value1375 + { + get => GetProperty(Value1375Property); + set => SetProperty(Value1375Property, value); + } + + + public static readonly PropertyInfo Value1376Property = RegisterProperty(nameof(Value1376)); + public string Value1376 + { + get => GetProperty(Value1376Property); + set => SetProperty(Value1376Property, value); + } + + + public static readonly PropertyInfo Value1377Property = RegisterProperty(nameof(Value1377)); + public string Value1377 + { + get => GetProperty(Value1377Property); + set => SetProperty(Value1377Property, value); + } + + + public static readonly PropertyInfo Value1378Property = RegisterProperty(nameof(Value1378)); + public string Value1378 + { + get => GetProperty(Value1378Property); + set => SetProperty(Value1378Property, value); + } + + + public static readonly PropertyInfo Value1379Property = RegisterProperty(nameof(Value1379)); + public string Value1379 + { + get => GetProperty(Value1379Property); + set => SetProperty(Value1379Property, value); + } + + + public static readonly PropertyInfo Value1380Property = RegisterProperty(nameof(Value1380)); + public string Value1380 + { + get => GetProperty(Value1380Property); + set => SetProperty(Value1380Property, value); + } + + + public static readonly PropertyInfo Value1381Property = RegisterProperty(nameof(Value1381)); + public string Value1381 + { + get => GetProperty(Value1381Property); + set => SetProperty(Value1381Property, value); + } + + + public static readonly PropertyInfo Value1382Property = RegisterProperty(nameof(Value1382)); + public string Value1382 + { + get => GetProperty(Value1382Property); + set => SetProperty(Value1382Property, value); + } + + + public static readonly PropertyInfo Value1383Property = RegisterProperty(nameof(Value1383)); + public string Value1383 + { + get => GetProperty(Value1383Property); + set => SetProperty(Value1383Property, value); + } + + + public static readonly PropertyInfo Value1384Property = RegisterProperty(nameof(Value1384)); + public string Value1384 + { + get => GetProperty(Value1384Property); + set => SetProperty(Value1384Property, value); + } + + + public static readonly PropertyInfo Value1385Property = RegisterProperty(nameof(Value1385)); + public string Value1385 + { + get => GetProperty(Value1385Property); + set => SetProperty(Value1385Property, value); + } + + + public static readonly PropertyInfo Value1386Property = RegisterProperty(nameof(Value1386)); + public string Value1386 + { + get => GetProperty(Value1386Property); + set => SetProperty(Value1386Property, value); + } + + + public static readonly PropertyInfo Value1387Property = RegisterProperty(nameof(Value1387)); + public string Value1387 + { + get => GetProperty(Value1387Property); + set => SetProperty(Value1387Property, value); + } + + + public static readonly PropertyInfo Value1388Property = RegisterProperty(nameof(Value1388)); + public string Value1388 + { + get => GetProperty(Value1388Property); + set => SetProperty(Value1388Property, value); + } + + + public static readonly PropertyInfo Value1389Property = RegisterProperty(nameof(Value1389)); + public string Value1389 + { + get => GetProperty(Value1389Property); + set => SetProperty(Value1389Property, value); + } + + + public static readonly PropertyInfo Value1390Property = RegisterProperty(nameof(Value1390)); + public string Value1390 + { + get => GetProperty(Value1390Property); + set => SetProperty(Value1390Property, value); + } + + + public static readonly PropertyInfo Value1391Property = RegisterProperty(nameof(Value1391)); + public string Value1391 + { + get => GetProperty(Value1391Property); + set => SetProperty(Value1391Property, value); + } + + + public static readonly PropertyInfo Value1392Property = RegisterProperty(nameof(Value1392)); + public string Value1392 + { + get => GetProperty(Value1392Property); + set => SetProperty(Value1392Property, value); + } + + + public static readonly PropertyInfo Value1393Property = RegisterProperty(nameof(Value1393)); + public string Value1393 + { + get => GetProperty(Value1393Property); + set => SetProperty(Value1393Property, value); + } + + + public static readonly PropertyInfo Value1394Property = RegisterProperty(nameof(Value1394)); + public string Value1394 + { + get => GetProperty(Value1394Property); + set => SetProperty(Value1394Property, value); + } + + + public static readonly PropertyInfo Value1395Property = RegisterProperty(nameof(Value1395)); + public string Value1395 + { + get => GetProperty(Value1395Property); + set => SetProperty(Value1395Property, value); + } + + + public static readonly PropertyInfo Value1396Property = RegisterProperty(nameof(Value1396)); + public string Value1396 + { + get => GetProperty(Value1396Property); + set => SetProperty(Value1396Property, value); + } + + + public static readonly PropertyInfo Value1397Property = RegisterProperty(nameof(Value1397)); + public string Value1397 + { + get => GetProperty(Value1397Property); + set => SetProperty(Value1397Property, value); + } + + + public static readonly PropertyInfo Value1398Property = RegisterProperty(nameof(Value1398)); + public string Value1398 + { + get => GetProperty(Value1398Property); + set => SetProperty(Value1398Property, value); + } + + + public static readonly PropertyInfo Value1399Property = RegisterProperty(nameof(Value1399)); + public string Value1399 + { + get => GetProperty(Value1399Property); + set => SetProperty(Value1399Property, value); + } + + + public static readonly PropertyInfo Value1400Property = RegisterProperty(nameof(Value1400)); + public string Value1400 + { + get => GetProperty(Value1400Property); + set => SetProperty(Value1400Property, value); + } + + + public static readonly PropertyInfo Value1401Property = RegisterProperty(nameof(Value1401)); + public string Value1401 + { + get => GetProperty(Value1401Property); + set => SetProperty(Value1401Property, value); + } + + + public static readonly PropertyInfo Value1402Property = RegisterProperty(nameof(Value1402)); + public string Value1402 + { + get => GetProperty(Value1402Property); + set => SetProperty(Value1402Property, value); + } + + + public static readonly PropertyInfo Value1403Property = RegisterProperty(nameof(Value1403)); + public string Value1403 + { + get => GetProperty(Value1403Property); + set => SetProperty(Value1403Property, value); + } + + + public static readonly PropertyInfo Value1404Property = RegisterProperty(nameof(Value1404)); + public string Value1404 + { + get => GetProperty(Value1404Property); + set => SetProperty(Value1404Property, value); + } + + + public static readonly PropertyInfo Value1405Property = RegisterProperty(nameof(Value1405)); + public string Value1405 + { + get => GetProperty(Value1405Property); + set => SetProperty(Value1405Property, value); + } + + + public static readonly PropertyInfo Value1406Property = RegisterProperty(nameof(Value1406)); + public string Value1406 + { + get => GetProperty(Value1406Property); + set => SetProperty(Value1406Property, value); + } + + + public static readonly PropertyInfo Value1407Property = RegisterProperty(nameof(Value1407)); + public string Value1407 + { + get => GetProperty(Value1407Property); + set => SetProperty(Value1407Property, value); + } + + + public static readonly PropertyInfo Value1408Property = RegisterProperty(nameof(Value1408)); + public string Value1408 + { + get => GetProperty(Value1408Property); + set => SetProperty(Value1408Property, value); + } + + + public static readonly PropertyInfo Value1409Property = RegisterProperty(nameof(Value1409)); + public string Value1409 + { + get => GetProperty(Value1409Property); + set => SetProperty(Value1409Property, value); + } + + + public static readonly PropertyInfo Value1410Property = RegisterProperty(nameof(Value1410)); + public string Value1410 + { + get => GetProperty(Value1410Property); + set => SetProperty(Value1410Property, value); + } + + + public static readonly PropertyInfo Value1411Property = RegisterProperty(nameof(Value1411)); + public string Value1411 + { + get => GetProperty(Value1411Property); + set => SetProperty(Value1411Property, value); + } + + + public static readonly PropertyInfo Value1412Property = RegisterProperty(nameof(Value1412)); + public string Value1412 + { + get => GetProperty(Value1412Property); + set => SetProperty(Value1412Property, value); + } + + + public static readonly PropertyInfo Value1413Property = RegisterProperty(nameof(Value1413)); + public string Value1413 + { + get => GetProperty(Value1413Property); + set => SetProperty(Value1413Property, value); + } + + + public static readonly PropertyInfo Value1414Property = RegisterProperty(nameof(Value1414)); + public string Value1414 + { + get => GetProperty(Value1414Property); + set => SetProperty(Value1414Property, value); + } + + + public static readonly PropertyInfo Value1415Property = RegisterProperty(nameof(Value1415)); + public string Value1415 + { + get => GetProperty(Value1415Property); + set => SetProperty(Value1415Property, value); + } + + + public static readonly PropertyInfo Value1416Property = RegisterProperty(nameof(Value1416)); + public string Value1416 + { + get => GetProperty(Value1416Property); + set => SetProperty(Value1416Property, value); + } + + + public static readonly PropertyInfo Value1417Property = RegisterProperty(nameof(Value1417)); + public string Value1417 + { + get => GetProperty(Value1417Property); + set => SetProperty(Value1417Property, value); + } + + + public static readonly PropertyInfo Value1418Property = RegisterProperty(nameof(Value1418)); + public string Value1418 + { + get => GetProperty(Value1418Property); + set => SetProperty(Value1418Property, value); + } + + + public static readonly PropertyInfo Value1419Property = RegisterProperty(nameof(Value1419)); + public string Value1419 + { + get => GetProperty(Value1419Property); + set => SetProperty(Value1419Property, value); + } + + + public static readonly PropertyInfo Value1420Property = RegisterProperty(nameof(Value1420)); + public string Value1420 + { + get => GetProperty(Value1420Property); + set => SetProperty(Value1420Property, value); + } + + + public static readonly PropertyInfo Value1421Property = RegisterProperty(nameof(Value1421)); + public string Value1421 + { + get => GetProperty(Value1421Property); + set => SetProperty(Value1421Property, value); + } + + + public static readonly PropertyInfo Value1422Property = RegisterProperty(nameof(Value1422)); + public string Value1422 + { + get => GetProperty(Value1422Property); + set => SetProperty(Value1422Property, value); + } + + + public static readonly PropertyInfo Value1423Property = RegisterProperty(nameof(Value1423)); + public string Value1423 + { + get => GetProperty(Value1423Property); + set => SetProperty(Value1423Property, value); + } + + + public static readonly PropertyInfo Value1424Property = RegisterProperty(nameof(Value1424)); + public string Value1424 + { + get => GetProperty(Value1424Property); + set => SetProperty(Value1424Property, value); + } + + + public static readonly PropertyInfo Value1425Property = RegisterProperty(nameof(Value1425)); + public string Value1425 + { + get => GetProperty(Value1425Property); + set => SetProperty(Value1425Property, value); + } + + + public static readonly PropertyInfo Value1426Property = RegisterProperty(nameof(Value1426)); + public string Value1426 + { + get => GetProperty(Value1426Property); + set => SetProperty(Value1426Property, value); + } + + + public static readonly PropertyInfo Value1427Property = RegisterProperty(nameof(Value1427)); + public string Value1427 + { + get => GetProperty(Value1427Property); + set => SetProperty(Value1427Property, value); + } + + + public static readonly PropertyInfo Value1428Property = RegisterProperty(nameof(Value1428)); + public string Value1428 + { + get => GetProperty(Value1428Property); + set => SetProperty(Value1428Property, value); + } + + + public static readonly PropertyInfo Value1429Property = RegisterProperty(nameof(Value1429)); + public string Value1429 + { + get => GetProperty(Value1429Property); + set => SetProperty(Value1429Property, value); + } + + + public static readonly PropertyInfo Value1430Property = RegisterProperty(nameof(Value1430)); + public string Value1430 + { + get => GetProperty(Value1430Property); + set => SetProperty(Value1430Property, value); + } + + + public static readonly PropertyInfo Value1431Property = RegisterProperty(nameof(Value1431)); + public string Value1431 + { + get => GetProperty(Value1431Property); + set => SetProperty(Value1431Property, value); + } + + + public static readonly PropertyInfo Value1432Property = RegisterProperty(nameof(Value1432)); + public string Value1432 + { + get => GetProperty(Value1432Property); + set => SetProperty(Value1432Property, value); + } + + + public static readonly PropertyInfo Value1433Property = RegisterProperty(nameof(Value1433)); + public string Value1433 + { + get => GetProperty(Value1433Property); + set => SetProperty(Value1433Property, value); + } + + + public static readonly PropertyInfo Value1434Property = RegisterProperty(nameof(Value1434)); + public string Value1434 + { + get => GetProperty(Value1434Property); + set => SetProperty(Value1434Property, value); + } + + + public static readonly PropertyInfo Value1435Property = RegisterProperty(nameof(Value1435)); + public string Value1435 + { + get => GetProperty(Value1435Property); + set => SetProperty(Value1435Property, value); + } + + + public static readonly PropertyInfo Value1436Property = RegisterProperty(nameof(Value1436)); + public string Value1436 + { + get => GetProperty(Value1436Property); + set => SetProperty(Value1436Property, value); + } + + + public static readonly PropertyInfo Value1437Property = RegisterProperty(nameof(Value1437)); + public string Value1437 + { + get => GetProperty(Value1437Property); + set => SetProperty(Value1437Property, value); + } + + + public static readonly PropertyInfo Value1438Property = RegisterProperty(nameof(Value1438)); + public string Value1438 + { + get => GetProperty(Value1438Property); + set => SetProperty(Value1438Property, value); + } + + + public static readonly PropertyInfo Value1439Property = RegisterProperty(nameof(Value1439)); + public string Value1439 + { + get => GetProperty(Value1439Property); + set => SetProperty(Value1439Property, value); + } + + + public static readonly PropertyInfo Value1440Property = RegisterProperty(nameof(Value1440)); + public string Value1440 + { + get => GetProperty(Value1440Property); + set => SetProperty(Value1440Property, value); + } + + + public static readonly PropertyInfo Value1441Property = RegisterProperty(nameof(Value1441)); + public string Value1441 + { + get => GetProperty(Value1441Property); + set => SetProperty(Value1441Property, value); + } + + + public static readonly PropertyInfo Value1442Property = RegisterProperty(nameof(Value1442)); + public string Value1442 + { + get => GetProperty(Value1442Property); + set => SetProperty(Value1442Property, value); + } + + + public static readonly PropertyInfo Value1443Property = RegisterProperty(nameof(Value1443)); + public string Value1443 + { + get => GetProperty(Value1443Property); + set => SetProperty(Value1443Property, value); + } + + + public static readonly PropertyInfo Value1444Property = RegisterProperty(nameof(Value1444)); + public string Value1444 + { + get => GetProperty(Value1444Property); + set => SetProperty(Value1444Property, value); + } + + + public static readonly PropertyInfo Value1445Property = RegisterProperty(nameof(Value1445)); + public string Value1445 + { + get => GetProperty(Value1445Property); + set => SetProperty(Value1445Property, value); + } + + + public static readonly PropertyInfo Value1446Property = RegisterProperty(nameof(Value1446)); + public string Value1446 + { + get => GetProperty(Value1446Property); + set => SetProperty(Value1446Property, value); + } + + + public static readonly PropertyInfo Value1447Property = RegisterProperty(nameof(Value1447)); + public string Value1447 + { + get => GetProperty(Value1447Property); + set => SetProperty(Value1447Property, value); + } + + + public static readonly PropertyInfo Value1448Property = RegisterProperty(nameof(Value1448)); + public string Value1448 + { + get => GetProperty(Value1448Property); + set => SetProperty(Value1448Property, value); + } + + + public static readonly PropertyInfo Value1449Property = RegisterProperty(nameof(Value1449)); + public string Value1449 + { + get => GetProperty(Value1449Property); + set => SetProperty(Value1449Property, value); + } + + + public static readonly PropertyInfo Value1450Property = RegisterProperty(nameof(Value1450)); + public string Value1450 + { + get => GetProperty(Value1450Property); + set => SetProperty(Value1450Property, value); + } + + + public static readonly PropertyInfo Value1451Property = RegisterProperty(nameof(Value1451)); + public string Value1451 + { + get => GetProperty(Value1451Property); + set => SetProperty(Value1451Property, value); + } + + + public static readonly PropertyInfo Value1452Property = RegisterProperty(nameof(Value1452)); + public string Value1452 + { + get => GetProperty(Value1452Property); + set => SetProperty(Value1452Property, value); + } + + + public static readonly PropertyInfo Value1453Property = RegisterProperty(nameof(Value1453)); + public string Value1453 + { + get => GetProperty(Value1453Property); + set => SetProperty(Value1453Property, value); + } + + + public static readonly PropertyInfo Value1454Property = RegisterProperty(nameof(Value1454)); + public string Value1454 + { + get => GetProperty(Value1454Property); + set => SetProperty(Value1454Property, value); + } + + + public static readonly PropertyInfo Value1455Property = RegisterProperty(nameof(Value1455)); + public string Value1455 + { + get => GetProperty(Value1455Property); + set => SetProperty(Value1455Property, value); + } + + + public static readonly PropertyInfo Value1456Property = RegisterProperty(nameof(Value1456)); + public string Value1456 + { + get => GetProperty(Value1456Property); + set => SetProperty(Value1456Property, value); + } + + + public static readonly PropertyInfo Value1457Property = RegisterProperty(nameof(Value1457)); + public string Value1457 + { + get => GetProperty(Value1457Property); + set => SetProperty(Value1457Property, value); + } + + + public static readonly PropertyInfo Value1458Property = RegisterProperty(nameof(Value1458)); + public string Value1458 + { + get => GetProperty(Value1458Property); + set => SetProperty(Value1458Property, value); + } + + + public static readonly PropertyInfo Value1459Property = RegisterProperty(nameof(Value1459)); + public string Value1459 + { + get => GetProperty(Value1459Property); + set => SetProperty(Value1459Property, value); + } + + + public static readonly PropertyInfo Value1460Property = RegisterProperty(nameof(Value1460)); + public string Value1460 + { + get => GetProperty(Value1460Property); + set => SetProperty(Value1460Property, value); + } + + + public static readonly PropertyInfo Value1461Property = RegisterProperty(nameof(Value1461)); + public string Value1461 + { + get => GetProperty(Value1461Property); + set => SetProperty(Value1461Property, value); + } + + + public static readonly PropertyInfo Value1462Property = RegisterProperty(nameof(Value1462)); + public string Value1462 + { + get => GetProperty(Value1462Property); + set => SetProperty(Value1462Property, value); + } + + + public static readonly PropertyInfo Value1463Property = RegisterProperty(nameof(Value1463)); + public string Value1463 + { + get => GetProperty(Value1463Property); + set => SetProperty(Value1463Property, value); + } + + + public static readonly PropertyInfo Value1464Property = RegisterProperty(nameof(Value1464)); + public string Value1464 + { + get => GetProperty(Value1464Property); + set => SetProperty(Value1464Property, value); + } + + + public static readonly PropertyInfo Value1465Property = RegisterProperty(nameof(Value1465)); + public string Value1465 + { + get => GetProperty(Value1465Property); + set => SetProperty(Value1465Property, value); + } + + + public static readonly PropertyInfo Value1466Property = RegisterProperty(nameof(Value1466)); + public string Value1466 + { + get => GetProperty(Value1466Property); + set => SetProperty(Value1466Property, value); + } + + + public static readonly PropertyInfo Value1467Property = RegisterProperty(nameof(Value1467)); + public string Value1467 + { + get => GetProperty(Value1467Property); + set => SetProperty(Value1467Property, value); + } + + + public static readonly PropertyInfo Value1468Property = RegisterProperty(nameof(Value1468)); + public string Value1468 + { + get => GetProperty(Value1468Property); + set => SetProperty(Value1468Property, value); + } + + + public static readonly PropertyInfo Value1469Property = RegisterProperty(nameof(Value1469)); + public string Value1469 + { + get => GetProperty(Value1469Property); + set => SetProperty(Value1469Property, value); + } + + + public static readonly PropertyInfo Value1470Property = RegisterProperty(nameof(Value1470)); + public string Value1470 + { + get => GetProperty(Value1470Property); + set => SetProperty(Value1470Property, value); + } + + + public static readonly PropertyInfo Value1471Property = RegisterProperty(nameof(Value1471)); + public string Value1471 + { + get => GetProperty(Value1471Property); + set => SetProperty(Value1471Property, value); + } + + + public static readonly PropertyInfo Value1472Property = RegisterProperty(nameof(Value1472)); + public string Value1472 + { + get => GetProperty(Value1472Property); + set => SetProperty(Value1472Property, value); + } + + + public static readonly PropertyInfo Value1473Property = RegisterProperty(nameof(Value1473)); + public string Value1473 + { + get => GetProperty(Value1473Property); + set => SetProperty(Value1473Property, value); + } + + + public static readonly PropertyInfo Value1474Property = RegisterProperty(nameof(Value1474)); + public string Value1474 + { + get => GetProperty(Value1474Property); + set => SetProperty(Value1474Property, value); + } + + + public static readonly PropertyInfo Value1475Property = RegisterProperty(nameof(Value1475)); + public string Value1475 + { + get => GetProperty(Value1475Property); + set => SetProperty(Value1475Property, value); + } + + + public static readonly PropertyInfo Value1476Property = RegisterProperty(nameof(Value1476)); + public string Value1476 + { + get => GetProperty(Value1476Property); + set => SetProperty(Value1476Property, value); + } + + + public static readonly PropertyInfo Value1477Property = RegisterProperty(nameof(Value1477)); + public string Value1477 + { + get => GetProperty(Value1477Property); + set => SetProperty(Value1477Property, value); + } + + + public static readonly PropertyInfo Value1478Property = RegisterProperty(nameof(Value1478)); + public string Value1478 + { + get => GetProperty(Value1478Property); + set => SetProperty(Value1478Property, value); + } + + + public static readonly PropertyInfo Value1479Property = RegisterProperty(nameof(Value1479)); + public string Value1479 + { + get => GetProperty(Value1479Property); + set => SetProperty(Value1479Property, value); + } + + + public static readonly PropertyInfo Value1480Property = RegisterProperty(nameof(Value1480)); + public string Value1480 + { + get => GetProperty(Value1480Property); + set => SetProperty(Value1480Property, value); + } + + + public static readonly PropertyInfo Value1481Property = RegisterProperty(nameof(Value1481)); + public string Value1481 + { + get => GetProperty(Value1481Property); + set => SetProperty(Value1481Property, value); + } + + + public static readonly PropertyInfo Value1482Property = RegisterProperty(nameof(Value1482)); + public string Value1482 + { + get => GetProperty(Value1482Property); + set => SetProperty(Value1482Property, value); + } + + + public static readonly PropertyInfo Value1483Property = RegisterProperty(nameof(Value1483)); + public string Value1483 + { + get => GetProperty(Value1483Property); + set => SetProperty(Value1483Property, value); + } + + + public static readonly PropertyInfo Value1484Property = RegisterProperty(nameof(Value1484)); + public string Value1484 + { + get => GetProperty(Value1484Property); + set => SetProperty(Value1484Property, value); + } + + + public static readonly PropertyInfo Value1485Property = RegisterProperty(nameof(Value1485)); + public string Value1485 + { + get => GetProperty(Value1485Property); + set => SetProperty(Value1485Property, value); + } + + + public static readonly PropertyInfo Value1486Property = RegisterProperty(nameof(Value1486)); + public string Value1486 + { + get => GetProperty(Value1486Property); + set => SetProperty(Value1486Property, value); + } + + + public static readonly PropertyInfo Value1487Property = RegisterProperty(nameof(Value1487)); + public string Value1487 + { + get => GetProperty(Value1487Property); + set => SetProperty(Value1487Property, value); + } + + + public static readonly PropertyInfo Value1488Property = RegisterProperty(nameof(Value1488)); + public string Value1488 + { + get => GetProperty(Value1488Property); + set => SetProperty(Value1488Property, value); + } + + + public static readonly PropertyInfo Value1489Property = RegisterProperty(nameof(Value1489)); + public string Value1489 + { + get => GetProperty(Value1489Property); + set => SetProperty(Value1489Property, value); + } + + + public static readonly PropertyInfo Value1490Property = RegisterProperty(nameof(Value1490)); + public string Value1490 + { + get => GetProperty(Value1490Property); + set => SetProperty(Value1490Property, value); + } + + + public static readonly PropertyInfo Value1491Property = RegisterProperty(nameof(Value1491)); + public string Value1491 + { + get => GetProperty(Value1491Property); + set => SetProperty(Value1491Property, value); + } + + + public static readonly PropertyInfo Value1492Property = RegisterProperty(nameof(Value1492)); + public string Value1492 + { + get => GetProperty(Value1492Property); + set => SetProperty(Value1492Property, value); + } + + + public static readonly PropertyInfo Value1493Property = RegisterProperty(nameof(Value1493)); + public string Value1493 + { + get => GetProperty(Value1493Property); + set => SetProperty(Value1493Property, value); + } + + + public static readonly PropertyInfo Value1494Property = RegisterProperty(nameof(Value1494)); + public string Value1494 + { + get => GetProperty(Value1494Property); + set => SetProperty(Value1494Property, value); + } + + + public static readonly PropertyInfo Value1495Property = RegisterProperty(nameof(Value1495)); + public string Value1495 + { + get => GetProperty(Value1495Property); + set => SetProperty(Value1495Property, value); + } + + + public static readonly PropertyInfo Value1496Property = RegisterProperty(nameof(Value1496)); + public string Value1496 + { + get => GetProperty(Value1496Property); + set => SetProperty(Value1496Property, value); + } + + + public static readonly PropertyInfo Value1497Property = RegisterProperty(nameof(Value1497)); + public string Value1497 + { + get => GetProperty(Value1497Property); + set => SetProperty(Value1497Property, value); + } + + + public static readonly PropertyInfo Value1498Property = RegisterProperty(nameof(Value1498)); + public string Value1498 + { + get => GetProperty(Value1498Property); + set => SetProperty(Value1498Property, value); + } + + + public static readonly PropertyInfo Value1499Property = RegisterProperty(nameof(Value1499)); + public string Value1499 + { + get => GetProperty(Value1499Property); + set => SetProperty(Value1499Property, value); + } + + + public static readonly PropertyInfo Value1500Property = RegisterProperty(nameof(Value1500)); + public string Value1500 + { + get => GetProperty(Value1500Property); + set => SetProperty(Value1500Property, value); + } + + + public static readonly PropertyInfo Value1501Property = RegisterProperty(nameof(Value1501)); + public string Value1501 + { + get => GetProperty(Value1501Property); + set => SetProperty(Value1501Property, value); + } + + + public static readonly PropertyInfo Value1502Property = RegisterProperty(nameof(Value1502)); + public string Value1502 + { + get => GetProperty(Value1502Property); + set => SetProperty(Value1502Property, value); + } + + + public static readonly PropertyInfo Value1503Property = RegisterProperty(nameof(Value1503)); + public string Value1503 + { + get => GetProperty(Value1503Property); + set => SetProperty(Value1503Property, value); + } + + + public static readonly PropertyInfo Value1504Property = RegisterProperty(nameof(Value1504)); + public string Value1504 + { + get => GetProperty(Value1504Property); + set => SetProperty(Value1504Property, value); + } + + + public static readonly PropertyInfo Value1505Property = RegisterProperty(nameof(Value1505)); + public string Value1505 + { + get => GetProperty(Value1505Property); + set => SetProperty(Value1505Property, value); + } + + + public static readonly PropertyInfo Value1506Property = RegisterProperty(nameof(Value1506)); + public string Value1506 + { + get => GetProperty(Value1506Property); + set => SetProperty(Value1506Property, value); + } + + + public static readonly PropertyInfo Value1507Property = RegisterProperty(nameof(Value1507)); + public string Value1507 + { + get => GetProperty(Value1507Property); + set => SetProperty(Value1507Property, value); + } + + + public static readonly PropertyInfo Value1508Property = RegisterProperty(nameof(Value1508)); + public string Value1508 + { + get => GetProperty(Value1508Property); + set => SetProperty(Value1508Property, value); + } + + + public static readonly PropertyInfo Value1509Property = RegisterProperty(nameof(Value1509)); + public string Value1509 + { + get => GetProperty(Value1509Property); + set => SetProperty(Value1509Property, value); + } + + + public static readonly PropertyInfo Value1510Property = RegisterProperty(nameof(Value1510)); + public string Value1510 + { + get => GetProperty(Value1510Property); + set => SetProperty(Value1510Property, value); + } + + + public static readonly PropertyInfo Value1511Property = RegisterProperty(nameof(Value1511)); + public string Value1511 + { + get => GetProperty(Value1511Property); + set => SetProperty(Value1511Property, value); + } + + + public static readonly PropertyInfo Value1512Property = RegisterProperty(nameof(Value1512)); + public string Value1512 + { + get => GetProperty(Value1512Property); + set => SetProperty(Value1512Property, value); + } + + + public static readonly PropertyInfo Value1513Property = RegisterProperty(nameof(Value1513)); + public string Value1513 + { + get => GetProperty(Value1513Property); + set => SetProperty(Value1513Property, value); + } + + + public static readonly PropertyInfo Value1514Property = RegisterProperty(nameof(Value1514)); + public string Value1514 + { + get => GetProperty(Value1514Property); + set => SetProperty(Value1514Property, value); + } + + + public static readonly PropertyInfo Value1515Property = RegisterProperty(nameof(Value1515)); + public string Value1515 + { + get => GetProperty(Value1515Property); + set => SetProperty(Value1515Property, value); + } + + + public static readonly PropertyInfo Value1516Property = RegisterProperty(nameof(Value1516)); + public string Value1516 + { + get => GetProperty(Value1516Property); + set => SetProperty(Value1516Property, value); + } + + + public static readonly PropertyInfo Value1517Property = RegisterProperty(nameof(Value1517)); + public string Value1517 + { + get => GetProperty(Value1517Property); + set => SetProperty(Value1517Property, value); + } + + + public static readonly PropertyInfo Value1518Property = RegisterProperty(nameof(Value1518)); + public string Value1518 + { + get => GetProperty(Value1518Property); + set => SetProperty(Value1518Property, value); + } + + + public static readonly PropertyInfo Value1519Property = RegisterProperty(nameof(Value1519)); + public string Value1519 + { + get => GetProperty(Value1519Property); + set => SetProperty(Value1519Property, value); + } + + + public static readonly PropertyInfo Value1520Property = RegisterProperty(nameof(Value1520)); + public string Value1520 + { + get => GetProperty(Value1520Property); + set => SetProperty(Value1520Property, value); + } + + + public static readonly PropertyInfo Value1521Property = RegisterProperty(nameof(Value1521)); + public string Value1521 + { + get => GetProperty(Value1521Property); + set => SetProperty(Value1521Property, value); + } + + + public static readonly PropertyInfo Value1522Property = RegisterProperty(nameof(Value1522)); + public string Value1522 + { + get => GetProperty(Value1522Property); + set => SetProperty(Value1522Property, value); + } + + + public static readonly PropertyInfo Value1523Property = RegisterProperty(nameof(Value1523)); + public string Value1523 + { + get => GetProperty(Value1523Property); + set => SetProperty(Value1523Property, value); + } + + + public static readonly PropertyInfo Value1524Property = RegisterProperty(nameof(Value1524)); + public string Value1524 + { + get => GetProperty(Value1524Property); + set => SetProperty(Value1524Property, value); + } + + + public static readonly PropertyInfo Value1525Property = RegisterProperty(nameof(Value1525)); + public string Value1525 + { + get => GetProperty(Value1525Property); + set => SetProperty(Value1525Property, value); + } + + + public static readonly PropertyInfo Value1526Property = RegisterProperty(nameof(Value1526)); + public string Value1526 + { + get => GetProperty(Value1526Property); + set => SetProperty(Value1526Property, value); + } + + + public static readonly PropertyInfo Value1527Property = RegisterProperty(nameof(Value1527)); + public string Value1527 + { + get => GetProperty(Value1527Property); + set => SetProperty(Value1527Property, value); + } + + + public static readonly PropertyInfo Value1528Property = RegisterProperty(nameof(Value1528)); + public string Value1528 + { + get => GetProperty(Value1528Property); + set => SetProperty(Value1528Property, value); + } + + + public static readonly PropertyInfo Value1529Property = RegisterProperty(nameof(Value1529)); + public string Value1529 + { + get => GetProperty(Value1529Property); + set => SetProperty(Value1529Property, value); + } + + + public static readonly PropertyInfo Value1530Property = RegisterProperty(nameof(Value1530)); + public string Value1530 + { + get => GetProperty(Value1530Property); + set => SetProperty(Value1530Property, value); + } + + + public static readonly PropertyInfo Value1531Property = RegisterProperty(nameof(Value1531)); + public string Value1531 + { + get => GetProperty(Value1531Property); + set => SetProperty(Value1531Property, value); + } + + + public static readonly PropertyInfo Value1532Property = RegisterProperty(nameof(Value1532)); + public string Value1532 + { + get => GetProperty(Value1532Property); + set => SetProperty(Value1532Property, value); + } + + + public static readonly PropertyInfo Value1533Property = RegisterProperty(nameof(Value1533)); + public string Value1533 + { + get => GetProperty(Value1533Property); + set => SetProperty(Value1533Property, value); + } + + + public static readonly PropertyInfo Value1534Property = RegisterProperty(nameof(Value1534)); + public string Value1534 + { + get => GetProperty(Value1534Property); + set => SetProperty(Value1534Property, value); + } + + + public static readonly PropertyInfo Value1535Property = RegisterProperty(nameof(Value1535)); + public string Value1535 + { + get => GetProperty(Value1535Property); + set => SetProperty(Value1535Property, value); + } + + + public static readonly PropertyInfo Value1536Property = RegisterProperty(nameof(Value1536)); + public string Value1536 + { + get => GetProperty(Value1536Property); + set => SetProperty(Value1536Property, value); + } + + + public static readonly PropertyInfo Value1537Property = RegisterProperty(nameof(Value1537)); + public string Value1537 + { + get => GetProperty(Value1537Property); + set => SetProperty(Value1537Property, value); + } + + + public static readonly PropertyInfo Value1538Property = RegisterProperty(nameof(Value1538)); + public string Value1538 + { + get => GetProperty(Value1538Property); + set => SetProperty(Value1538Property, value); + } + + + public static readonly PropertyInfo Value1539Property = RegisterProperty(nameof(Value1539)); + public string Value1539 + { + get => GetProperty(Value1539Property); + set => SetProperty(Value1539Property, value); + } + + + public static readonly PropertyInfo Value1540Property = RegisterProperty(nameof(Value1540)); + public string Value1540 + { + get => GetProperty(Value1540Property); + set => SetProperty(Value1540Property, value); + } + + + public static readonly PropertyInfo Value1541Property = RegisterProperty(nameof(Value1541)); + public string Value1541 + { + get => GetProperty(Value1541Property); + set => SetProperty(Value1541Property, value); + } + + + public static readonly PropertyInfo Value1542Property = RegisterProperty(nameof(Value1542)); + public string Value1542 + { + get => GetProperty(Value1542Property); + set => SetProperty(Value1542Property, value); + } + + + public static readonly PropertyInfo Value1543Property = RegisterProperty(nameof(Value1543)); + public string Value1543 + { + get => GetProperty(Value1543Property); + set => SetProperty(Value1543Property, value); + } + + + public static readonly PropertyInfo Value1544Property = RegisterProperty(nameof(Value1544)); + public string Value1544 + { + get => GetProperty(Value1544Property); + set => SetProperty(Value1544Property, value); + } + + + public static readonly PropertyInfo Value1545Property = RegisterProperty(nameof(Value1545)); + public string Value1545 + { + get => GetProperty(Value1545Property); + set => SetProperty(Value1545Property, value); + } + + + public static readonly PropertyInfo Value1546Property = RegisterProperty(nameof(Value1546)); + public string Value1546 + { + get => GetProperty(Value1546Property); + set => SetProperty(Value1546Property, value); + } + + + public static readonly PropertyInfo Value1547Property = RegisterProperty(nameof(Value1547)); + public string Value1547 + { + get => GetProperty(Value1547Property); + set => SetProperty(Value1547Property, value); + } + + + public static readonly PropertyInfo Value1548Property = RegisterProperty(nameof(Value1548)); + public string Value1548 + { + get => GetProperty(Value1548Property); + set => SetProperty(Value1548Property, value); + } + + + public static readonly PropertyInfo Value1549Property = RegisterProperty(nameof(Value1549)); + public string Value1549 + { + get => GetProperty(Value1549Property); + set => SetProperty(Value1549Property, value); + } + + + public static readonly PropertyInfo Value1550Property = RegisterProperty(nameof(Value1550)); + public string Value1550 + { + get => GetProperty(Value1550Property); + set => SetProperty(Value1550Property, value); + } + + + public static readonly PropertyInfo Value1551Property = RegisterProperty(nameof(Value1551)); + public string Value1551 + { + get => GetProperty(Value1551Property); + set => SetProperty(Value1551Property, value); + } + + + public static readonly PropertyInfo Value1552Property = RegisterProperty(nameof(Value1552)); + public string Value1552 + { + get => GetProperty(Value1552Property); + set => SetProperty(Value1552Property, value); + } + + + public static readonly PropertyInfo Value1553Property = RegisterProperty(nameof(Value1553)); + public string Value1553 + { + get => GetProperty(Value1553Property); + set => SetProperty(Value1553Property, value); + } + + + public static readonly PropertyInfo Value1554Property = RegisterProperty(nameof(Value1554)); + public string Value1554 + { + get => GetProperty(Value1554Property); + set => SetProperty(Value1554Property, value); + } + + + public static readonly PropertyInfo Value1555Property = RegisterProperty(nameof(Value1555)); + public string Value1555 + { + get => GetProperty(Value1555Property); + set => SetProperty(Value1555Property, value); + } + + + public static readonly PropertyInfo Value1556Property = RegisterProperty(nameof(Value1556)); + public string Value1556 + { + get => GetProperty(Value1556Property); + set => SetProperty(Value1556Property, value); + } + + + public static readonly PropertyInfo Value1557Property = RegisterProperty(nameof(Value1557)); + public string Value1557 + { + get => GetProperty(Value1557Property); + set => SetProperty(Value1557Property, value); + } + + + public static readonly PropertyInfo Value1558Property = RegisterProperty(nameof(Value1558)); + public string Value1558 + { + get => GetProperty(Value1558Property); + set => SetProperty(Value1558Property, value); + } + + + public static readonly PropertyInfo Value1559Property = RegisterProperty(nameof(Value1559)); + public string Value1559 + { + get => GetProperty(Value1559Property); + set => SetProperty(Value1559Property, value); + } + + + public static readonly PropertyInfo Value1560Property = RegisterProperty(nameof(Value1560)); + public string Value1560 + { + get => GetProperty(Value1560Property); + set => SetProperty(Value1560Property, value); + } + + + public static readonly PropertyInfo Value1561Property = RegisterProperty(nameof(Value1561)); + public string Value1561 + { + get => GetProperty(Value1561Property); + set => SetProperty(Value1561Property, value); + } + + + public static readonly PropertyInfo Value1562Property = RegisterProperty(nameof(Value1562)); + public string Value1562 + { + get => GetProperty(Value1562Property); + set => SetProperty(Value1562Property, value); + } + + + public static readonly PropertyInfo Value1563Property = RegisterProperty(nameof(Value1563)); + public string Value1563 + { + get => GetProperty(Value1563Property); + set => SetProperty(Value1563Property, value); + } + + + public static readonly PropertyInfo Value1564Property = RegisterProperty(nameof(Value1564)); + public string Value1564 + { + get => GetProperty(Value1564Property); + set => SetProperty(Value1564Property, value); + } + + + public static readonly PropertyInfo Value1565Property = RegisterProperty(nameof(Value1565)); + public string Value1565 + { + get => GetProperty(Value1565Property); + set => SetProperty(Value1565Property, value); + } + + + public static readonly PropertyInfo Value1566Property = RegisterProperty(nameof(Value1566)); + public string Value1566 + { + get => GetProperty(Value1566Property); + set => SetProperty(Value1566Property, value); + } + + + public static readonly PropertyInfo Value1567Property = RegisterProperty(nameof(Value1567)); + public string Value1567 + { + get => GetProperty(Value1567Property); + set => SetProperty(Value1567Property, value); + } + + + public static readonly PropertyInfo Value1568Property = RegisterProperty(nameof(Value1568)); + public string Value1568 + { + get => GetProperty(Value1568Property); + set => SetProperty(Value1568Property, value); + } + + + public static readonly PropertyInfo Value1569Property = RegisterProperty(nameof(Value1569)); + public string Value1569 + { + get => GetProperty(Value1569Property); + set => SetProperty(Value1569Property, value); + } + + + public static readonly PropertyInfo Value1570Property = RegisterProperty(nameof(Value1570)); + public string Value1570 + { + get => GetProperty(Value1570Property); + set => SetProperty(Value1570Property, value); + } + + + public static readonly PropertyInfo Value1571Property = RegisterProperty(nameof(Value1571)); + public string Value1571 + { + get => GetProperty(Value1571Property); + set => SetProperty(Value1571Property, value); + } + + + public static readonly PropertyInfo Value1572Property = RegisterProperty(nameof(Value1572)); + public string Value1572 + { + get => GetProperty(Value1572Property); + set => SetProperty(Value1572Property, value); + } + + + public static readonly PropertyInfo Value1573Property = RegisterProperty(nameof(Value1573)); + public string Value1573 + { + get => GetProperty(Value1573Property); + set => SetProperty(Value1573Property, value); + } + + + public static readonly PropertyInfo Value1574Property = RegisterProperty(nameof(Value1574)); + public string Value1574 + { + get => GetProperty(Value1574Property); + set => SetProperty(Value1574Property, value); + } + + + public static readonly PropertyInfo Value1575Property = RegisterProperty(nameof(Value1575)); + public string Value1575 + { + get => GetProperty(Value1575Property); + set => SetProperty(Value1575Property, value); + } + + + public static readonly PropertyInfo Value1576Property = RegisterProperty(nameof(Value1576)); + public string Value1576 + { + get => GetProperty(Value1576Property); + set => SetProperty(Value1576Property, value); + } + + + public static readonly PropertyInfo Value1577Property = RegisterProperty(nameof(Value1577)); + public string Value1577 + { + get => GetProperty(Value1577Property); + set => SetProperty(Value1577Property, value); + } + + + public static readonly PropertyInfo Value1578Property = RegisterProperty(nameof(Value1578)); + public string Value1578 + { + get => GetProperty(Value1578Property); + set => SetProperty(Value1578Property, value); + } + + + public static readonly PropertyInfo Value1579Property = RegisterProperty(nameof(Value1579)); + public string Value1579 + { + get => GetProperty(Value1579Property); + set => SetProperty(Value1579Property, value); + } + + + public static readonly PropertyInfo Value1580Property = RegisterProperty(nameof(Value1580)); + public string Value1580 + { + get => GetProperty(Value1580Property); + set => SetProperty(Value1580Property, value); + } + + + public static readonly PropertyInfo Value1581Property = RegisterProperty(nameof(Value1581)); + public string Value1581 + { + get => GetProperty(Value1581Property); + set => SetProperty(Value1581Property, value); + } + + + public static readonly PropertyInfo Value1582Property = RegisterProperty(nameof(Value1582)); + public string Value1582 + { + get => GetProperty(Value1582Property); + set => SetProperty(Value1582Property, value); + } + + + public static readonly PropertyInfo Value1583Property = RegisterProperty(nameof(Value1583)); + public string Value1583 + { + get => GetProperty(Value1583Property); + set => SetProperty(Value1583Property, value); + } + + + public static readonly PropertyInfo Value1584Property = RegisterProperty(nameof(Value1584)); + public string Value1584 + { + get => GetProperty(Value1584Property); + set => SetProperty(Value1584Property, value); + } + + + public static readonly PropertyInfo Value1585Property = RegisterProperty(nameof(Value1585)); + public string Value1585 + { + get => GetProperty(Value1585Property); + set => SetProperty(Value1585Property, value); + } + + + public static readonly PropertyInfo Value1586Property = RegisterProperty(nameof(Value1586)); + public string Value1586 + { + get => GetProperty(Value1586Property); + set => SetProperty(Value1586Property, value); + } + + + public static readonly PropertyInfo Value1587Property = RegisterProperty(nameof(Value1587)); + public string Value1587 + { + get => GetProperty(Value1587Property); + set => SetProperty(Value1587Property, value); + } + + + public static readonly PropertyInfo Value1588Property = RegisterProperty(nameof(Value1588)); + public string Value1588 + { + get => GetProperty(Value1588Property); + set => SetProperty(Value1588Property, value); + } + + + public static readonly PropertyInfo Value1589Property = RegisterProperty(nameof(Value1589)); + public string Value1589 + { + get => GetProperty(Value1589Property); + set => SetProperty(Value1589Property, value); + } + + + public static readonly PropertyInfo Value1590Property = RegisterProperty(nameof(Value1590)); + public string Value1590 + { + get => GetProperty(Value1590Property); + set => SetProperty(Value1590Property, value); + } + + + public static readonly PropertyInfo Value1591Property = RegisterProperty(nameof(Value1591)); + public string Value1591 + { + get => GetProperty(Value1591Property); + set => SetProperty(Value1591Property, value); + } + + + public static readonly PropertyInfo Value1592Property = RegisterProperty(nameof(Value1592)); + public string Value1592 + { + get => GetProperty(Value1592Property); + set => SetProperty(Value1592Property, value); + } + + + public static readonly PropertyInfo Value1593Property = RegisterProperty(nameof(Value1593)); + public string Value1593 + { + get => GetProperty(Value1593Property); + set => SetProperty(Value1593Property, value); + } + + + public static readonly PropertyInfo Value1594Property = RegisterProperty(nameof(Value1594)); + public string Value1594 + { + get => GetProperty(Value1594Property); + set => SetProperty(Value1594Property, value); + } + + + public static readonly PropertyInfo Value1595Property = RegisterProperty(nameof(Value1595)); + public string Value1595 + { + get => GetProperty(Value1595Property); + set => SetProperty(Value1595Property, value); + } + + + public static readonly PropertyInfo Value1596Property = RegisterProperty(nameof(Value1596)); + public string Value1596 + { + get => GetProperty(Value1596Property); + set => SetProperty(Value1596Property, value); + } + + + public static readonly PropertyInfo Value1597Property = RegisterProperty(nameof(Value1597)); + public string Value1597 + { + get => GetProperty(Value1597Property); + set => SetProperty(Value1597Property, value); + } + + + public static readonly PropertyInfo Value1598Property = RegisterProperty(nameof(Value1598)); + public string Value1598 + { + get => GetProperty(Value1598Property); + set => SetProperty(Value1598Property, value); + } + + + public static readonly PropertyInfo Value1599Property = RegisterProperty(nameof(Value1599)); + public string Value1599 + { + get => GetProperty(Value1599Property); + set => SetProperty(Value1599Property, value); + } + + + public static readonly PropertyInfo Value1600Property = RegisterProperty(nameof(Value1600)); + public string Value1600 + { + get => GetProperty(Value1600Property); + set => SetProperty(Value1600Property, value); + } + + + public static readonly PropertyInfo Value1601Property = RegisterProperty(nameof(Value1601)); + public string Value1601 + { + get => GetProperty(Value1601Property); + set => SetProperty(Value1601Property, value); + } + + + public static readonly PropertyInfo Value1602Property = RegisterProperty(nameof(Value1602)); + public string Value1602 + { + get => GetProperty(Value1602Property); + set => SetProperty(Value1602Property, value); + } + + + public static readonly PropertyInfo Value1603Property = RegisterProperty(nameof(Value1603)); + public string Value1603 + { + get => GetProperty(Value1603Property); + set => SetProperty(Value1603Property, value); + } + + + public static readonly PropertyInfo Value1604Property = RegisterProperty(nameof(Value1604)); + public string Value1604 + { + get => GetProperty(Value1604Property); + set => SetProperty(Value1604Property, value); + } + + + public static readonly PropertyInfo Value1605Property = RegisterProperty(nameof(Value1605)); + public string Value1605 + { + get => GetProperty(Value1605Property); + set => SetProperty(Value1605Property, value); + } + + + public static readonly PropertyInfo Value1606Property = RegisterProperty(nameof(Value1606)); + public string Value1606 + { + get => GetProperty(Value1606Property); + set => SetProperty(Value1606Property, value); + } + + + public static readonly PropertyInfo Value1607Property = RegisterProperty(nameof(Value1607)); + public string Value1607 + { + get => GetProperty(Value1607Property); + set => SetProperty(Value1607Property, value); + } + + + public static readonly PropertyInfo Value1608Property = RegisterProperty(nameof(Value1608)); + public string Value1608 + { + get => GetProperty(Value1608Property); + set => SetProperty(Value1608Property, value); + } + + + public static readonly PropertyInfo Value1609Property = RegisterProperty(nameof(Value1609)); + public string Value1609 + { + get => GetProperty(Value1609Property); + set => SetProperty(Value1609Property, value); + } + + + public static readonly PropertyInfo Value1610Property = RegisterProperty(nameof(Value1610)); + public string Value1610 + { + get => GetProperty(Value1610Property); + set => SetProperty(Value1610Property, value); + } + + + public static readonly PropertyInfo Value1611Property = RegisterProperty(nameof(Value1611)); + public string Value1611 + { + get => GetProperty(Value1611Property); + set => SetProperty(Value1611Property, value); + } + + + public static readonly PropertyInfo Value1612Property = RegisterProperty(nameof(Value1612)); + public string Value1612 + { + get => GetProperty(Value1612Property); + set => SetProperty(Value1612Property, value); + } + + + public static readonly PropertyInfo Value1613Property = RegisterProperty(nameof(Value1613)); + public string Value1613 + { + get => GetProperty(Value1613Property); + set => SetProperty(Value1613Property, value); + } + + + public static readonly PropertyInfo Value1614Property = RegisterProperty(nameof(Value1614)); + public string Value1614 + { + get => GetProperty(Value1614Property); + set => SetProperty(Value1614Property, value); + } + + + public static readonly PropertyInfo Value1615Property = RegisterProperty(nameof(Value1615)); + public string Value1615 + { + get => GetProperty(Value1615Property); + set => SetProperty(Value1615Property, value); + } + + + public static readonly PropertyInfo Value1616Property = RegisterProperty(nameof(Value1616)); + public string Value1616 + { + get => GetProperty(Value1616Property); + set => SetProperty(Value1616Property, value); + } + + + public static readonly PropertyInfo Value1617Property = RegisterProperty(nameof(Value1617)); + public string Value1617 + { + get => GetProperty(Value1617Property); + set => SetProperty(Value1617Property, value); + } + + + public static readonly PropertyInfo Value1618Property = RegisterProperty(nameof(Value1618)); + public string Value1618 + { + get => GetProperty(Value1618Property); + set => SetProperty(Value1618Property, value); + } + + + public static readonly PropertyInfo Value1619Property = RegisterProperty(nameof(Value1619)); + public string Value1619 + { + get => GetProperty(Value1619Property); + set => SetProperty(Value1619Property, value); + } + + + public static readonly PropertyInfo Value1620Property = RegisterProperty(nameof(Value1620)); + public string Value1620 + { + get => GetProperty(Value1620Property); + set => SetProperty(Value1620Property, value); + } + + + public static readonly PropertyInfo Value1621Property = RegisterProperty(nameof(Value1621)); + public string Value1621 + { + get => GetProperty(Value1621Property); + set => SetProperty(Value1621Property, value); + } + + + public static readonly PropertyInfo Value1622Property = RegisterProperty(nameof(Value1622)); + public string Value1622 + { + get => GetProperty(Value1622Property); + set => SetProperty(Value1622Property, value); + } + + + public static readonly PropertyInfo Value1623Property = RegisterProperty(nameof(Value1623)); + public string Value1623 + { + get => GetProperty(Value1623Property); + set => SetProperty(Value1623Property, value); + } + + + public static readonly PropertyInfo Value1624Property = RegisterProperty(nameof(Value1624)); + public string Value1624 + { + get => GetProperty(Value1624Property); + set => SetProperty(Value1624Property, value); + } + + + public static readonly PropertyInfo Value1625Property = RegisterProperty(nameof(Value1625)); + public string Value1625 + { + get => GetProperty(Value1625Property); + set => SetProperty(Value1625Property, value); + } + + + public static readonly PropertyInfo Value1626Property = RegisterProperty(nameof(Value1626)); + public string Value1626 + { + get => GetProperty(Value1626Property); + set => SetProperty(Value1626Property, value); + } + + + public static readonly PropertyInfo Value1627Property = RegisterProperty(nameof(Value1627)); + public string Value1627 + { + get => GetProperty(Value1627Property); + set => SetProperty(Value1627Property, value); + } + + + public static readonly PropertyInfo Value1628Property = RegisterProperty(nameof(Value1628)); + public string Value1628 + { + get => GetProperty(Value1628Property); + set => SetProperty(Value1628Property, value); + } + + + public static readonly PropertyInfo Value1629Property = RegisterProperty(nameof(Value1629)); + public string Value1629 + { + get => GetProperty(Value1629Property); + set => SetProperty(Value1629Property, value); + } + + + public static readonly PropertyInfo Value1630Property = RegisterProperty(nameof(Value1630)); + public string Value1630 + { + get => GetProperty(Value1630Property); + set => SetProperty(Value1630Property, value); + } + + + public static readonly PropertyInfo Value1631Property = RegisterProperty(nameof(Value1631)); + public string Value1631 + { + get => GetProperty(Value1631Property); + set => SetProperty(Value1631Property, value); + } + + + public static readonly PropertyInfo Value1632Property = RegisterProperty(nameof(Value1632)); + public string Value1632 + { + get => GetProperty(Value1632Property); + set => SetProperty(Value1632Property, value); + } + + + public static readonly PropertyInfo Value1633Property = RegisterProperty(nameof(Value1633)); + public string Value1633 + { + get => GetProperty(Value1633Property); + set => SetProperty(Value1633Property, value); + } + + + public static readonly PropertyInfo Value1634Property = RegisterProperty(nameof(Value1634)); + public string Value1634 + { + get => GetProperty(Value1634Property); + set => SetProperty(Value1634Property, value); + } + + + public static readonly PropertyInfo Value1635Property = RegisterProperty(nameof(Value1635)); + public string Value1635 + { + get => GetProperty(Value1635Property); + set => SetProperty(Value1635Property, value); + } + + + public static readonly PropertyInfo Value1636Property = RegisterProperty(nameof(Value1636)); + public string Value1636 + { + get => GetProperty(Value1636Property); + set => SetProperty(Value1636Property, value); + } + + + public static readonly PropertyInfo Value1637Property = RegisterProperty(nameof(Value1637)); + public string Value1637 + { + get => GetProperty(Value1637Property); + set => SetProperty(Value1637Property, value); + } + + + public static readonly PropertyInfo Value1638Property = RegisterProperty(nameof(Value1638)); + public string Value1638 + { + get => GetProperty(Value1638Property); + set => SetProperty(Value1638Property, value); + } + + + public static readonly PropertyInfo Value1639Property = RegisterProperty(nameof(Value1639)); + public string Value1639 + { + get => GetProperty(Value1639Property); + set => SetProperty(Value1639Property, value); + } + + + public static readonly PropertyInfo Value1640Property = RegisterProperty(nameof(Value1640)); + public string Value1640 + { + get => GetProperty(Value1640Property); + set => SetProperty(Value1640Property, value); + } + + + public static readonly PropertyInfo Value1641Property = RegisterProperty(nameof(Value1641)); + public string Value1641 + { + get => GetProperty(Value1641Property); + set => SetProperty(Value1641Property, value); + } + + + public static readonly PropertyInfo Value1642Property = RegisterProperty(nameof(Value1642)); + public string Value1642 + { + get => GetProperty(Value1642Property); + set => SetProperty(Value1642Property, value); + } + + + public static readonly PropertyInfo Value1643Property = RegisterProperty(nameof(Value1643)); + public string Value1643 + { + get => GetProperty(Value1643Property); + set => SetProperty(Value1643Property, value); + } + + + public static readonly PropertyInfo Value1644Property = RegisterProperty(nameof(Value1644)); + public string Value1644 + { + get => GetProperty(Value1644Property); + set => SetProperty(Value1644Property, value); + } + + + public static readonly PropertyInfo Value1645Property = RegisterProperty(nameof(Value1645)); + public string Value1645 + { + get => GetProperty(Value1645Property); + set => SetProperty(Value1645Property, value); + } + + + public static readonly PropertyInfo Value1646Property = RegisterProperty(nameof(Value1646)); + public string Value1646 + { + get => GetProperty(Value1646Property); + set => SetProperty(Value1646Property, value); + } + + + public static readonly PropertyInfo Value1647Property = RegisterProperty(nameof(Value1647)); + public string Value1647 + { + get => GetProperty(Value1647Property); + set => SetProperty(Value1647Property, value); + } + + + public static readonly PropertyInfo Value1648Property = RegisterProperty(nameof(Value1648)); + public string Value1648 + { + get => GetProperty(Value1648Property); + set => SetProperty(Value1648Property, value); + } + + + public static readonly PropertyInfo Value1649Property = RegisterProperty(nameof(Value1649)); + public string Value1649 + { + get => GetProperty(Value1649Property); + set => SetProperty(Value1649Property, value); + } + + + public static readonly PropertyInfo Value1650Property = RegisterProperty(nameof(Value1650)); + public string Value1650 + { + get => GetProperty(Value1650Property); + set => SetProperty(Value1650Property, value); + } + + + public static readonly PropertyInfo Value1651Property = RegisterProperty(nameof(Value1651)); + public string Value1651 + { + get => GetProperty(Value1651Property); + set => SetProperty(Value1651Property, value); + } + + + public static readonly PropertyInfo Value1652Property = RegisterProperty(nameof(Value1652)); + public string Value1652 + { + get => GetProperty(Value1652Property); + set => SetProperty(Value1652Property, value); + } + + + public static readonly PropertyInfo Value1653Property = RegisterProperty(nameof(Value1653)); + public string Value1653 + { + get => GetProperty(Value1653Property); + set => SetProperty(Value1653Property, value); + } + + + public static readonly PropertyInfo Value1654Property = RegisterProperty(nameof(Value1654)); + public string Value1654 + { + get => GetProperty(Value1654Property); + set => SetProperty(Value1654Property, value); + } + + + public static readonly PropertyInfo Value1655Property = RegisterProperty(nameof(Value1655)); + public string Value1655 + { + get => GetProperty(Value1655Property); + set => SetProperty(Value1655Property, value); + } + + + public static readonly PropertyInfo Value1656Property = RegisterProperty(nameof(Value1656)); + public string Value1656 + { + get => GetProperty(Value1656Property); + set => SetProperty(Value1656Property, value); + } + + + public static readonly PropertyInfo Value1657Property = RegisterProperty(nameof(Value1657)); + public string Value1657 + { + get => GetProperty(Value1657Property); + set => SetProperty(Value1657Property, value); + } + + + public static readonly PropertyInfo Value1658Property = RegisterProperty(nameof(Value1658)); + public string Value1658 + { + get => GetProperty(Value1658Property); + set => SetProperty(Value1658Property, value); + } + + + public static readonly PropertyInfo Value1659Property = RegisterProperty(nameof(Value1659)); + public string Value1659 + { + get => GetProperty(Value1659Property); + set => SetProperty(Value1659Property, value); + } + + + public static readonly PropertyInfo Value1660Property = RegisterProperty(nameof(Value1660)); + public string Value1660 + { + get => GetProperty(Value1660Property); + set => SetProperty(Value1660Property, value); + } + + + public static readonly PropertyInfo Value1661Property = RegisterProperty(nameof(Value1661)); + public string Value1661 + { + get => GetProperty(Value1661Property); + set => SetProperty(Value1661Property, value); + } + + + public static readonly PropertyInfo Value1662Property = RegisterProperty(nameof(Value1662)); + public string Value1662 + { + get => GetProperty(Value1662Property); + set => SetProperty(Value1662Property, value); + } + + + public static readonly PropertyInfo Value1663Property = RegisterProperty(nameof(Value1663)); + public string Value1663 + { + get => GetProperty(Value1663Property); + set => SetProperty(Value1663Property, value); + } + + + public static readonly PropertyInfo Value1664Property = RegisterProperty(nameof(Value1664)); + public string Value1664 + { + get => GetProperty(Value1664Property); + set => SetProperty(Value1664Property, value); + } + + + public static readonly PropertyInfo Value1665Property = RegisterProperty(nameof(Value1665)); + public string Value1665 + { + get => GetProperty(Value1665Property); + set => SetProperty(Value1665Property, value); + } + + + public static readonly PropertyInfo Value1666Property = RegisterProperty(nameof(Value1666)); + public string Value1666 + { + get => GetProperty(Value1666Property); + set => SetProperty(Value1666Property, value); + } + + + public static readonly PropertyInfo Value1667Property = RegisterProperty(nameof(Value1667)); + public string Value1667 + { + get => GetProperty(Value1667Property); + set => SetProperty(Value1667Property, value); + } + + + public static readonly PropertyInfo Value1668Property = RegisterProperty(nameof(Value1668)); + public string Value1668 + { + get => GetProperty(Value1668Property); + set => SetProperty(Value1668Property, value); + } + + + public static readonly PropertyInfo Value1669Property = RegisterProperty(nameof(Value1669)); + public string Value1669 + { + get => GetProperty(Value1669Property); + set => SetProperty(Value1669Property, value); + } + + + public static readonly PropertyInfo Value1670Property = RegisterProperty(nameof(Value1670)); + public string Value1670 + { + get => GetProperty(Value1670Property); + set => SetProperty(Value1670Property, value); + } + + + public static readonly PropertyInfo Value1671Property = RegisterProperty(nameof(Value1671)); + public string Value1671 + { + get => GetProperty(Value1671Property); + set => SetProperty(Value1671Property, value); + } + + + public static readonly PropertyInfo Value1672Property = RegisterProperty(nameof(Value1672)); + public string Value1672 + { + get => GetProperty(Value1672Property); + set => SetProperty(Value1672Property, value); + } + + + public static readonly PropertyInfo Value1673Property = RegisterProperty(nameof(Value1673)); + public string Value1673 + { + get => GetProperty(Value1673Property); + set => SetProperty(Value1673Property, value); + } + + + public static readonly PropertyInfo Value1674Property = RegisterProperty(nameof(Value1674)); + public string Value1674 + { + get => GetProperty(Value1674Property); + set => SetProperty(Value1674Property, value); + } + + + public static readonly PropertyInfo Value1675Property = RegisterProperty(nameof(Value1675)); + public string Value1675 + { + get => GetProperty(Value1675Property); + set => SetProperty(Value1675Property, value); + } + + + public static readonly PropertyInfo Value1676Property = RegisterProperty(nameof(Value1676)); + public string Value1676 + { + get => GetProperty(Value1676Property); + set => SetProperty(Value1676Property, value); + } + + + public static readonly PropertyInfo Value1677Property = RegisterProperty(nameof(Value1677)); + public string Value1677 + { + get => GetProperty(Value1677Property); + set => SetProperty(Value1677Property, value); + } + + + public static readonly PropertyInfo Value1678Property = RegisterProperty(nameof(Value1678)); + public string Value1678 + { + get => GetProperty(Value1678Property); + set => SetProperty(Value1678Property, value); + } + + + public static readonly PropertyInfo Value1679Property = RegisterProperty(nameof(Value1679)); + public string Value1679 + { + get => GetProperty(Value1679Property); + set => SetProperty(Value1679Property, value); + } + + + public static readonly PropertyInfo Value1680Property = RegisterProperty(nameof(Value1680)); + public string Value1680 + { + get => GetProperty(Value1680Property); + set => SetProperty(Value1680Property, value); + } + + + public static readonly PropertyInfo Value1681Property = RegisterProperty(nameof(Value1681)); + public string Value1681 + { + get => GetProperty(Value1681Property); + set => SetProperty(Value1681Property, value); + } + + + public static readonly PropertyInfo Value1682Property = RegisterProperty(nameof(Value1682)); + public string Value1682 + { + get => GetProperty(Value1682Property); + set => SetProperty(Value1682Property, value); + } + + + public static readonly PropertyInfo Value1683Property = RegisterProperty(nameof(Value1683)); + public string Value1683 + { + get => GetProperty(Value1683Property); + set => SetProperty(Value1683Property, value); + } + + + public static readonly PropertyInfo Value1684Property = RegisterProperty(nameof(Value1684)); + public string Value1684 + { + get => GetProperty(Value1684Property); + set => SetProperty(Value1684Property, value); + } + + + public static readonly PropertyInfo Value1685Property = RegisterProperty(nameof(Value1685)); + public string Value1685 + { + get => GetProperty(Value1685Property); + set => SetProperty(Value1685Property, value); + } + + + public static readonly PropertyInfo Value1686Property = RegisterProperty(nameof(Value1686)); + public string Value1686 + { + get => GetProperty(Value1686Property); + set => SetProperty(Value1686Property, value); + } + + + public static readonly PropertyInfo Value1687Property = RegisterProperty(nameof(Value1687)); + public string Value1687 + { + get => GetProperty(Value1687Property); + set => SetProperty(Value1687Property, value); + } + + + public static readonly PropertyInfo Value1688Property = RegisterProperty(nameof(Value1688)); + public string Value1688 + { + get => GetProperty(Value1688Property); + set => SetProperty(Value1688Property, value); + } + + + public static readonly PropertyInfo Value1689Property = RegisterProperty(nameof(Value1689)); + public string Value1689 + { + get => GetProperty(Value1689Property); + set => SetProperty(Value1689Property, value); + } + + + public static readonly PropertyInfo Value1690Property = RegisterProperty(nameof(Value1690)); + public string Value1690 + { + get => GetProperty(Value1690Property); + set => SetProperty(Value1690Property, value); + } + + + public static readonly PropertyInfo Value1691Property = RegisterProperty(nameof(Value1691)); + public string Value1691 + { + get => GetProperty(Value1691Property); + set => SetProperty(Value1691Property, value); + } + + + public static readonly PropertyInfo Value1692Property = RegisterProperty(nameof(Value1692)); + public string Value1692 + { + get => GetProperty(Value1692Property); + set => SetProperty(Value1692Property, value); + } + + + public static readonly PropertyInfo Value1693Property = RegisterProperty(nameof(Value1693)); + public string Value1693 + { + get => GetProperty(Value1693Property); + set => SetProperty(Value1693Property, value); + } + + + public static readonly PropertyInfo Value1694Property = RegisterProperty(nameof(Value1694)); + public string Value1694 + { + get => GetProperty(Value1694Property); + set => SetProperty(Value1694Property, value); + } + + + public static readonly PropertyInfo Value1695Property = RegisterProperty(nameof(Value1695)); + public string Value1695 + { + get => GetProperty(Value1695Property); + set => SetProperty(Value1695Property, value); + } + + + public static readonly PropertyInfo Value1696Property = RegisterProperty(nameof(Value1696)); + public string Value1696 + { + get => GetProperty(Value1696Property); + set => SetProperty(Value1696Property, value); + } + + + public static readonly PropertyInfo Value1697Property = RegisterProperty(nameof(Value1697)); + public string Value1697 + { + get => GetProperty(Value1697Property); + set => SetProperty(Value1697Property, value); + } + + + public static readonly PropertyInfo Value1698Property = RegisterProperty(nameof(Value1698)); + public string Value1698 + { + get => GetProperty(Value1698Property); + set => SetProperty(Value1698Property, value); + } + + + public static readonly PropertyInfo Value1699Property = RegisterProperty(nameof(Value1699)); + public string Value1699 + { + get => GetProperty(Value1699Property); + set => SetProperty(Value1699Property, value); + } + + + public static readonly PropertyInfo Value1700Property = RegisterProperty(nameof(Value1700)); + public string Value1700 + { + get => GetProperty(Value1700Property); + set => SetProperty(Value1700Property, value); + } + + + public static readonly PropertyInfo Value1701Property = RegisterProperty(nameof(Value1701)); + public string Value1701 + { + get => GetProperty(Value1701Property); + set => SetProperty(Value1701Property, value); + } + + + public static readonly PropertyInfo Value1702Property = RegisterProperty(nameof(Value1702)); + public string Value1702 + { + get => GetProperty(Value1702Property); + set => SetProperty(Value1702Property, value); + } + + + public static readonly PropertyInfo Value1703Property = RegisterProperty(nameof(Value1703)); + public string Value1703 + { + get => GetProperty(Value1703Property); + set => SetProperty(Value1703Property, value); + } + + + public static readonly PropertyInfo Value1704Property = RegisterProperty(nameof(Value1704)); + public string Value1704 + { + get => GetProperty(Value1704Property); + set => SetProperty(Value1704Property, value); + } + + + public static readonly PropertyInfo Value1705Property = RegisterProperty(nameof(Value1705)); + public string Value1705 + { + get => GetProperty(Value1705Property); + set => SetProperty(Value1705Property, value); + } + + + public static readonly PropertyInfo Value1706Property = RegisterProperty(nameof(Value1706)); + public string Value1706 + { + get => GetProperty(Value1706Property); + set => SetProperty(Value1706Property, value); + } + + + public static readonly PropertyInfo Value1707Property = RegisterProperty(nameof(Value1707)); + public string Value1707 + { + get => GetProperty(Value1707Property); + set => SetProperty(Value1707Property, value); + } + + + public static readonly PropertyInfo Value1708Property = RegisterProperty(nameof(Value1708)); + public string Value1708 + { + get => GetProperty(Value1708Property); + set => SetProperty(Value1708Property, value); + } + + + public static readonly PropertyInfo Value1709Property = RegisterProperty(nameof(Value1709)); + public string Value1709 + { + get => GetProperty(Value1709Property); + set => SetProperty(Value1709Property, value); + } + + + public static readonly PropertyInfo Value1710Property = RegisterProperty(nameof(Value1710)); + public string Value1710 + { + get => GetProperty(Value1710Property); + set => SetProperty(Value1710Property, value); + } + + + public static readonly PropertyInfo Value1711Property = RegisterProperty(nameof(Value1711)); + public string Value1711 + { + get => GetProperty(Value1711Property); + set => SetProperty(Value1711Property, value); + } + + + public static readonly PropertyInfo Value1712Property = RegisterProperty(nameof(Value1712)); + public string Value1712 + { + get => GetProperty(Value1712Property); + set => SetProperty(Value1712Property, value); + } + + + public static readonly PropertyInfo Value1713Property = RegisterProperty(nameof(Value1713)); + public string Value1713 + { + get => GetProperty(Value1713Property); + set => SetProperty(Value1713Property, value); + } + + + public static readonly PropertyInfo Value1714Property = RegisterProperty(nameof(Value1714)); + public string Value1714 + { + get => GetProperty(Value1714Property); + set => SetProperty(Value1714Property, value); + } + + + public static readonly PropertyInfo Value1715Property = RegisterProperty(nameof(Value1715)); + public string Value1715 + { + get => GetProperty(Value1715Property); + set => SetProperty(Value1715Property, value); + } + + + public static readonly PropertyInfo Value1716Property = RegisterProperty(nameof(Value1716)); + public string Value1716 + { + get => GetProperty(Value1716Property); + set => SetProperty(Value1716Property, value); + } + + + public static readonly PropertyInfo Value1717Property = RegisterProperty(nameof(Value1717)); + public string Value1717 + { + get => GetProperty(Value1717Property); + set => SetProperty(Value1717Property, value); + } + + + public static readonly PropertyInfo Value1718Property = RegisterProperty(nameof(Value1718)); + public string Value1718 + { + get => GetProperty(Value1718Property); + set => SetProperty(Value1718Property, value); + } + + + public static readonly PropertyInfo Value1719Property = RegisterProperty(nameof(Value1719)); + public string Value1719 + { + get => GetProperty(Value1719Property); + set => SetProperty(Value1719Property, value); + } + + + public static readonly PropertyInfo Value1720Property = RegisterProperty(nameof(Value1720)); + public string Value1720 + { + get => GetProperty(Value1720Property); + set => SetProperty(Value1720Property, value); + } + + + public static readonly PropertyInfo Value1721Property = RegisterProperty(nameof(Value1721)); + public string Value1721 + { + get => GetProperty(Value1721Property); + set => SetProperty(Value1721Property, value); + } + + + public static readonly PropertyInfo Value1722Property = RegisterProperty(nameof(Value1722)); + public string Value1722 + { + get => GetProperty(Value1722Property); + set => SetProperty(Value1722Property, value); + } + + + public static readonly PropertyInfo Value1723Property = RegisterProperty(nameof(Value1723)); + public string Value1723 + { + get => GetProperty(Value1723Property); + set => SetProperty(Value1723Property, value); + } + + + public static readonly PropertyInfo Value1724Property = RegisterProperty(nameof(Value1724)); + public string Value1724 + { + get => GetProperty(Value1724Property); + set => SetProperty(Value1724Property, value); + } + + + public static readonly PropertyInfo Value1725Property = RegisterProperty(nameof(Value1725)); + public string Value1725 + { + get => GetProperty(Value1725Property); + set => SetProperty(Value1725Property, value); + } + + + public static readonly PropertyInfo Value1726Property = RegisterProperty(nameof(Value1726)); + public string Value1726 + { + get => GetProperty(Value1726Property); + set => SetProperty(Value1726Property, value); + } + + + public static readonly PropertyInfo Value1727Property = RegisterProperty(nameof(Value1727)); + public string Value1727 + { + get => GetProperty(Value1727Property); + set => SetProperty(Value1727Property, value); + } + + + public static readonly PropertyInfo Value1728Property = RegisterProperty(nameof(Value1728)); + public string Value1728 + { + get => GetProperty(Value1728Property); + set => SetProperty(Value1728Property, value); + } + + + public static readonly PropertyInfo Value1729Property = RegisterProperty(nameof(Value1729)); + public string Value1729 + { + get => GetProperty(Value1729Property); + set => SetProperty(Value1729Property, value); + } + + + public static readonly PropertyInfo Value1730Property = RegisterProperty(nameof(Value1730)); + public string Value1730 + { + get => GetProperty(Value1730Property); + set => SetProperty(Value1730Property, value); + } + + + public static readonly PropertyInfo Value1731Property = RegisterProperty(nameof(Value1731)); + public string Value1731 + { + get => GetProperty(Value1731Property); + set => SetProperty(Value1731Property, value); + } + + + public static readonly PropertyInfo Value1732Property = RegisterProperty(nameof(Value1732)); + public string Value1732 + { + get => GetProperty(Value1732Property); + set => SetProperty(Value1732Property, value); + } + + + public static readonly PropertyInfo Value1733Property = RegisterProperty(nameof(Value1733)); + public string Value1733 + { + get => GetProperty(Value1733Property); + set => SetProperty(Value1733Property, value); + } + + + public static readonly PropertyInfo Value1734Property = RegisterProperty(nameof(Value1734)); + public string Value1734 + { + get => GetProperty(Value1734Property); + set => SetProperty(Value1734Property, value); + } + + + public static readonly PropertyInfo Value1735Property = RegisterProperty(nameof(Value1735)); + public string Value1735 + { + get => GetProperty(Value1735Property); + set => SetProperty(Value1735Property, value); + } + + + public static readonly PropertyInfo Value1736Property = RegisterProperty(nameof(Value1736)); + public string Value1736 + { + get => GetProperty(Value1736Property); + set => SetProperty(Value1736Property, value); + } + + + public static readonly PropertyInfo Value1737Property = RegisterProperty(nameof(Value1737)); + public string Value1737 + { + get => GetProperty(Value1737Property); + set => SetProperty(Value1737Property, value); + } + + + public static readonly PropertyInfo Value1738Property = RegisterProperty(nameof(Value1738)); + public string Value1738 + { + get => GetProperty(Value1738Property); + set => SetProperty(Value1738Property, value); + } + + + public static readonly PropertyInfo Value1739Property = RegisterProperty(nameof(Value1739)); + public string Value1739 + { + get => GetProperty(Value1739Property); + set => SetProperty(Value1739Property, value); + } + + + public static readonly PropertyInfo Value1740Property = RegisterProperty(nameof(Value1740)); + public string Value1740 + { + get => GetProperty(Value1740Property); + set => SetProperty(Value1740Property, value); + } + + + public static readonly PropertyInfo Value1741Property = RegisterProperty(nameof(Value1741)); + public string Value1741 + { + get => GetProperty(Value1741Property); + set => SetProperty(Value1741Property, value); + } + + + public static readonly PropertyInfo Value1742Property = RegisterProperty(nameof(Value1742)); + public string Value1742 + { + get => GetProperty(Value1742Property); + set => SetProperty(Value1742Property, value); + } + + + public static readonly PropertyInfo Value1743Property = RegisterProperty(nameof(Value1743)); + public string Value1743 + { + get => GetProperty(Value1743Property); + set => SetProperty(Value1743Property, value); + } + + + public static readonly PropertyInfo Value1744Property = RegisterProperty(nameof(Value1744)); + public string Value1744 + { + get => GetProperty(Value1744Property); + set => SetProperty(Value1744Property, value); + } + + + public static readonly PropertyInfo Value1745Property = RegisterProperty(nameof(Value1745)); + public string Value1745 + { + get => GetProperty(Value1745Property); + set => SetProperty(Value1745Property, value); + } + + + public static readonly PropertyInfo Value1746Property = RegisterProperty(nameof(Value1746)); + public string Value1746 + { + get => GetProperty(Value1746Property); + set => SetProperty(Value1746Property, value); + } + + + public static readonly PropertyInfo Value1747Property = RegisterProperty(nameof(Value1747)); + public string Value1747 + { + get => GetProperty(Value1747Property); + set => SetProperty(Value1747Property, value); + } + + + public static readonly PropertyInfo Value1748Property = RegisterProperty(nameof(Value1748)); + public string Value1748 + { + get => GetProperty(Value1748Property); + set => SetProperty(Value1748Property, value); + } + + + public static readonly PropertyInfo Value1749Property = RegisterProperty(nameof(Value1749)); + public string Value1749 + { + get => GetProperty(Value1749Property); + set => SetProperty(Value1749Property, value); + } + + + public static readonly PropertyInfo Value1750Property = RegisterProperty(nameof(Value1750)); + public string Value1750 + { + get => GetProperty(Value1750Property); + set => SetProperty(Value1750Property, value); + } + + + public static readonly PropertyInfo Value1751Property = RegisterProperty(nameof(Value1751)); + public string Value1751 + { + get => GetProperty(Value1751Property); + set => SetProperty(Value1751Property, value); + } + + + public static readonly PropertyInfo Value1752Property = RegisterProperty(nameof(Value1752)); + public string Value1752 + { + get => GetProperty(Value1752Property); + set => SetProperty(Value1752Property, value); + } + + + public static readonly PropertyInfo Value1753Property = RegisterProperty(nameof(Value1753)); + public string Value1753 + { + get => GetProperty(Value1753Property); + set => SetProperty(Value1753Property, value); + } + + + public static readonly PropertyInfo Value1754Property = RegisterProperty(nameof(Value1754)); + public string Value1754 + { + get => GetProperty(Value1754Property); + set => SetProperty(Value1754Property, value); + } + + + public static readonly PropertyInfo Value1755Property = RegisterProperty(nameof(Value1755)); + public string Value1755 + { + get => GetProperty(Value1755Property); + set => SetProperty(Value1755Property, value); + } + + + public static readonly PropertyInfo Value1756Property = RegisterProperty(nameof(Value1756)); + public string Value1756 + { + get => GetProperty(Value1756Property); + set => SetProperty(Value1756Property, value); + } + + + public static readonly PropertyInfo Value1757Property = RegisterProperty(nameof(Value1757)); + public string Value1757 + { + get => GetProperty(Value1757Property); + set => SetProperty(Value1757Property, value); + } + + + public static readonly PropertyInfo Value1758Property = RegisterProperty(nameof(Value1758)); + public string Value1758 + { + get => GetProperty(Value1758Property); + set => SetProperty(Value1758Property, value); + } + + + public static readonly PropertyInfo Value1759Property = RegisterProperty(nameof(Value1759)); + public string Value1759 + { + get => GetProperty(Value1759Property); + set => SetProperty(Value1759Property, value); + } + + + public static readonly PropertyInfo Value1760Property = RegisterProperty(nameof(Value1760)); + public string Value1760 + { + get => GetProperty(Value1760Property); + set => SetProperty(Value1760Property, value); + } + + + public static readonly PropertyInfo Value1761Property = RegisterProperty(nameof(Value1761)); + public string Value1761 + { + get => GetProperty(Value1761Property); + set => SetProperty(Value1761Property, value); + } + + + public static readonly PropertyInfo Value1762Property = RegisterProperty(nameof(Value1762)); + public string Value1762 + { + get => GetProperty(Value1762Property); + set => SetProperty(Value1762Property, value); + } + + + public static readonly PropertyInfo Value1763Property = RegisterProperty(nameof(Value1763)); + public string Value1763 + { + get => GetProperty(Value1763Property); + set => SetProperty(Value1763Property, value); + } + + + public static readonly PropertyInfo Value1764Property = RegisterProperty(nameof(Value1764)); + public string Value1764 + { + get => GetProperty(Value1764Property); + set => SetProperty(Value1764Property, value); + } + + + public static readonly PropertyInfo Value1765Property = RegisterProperty(nameof(Value1765)); + public string Value1765 + { + get => GetProperty(Value1765Property); + set => SetProperty(Value1765Property, value); + } + + + public static readonly PropertyInfo Value1766Property = RegisterProperty(nameof(Value1766)); + public string Value1766 + { + get => GetProperty(Value1766Property); + set => SetProperty(Value1766Property, value); + } + + + public static readonly PropertyInfo Value1767Property = RegisterProperty(nameof(Value1767)); + public string Value1767 + { + get => GetProperty(Value1767Property); + set => SetProperty(Value1767Property, value); + } + + + public static readonly PropertyInfo Value1768Property = RegisterProperty(nameof(Value1768)); + public string Value1768 + { + get => GetProperty(Value1768Property); + set => SetProperty(Value1768Property, value); + } + + + public static readonly PropertyInfo Value1769Property = RegisterProperty(nameof(Value1769)); + public string Value1769 + { + get => GetProperty(Value1769Property); + set => SetProperty(Value1769Property, value); + } + + + public static readonly PropertyInfo Value1770Property = RegisterProperty(nameof(Value1770)); + public string Value1770 + { + get => GetProperty(Value1770Property); + set => SetProperty(Value1770Property, value); + } + + + public static readonly PropertyInfo Value1771Property = RegisterProperty(nameof(Value1771)); + public string Value1771 + { + get => GetProperty(Value1771Property); + set => SetProperty(Value1771Property, value); + } + + + public static readonly PropertyInfo Value1772Property = RegisterProperty(nameof(Value1772)); + public string Value1772 + { + get => GetProperty(Value1772Property); + set => SetProperty(Value1772Property, value); + } + + + public static readonly PropertyInfo Value1773Property = RegisterProperty(nameof(Value1773)); + public string Value1773 + { + get => GetProperty(Value1773Property); + set => SetProperty(Value1773Property, value); + } + + + public static readonly PropertyInfo Value1774Property = RegisterProperty(nameof(Value1774)); + public string Value1774 + { + get => GetProperty(Value1774Property); + set => SetProperty(Value1774Property, value); + } + + + public static readonly PropertyInfo Value1775Property = RegisterProperty(nameof(Value1775)); + public string Value1775 + { + get => GetProperty(Value1775Property); + set => SetProperty(Value1775Property, value); + } + + + public static readonly PropertyInfo Value1776Property = RegisterProperty(nameof(Value1776)); + public string Value1776 + { + get => GetProperty(Value1776Property); + set => SetProperty(Value1776Property, value); + } + + + public static readonly PropertyInfo Value1777Property = RegisterProperty(nameof(Value1777)); + public string Value1777 + { + get => GetProperty(Value1777Property); + set => SetProperty(Value1777Property, value); + } + + + public static readonly PropertyInfo Value1778Property = RegisterProperty(nameof(Value1778)); + public string Value1778 + { + get => GetProperty(Value1778Property); + set => SetProperty(Value1778Property, value); + } + + + public static readonly PropertyInfo Value1779Property = RegisterProperty(nameof(Value1779)); + public string Value1779 + { + get => GetProperty(Value1779Property); + set => SetProperty(Value1779Property, value); + } + + + public static readonly PropertyInfo Value1780Property = RegisterProperty(nameof(Value1780)); + public string Value1780 + { + get => GetProperty(Value1780Property); + set => SetProperty(Value1780Property, value); + } + + + public static readonly PropertyInfo Value1781Property = RegisterProperty(nameof(Value1781)); + public string Value1781 + { + get => GetProperty(Value1781Property); + set => SetProperty(Value1781Property, value); + } + + + public static readonly PropertyInfo Value1782Property = RegisterProperty(nameof(Value1782)); + public string Value1782 + { + get => GetProperty(Value1782Property); + set => SetProperty(Value1782Property, value); + } + + + public static readonly PropertyInfo Value1783Property = RegisterProperty(nameof(Value1783)); + public string Value1783 + { + get => GetProperty(Value1783Property); + set => SetProperty(Value1783Property, value); + } + + + public static readonly PropertyInfo Value1784Property = RegisterProperty(nameof(Value1784)); + public string Value1784 + { + get => GetProperty(Value1784Property); + set => SetProperty(Value1784Property, value); + } + + + public static readonly PropertyInfo Value1785Property = RegisterProperty(nameof(Value1785)); + public string Value1785 + { + get => GetProperty(Value1785Property); + set => SetProperty(Value1785Property, value); + } + + + public static readonly PropertyInfo Value1786Property = RegisterProperty(nameof(Value1786)); + public string Value1786 + { + get => GetProperty(Value1786Property); + set => SetProperty(Value1786Property, value); + } + + + public static readonly PropertyInfo Value1787Property = RegisterProperty(nameof(Value1787)); + public string Value1787 + { + get => GetProperty(Value1787Property); + set => SetProperty(Value1787Property, value); + } + + + public static readonly PropertyInfo Value1788Property = RegisterProperty(nameof(Value1788)); + public string Value1788 + { + get => GetProperty(Value1788Property); + set => SetProperty(Value1788Property, value); + } + + + public static readonly PropertyInfo Value1789Property = RegisterProperty(nameof(Value1789)); + public string Value1789 + { + get => GetProperty(Value1789Property); + set => SetProperty(Value1789Property, value); + } + + + public static readonly PropertyInfo Value1790Property = RegisterProperty(nameof(Value1790)); + public string Value1790 + { + get => GetProperty(Value1790Property); + set => SetProperty(Value1790Property, value); + } + + + public static readonly PropertyInfo Value1791Property = RegisterProperty(nameof(Value1791)); + public string Value1791 + { + get => GetProperty(Value1791Property); + set => SetProperty(Value1791Property, value); + } + + + public static readonly PropertyInfo Value1792Property = RegisterProperty(nameof(Value1792)); + public string Value1792 + { + get => GetProperty(Value1792Property); + set => SetProperty(Value1792Property, value); + } + + + public static readonly PropertyInfo Value1793Property = RegisterProperty(nameof(Value1793)); + public string Value1793 + { + get => GetProperty(Value1793Property); + set => SetProperty(Value1793Property, value); + } + + + public static readonly PropertyInfo Value1794Property = RegisterProperty(nameof(Value1794)); + public string Value1794 + { + get => GetProperty(Value1794Property); + set => SetProperty(Value1794Property, value); + } + + + public static readonly PropertyInfo Value1795Property = RegisterProperty(nameof(Value1795)); + public string Value1795 + { + get => GetProperty(Value1795Property); + set => SetProperty(Value1795Property, value); + } + + + public static readonly PropertyInfo Value1796Property = RegisterProperty(nameof(Value1796)); + public string Value1796 + { + get => GetProperty(Value1796Property); + set => SetProperty(Value1796Property, value); + } + + + public static readonly PropertyInfo Value1797Property = RegisterProperty(nameof(Value1797)); + public string Value1797 + { + get => GetProperty(Value1797Property); + set => SetProperty(Value1797Property, value); + } + + + public static readonly PropertyInfo Value1798Property = RegisterProperty(nameof(Value1798)); + public string Value1798 + { + get => GetProperty(Value1798Property); + set => SetProperty(Value1798Property, value); + } + + + public static readonly PropertyInfo Value1799Property = RegisterProperty(nameof(Value1799)); + public string Value1799 + { + get => GetProperty(Value1799Property); + set => SetProperty(Value1799Property, value); + } + + + public static readonly PropertyInfo Value1800Property = RegisterProperty(nameof(Value1800)); + public string Value1800 + { + get => GetProperty(Value1800Property); + set => SetProperty(Value1800Property, value); + } +} +#nullable enable \ No newline at end of file diff --git a/Source/Csla.Benchmarks/PerformanceCloner/Model/code.cs b/Source/Csla.Benchmarks/PerformanceCloner/Model/code.cs new file mode 100644 index 0000000000..99729af449 --- /dev/null +++ b/Source/Csla.Benchmarks/PerformanceCloner/Model/code.cs @@ -0,0 +1,2876 @@ +using Csla; + +namespace PropertyPerf.Client.Model; +#nullable disable +public class TestChild1 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + } +} +public class TestChild2 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild3 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild4 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild5 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild6 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild7 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild8 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild9 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild10 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild11 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild12 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild13 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild14 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild15 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild16 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild17 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild18 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild19 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild20 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild21 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild22 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild23 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild24 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild25 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild26 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild27 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild28 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild29 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild30 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild31 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild32 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild33 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild34 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild35 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild36 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild37 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild38 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild39 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild40 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild41 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild42 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild43 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild44 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild45 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild46 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild47 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild48 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild49 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild50 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild51 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild52 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild53 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild54 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild55 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild56 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild57 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild58 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild59 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild60 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild61 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild62 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild63 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild64 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild65 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild66 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild67 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild68 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild69 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild70 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild71 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild72 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild73 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild74 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild75 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild76 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild77 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild78 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild79 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild80 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild81 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild82 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild83 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild84 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild85 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild86 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild87 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild88 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild89 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild90 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild91 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild92 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild93 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild94 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild95 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild96 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild97 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild98 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} +public class TestChild99 : BusinessBase +{ + public static readonly PropertyInfo NameProperty = RegisterProperty(nameof(Name)); + public string Name + { + get => GetProperty(NameProperty); + set => SetProperty(NameProperty, value); + } + + public static readonly PropertyInfo Name2Property = RegisterProperty(nameof(Name2)); + public string Name2 + { + get => GetProperty(Name2Property); + set => SetProperty(Name2Property, value); + } + + public static readonly PropertyInfo TestChild1ValueProperty = RegisterProperty(nameof(TestChild1Value)); + public TestChild1 TestChild1Value + { + get => GetProperty(TestChild1ValueProperty); + set => SetProperty(TestChild1ValueProperty, value); + } + + [CreateChild] + private void Create([Inject] IChildDataPortal portal) + { + LoadProperty(TestChild1ValueProperty, portal.CreateChild()); + } +} + +#nullable enable \ No newline at end of file diff --git a/Source/Csla.Benchmarks/PerformanceCloner/PerformanceClonerBenchmark.cs b/Source/Csla.Benchmarks/PerformanceCloner/PerformanceClonerBenchmark.cs new file mode 100644 index 0000000000..d6f65042cc --- /dev/null +++ b/Source/Csla.Benchmarks/PerformanceCloner/PerformanceClonerBenchmark.cs @@ -0,0 +1,60 @@ +using BenchmarkDotNet.Attributes; +using Csla.Configuration; +using Csla.Serialization; +using Csla.Serialization.Mobile; +using Microsoft.Extensions.DependencyInjection; +using PropertyPerf.Client.Model; + +namespace Csla.Benchmarks.PerformanceCloner; + +[SimpleJob(BenchmarkDotNet.Jobs.RuntimeMoniker.Net462)] +[SimpleJob(BenchmarkDotNet.Jobs.RuntimeMoniker.Net472)] +[SimpleJob(BenchmarkDotNet.Jobs.RuntimeMoniker.Net48)] +[SimpleJob(BenchmarkDotNet.Jobs.RuntimeMoniker.Net80)] +[SimpleJob(BenchmarkDotNet.Jobs.RuntimeMoniker.Net90)] +[SimpleJob(BenchmarkDotNet.Jobs.RuntimeMoniker.Net10_0)] +[HtmlExporter, JsonExporterAttribute.FullCompressed] +[MemoryDiagnoser(true)] +public class PerformanceClonerBenchmark +{ + private ServiceProvider _serviceProvider = default!; + private IDataPortal _listPortal = default!; + private TestItem _fetch = new(); + + + [GlobalSetup] + public void GlobalSetup() + { + _serviceProvider = new ServiceCollection() + .AddCsla(o => o.AddConsoleApp().DataPortal(dpo => dpo.AddServerSideDataPortal().AddClientSideDataPortal(co => co.UseLocalProxy())).Serialization(so => so.UseMobileFormatter())) + .BuildServiceProvider(); + + _listPortal = _serviceProvider.GetRequiredService>(); + _fetch = _listPortal.FetchAsync().Result; + } + + [GlobalCleanup] + public async Task GlobalCleanup() + { + await _serviceProvider.DisposeAsync(); + } + + [Benchmark(Baseline = true)] + public async Task FetchAndSerialize() + { + var clone = _fetch.Clone(); + + } + + [Benchmark] + public async Task FetchAndCloneInternal() + { + var formatter = _serviceProvider.GetRequiredService() as MobileFormatter; + if (formatter == null) + { + throw new InvalidOperationException("MobileFormatter not found in service provider"); + } + var clone = formatter.SerializeAsDTO(_fetch); + var clone2 = formatter.DeserializeAsDTO(clone); + } +} diff --git a/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-full-compressed.json b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-full-compressed.json new file mode 100644 index 0000000000..320cb0276f --- /dev/null +++ b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-full-compressed.json @@ -0,0 +1 @@ +{"Title":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-20260516-160802","HostEnvironmentInfo":{"BenchmarkDotNetCaption":"BenchmarkDotNet","BenchmarkDotNetVersion":"0.15.8","OsVersion":"Windows 10 (10.0.19045.6466/22H2/2022Update)","ProcessorName":"Intel Core i7-10750H CPU 2.60GHz","PhysicalProcessorCount":1,"PhysicalCoreCount":2,"LogicalCoreCount":4,"RuntimeVersion":".NET 10.0.8 (10.0.8, 10.0.826.23019)","Architecture":"X64","HasAttachedDebugger":false,"HasRyuJit":true,"Configuration":"RELEASE","DotNetCliVersion":"10.0.300","ChronometerFrequency":{"Hertz":10000000},"HardwareTimerKind":"Unknown"},"Benchmarks":[{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET 10.0(Runtime=.NET 10.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[121824700,139480900,152024400,155208900,161778700,114880900,134516600,174199000,175527800,173193100,120414600,132777800,151348600,164800000,183963200,121420800,148120000,160096200,168900900,168963500,132330700,152785500,162805900,173339500,176114800,116090900,152669100,158859800,159875700,181294800,114642000,144973200,162994100,181474700,174558200,127460000,149512700,148498700,165362600,168668300,124917100,145722800,147290400,157723900,182328600,112044900,149109100,146243400,157830500,162419000,121052000,136344200,166020300,154828000,171181400,120888300,154019500,153220200,164745500,178294200,129933000,150588300,172073100,182454900,178689100,132541400,147168800,182279800,170895100,191651300,126240000,154259800,170626900,190702500,195294700,137173100,156958600,189940500,195023700,143072700,174347200,186473300,182553000,188361400,124390000,154014600,176538700,187780200,210687500,137377000,193646800,200646600,212378100,193425200,128740700,163369000,186834000,190567400,204063900],"N":99,"Min":112044900,"LowerFence":97245325,"Q1":145348000,"Median":160096200,"Mean":159876131.3131313,"Q3":177416450,"UpperFence":225519125,"Max":212378100,"InterquartileRange":32068450,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":2421294.7445984026,"Variance":580404155781764.6,"StandardDeviation":24091578.524076927,"Skewness":-0.08010521404097781,"Kurtosis":2.221304949162779,"ConfidenceInterval":{"N":99,"Mean":159876131.3131313,"StandardError":2421294.7445984026,"Level":12,"Margin":8214455.76172873,"Lower":151661675.55140257,"Upper":168090587.07486004},"Percentiles":{"P0":112044900,"P25":145348000,"P50":160096200,"P67":172812300.00000003,"P80":182299320,"P85":186581510,"P90":190594420,"P95":195050800,"P100":212378100}},"Memory":{"Gen0Collections":0,"Gen1Collections":0,"Gen2Collections":0,"TotalOperations":1,"BytesAllocatedPerOperation":122120904},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":252600},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":424994500},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":1500},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":416619800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":361619400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":295469900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":169689600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":167178800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":173779900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":113346000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":139265600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":172960800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":173283400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":166983300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":121824700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":139480900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":152024400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":155208900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":161778700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":114880900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":134516600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":174199000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":175527800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":173193100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":120414600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":132777800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":151348600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":164800000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":183963200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":121420800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":148120000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":160096200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":168900900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":168963500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":132330700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":152785500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":162805900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":173339500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":176114800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":116090900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":152669100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":158859800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":159875700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":181294800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":114642000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":144973200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":162994100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":181474700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":174558200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":127460000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":149512700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":148498700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":165362600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":168668300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":124917100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":145722800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":147290400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":157723900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":182328600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":112044900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":149109100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":146243400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":157830500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":162419000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":121052000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":136344200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":166020300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":154828000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":171181400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":120888300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":154019500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":153220200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":164745500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":178294200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":129933000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":150588300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":172073100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":182454900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":178689100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":132541400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":147168800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":182279800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":170895100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":191651300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":126240000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":154259800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":170626900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":190702500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":195294700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":137173100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":156958600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":189940500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":195023700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":285171500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":143072700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":174347200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":186473300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":182553000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":188361400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":124390000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":154014600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":176538700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":187780200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":210687500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":137377000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":193646800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":200646600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":212378100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":193425200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":128740700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":163369000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":186834000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":190567400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":204063900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":121824700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":139480900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":152024400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":155208900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":161778700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":114880900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":134516600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":174199000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":175527800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":173193100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":120414600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":132777800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":151348600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":164800000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":183963200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":121420800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":148120000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":160096200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":168900900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":168963500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":132330700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":152785500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":162805900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":173339500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":176114800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":116090900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":152669100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":158859800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":159875700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":181294800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":114642000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":144973200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":162994100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":181474700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":174558200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":127460000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":149512700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":148498700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":165362600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":168668300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":124917100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":145722800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":147290400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":157723900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":182328600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":112044900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":149109100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":146243400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":157830500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":162419000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":121052000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":136344200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":166020300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":154828000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":171181400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":120888300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":154019500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":153220200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":164745500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":178294200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":129933000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":150588300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":172073100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":182454900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":178689100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":132541400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":147168800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":182279800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":170895100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":191651300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":126240000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":154259800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":170626900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":190702500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":195294700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":137173100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":156958600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":189940500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":195023700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":143072700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":174347200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":186473300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":182553000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":188361400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":124390000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":154014600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":176538700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":187780200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":210687500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":137377000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":193646800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":200646600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":212378100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":193425200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":128740700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":163369000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":186834000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":190567400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":204063900}],"Metrics":[{"Value":0,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":0,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":122120904,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET 10.0(Runtime=.NET 10.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[122237800,120573400,115040250,113874550,112819000,124390100,113136300,119294850,109951150,109938200,122891950,105407550,109696600,105330400,106978350,113487550,113918700,111062050,116540050,112459200,107886100,121524700,113964900,106966450,108381050,123906650,106008900,113439150,111395350,116493650,109805300,106703650,109441150,117559900,110587700,117702600,108316050,119259600,108708950,103750050,107898400,109003300,112873550,109029900,119680450,115157950,107627050,108224900,120771150,106949950,102450950,101028200,110930400,111138100,102385000,103186850,119943050,106809600,105333950,106687300,114036850,104511550,108053150,109091050,113634900,106126650,116197450,109933750,120110700,117873000,121949150,111959050,114625300,105885100,107556300,109222500,106077200,110066750,101437950,101909400,108604150,103840000,100631900],"N":83,"Min":100631900,"LowerFence":95146337.5,"Q1":106958200,"Median":109938200,"Mean":111220164.45783132,"Q3":114832775,"UpperFence":126644637.5,"Max":124390100,"InterquartileRange":7874575,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":650840.1792196501,"Variance":35158213927593.305,"StandardDeviation":5929436.223418994,"Skewness":0.39277170337755335,"Kurtosis":2.318873428005464,"ConfidenceInterval":{"N":83,"Mean":111220164.45783132,"StandardError":650840.1792196501,"Level":12,"Margin":2221426.0389249986,"Lower":108998738.41890633,"Upper":113441590.49675632},"Percentiles":{"P0":100631900,"P25":106958200,"P50":109938200,"P67":113484646,"P80":116521490,"P85":118843620,"P90":120077170,"P95":121906705,"P100":124390100}},"Memory":{"Gen0Collections":1,"Gen1Collections":0,"Gen2Collections":0,"TotalOperations":2,"BytesAllocatedPerOperation":72606732},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":178800},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":248953400},{"IterationMode":"Workload","IterationStage":"Pilot","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":511093200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":515469700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":472117400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":336827200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":287055400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":265963500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":269629200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":279746600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":258952500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":263146100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":247238700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":244475600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":241146800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":230080500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":227749100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":225638000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":248780200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":226272600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":238589700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":219902300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":219876400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":245783900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":210815100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":219393200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":210660800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":213956700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":226975100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":227837400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":222124100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":233080100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":224918400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":215772200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":255897100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":243049400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":227929800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":213932900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":216762100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":247813300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":212017800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":226878300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":222790700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":232987300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":219610600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":213407300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":218882300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":235119800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":221175400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":235405200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":216632100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":238519200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":217417900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":207500100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":215796800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":258528200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":218006600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":225747100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":218059800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":239360900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":230315900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":215254100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":216449800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":241542300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":213899900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":204901900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":202056400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":221860800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":222276200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":204770000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":206373700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":239886100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":213619200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":210667900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":213374600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":228073700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":209023100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":216106300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":218182100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":227269800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":212253300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":232394900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":219867500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":240221400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":235746000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":243898300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":223918100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":229250600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":211770200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":215112600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":218445000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":212154400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":220133500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":202875900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":203818800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":217208300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":207680000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":201263800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":244475600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":241146800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":230080500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":227749100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":225638000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":248780200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":226272600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":238589700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":219902300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":219876400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":245783900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":210815100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":219393200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":210660800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":213956700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":226975100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":227837400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":222124100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":233080100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":224918400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":215772200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":243049400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":227929800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":213932900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":216762100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":247813300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":212017800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":226878300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":222790700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":232987300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":219610600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":213407300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":218882300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":235119800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":221175400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":235405200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":216632100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":238519200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":217417900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":207500100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":215796800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":218006600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":225747100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":218059800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":239360900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":230315900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":215254100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":216449800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":241542300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":213899900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":204901900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":202056400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":221860800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":222276200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":204770000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":206373700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":239886100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":213619200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":210667900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":213374600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":228073700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":209023100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":216106300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":218182100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":227269800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":212253300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":232394900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":219867500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":240221400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":235746000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":243898300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":223918100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":229250600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":211770200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":215112600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":218445000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":212154400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":220133500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":202875900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":203818800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":217208300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":207680000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":201263800}],"Metrics":[{"Value":500,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":0,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":72606732,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET 8.0(Runtime=.NET 8.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[219164500,222076400,218220100,162624000,222120100,201229700,242292400,147021000,212618000,209108700,218899600,158121000,214067100,207751900,218617700,154426800,212749500,217485600,215863300,166954700,211439200,210629000,225759500,163193300,229168500,214274100,214520700,156822400,231169200,205080500,220632700,157425200,229553600,204464400,214970600,158877600,241026900,208696600,225033000,153228900,229473100,227820000,211602500,153574100,215020800,221595100,216199900,163763300,217018600,205175800,211685300,155442600,208844100,221033100,227031200,149279500,221537100,203366200,229562100,148982900,220756200,212513200,204714500,169583200,227224300,201129700,207458700,167143800,223384400,209122900,210650500,156704300,216710800,214529200,216349000,163106400,240035600,228736000,220418300,159213600,225536800,221126800,235597400,159124200,260461500,209009500,220023600,171746600,235820500,227722800,222250300,180136300,226644800,234758900,232163600,176993200,224367100,227329100,216147100,168203300],"N":100,"Min":147021000,"LowerFence":155902637.5,"Q1":195881350,"Median":214524950,"Mean":205000333,"Q3":222533825,"UpperFence":262512537.5,"Max":260461500,"InterquartileRange":26652475,"LowerOutliers":[147021000,148982900,149279500,153228900,153574100,154426800,155442600],"UpperOutliers":[],"AllOutliers":[147021000,148982900,149279500,153228900,153574100,154426800,155442600],"StandardError":2754346.826311132,"Variance":758642643961020.5,"StandardDeviation":27543468.26311132,"Skewness":-0.8027551281760554,"Kurtosis":2.3800412930995556,"ConfidenceInterval":{"N":100,"Mean":205000333,"StandardError":2754346.826311132,"Level":12,"Margin":9341446.667436622,"Lower":195658886.33256337,"Upper":214341779.66743663},"Percentiles":{"P0":147021000,"P25":195881350,"P50":214524950,"P67":220673455,"P80":225936560,"P85":227737380,"P90":229554450,"P95":235608555,"P100":260461500}},"Memory":{"Gen0Collections":2,"Gen1Collections":1,"Gen2Collections":0,"TotalOperations":1,"BytesAllocatedPerOperation":136659824},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":163900},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":368213100},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":700},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":434838400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":369121400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":365660600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":300235400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":342794200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":231511600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":235159600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":155084700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":219164500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":222076400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":218220100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":162624000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":222120100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":201229700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":242292400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":147021000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":212618000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":209108700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":218899600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":158121000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":214067100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":207751900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":218617700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":154426800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":212749500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":217485600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":215863300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":166954700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":211439200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":210629000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":225759500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":163193300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":229168500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":214274100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":214520700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":156822400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":231169200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":205080500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":220632700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":157425200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":229553600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":204464400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":214970600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":158877600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":241026900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":208696600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":225033000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":153228900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":229473100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":227820000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":211602500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":153574100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":215020800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":221595100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":216199900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":163763300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":217018600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":205175800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":211685300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":155442600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":208844100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":221033100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":227031200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":149279500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":221537100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":203366200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":229562100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":148982900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":220756200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":212513200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":204714500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":169583200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":227224300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":201129700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":207458700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":167143800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":223384400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":209122900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":210650500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":156704300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":216710800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":214529200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":216349000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":163106400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":240035600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":228736000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":220418300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":159213600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":225536800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":221126800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":235597400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":159124200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":260461500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":209009500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":220023600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":171746600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":235820500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":227722800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":222250300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":180136300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":226644800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":234758900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":232163600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":176993200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":224367100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":227329100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":216147100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":168203300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":219164500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":222076400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":218220100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":162624000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":222120100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":201229700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":242292400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":147021000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":212618000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":209108700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":218899600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":158121000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":214067100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":207751900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":218617700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":154426800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":212749500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":217485600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":215863300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":166954700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":211439200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":210629000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":225759500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":163193300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":229168500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":214274100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":214520700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":156822400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":231169200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":205080500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":220632700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":157425200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":229553600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":204464400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":214970600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":158877600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":241026900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":208696600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":225033000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":153228900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":229473100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":227820000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":211602500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":153574100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":215020800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":221595100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":216199900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":163763300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":217018600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":205175800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":211685300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":155442600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":208844100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":221033100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":227031200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":149279500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":221537100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":203366200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":229562100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":148982900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":220756200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":212513200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":204714500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":169583200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":227224300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":201129700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":207458700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":167143800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":223384400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":209122900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":210650500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":156704300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":216710800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":214529200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":216349000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":163106400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":240035600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":228736000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":220418300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":159213600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":225536800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":221126800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":235597400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":159124200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":260461500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":209009500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":220023600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":171746600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":235820500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":227722800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":222250300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":180136300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":226644800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":234758900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":232163600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":176993200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":224367100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":227329100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":216147100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":168203300}],"Metrics":[{"Value":2000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":1000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":136659824,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET 8.0(Runtime=.NET 8.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[175754650,167368550,150312500,164331400,147107050,168968900,181467900,189541950,159037550,180249800,169850650,185517550,169364850,189171400,156661100,170164300,148427200,146875450,184465350,144608450,165574850,146713300,162869700,141629650,170506800,156458800,135657550,159995800,144925800,161315350,132772150,164709850,139381100,168011900,164678450,125543350,157942600,153940850,148882700,134221000,167622150,147642100,162867700,155590550,128384250,162619250,148441700,151885700,133749000,173677250,150220700,177342250,171280600,126190750,162054500,150095100,153140800,130930950,175716600,137024550,165556000,157352050,145874900,162957450,142314650,159466400,129177000,165087950,156780150,163916900,151222450,145923400,183506800,156044250,187499350,152976150,192206600,162034950,186148300,180976050,133762150,168039450,151249050,158441600,169146150,167262350,144134950,170086650,171547500,163525850,172544800,161293200,146353600,146808750,167389750,150836700,152408850],"N":97,"Min":125543350,"LowerFence":115651900,"Q1":147642100,"Median":159466400,"Mean":158693893.29896906,"Q3":168968900,"UpperFence":200959100,"Max":192206600,"InterquartileRange":21326800,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":1581387.3218282366,"Variance":242576228578991,"StandardDeviation":15574858.862249475,"Skewness":-0.02930870216326132,"Kurtosis":2.4873035723234853,"ConfidenceInterval":{"N":97,"Mean":158693893.29896906,"StandardError":1581387.3218282366,"Level":12,"Margin":5368453.739852368,"Lower":153325439.5591167,"Upper":164062347.03882143},"Percentiles":{"P0":125543350,"P25":147642100,"P50":159466400,"P67":165562032,"P80":170148770,"P85":173224270,"P90":180540300,"P95":185643700,"P100":192206600}},"Memory":{"Gen0Collections":1,"Gen1Collections":0,"Gen2Collections":0,"TotalOperations":2,"BytesAllocatedPerOperation":87143976},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":131600},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":245982500},{"IterationMode":"Workload","IterationStage":"Pilot","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":528177600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":625425200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":456442000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":394973600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":307926000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":345973600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":321216700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":458707400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":351935100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":351509300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":334737100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":300625000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":408719000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":328662800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":417284800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":294214100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":404502300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":337937800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":362935800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":379083900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":318075100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":360499600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":339701300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":371035100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":338729700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":378342800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":313322200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":340328600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":296854400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":293750900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":368930700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":289216900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":331149700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":293426600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":325739400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":283259300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":341013600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":312917600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":271315100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":319991600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":289851600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":322630700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":265544300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":329419700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":278762200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":336023800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":329356900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":251086700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":315885200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":307881700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":297765400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":268442000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":335244300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":295284200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":325735400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":311181100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":256768500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":325238500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":296883400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":303771400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":267498000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":347354500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":300441400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":354684500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":342561200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":252381500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":324109000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":300190200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":306281600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":261861900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":351433200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":274049100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":331112000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":314704100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":291749800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":325914900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":284629300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":318932800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":258354000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":330175900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":313560300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":327833800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":302444900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":291846800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":367013600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":312088500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":374998700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":305952300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":384413200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":324069900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":372296600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":361952100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":267524300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":336078900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":2,"Nanoseconds":302498100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":2,"Nanoseconds":316883200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":2,"Nanoseconds":338292300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":2,"Nanoseconds":334524700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":2,"Nanoseconds":288269900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":2,"Nanoseconds":340173300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":2,"Nanoseconds":343095000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":2,"Nanoseconds":327051700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":2,"Nanoseconds":345089600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":2,"Nanoseconds":322586400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":2,"Nanoseconds":292707200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":2,"Nanoseconds":293617500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":2,"Nanoseconds":334779500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":2,"Nanoseconds":301673400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":2,"Nanoseconds":304817700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":351509300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":334737100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":300625000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":328662800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":294214100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":337937800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":362935800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":379083900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":318075100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":360499600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":339701300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":371035100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":338729700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":378342800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":313322200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":340328600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":296854400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":293750900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":368930700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":289216900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":331149700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":293426600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":325739400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":283259300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":341013600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":312917600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":271315100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":319991600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":289851600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":322630700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":265544300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":329419700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":278762200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":336023800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":329356900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":251086700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":315885200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":307881700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":297765400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":268442000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":335244300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":295284200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":325735400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":311181100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":256768500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":325238500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":296883400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":303771400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":267498000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":347354500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":300441400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":354684500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":342561200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":252381500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":324109000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":300190200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":306281600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":261861900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":351433200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":274049100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":331112000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":314704100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":291749800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":325914900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":284629300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":318932800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":258354000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":330175900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":313560300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":327833800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":302444900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":291846800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":367013600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":312088500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":374998700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":305952300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":384413200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":324069900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":372296600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":361952100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":267524300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":336078900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":302498100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":316883200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":338292300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":2,"Nanoseconds":334524700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":2,"Nanoseconds":288269900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":2,"Nanoseconds":340173300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":2,"Nanoseconds":343095000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":2,"Nanoseconds":327051700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":2,"Nanoseconds":345089600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":2,"Nanoseconds":322586400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":2,"Nanoseconds":292707200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":2,"Nanoseconds":293617500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":2,"Nanoseconds":334779500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":2,"Nanoseconds":301673400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":97,"Operations":2,"Nanoseconds":304817700}],"Metrics":[{"Value":500,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":0,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":87143976,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET 9.0(Runtime=.NET 9.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[214184700,189729100,219525700,292236900,278285700,252532900,259592800,242370300,187366000,239590100,234415500,233398800,157716700,232675200,224580800,278723100,143955900,195815500,201227900,212505400,138497400,185958700,185556300,208011000,153363800,290147000,255943800,168176900,247695400,238382700,243801800,141175000,215855100,208048000,207326900,140743800,218479900,224417700,236698500,142661600,218064300,227166700,242303100,145277900,221990500,198542800,213291100,147991900,224525400,227879600,209438300,164805600,203465800,211359600,195172100,150672600,210020000,230248400,193695500,139413700,147951900,205364000,217866400,212533600,175059000,217224400,222256200,233668600,185557700,214780400,230370600,221599900,147170200,217467400,223693900,234135600,155015900,229915300,209967000,226395600,147014500,234696900,211929900,228089300,158483600,240727400,222914200,218924700,165103800,236127300,229350500,224650600,156044000],"N":93,"Min":138497400,"LowerFence":119524150,"Q1":185958700,"Median":215855100,"Mean":207728446.23655915,"Q3":230248400,"UpperFence":296682950,"Max":292236900,"InterquartileRange":44289700,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":3786087.5948677054,"Variance":1333104712669034.5,"StandardDeviation":36511706.51543193,"Skewness":-0.28743034023133623,"Kurtosis":2.5715233227986016,"ConfidenceInterval":{"N":93,"Mean":207728446.23655915,"StandardError":3786087.5948677054,"Level":12,"Margin":12870583.748431003,"Lower":194857862.48812816,"Upper":220599029.98499015},"Percentiles":{"P0":138497400,"P25":185958700,"P50":215855100,"P67":224625472,"P80":233948800,"P85":237035340,"P90":242356860,"P95":257403399.99999994,"P100":292236900}},"Memory":{"Gen0Collections":2,"Gen1Collections":1,"Gen2Collections":0,"TotalOperations":1,"BytesAllocatedPerOperation":136096088},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":130200},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":390934000},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":3200},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":586978600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":416340600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":363354100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":216259700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":259471100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":216379100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":204557300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":151878000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":209374200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":215030200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":237516300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":165829400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":214184700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":189729100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":219525700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":517269800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":493087400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":292236900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":278285700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":252532900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":331010800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":259592800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":242370300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":187366000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":239590100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":234415500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":233398800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":157716700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":232675200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":224580800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":278723100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":143955900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":195815500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":201227900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":212505400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":138497400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":185958700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":185556300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":208011000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":153363800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":315981600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":290147000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":255943800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":168176900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":247695400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":238382700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":243801800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":141175000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":215855100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":208048000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":207326900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":140743800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":218479900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":224417700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":236698500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":142661600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":218064300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":227166700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":242303100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":145277900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":221990500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":198542800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":213291100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":147991900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":224525400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":227879600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":209438300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":164805600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":203465800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":211359600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":195172100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":150672600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":210020000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":230248400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":193695500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":139413700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":364891700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":390707600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":335116600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":147951900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":205364000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":217866400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":212533600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":175059000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":217224400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":222256200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":233668600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":185557700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":214780400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":230370600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":221599900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":147170200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":217467400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":223693900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":234135600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":155015900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":229915300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":209967000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":226395600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":147014500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":234696900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":211929900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":228089300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":158483600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":240727400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":222914200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":218924700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":165103800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":236127300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":229350500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":224650600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":156044000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":214184700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":189729100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":219525700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":292236900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":278285700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":252532900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":259592800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":242370300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":187366000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":239590100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":234415500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":233398800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":157716700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":232675200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":224580800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":278723100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":143955900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":195815500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":201227900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":212505400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":138497400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":185958700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":185556300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":208011000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":153363800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":290147000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":255943800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":168176900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":247695400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":238382700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":243801800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":141175000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":215855100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":208048000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":207326900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":140743800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":218479900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":224417700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":236698500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":142661600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":218064300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":227166700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":242303100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":145277900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":221990500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":198542800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":213291100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":147991900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":224525400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":227879600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":209438300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":164805600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":203465800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":211359600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":195172100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":150672600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":210020000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":230248400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":193695500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":139413700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":147951900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":205364000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":217866400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":212533600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":175059000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":217224400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":222256200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":233668600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":185557700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":214780400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":230370600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":221599900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":147170200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":217467400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":223693900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":234135600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":155015900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":229915300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":209967000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":226395600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":147014500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":234696900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":211929900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":228089300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":158483600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":240727400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":222914200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":218924700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":165103800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":236127300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":229350500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":224650600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":156044000}],"Metrics":[{"Value":2000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":1000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":136096088,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET 9.0(Runtime=.NET 9.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[120956150,149625550,127294750,118888900,164729700,137551400,148510150,124829700,114724450,145682550,122094400,112946350,152081950,147054850,157461300,134533100,135784550,137594000,122428950,124687600,156618350,135340750,152104000,123814000,111542250,133319200,127755900,117368850,172772450,141533600,163241250,130948650,111004700,139168950,130373850,121595600,154808800,160686200,146950650,138534450,112731500,135154050,128068600,120236600,148889100,138750250,180690600,130812850,115451350,156484600,140281050,118210150,147828500,139217450,164294050,123252300,125213400,135558050,121252350,117677750,164117950,137379800,161011300,137383050,116161900,137007250,132779550,114829850,147899300,140820550,163225400,124920400,114568900,146517600,122769750,121563600,156937550,135742150,148639050,132764500,119428100,147014150,122064300,114786300,151408200,131633650,153707300,128333650,129311550,140946200,123480850,118795850,153226050,135702200,167915700,128007450,112617000,136545200,124648500,119903900],"N":100,"Min":111004700,"LowerFence":84093981.25,"Q1":122345312.5,"Median":135247400,"Mean":135855128.5,"Q3":147846200,"UpperFence":186097531.25,"Max":180690600,"InterquartileRange":25500887.5,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":1610103.161290796,"Variance":259243218999861.47,"StandardDeviation":16101031.61290796,"Skewness":0.4879512694476171,"Kurtosis":2.4179532994867743,"ConfidenceInterval":{"N":100,"Mean":135855128.5,"StandardError":1610103.161290796,"Level":12,"Margin":5460711.2897299575,"Lower":130394417.21027005,"Upper":141315839.78972995},"Percentiles":{"P0":111004700,"P25":122345312.5,"P50":135247400,"P67":140862014.5,"P80":149982080,"P85":153872525,"P90":157783790.00000003,"P95":164126755,"P100":180690600}},"Memory":{"Gen0Collections":2,"Gen1Collections":1,"Gen2Collections":0,"TotalOperations":2,"BytesAllocatedPerOperation":86580660},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":147600},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":305334200},{"IterationMode":"Workload","IterationStage":"Pilot","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":545369600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":772057700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":371355300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":356843000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":292545400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":286159400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":327187400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":273797600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":329507300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":289962400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":241912300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":299251100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":254589500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":237777800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":329459400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":275102800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":297020300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":249659400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":229448900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":291365100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":244188800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":225892700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":304163900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":294109700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":314922600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":269066200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":271569100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":275188000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":244857900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":249375200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":313236700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":270681500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":304208000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":247628000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":223084500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":266638400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":255511800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":234737700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":345544900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":283067200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":326482500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":261897300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":222009400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":278337900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":260747700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":243191200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":309617600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":321372400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":293901300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":277068900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":225463000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":270308100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":256137200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":240473200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":297778200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":277500500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":361381200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":261625700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":230902700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":312969200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":280562100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":236420300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":295657000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":278434900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":328588100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":246504600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":250426800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":271116100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":242504700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":235355500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":328235900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":274759600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":322022600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":274766100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":232323800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":274014500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":265559100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":229659700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":295798600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":281641100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":326450800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":249840800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":229137800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":293035200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":245539500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":243127200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":313875100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":271484300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":297278100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":265529000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":238856200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":294028300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":244128600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":229572600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":302816400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":2,"Nanoseconds":263267300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":2,"Nanoseconds":307414600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":2,"Nanoseconds":256667300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":2,"Nanoseconds":258623100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":2,"Nanoseconds":281892400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":2,"Nanoseconds":246961700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":2,"Nanoseconds":237591700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":2,"Nanoseconds":306452100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":2,"Nanoseconds":271404400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":2,"Nanoseconds":335831400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":2,"Nanoseconds":256014900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":2,"Nanoseconds":225234000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":2,"Nanoseconds":273090400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":2,"Nanoseconds":249297000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":2,"Nanoseconds":239807800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":241912300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":299251100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":254589500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":237777800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":329459400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":275102800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":297020300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":249659400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":229448900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":291365100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":244188800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":225892700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":304163900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":294109700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":314922600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":269066200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":271569100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":275188000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":244857900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":249375200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":313236700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":270681500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":304208000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":247628000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":223084500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":266638400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":255511800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":234737700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":345544900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":283067200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":326482500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":261897300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":222009400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":278337900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":260747700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":243191200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":309617600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":321372400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":293901300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":277068900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":225463000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":270308100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":256137200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":240473200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":297778200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":277500500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":361381200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":261625700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":230902700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":312969200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":280562100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":236420300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":295657000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":278434900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":328588100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":246504600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":250426800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":271116100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":242504700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":235355500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":328235900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":274759600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":322022600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":274766100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":232323800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":274014500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":265559100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":229659700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":295798600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":281641100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":326450800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":249840800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":229137800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":293035200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":245539500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":243127200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":313875100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":271484300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":297278100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":265529000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":238856200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":294028300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":244128600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":229572600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":302816400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":2,"Nanoseconds":263267300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":2,"Nanoseconds":307414600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":2,"Nanoseconds":256667300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":2,"Nanoseconds":258623100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":2,"Nanoseconds":281892400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":2,"Nanoseconds":246961700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":2,"Nanoseconds":237591700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":2,"Nanoseconds":306452100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":2,"Nanoseconds":271404400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":2,"Nanoseconds":335831400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":2,"Nanoseconds":256014900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":97,"Operations":2,"Nanoseconds":225234000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":98,"Operations":2,"Nanoseconds":273090400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":99,"Operations":2,"Nanoseconds":249297000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":100,"Operations":2,"Nanoseconds":239807800}],"Metrics":[{"Value":1000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":500,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":86580660,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET Framework 4.6.2(Runtime=.NET Framework 4.6.2)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[515722800,544995000,514355500,526870300,541403100,510265400,554843300,526757500,570516600,517221500,547042600,547301000,523338900,519543800,545496500,501559000,546349400,526780700,517525000,499839100,507136000,534264500,524552300,525977000,531581400,532497200,552448900,527079100,507910400,547269700,515991100,525768700,499448800,545999000,543539000],"N":35,"Min":499448800,"LowerFence":473647125,"Q1":516606300,"Median":526780700,"Mean":529119717.14285713,"Q3":545245750,"UpperFence":588204925,"Max":570516600,"InterquartileRange":28639450,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":2931242.0065820254,"Variance":300726289540285.7,"StandardDeviation":17341461.574512273,"Skewness":0.16615288853267482,"Kurtosis":2.265405743158737,"ConfidenceInterval":{"N":35,"Mean":529119717.14285713,"StandardError":2931242.0065820254,"Level":12,"Margin":10554569.38961551,"Lower":518565147.7532416,"Upper":539674286.5324726},"Percentiles":{"P0":499448800,"P25":516606300,"P50":526780700,"P67":539832608,"P80":546069080,"P85":546973280,"P90":547288480,"P95":553167220,"P100":570516600}},"Memory":{"Gen0Collections":20,"Gen1Collections":8,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":133011904},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":206000},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":566195900},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":5300},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":527914800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":503770500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":552564700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":526818400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":538703100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":507476000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":527505400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":515722800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":544995000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":514355500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":526870300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":541403100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":510265400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":554843300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":526757500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":570516600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":517221500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":590962900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":547042600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":547301000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":523338900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":519543800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":545496500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":501559000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":546349400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":526780700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":517525000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":499839100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":507136000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":534264500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":524552300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":525977000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":531581400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":532497200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":552448900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":527079100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":507910400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":547269700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":515991100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":525768700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":499448800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":545999000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":543539000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":515722800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":544995000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":514355500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":526870300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":541403100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":510265400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":554843300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":526757500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":570516600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":517221500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":547042600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":547301000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":523338900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":519543800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":545496500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":501559000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":546349400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":526780700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":517525000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":499839100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":507136000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":534264500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":524552300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":525977000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":531581400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":532497200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":552448900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":527079100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":507910400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":547269700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":515991100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":525768700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":499448800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":545999000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":543539000}],"Metrics":[{"Value":20000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":8000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":133011904,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET Framework 4.6.2(Runtime=.NET Framework 4.6.2)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[376808500,417983500,408363000,409933400,391180300,383544000,393096500,365615500,418067900,372754800,364168700,419919400,357393800,375221000,340802200,331473000,331469300,326274600,344272900,323971500,346440800,328207700,348766100,373585100,360128600,351000300,324719200,320241100,396390200,404715500,344045100,349474100,341690000,344017900,369137000,374181300,386917500,369481000,332738900,370141000,328823200,327133100,333967500,324886500,341189500,315212400,352463800,358670200,359885100,361852000,356858400,346252800,335989400,326924800,356728200,365190600,351632600,359146800,341804200,348562800,334881500,354006800,342785800,352213800,344214100,352147000,332790500,331999100,357911000,365656600,320617600,357450900,385996600,368477100,342620800,355965900,370200400,405386700,344612300,395802000,381450900,322412900,358070600,344879600,341380500,399890400,360676100,354433400,337239400,327521200,352930300,325097400,327561100,339879500,344808100],"N":95,"Min":315212400,"LowerFence":292435125,"Q1":338559450,"Median":352213800,"Mean":355952357.8947368,"Q3":369309000,"UpperFence":415433325,"Max":419919400,"InterquartileRange":30749550,"LowerOutliers":[],"UpperOutliers":[417983500,418067900,419919400],"AllOutliers":[417983500,418067900,419919400],"StandardError":2568216.3775735744,"Variance":626594859393527.5,"StandardDeviation":25031876.865179878,"Skewness":0.7451115937851309,"Kurtosis":2.9093114393309674,"ConfidenceInterval":{"N":95,"Mean":355952357.8947368,"StandardError":2568216.3775735744,"Level":12,"Margin":8724377.69269371,"Lower":347227980.2020431,"Upper":364676735.58743054},"Percentiles":{"P0":315212400,"P25":338559450,"P50":352213800,"P67":360665150,"P80":373704340,"P85":383334690,"P90":394719800,"P95":406279590,"P100":419919400}},"Memory":{"Gen0Collections":13,"Gen1Collections":5,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":83596360},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":214400},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":455795400},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":4500},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":371340300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":365553100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":357178400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":354469300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":349285000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":360514800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":370129200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":390063700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":362563800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":393911300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":410249100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":413230100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":389433700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":376808500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":427145200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":417983500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":443278700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":408363000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":409933400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":391180300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":383544000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":393096500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":365615500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":418067900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":372754800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":364168700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":419919400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":448503900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":357393800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":375221000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":340802200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":331473000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":331469300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":326274600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":344272900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":323971500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":346440800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":328207700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":348766100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":373585100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":360128600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":351000300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":324719200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":320241100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":396390200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":404715500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":344045100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":427129700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":349474100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":341690000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":344017900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":369137000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":374181300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":386917500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":369481000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":332738900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":370141000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":436804900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":328823200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":327133100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":333967500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":324886500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":341189500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":315212400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":352463800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":358670200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":359885100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":361852000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":356858400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":346252800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":335989400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":326924800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":356728200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":365190600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":351632600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":359146800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":341804200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":348562800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":334881500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":354006800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":342785800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":352213800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":344214100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":352147000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":332790500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":331999100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":357911000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":365656600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":320617600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":357450900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":385996600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":368477100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":342620800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":355965900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":370200400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":405386700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":344612300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":395802000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":381450900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":322412900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":358070600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":344879600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":341380500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":399890400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":360676100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":354433400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":337239400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":327521200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":352930300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":325097400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":327561100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":339879500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":344808100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":376808500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":417983500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":408363000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":409933400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":391180300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":383544000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":393096500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":365615500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":418067900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":372754800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":364168700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":419919400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":357393800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":375221000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":340802200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":331473000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":331469300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":326274600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":344272900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":323971500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":346440800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":328207700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":348766100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":373585100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":360128600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":351000300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":324719200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":320241100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":396390200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":404715500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":344045100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":349474100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":341690000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":344017900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":369137000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":374181300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":386917500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":369481000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":332738900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":370141000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":328823200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":327133100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":333967500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":324886500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":341189500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":315212400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":352463800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":358670200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":359885100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":361852000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":356858400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":346252800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":335989400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":326924800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":356728200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":365190600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":351632600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":359146800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":341804200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":348562800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":334881500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":354006800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":342785800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":352213800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":344214100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":352147000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":332790500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":331999100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":357911000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":365656600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":320617600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":357450900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":385996600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":368477100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":342620800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":355965900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":370200400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":405386700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":344612300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":395802000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":381450900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":322412900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":358070600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":344879600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":341380500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":399890400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":360676100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":354433400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":337239400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":327521200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":352930300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":325097400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":327561100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":339879500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":344808100}],"Metrics":[{"Value":13000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":5000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":83596360,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET Framework 4.7.2(Runtime=.NET Framework 4.7.2)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[526392100,507279100,504626500,505311600,524880000,501503800,502309900,527521500,469299700,480320900,468670100,495274300,479395400,508185300,469042200,507773600,470483500,539082500,469664600,485264200,477585000,494792900,472637200,500940900,473319700,481618700,465116400,501944200,469644500,490510400,501315700,500978200,481257800,483484600,459412100,485729600,458171200,486235700,471896100,492589500,491773300,491221000,484436000,499873900,467127400,483920000],"N":46,"Min":458171200,"LowerFence":429834400,"Q1":472807825,"Median":485982650,"Mean":489343756.5217391,"Q3":501456775,"UpperFence":544430200,"Max":539082500,"InterquartileRange":28648950,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":2770487.9801561814,"Variance":353077767816734.4,"StandardDeviation":18790363.69570143,"Skewness":0.5394614246225087,"Kurtosis":2.7716175143166946,"ConfidenceInterval":{"N":46,"Mean":489343756.5217391,"StandardError":2770487.9801561814,"Level":12,"Margin":9752814.367994817,"Lower":479590942.1537443,"Upper":499096570.88973397},"Percentiles":{"P0":458171200,"P25":472807825,"P50":485982650,"P67":500033950,"P80":502309900,"P85":505803475,"P90":507979450,"P95":526014075,"P100":539082500}},"Memory":{"Gen0Collections":20,"Gen1Collections":8,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":133008680},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":310400},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":551815900},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":4900},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":552979600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":497487200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":486829100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":499582500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":520502000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":525121600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":502500500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":484490100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":506229700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":491678900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":526392100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":507279100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":504626500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":505311600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":524880000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":501503800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":502309900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":527521500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":469299700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":480320900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":468670100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":495274300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":479395400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":508185300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":469042200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":507773600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":470483500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":539082500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":469664600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":485264200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":477585000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":494792900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":472637200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":500940900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":473319700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":481618700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":465116400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":501944200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":469644500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":490510400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":501315700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":500978200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":481257800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":483484600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":459412100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":485729600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":458171200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":486235700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":471896100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":492589500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":491773300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":491221000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":484436000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":499873900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":467127400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":483920000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":526392100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":507279100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":504626500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":505311600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":524880000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":501503800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":502309900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":527521500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":469299700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":480320900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":468670100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":495274300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":479395400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":508185300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":469042200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":507773600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":470483500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":539082500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":469664600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":485264200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":477585000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":494792900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":472637200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":500940900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":473319700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":481618700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":465116400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":501944200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":469644500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":490510400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":501315700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":500978200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":481257800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":483484600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":459412100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":485729600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":458171200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":486235700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":471896100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":492589500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":491773300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":491221000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":484436000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":499873900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":467127400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":483920000}],"Metrics":[{"Value":20000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":8000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":133008680,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET Framework 4.7.2(Runtime=.NET Framework 4.7.2)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[346800900,342269400,329539300,331099700,331543300,341736200,325364900,340422200,344430400,346620800,335741100,324491800,324746400,343349300,326488500,341452600,327995000,349667700,341188000,359337300,339819200,329143800,337501600,330250200,332850000],"N":25,"Min":324491800,"LowerFence":310444150,"Q1":329539300,"Median":337501600,"Mean":336953984,"Q3":342269400,"UpperFence":361364550,"Max":359337300,"InterquartileRange":12730100,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":1793920.1970793833,"Variance":80453741837233.33,"StandardDeviation":8969600.985396916,"Skewness":0.41611203557128634,"Kurtosis":2.448534475638153,"ConfidenceInterval":{"N":25,"Mean":336953984,"StandardError":1793920.1970793833,"Level":12,"Margin":6718946.227125733,"Lower":330235037.7728743,"Upper":343672930.2271257},"Percentiles":{"P0":324491800,"P25":329539300,"P50":337501600,"P67":341475288,"P80":343565520,"P85":345306560,"P90":346728860,"P95":349094340,"P100":359337300}},"Memory":{"Gen0Collections":13,"Gen1Collections":5,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":83595344},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":197700},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":387777300},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":7000},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":369171600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":324458500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":353705600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":338953500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":327921300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":331131900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":330742100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":346800900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":342269400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":329539300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":331099700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":331543300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":373852700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":341736200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":325364900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":340422200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":344430400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":346620800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":335741100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":324491800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":324746400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":343349300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":326488500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":341452600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":327995000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":349667700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":341188000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":359337300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":339819200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":329143800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":337501600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":330250200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":332850000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":346800900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":342269400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":329539300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":331099700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":331543300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":341736200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":325364900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":340422200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":344430400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":346620800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":335741100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":324491800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":324746400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":343349300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":326488500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":341452600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":327995000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":349667700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":341188000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":359337300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":339819200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":329143800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":337501600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":330250200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":332850000}],"Metrics":[{"Value":13000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":5000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":83595344,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET Framework 4.8(Runtime=.NET Framework 4.8)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[482588900,476469000,478081900,466565700,501307600,474888000,492738400,484811100,491408100,473743400,476691800,483637500,477337100,452661300,502589000,491908000,490544900,481637900,502409900,468370700,497474000,472164500,514510400,480296900,472803400,465551000,491986800,474538300],"N":28,"Min":452661300,"LowerFence":447957387.5,"Q1":474339575,"Median":480967400,"Mean":482846982.14285713,"Q3":491927700,"UpperFence":518309887.5,"Max":514510400,"InterquartileRange":17588125,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":2567902.4908811036,"Variance":184635449674854.56,"StandardDeviation":13588062.763869416,"Skewness":0.21402644154091052,"Kurtosis":2.6976258693108366,"ConfidenceInterval":{"N":28,"Mean":482846982.14285713,"StandardError":2567902.4908811036,"Level":12,"Margin":9474511.74719391,"Lower":473372470.3956632,"Upper":492321493.89005107},"Percentiles":{"P0":452661300,"P25":474339575,"P50":480967400,"P67":490622588,"P80":492437760,"P85":497237220,"P90":501638290,"P95":502526315,"P100":514510400}},"Memory":{"Gen0Collections":20,"Gen1Collections":8,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":133008864},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":280300},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":528420700},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":6400},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":464524300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":482311900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":508238000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":491408200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":471584800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":483737900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":483919400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":524984100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":460606700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":482588900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":476469000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":478081900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":466565700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":501307600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":474888000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":492738400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":484811100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":491408100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":473743400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":476691800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":483637500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":477337100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":452661300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":526740600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":521275900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":502589000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":491908000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":490544900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":481637900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":502409900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":468370700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":497474000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":472164500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":514510400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":480296900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":472803400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":465551000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":491986800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":474538300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":482588900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":476469000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":478081900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":466565700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":501307600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":474888000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":492738400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":484811100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":491408100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":473743400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":476691800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":483637500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":477337100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":452661300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":502589000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":491908000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":490544900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":481637900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":502409900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":468370700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":497474000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":472164500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":514510400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":480296900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":472803400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":465551000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":491986800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":474538300}],"Metrics":[{"Value":20000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":8000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":133008864,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET Framework 4.8(Runtime=.NET Framework 4.8)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[333430700,326996100,337190100,334670000,342603600,327441400,338950500,328670000,330387700,340163000,336560200,323893000,345495500,338661100,337114200],"N":15,"Min":323893000,"LowerFence":315613425,"Q1":329528850,"Median":336560200,"Mean":334815140,"Q3":338805800,"UpperFence":352721225,"Max":345495500,"InterquartileRange":9276950,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":1608458.3613125305,"Variance":38807074501142.86,"StandardDeviation":6229532.446431503,"Skewness":-0.1382213500479216,"Kurtosis":1.807394036077102,"ConfidenceInterval":{"N":15,"Mean":334815140,"StandardError":1608458.3613125305,"Level":12,"Margin":6659748.034605383,"Lower":328155391.9653946,"Upper":341474888.0346054},"Percentiles":{"P0":323893000,"P25":329528850,"P50":336560200,"P67":337749080,"P80":339193000,"P85":340041750,"P90":341627360,"P95":343471170,"P100":345495500}},"Memory":{"Gen0Collections":13,"Gen1Collections":5,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":83518592},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":221300},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":364541700},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":3600},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":345563200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":325854500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":341367000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":339670300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":324568800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":334113400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":349354100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":319141000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":333430700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":326996100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":337190100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":334670000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":342603600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":327441400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":338950500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":328670000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":330387700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":340163000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":336560200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":323893000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":345495500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":338661100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":337114200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":333430700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":326996100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":337190100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":334670000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":342603600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":327441400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":338950500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":328670000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":330387700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":340163000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":336560200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":323893000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":345495500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":338661100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":337114200}],"Metrics":[{"Value":13000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":5000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":83518592,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]}]} diff --git a/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-github.md b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-github.md new file mode 100644 index 0000000000..3eaf5cb158 --- /dev/null +++ b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-github.md @@ -0,0 +1,34 @@ +``` + +BenchmarkDotNet v0.15.8, Windows 10 (10.0.19045.6466/22H2/2022Update) (Hyper-V) +Intel Core i7-10750H CPU 2.60GHz (Max: 2.59GHz), 1 CPU, 4 logical and 2 physical cores +.NET SDK 10.0.300 + [Host] : .NET 10.0.8 (10.0.8, 10.0.826.23019), X64 RyuJIT x86-64-v3 + .NET 10.0 : .NET 10.0.8 (10.0.8, 10.0.826.23019), X64 RyuJIT x86-64-v3 + .NET 8.0 : .NET 8.0.27 (8.0.27, 8.0.2726.22922), X64 RyuJIT x86-64-v3 + .NET 9.0 : .NET 9.0.16 (9.0.16, 9.0.1626.22923), X64 RyuJIT x86-64-v3 + .NET Framework 4.6.2 : .NET Framework 4.8.1 (4.8.9310.0), X64 RyuJIT VectorSize=256 + .NET Framework 4.7.2 : .NET Framework 4.8.1 (4.8.9310.0), X64 RyuJIT VectorSize=256 + .NET Framework 4.8 : .NET Framework 4.8.1 (4.8.9310.0), X64 RyuJIT VectorSize=256 + + +``` +| Method | Job | Runtime | Mean | Error | StdDev | Median | Ratio | RatioSD | Gen0 | Gen1 | Gen2 | Allocated | Alloc Ratio | +|---------------------- |--------------------- |--------------------- |---------:|---------:|---------:|---------:|------:|--------:|-----------:|----------:|----------:|----------:|------------:| +| FetchAndSerialize | .NET 10.0 | .NET 10.0 | 159.9 ms | 8.21 ms | 24.09 ms | 160.1 ms | 1.02 | 0.22 | - | - | - | 116.46 MB | 1.00 | +| FetchAndCloneInternal | .NET 10.0 | .NET 10.0 | 111.2 ms | 2.22 ms | 5.93 ms | 109.9 ms | 0.71 | 0.12 | 500.0000 | - | - | 69.24 MB | 0.59 | +| | | | | | | | | | | | | | | +| FetchAndSerialize | .NET 8.0 | .NET 8.0 | 205.0 ms | 9.34 ms | 27.54 ms | 214.5 ms | 1.02 | 0.21 | 2000.0000 | 1000.0000 | - | 130.33 MB | 1.00 | +| FetchAndCloneInternal | .NET 8.0 | .NET 8.0 | 158.7 ms | 5.37 ms | 15.57 ms | 159.5 ms | 0.79 | 0.14 | 500.0000 | - | - | 83.11 MB | 0.64 | +| | | | | | | | | | | | | | | +| FetchAndSerialize | .NET 9.0 | .NET 9.0 | 207.7 ms | 12.87 ms | 36.51 ms | 215.9 ms | 1.03 | 0.27 | 2000.0000 | 1000.0000 | - | 129.79 MB | 1.00 | +| FetchAndCloneInternal | .NET 9.0 | .NET 9.0 | 135.9 ms | 5.46 ms | 16.10 ms | 135.2 ms | 0.68 | 0.16 | 1000.0000 | 500.0000 | - | 82.57 MB | 0.64 | +| | | | | | | | | | | | | | | +| FetchAndSerialize | .NET Framework 4.6.2 | .NET Framework 4.6.2 | 529.1 ms | 10.55 ms | 17.34 ms | 526.8 ms | 1.00 | 0.05 | 20000.0000 | 8000.0000 | 1000.0000 | 126.85 MB | 1.00 | +| FetchAndCloneInternal | .NET Framework 4.6.2 | .NET Framework 4.6.2 | 356.0 ms | 8.72 ms | 25.03 ms | 352.2 ms | 0.67 | 0.05 | 13000.0000 | 5000.0000 | 1000.0000 | 79.72 MB | 0.63 | +| | | | | | | | | | | | | | | +| FetchAndSerialize | .NET Framework 4.7.2 | .NET Framework 4.7.2 | 489.3 ms | 9.75 ms | 18.79 ms | 486.0 ms | 1.00 | 0.05 | 20000.0000 | 8000.0000 | 1000.0000 | 126.85 MB | 1.00 | +| FetchAndCloneInternal | .NET Framework 4.7.2 | .NET Framework 4.7.2 | 337.0 ms | 6.72 ms | 8.97 ms | 337.5 ms | 0.69 | 0.03 | 13000.0000 | 5000.0000 | 1000.0000 | 79.72 MB | 0.63 | +| | | | | | | | | | | | | | | +| FetchAndSerialize | .NET Framework 4.8 | .NET Framework 4.8 | 482.8 ms | 9.47 ms | 13.59 ms | 481.0 ms | 1.00 | 0.04 | 20000.0000 | 8000.0000 | 1000.0000 | 126.85 MB | 1.00 | +| FetchAndCloneInternal | .NET Framework 4.8 | .NET Framework 4.8 | 334.8 ms | 6.66 ms | 6.23 ms | 336.6 ms | 0.69 | 0.02 | 13000.0000 | 5000.0000 | 1000.0000 | 79.65 MB | 0.63 | diff --git a/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.csv b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.csv new file mode 100644 index 0000000000..c5346501bd --- /dev/null +++ b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.csv @@ -0,0 +1,13 @@ +Method;Job;AnalyzeLaunchVariance;EvaluateOverhead;MaxAbsoluteError;MaxRelativeError;MinInvokeCount;MinIterationTime;OutlierMode;Affinity;EnvironmentVariables;Jit;LargeAddressAware;Platform;PowerPlanMode;Runtime;AllowVeryLargeObjects;Concurrent;CpuGroups;Force;HeapAffinitizeMask;HeapCount;NoAffinitize;RetainVm;Server;Arguments;BuildConfiguration;Clock;EngineFactory;NuGetReferences;IsMutator;InvocationCount;IterationCount;IterationTime;LaunchCount;MaxIterationCount;MaxWarmupIterationCount;MemoryRandomization;MinIterationCount;MinWarmupIterationCount;RunStrategy;UnrollFactor;WarmupCount;Mean;Error;StdDev;Median;Ratio;RatioSD;Gen0;Gen1;Gen2;Allocated;Alloc Ratio +FetchAndSerialize;.NET 10.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 10.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;159.9 ms;8.21 ms;24.09 ms;160.1 ms;1.02;0.22;0.0000;0.0000;0.0000;116.46 MB;1.00 +FetchAndCloneInternal;.NET 10.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 10.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;111.2 ms;2.22 ms;5.93 ms;109.9 ms;0.71;0.12;500.0000;0.0000;0.0000;69.24 MB;0.59 +FetchAndSerialize;.NET 8.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 8.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;205.0 ms;9.34 ms;27.54 ms;214.5 ms;1.02;0.21;2000.0000;1000.0000;0.0000;130.33 MB;1.00 +FetchAndCloneInternal;.NET 8.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 8.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;158.7 ms;5.37 ms;15.57 ms;159.5 ms;0.79;0.14;500.0000;0.0000;0.0000;83.11 MB;0.64 +FetchAndSerialize;.NET 9.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 9.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;207.7 ms;12.87 ms;36.51 ms;215.9 ms;1.03;0.27;2000.0000;1000.0000;0.0000;129.79 MB;1.00 +FetchAndCloneInternal;.NET 9.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 9.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;135.9 ms;5.46 ms;16.10 ms;135.2 ms;0.68;0.16;1000.0000;500.0000;0.0000;82.57 MB;0.64 +FetchAndSerialize;.NET Framework 4.6.2;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.6.2;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;529.1 ms;10.55 ms;17.34 ms;526.8 ms;1.00;0.05;20000.0000;8000.0000;1000.0000;126.85 MB;1.00 +FetchAndCloneInternal;.NET Framework 4.6.2;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.6.2;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;356.0 ms;8.72 ms;25.03 ms;352.2 ms;0.67;0.05;13000.0000;5000.0000;1000.0000;79.72 MB;0.63 +FetchAndSerialize;.NET Framework 4.7.2;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.7.2;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;489.3 ms;9.75 ms;18.79 ms;486.0 ms;1.00;0.05;20000.0000;8000.0000;1000.0000;126.85 MB;1.00 +FetchAndCloneInternal;.NET Framework 4.7.2;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.7.2;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;337.0 ms;6.72 ms;8.97 ms;337.5 ms;0.69;0.03;13000.0000;5000.0000;1000.0000;79.72 MB;0.63 +FetchAndSerialize;.NET Framework 4.8;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.8;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;482.8 ms;9.47 ms;13.59 ms;481.0 ms;1.00;0.04;20000.0000;8000.0000;1000.0000;126.85 MB;1.00 +FetchAndCloneInternal;.NET Framework 4.8;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.8;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;334.8 ms;6.66 ms;6.23 ms;336.6 ms;0.69;0.02;13000.0000;5000.0000;1000.0000;79.65 MB;0.63 diff --git a/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.html b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.html new file mode 100644 index 0000000000..e8cbe33586 --- /dev/null +++ b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.html @@ -0,0 +1,46 @@ + + + + +Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-20260516-160802 + + + + +

+BenchmarkDotNet v0.15.8, Windows 10 (10.0.19045.6466/22H2/2022Update) (Hyper-V)
+Intel Core i7-10750H CPU 2.60GHz (Max: 2.59GHz), 1 CPU, 4 logical and 2 physical cores
+.NET SDK 10.0.300
+  [Host]               : .NET 10.0.8 (10.0.8, 10.0.826.23019), X64 RyuJIT x86-64-v3
+  .NET 10.0            : .NET 10.0.8 (10.0.8, 10.0.826.23019), X64 RyuJIT x86-64-v3
+  .NET 8.0             : .NET 8.0.27 (8.0.27, 8.0.2726.22922), X64 RyuJIT x86-64-v3
+  .NET 9.0             : .NET 9.0.16 (9.0.16, 9.0.1626.22923), X64 RyuJIT x86-64-v3
+  .NET Framework 4.6.2 : .NET Framework 4.8.1 (4.8.9310.0), X64 RyuJIT VectorSize=256
+  .NET Framework 4.7.2 : .NET Framework 4.8.1 (4.8.9310.0), X64 RyuJIT VectorSize=256
+  .NET Framework 4.8   : .NET Framework 4.8.1 (4.8.9310.0), X64 RyuJIT VectorSize=256
+
+
+ + + + + + + + + + + + + + + + +
Method Job Runtime MeanErrorStdDevMedianRatioRatioSDGen0Gen1Gen2AllocatedAlloc Ratio
FetchAndSerialize.NET 10.0.NET 10.0159.9 ms8.21 ms24.09 ms160.1 ms1.020.22---116.46 MB1.00
FetchAndCloneInternal.NET 10.0.NET 10.0111.2 ms2.22 ms5.93 ms109.9 ms0.710.12500.0000--69.24 MB0.59
FetchAndSerialize.NET 8.0.NET 8.0205.0 ms9.34 ms27.54 ms214.5 ms1.020.212000.00001000.0000-130.33 MB1.00
FetchAndCloneInternal.NET 8.0.NET 8.0158.7 ms5.37 ms15.57 ms159.5 ms0.790.14500.0000--83.11 MB0.64
FetchAndSerialize.NET 9.0.NET 9.0207.7 ms12.87 ms36.51 ms215.9 ms1.030.272000.00001000.0000-129.79 MB1.00
FetchAndCloneInternal.NET 9.0.NET 9.0135.9 ms5.46 ms16.10 ms135.2 ms0.680.161000.0000500.0000-82.57 MB0.64
FetchAndSerialize.NET Framework 4.6.2.NET Framework 4.6.2529.1 ms10.55 ms17.34 ms526.8 ms1.000.0520000.00008000.00001000.0000126.85 MB1.00
FetchAndCloneInternal.NET Framework 4.6.2.NET Framework 4.6.2356.0 ms8.72 ms25.03 ms352.2 ms0.670.0513000.00005000.00001000.000079.72 MB0.63
FetchAndSerialize.NET Framework 4.7.2.NET Framework 4.7.2489.3 ms9.75 ms18.79 ms486.0 ms1.000.0520000.00008000.00001000.0000126.85 MB1.00
FetchAndCloneInternal.NET Framework 4.7.2.NET Framework 4.7.2337.0 ms6.72 ms8.97 ms337.5 ms0.690.0313000.00005000.00001000.000079.72 MB0.63
FetchAndSerialize.NET Framework 4.8.NET Framework 4.8482.8 ms9.47 ms13.59 ms481.0 ms1.000.0420000.00008000.00001000.0000126.85 MB1.00
FetchAndCloneInternal.NET Framework 4.8.NET Framework 4.8334.8 ms6.66 ms6.23 ms336.6 ms0.690.0213000.00005000.00001000.000079.65 MB0.63
+ + diff --git a/Source/Csla.Benchmarks/Program.cs b/Source/Csla.Benchmarks/Program.cs index 5595c4988f..d533bd0943 100644 --- a/Source/Csla.Benchmarks/Program.cs +++ b/Source/Csla.Benchmarks/Program.cs @@ -1,4 +1,4 @@ using BenchmarkDotNet.Running; -using Csla.Benchmarks.CollectionIdentity; +using Csla.Benchmarks.PerformanceCloner; -var summary = BenchmarkRunner.Run(); +var summary = BenchmarkRunner.Run(); From d6ce4ee344bb7b58cf414c16e5a6a32312ae7c8f Mon Sep 17 00:00:00 2001 From: Luiz Fernando Bicalho Date: Sat, 16 May 2026 16:20:31 -0300 Subject: [PATCH 3/6] Remove Nerdbank.GitVersioning update from benchmarks project Removed the that updated Nerdbank.GitVersioning to version 3.9.50 in Csla.Benchmarks.csproj. No other changes were made. --- Source/Csla.Benchmarks/Csla.Benchmarks.csproj | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Source/Csla.Benchmarks/Csla.Benchmarks.csproj b/Source/Csla.Benchmarks/Csla.Benchmarks.csproj index 1dfba06668..976e8d350a 100644 --- a/Source/Csla.Benchmarks/Csla.Benchmarks.csproj +++ b/Source/Csla.Benchmarks/Csla.Benchmarks.csproj @@ -12,9 +12,4 @@ - - - - - From b0f1d3d0d480ed2b4200cc413655b11f6663725c Mon Sep 17 00:00:00 2001 From: Luiz Fernando Bicalho Date: Sun, 17 May 2026 12:00:03 -0300 Subject: [PATCH 4/6] update comments --- .../PerformanceClonerBenchmark.cs | 23 +++++++--------- ...lonerBenchmark-report-full-compressed.json | 2 +- ...erformanceClonerBenchmark-report-github.md | 24 ++++++++--------- ...oner.PerformanceClonerBenchmark-report.csv | 24 ++++++++--------- ...ner.PerformanceClonerBenchmark-report.html | 26 +++++++++---------- Source/Csla.Benchmarks/Readme.md | 2 +- 6 files changed, 49 insertions(+), 52 deletions(-) diff --git a/Source/Csla.Benchmarks/PerformanceCloner/PerformanceClonerBenchmark.cs b/Source/Csla.Benchmarks/PerformanceCloner/PerformanceClonerBenchmark.cs index d6f65042cc..feea7081fc 100644 --- a/Source/Csla.Benchmarks/PerformanceCloner/PerformanceClonerBenchmark.cs +++ b/Source/Csla.Benchmarks/PerformanceCloner/PerformanceClonerBenchmark.cs @@ -19,18 +19,20 @@ public class PerformanceClonerBenchmark { private ServiceProvider _serviceProvider = default!; private IDataPortal _listPortal = default!; - private TestItem _fetch = new(); + private TestItem _fetch = default!; + private MobileFormatter _formatter = default!; [GlobalSetup] - public void GlobalSetup() + public async Task GlobalSetup() { _serviceProvider = new ServiceCollection() .AddCsla(o => o.AddConsoleApp().DataPortal(dpo => dpo.AddServerSideDataPortal().AddClientSideDataPortal(co => co.UseLocalProxy())).Serialization(so => so.UseMobileFormatter())) .BuildServiceProvider(); _listPortal = _serviceProvider.GetRequiredService>(); - _fetch = _listPortal.FetchAsync().Result; + _fetch = await _listPortal.FetchAsync(); + _formatter = (_serviceProvider.GetRequiredService() as MobileFormatter)!; } [GlobalCleanup] @@ -40,21 +42,16 @@ public async Task GlobalCleanup() } [Benchmark(Baseline = true)] - public async Task FetchAndSerialize() + public async Task FetchAndSerialize() { var clone = _fetch.Clone(); - + return clone; } [Benchmark] - public async Task FetchAndCloneInternal() + public async Task FetchAndCloneInternal() { - var formatter = _serviceProvider.GetRequiredService() as MobileFormatter; - if (formatter == null) - { - throw new InvalidOperationException("MobileFormatter not found in service provider"); - } - var clone = formatter.SerializeAsDTO(_fetch); - var clone2 = formatter.DeserializeAsDTO(clone); + var clone2 = _formatter.DeserializeAsDTO(_formatter.SerializeAsDTO(_fetch)); + return clone2; } } diff --git a/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-full-compressed.json b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-full-compressed.json index 320cb0276f..a238d1cedb 100644 --- a/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-full-compressed.json +++ b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-full-compressed.json @@ -1 +1 @@ -{"Title":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-20260516-160802","HostEnvironmentInfo":{"BenchmarkDotNetCaption":"BenchmarkDotNet","BenchmarkDotNetVersion":"0.15.8","OsVersion":"Windows 10 (10.0.19045.6466/22H2/2022Update)","ProcessorName":"Intel Core i7-10750H CPU 2.60GHz","PhysicalProcessorCount":1,"PhysicalCoreCount":2,"LogicalCoreCount":4,"RuntimeVersion":".NET 10.0.8 (10.0.8, 10.0.826.23019)","Architecture":"X64","HasAttachedDebugger":false,"HasRyuJit":true,"Configuration":"RELEASE","DotNetCliVersion":"10.0.300","ChronometerFrequency":{"Hertz":10000000},"HardwareTimerKind":"Unknown"},"Benchmarks":[{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET 10.0(Runtime=.NET 10.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[121824700,139480900,152024400,155208900,161778700,114880900,134516600,174199000,175527800,173193100,120414600,132777800,151348600,164800000,183963200,121420800,148120000,160096200,168900900,168963500,132330700,152785500,162805900,173339500,176114800,116090900,152669100,158859800,159875700,181294800,114642000,144973200,162994100,181474700,174558200,127460000,149512700,148498700,165362600,168668300,124917100,145722800,147290400,157723900,182328600,112044900,149109100,146243400,157830500,162419000,121052000,136344200,166020300,154828000,171181400,120888300,154019500,153220200,164745500,178294200,129933000,150588300,172073100,182454900,178689100,132541400,147168800,182279800,170895100,191651300,126240000,154259800,170626900,190702500,195294700,137173100,156958600,189940500,195023700,143072700,174347200,186473300,182553000,188361400,124390000,154014600,176538700,187780200,210687500,137377000,193646800,200646600,212378100,193425200,128740700,163369000,186834000,190567400,204063900],"N":99,"Min":112044900,"LowerFence":97245325,"Q1":145348000,"Median":160096200,"Mean":159876131.3131313,"Q3":177416450,"UpperFence":225519125,"Max":212378100,"InterquartileRange":32068450,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":2421294.7445984026,"Variance":580404155781764.6,"StandardDeviation":24091578.524076927,"Skewness":-0.08010521404097781,"Kurtosis":2.221304949162779,"ConfidenceInterval":{"N":99,"Mean":159876131.3131313,"StandardError":2421294.7445984026,"Level":12,"Margin":8214455.76172873,"Lower":151661675.55140257,"Upper":168090587.07486004},"Percentiles":{"P0":112044900,"P25":145348000,"P50":160096200,"P67":172812300.00000003,"P80":182299320,"P85":186581510,"P90":190594420,"P95":195050800,"P100":212378100}},"Memory":{"Gen0Collections":0,"Gen1Collections":0,"Gen2Collections":0,"TotalOperations":1,"BytesAllocatedPerOperation":122120904},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":252600},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":424994500},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":1500},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":416619800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":361619400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":295469900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":169689600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":167178800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":173779900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":113346000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":139265600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":172960800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":173283400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":166983300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":121824700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":139480900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":152024400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":155208900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":161778700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":114880900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":134516600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":174199000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":175527800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":173193100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":120414600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":132777800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":151348600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":164800000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":183963200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":121420800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":148120000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":160096200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":168900900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":168963500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":132330700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":152785500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":162805900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":173339500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":176114800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":116090900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":152669100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":158859800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":159875700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":181294800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":114642000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":144973200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":162994100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":181474700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":174558200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":127460000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":149512700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":148498700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":165362600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":168668300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":124917100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":145722800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":147290400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":157723900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":182328600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":112044900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":149109100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":146243400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":157830500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":162419000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":121052000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":136344200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":166020300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":154828000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":171181400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":120888300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":154019500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":153220200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":164745500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":178294200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":129933000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":150588300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":172073100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":182454900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":178689100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":132541400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":147168800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":182279800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":170895100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":191651300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":126240000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":154259800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":170626900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":190702500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":195294700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":137173100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":156958600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":189940500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":195023700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":285171500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":143072700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":174347200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":186473300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":182553000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":188361400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":124390000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":154014600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":176538700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":187780200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":210687500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":137377000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":193646800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":200646600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":212378100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":193425200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":128740700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":163369000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":186834000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":190567400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":204063900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":121824700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":139480900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":152024400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":155208900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":161778700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":114880900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":134516600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":174199000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":175527800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":173193100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":120414600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":132777800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":151348600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":164800000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":183963200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":121420800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":148120000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":160096200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":168900900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":168963500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":132330700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":152785500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":162805900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":173339500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":176114800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":116090900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":152669100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":158859800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":159875700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":181294800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":114642000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":144973200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":162994100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":181474700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":174558200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":127460000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":149512700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":148498700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":165362600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":168668300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":124917100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":145722800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":147290400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":157723900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":182328600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":112044900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":149109100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":146243400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":157830500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":162419000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":121052000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":136344200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":166020300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":154828000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":171181400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":120888300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":154019500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":153220200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":164745500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":178294200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":129933000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":150588300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":172073100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":182454900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":178689100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":132541400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":147168800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":182279800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":170895100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":191651300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":126240000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":154259800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":170626900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":190702500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":195294700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":137173100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":156958600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":189940500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":195023700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":143072700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":174347200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":186473300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":182553000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":188361400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":124390000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":154014600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":176538700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":187780200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":210687500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":137377000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":193646800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":200646600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":212378100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":193425200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":128740700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":163369000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":186834000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":190567400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":204063900}],"Metrics":[{"Value":0,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":0,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":122120904,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET 10.0(Runtime=.NET 10.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[122237800,120573400,115040250,113874550,112819000,124390100,113136300,119294850,109951150,109938200,122891950,105407550,109696600,105330400,106978350,113487550,113918700,111062050,116540050,112459200,107886100,121524700,113964900,106966450,108381050,123906650,106008900,113439150,111395350,116493650,109805300,106703650,109441150,117559900,110587700,117702600,108316050,119259600,108708950,103750050,107898400,109003300,112873550,109029900,119680450,115157950,107627050,108224900,120771150,106949950,102450950,101028200,110930400,111138100,102385000,103186850,119943050,106809600,105333950,106687300,114036850,104511550,108053150,109091050,113634900,106126650,116197450,109933750,120110700,117873000,121949150,111959050,114625300,105885100,107556300,109222500,106077200,110066750,101437950,101909400,108604150,103840000,100631900],"N":83,"Min":100631900,"LowerFence":95146337.5,"Q1":106958200,"Median":109938200,"Mean":111220164.45783132,"Q3":114832775,"UpperFence":126644637.5,"Max":124390100,"InterquartileRange":7874575,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":650840.1792196501,"Variance":35158213927593.305,"StandardDeviation":5929436.223418994,"Skewness":0.39277170337755335,"Kurtosis":2.318873428005464,"ConfidenceInterval":{"N":83,"Mean":111220164.45783132,"StandardError":650840.1792196501,"Level":12,"Margin":2221426.0389249986,"Lower":108998738.41890633,"Upper":113441590.49675632},"Percentiles":{"P0":100631900,"P25":106958200,"P50":109938200,"P67":113484646,"P80":116521490,"P85":118843620,"P90":120077170,"P95":121906705,"P100":124390100}},"Memory":{"Gen0Collections":1,"Gen1Collections":0,"Gen2Collections":0,"TotalOperations":2,"BytesAllocatedPerOperation":72606732},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":178800},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":248953400},{"IterationMode":"Workload","IterationStage":"Pilot","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":511093200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":515469700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":472117400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":336827200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":287055400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":265963500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":269629200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":279746600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":258952500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":263146100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":247238700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":244475600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":241146800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":230080500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":227749100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":225638000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":248780200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":226272600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":238589700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":219902300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":219876400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":245783900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":210815100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":219393200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":210660800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":213956700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":226975100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":227837400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":222124100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":233080100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":224918400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":215772200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":255897100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":243049400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":227929800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":213932900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":216762100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":247813300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":212017800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":226878300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":222790700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":232987300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":219610600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":213407300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":218882300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":235119800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":221175400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":235405200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":216632100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":238519200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":217417900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":207500100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":215796800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":258528200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":218006600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":225747100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":218059800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":239360900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":230315900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":215254100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":216449800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":241542300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":213899900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":204901900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":202056400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":221860800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":222276200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":204770000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":206373700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":239886100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":213619200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":210667900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":213374600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":228073700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":209023100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":216106300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":218182100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":227269800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":212253300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":232394900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":219867500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":240221400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":235746000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":243898300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":223918100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":229250600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":211770200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":215112600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":218445000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":212154400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":220133500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":202875900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":203818800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":217208300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":207680000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":201263800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":244475600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":241146800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":230080500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":227749100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":225638000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":248780200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":226272600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":238589700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":219902300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":219876400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":245783900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":210815100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":219393200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":210660800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":213956700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":226975100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":227837400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":222124100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":233080100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":224918400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":215772200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":243049400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":227929800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":213932900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":216762100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":247813300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":212017800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":226878300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":222790700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":232987300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":219610600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":213407300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":218882300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":235119800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":221175400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":235405200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":216632100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":238519200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":217417900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":207500100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":215796800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":218006600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":225747100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":218059800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":239360900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":230315900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":215254100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":216449800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":241542300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":213899900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":204901900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":202056400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":221860800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":222276200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":204770000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":206373700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":239886100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":213619200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":210667900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":213374600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":228073700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":209023100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":216106300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":218182100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":227269800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":212253300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":232394900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":219867500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":240221400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":235746000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":243898300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":223918100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":229250600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":211770200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":215112600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":218445000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":212154400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":220133500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":202875900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":203818800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":217208300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":207680000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":201263800}],"Metrics":[{"Value":500,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":0,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":72606732,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET 8.0(Runtime=.NET 8.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[219164500,222076400,218220100,162624000,222120100,201229700,242292400,147021000,212618000,209108700,218899600,158121000,214067100,207751900,218617700,154426800,212749500,217485600,215863300,166954700,211439200,210629000,225759500,163193300,229168500,214274100,214520700,156822400,231169200,205080500,220632700,157425200,229553600,204464400,214970600,158877600,241026900,208696600,225033000,153228900,229473100,227820000,211602500,153574100,215020800,221595100,216199900,163763300,217018600,205175800,211685300,155442600,208844100,221033100,227031200,149279500,221537100,203366200,229562100,148982900,220756200,212513200,204714500,169583200,227224300,201129700,207458700,167143800,223384400,209122900,210650500,156704300,216710800,214529200,216349000,163106400,240035600,228736000,220418300,159213600,225536800,221126800,235597400,159124200,260461500,209009500,220023600,171746600,235820500,227722800,222250300,180136300,226644800,234758900,232163600,176993200,224367100,227329100,216147100,168203300],"N":100,"Min":147021000,"LowerFence":155902637.5,"Q1":195881350,"Median":214524950,"Mean":205000333,"Q3":222533825,"UpperFence":262512537.5,"Max":260461500,"InterquartileRange":26652475,"LowerOutliers":[147021000,148982900,149279500,153228900,153574100,154426800,155442600],"UpperOutliers":[],"AllOutliers":[147021000,148982900,149279500,153228900,153574100,154426800,155442600],"StandardError":2754346.826311132,"Variance":758642643961020.5,"StandardDeviation":27543468.26311132,"Skewness":-0.8027551281760554,"Kurtosis":2.3800412930995556,"ConfidenceInterval":{"N":100,"Mean":205000333,"StandardError":2754346.826311132,"Level":12,"Margin":9341446.667436622,"Lower":195658886.33256337,"Upper":214341779.66743663},"Percentiles":{"P0":147021000,"P25":195881350,"P50":214524950,"P67":220673455,"P80":225936560,"P85":227737380,"P90":229554450,"P95":235608555,"P100":260461500}},"Memory":{"Gen0Collections":2,"Gen1Collections":1,"Gen2Collections":0,"TotalOperations":1,"BytesAllocatedPerOperation":136659824},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":163900},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":368213100},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":700},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":434838400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":369121400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":365660600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":300235400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":342794200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":231511600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":235159600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":155084700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":219164500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":222076400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":218220100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":162624000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":222120100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":201229700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":242292400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":147021000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":212618000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":209108700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":218899600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":158121000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":214067100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":207751900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":218617700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":154426800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":212749500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":217485600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":215863300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":166954700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":211439200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":210629000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":225759500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":163193300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":229168500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":214274100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":214520700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":156822400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":231169200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":205080500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":220632700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":157425200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":229553600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":204464400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":214970600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":158877600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":241026900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":208696600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":225033000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":153228900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":229473100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":227820000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":211602500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":153574100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":215020800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":221595100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":216199900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":163763300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":217018600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":205175800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":211685300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":155442600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":208844100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":221033100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":227031200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":149279500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":221537100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":203366200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":229562100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":148982900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":220756200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":212513200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":204714500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":169583200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":227224300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":201129700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":207458700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":167143800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":223384400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":209122900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":210650500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":156704300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":216710800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":214529200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":216349000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":163106400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":240035600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":228736000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":220418300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":159213600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":225536800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":221126800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":235597400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":159124200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":260461500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":209009500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":220023600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":171746600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":235820500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":227722800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":222250300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":180136300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":226644800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":234758900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":232163600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":176993200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":224367100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":227329100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":216147100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":168203300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":219164500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":222076400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":218220100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":162624000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":222120100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":201229700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":242292400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":147021000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":212618000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":209108700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":218899600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":158121000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":214067100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":207751900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":218617700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":154426800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":212749500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":217485600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":215863300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":166954700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":211439200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":210629000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":225759500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":163193300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":229168500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":214274100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":214520700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":156822400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":231169200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":205080500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":220632700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":157425200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":229553600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":204464400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":214970600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":158877600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":241026900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":208696600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":225033000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":153228900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":229473100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":227820000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":211602500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":153574100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":215020800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":221595100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":216199900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":163763300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":217018600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":205175800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":211685300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":155442600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":208844100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":221033100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":227031200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":149279500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":221537100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":203366200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":229562100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":148982900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":220756200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":212513200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":204714500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":169583200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":227224300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":201129700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":207458700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":167143800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":223384400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":209122900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":210650500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":156704300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":216710800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":214529200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":216349000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":163106400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":240035600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":228736000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":220418300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":159213600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":225536800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":221126800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":235597400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":159124200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":260461500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":209009500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":220023600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":171746600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":235820500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":227722800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":222250300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":180136300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":226644800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":234758900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":232163600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":176993200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":224367100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":227329100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":216147100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":168203300}],"Metrics":[{"Value":2000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":1000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":136659824,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET 8.0(Runtime=.NET 8.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[175754650,167368550,150312500,164331400,147107050,168968900,181467900,189541950,159037550,180249800,169850650,185517550,169364850,189171400,156661100,170164300,148427200,146875450,184465350,144608450,165574850,146713300,162869700,141629650,170506800,156458800,135657550,159995800,144925800,161315350,132772150,164709850,139381100,168011900,164678450,125543350,157942600,153940850,148882700,134221000,167622150,147642100,162867700,155590550,128384250,162619250,148441700,151885700,133749000,173677250,150220700,177342250,171280600,126190750,162054500,150095100,153140800,130930950,175716600,137024550,165556000,157352050,145874900,162957450,142314650,159466400,129177000,165087950,156780150,163916900,151222450,145923400,183506800,156044250,187499350,152976150,192206600,162034950,186148300,180976050,133762150,168039450,151249050,158441600,169146150,167262350,144134950,170086650,171547500,163525850,172544800,161293200,146353600,146808750,167389750,150836700,152408850],"N":97,"Min":125543350,"LowerFence":115651900,"Q1":147642100,"Median":159466400,"Mean":158693893.29896906,"Q3":168968900,"UpperFence":200959100,"Max":192206600,"InterquartileRange":21326800,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":1581387.3218282366,"Variance":242576228578991,"StandardDeviation":15574858.862249475,"Skewness":-0.02930870216326132,"Kurtosis":2.4873035723234853,"ConfidenceInterval":{"N":97,"Mean":158693893.29896906,"StandardError":1581387.3218282366,"Level":12,"Margin":5368453.739852368,"Lower":153325439.5591167,"Upper":164062347.03882143},"Percentiles":{"P0":125543350,"P25":147642100,"P50":159466400,"P67":165562032,"P80":170148770,"P85":173224270,"P90":180540300,"P95":185643700,"P100":192206600}},"Memory":{"Gen0Collections":1,"Gen1Collections":0,"Gen2Collections":0,"TotalOperations":2,"BytesAllocatedPerOperation":87143976},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":131600},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":245982500},{"IterationMode":"Workload","IterationStage":"Pilot","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":528177600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":625425200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":456442000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":394973600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":307926000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":345973600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":321216700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":458707400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":351935100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":351509300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":334737100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":300625000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":408719000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":328662800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":417284800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":294214100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":404502300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":337937800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":362935800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":379083900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":318075100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":360499600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":339701300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":371035100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":338729700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":378342800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":313322200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":340328600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":296854400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":293750900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":368930700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":289216900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":331149700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":293426600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":325739400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":283259300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":341013600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":312917600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":271315100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":319991600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":289851600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":322630700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":265544300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":329419700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":278762200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":336023800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":329356900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":251086700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":315885200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":307881700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":297765400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":268442000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":335244300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":295284200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":325735400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":311181100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":256768500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":325238500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":296883400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":303771400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":267498000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":347354500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":300441400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":354684500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":342561200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":252381500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":324109000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":300190200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":306281600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":261861900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":351433200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":274049100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":331112000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":314704100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":291749800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":325914900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":284629300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":318932800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":258354000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":330175900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":313560300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":327833800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":302444900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":291846800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":367013600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":312088500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":374998700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":305952300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":384413200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":324069900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":372296600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":361952100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":267524300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":336078900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":2,"Nanoseconds":302498100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":2,"Nanoseconds":316883200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":2,"Nanoseconds":338292300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":2,"Nanoseconds":334524700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":2,"Nanoseconds":288269900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":2,"Nanoseconds":340173300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":2,"Nanoseconds":343095000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":2,"Nanoseconds":327051700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":2,"Nanoseconds":345089600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":2,"Nanoseconds":322586400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":2,"Nanoseconds":292707200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":2,"Nanoseconds":293617500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":2,"Nanoseconds":334779500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":2,"Nanoseconds":301673400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":2,"Nanoseconds":304817700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":351509300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":334737100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":300625000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":328662800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":294214100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":337937800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":362935800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":379083900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":318075100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":360499600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":339701300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":371035100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":338729700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":378342800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":313322200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":340328600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":296854400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":293750900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":368930700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":289216900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":331149700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":293426600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":325739400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":283259300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":341013600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":312917600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":271315100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":319991600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":289851600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":322630700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":265544300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":329419700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":278762200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":336023800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":329356900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":251086700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":315885200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":307881700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":297765400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":268442000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":335244300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":295284200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":325735400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":311181100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":256768500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":325238500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":296883400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":303771400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":267498000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":347354500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":300441400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":354684500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":342561200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":252381500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":324109000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":300190200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":306281600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":261861900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":351433200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":274049100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":331112000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":314704100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":291749800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":325914900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":284629300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":318932800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":258354000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":330175900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":313560300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":327833800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":302444900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":291846800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":367013600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":312088500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":374998700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":305952300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":384413200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":324069900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":372296600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":361952100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":267524300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":336078900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":302498100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":316883200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":338292300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":2,"Nanoseconds":334524700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":2,"Nanoseconds":288269900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":2,"Nanoseconds":340173300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":2,"Nanoseconds":343095000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":2,"Nanoseconds":327051700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":2,"Nanoseconds":345089600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":2,"Nanoseconds":322586400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":2,"Nanoseconds":292707200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":2,"Nanoseconds":293617500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":2,"Nanoseconds":334779500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":2,"Nanoseconds":301673400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":97,"Operations":2,"Nanoseconds":304817700}],"Metrics":[{"Value":500,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":0,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":87143976,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET 9.0(Runtime=.NET 9.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[214184700,189729100,219525700,292236900,278285700,252532900,259592800,242370300,187366000,239590100,234415500,233398800,157716700,232675200,224580800,278723100,143955900,195815500,201227900,212505400,138497400,185958700,185556300,208011000,153363800,290147000,255943800,168176900,247695400,238382700,243801800,141175000,215855100,208048000,207326900,140743800,218479900,224417700,236698500,142661600,218064300,227166700,242303100,145277900,221990500,198542800,213291100,147991900,224525400,227879600,209438300,164805600,203465800,211359600,195172100,150672600,210020000,230248400,193695500,139413700,147951900,205364000,217866400,212533600,175059000,217224400,222256200,233668600,185557700,214780400,230370600,221599900,147170200,217467400,223693900,234135600,155015900,229915300,209967000,226395600,147014500,234696900,211929900,228089300,158483600,240727400,222914200,218924700,165103800,236127300,229350500,224650600,156044000],"N":93,"Min":138497400,"LowerFence":119524150,"Q1":185958700,"Median":215855100,"Mean":207728446.23655915,"Q3":230248400,"UpperFence":296682950,"Max":292236900,"InterquartileRange":44289700,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":3786087.5948677054,"Variance":1333104712669034.5,"StandardDeviation":36511706.51543193,"Skewness":-0.28743034023133623,"Kurtosis":2.5715233227986016,"ConfidenceInterval":{"N":93,"Mean":207728446.23655915,"StandardError":3786087.5948677054,"Level":12,"Margin":12870583.748431003,"Lower":194857862.48812816,"Upper":220599029.98499015},"Percentiles":{"P0":138497400,"P25":185958700,"P50":215855100,"P67":224625472,"P80":233948800,"P85":237035340,"P90":242356860,"P95":257403399.99999994,"P100":292236900}},"Memory":{"Gen0Collections":2,"Gen1Collections":1,"Gen2Collections":0,"TotalOperations":1,"BytesAllocatedPerOperation":136096088},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":130200},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":390934000},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":3200},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":586978600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":416340600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":363354100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":216259700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":259471100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":216379100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":204557300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":151878000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":209374200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":215030200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":237516300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":165829400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":214184700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":189729100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":219525700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":517269800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":493087400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":292236900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":278285700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":252532900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":331010800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":259592800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":242370300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":187366000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":239590100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":234415500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":233398800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":157716700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":232675200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":224580800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":278723100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":143955900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":195815500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":201227900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":212505400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":138497400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":185958700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":185556300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":208011000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":153363800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":315981600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":290147000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":255943800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":168176900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":247695400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":238382700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":243801800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":141175000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":215855100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":208048000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":207326900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":140743800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":218479900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":224417700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":236698500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":142661600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":218064300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":227166700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":242303100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":145277900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":221990500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":198542800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":213291100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":147991900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":224525400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":227879600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":209438300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":164805600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":203465800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":211359600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":195172100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":150672600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":210020000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":230248400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":193695500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":139413700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":364891700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":390707600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":335116600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":147951900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":205364000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":217866400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":212533600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":175059000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":217224400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":222256200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":233668600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":185557700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":214780400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":230370600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":221599900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":147170200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":217467400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":223693900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":234135600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":155015900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":229915300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":209967000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":226395600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":147014500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":234696900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":211929900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":228089300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":158483600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":240727400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":222914200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":218924700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":165103800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":236127300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":229350500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":224650600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":156044000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":214184700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":189729100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":219525700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":292236900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":278285700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":252532900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":259592800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":242370300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":187366000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":239590100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":234415500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":233398800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":157716700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":232675200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":224580800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":278723100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":143955900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":195815500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":201227900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":212505400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":138497400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":185958700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":185556300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":208011000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":153363800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":290147000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":255943800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":168176900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":247695400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":238382700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":243801800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":141175000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":215855100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":208048000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":207326900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":140743800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":218479900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":224417700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":236698500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":142661600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":218064300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":227166700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":242303100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":145277900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":221990500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":198542800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":213291100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":147991900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":224525400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":227879600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":209438300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":164805600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":203465800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":211359600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":195172100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":150672600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":210020000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":230248400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":193695500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":139413700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":147951900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":205364000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":217866400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":212533600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":175059000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":217224400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":222256200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":233668600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":185557700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":214780400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":230370600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":221599900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":147170200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":217467400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":223693900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":234135600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":155015900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":229915300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":209967000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":226395600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":147014500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":234696900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":211929900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":228089300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":158483600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":240727400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":222914200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":218924700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":165103800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":236127300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":229350500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":224650600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":156044000}],"Metrics":[{"Value":2000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":1000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":136096088,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET 9.0(Runtime=.NET 9.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[120956150,149625550,127294750,118888900,164729700,137551400,148510150,124829700,114724450,145682550,122094400,112946350,152081950,147054850,157461300,134533100,135784550,137594000,122428950,124687600,156618350,135340750,152104000,123814000,111542250,133319200,127755900,117368850,172772450,141533600,163241250,130948650,111004700,139168950,130373850,121595600,154808800,160686200,146950650,138534450,112731500,135154050,128068600,120236600,148889100,138750250,180690600,130812850,115451350,156484600,140281050,118210150,147828500,139217450,164294050,123252300,125213400,135558050,121252350,117677750,164117950,137379800,161011300,137383050,116161900,137007250,132779550,114829850,147899300,140820550,163225400,124920400,114568900,146517600,122769750,121563600,156937550,135742150,148639050,132764500,119428100,147014150,122064300,114786300,151408200,131633650,153707300,128333650,129311550,140946200,123480850,118795850,153226050,135702200,167915700,128007450,112617000,136545200,124648500,119903900],"N":100,"Min":111004700,"LowerFence":84093981.25,"Q1":122345312.5,"Median":135247400,"Mean":135855128.5,"Q3":147846200,"UpperFence":186097531.25,"Max":180690600,"InterquartileRange":25500887.5,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":1610103.161290796,"Variance":259243218999861.47,"StandardDeviation":16101031.61290796,"Skewness":0.4879512694476171,"Kurtosis":2.4179532994867743,"ConfidenceInterval":{"N":100,"Mean":135855128.5,"StandardError":1610103.161290796,"Level":12,"Margin":5460711.2897299575,"Lower":130394417.21027005,"Upper":141315839.78972995},"Percentiles":{"P0":111004700,"P25":122345312.5,"P50":135247400,"P67":140862014.5,"P80":149982080,"P85":153872525,"P90":157783790.00000003,"P95":164126755,"P100":180690600}},"Memory":{"Gen0Collections":2,"Gen1Collections":1,"Gen2Collections":0,"TotalOperations":2,"BytesAllocatedPerOperation":86580660},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":147600},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":305334200},{"IterationMode":"Workload","IterationStage":"Pilot","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":545369600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":772057700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":371355300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":356843000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":292545400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":286159400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":327187400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":273797600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":329507300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":289962400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":241912300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":299251100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":254589500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":237777800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":329459400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":275102800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":297020300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":249659400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":229448900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":291365100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":244188800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":225892700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":304163900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":294109700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":314922600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":269066200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":271569100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":275188000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":244857900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":249375200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":313236700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":270681500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":304208000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":247628000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":223084500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":266638400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":255511800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":234737700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":345544900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":283067200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":326482500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":261897300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":222009400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":278337900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":260747700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":243191200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":309617600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":321372400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":293901300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":277068900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":225463000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":270308100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":256137200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":240473200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":297778200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":277500500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":361381200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":261625700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":230902700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":312969200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":280562100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":236420300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":295657000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":278434900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":328588100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":246504600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":250426800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":271116100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":242504700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":235355500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":328235900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":274759600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":322022600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":274766100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":232323800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":274014500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":265559100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":229659700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":295798600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":281641100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":326450800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":249840800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":229137800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":293035200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":245539500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":243127200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":313875100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":271484300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":297278100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":265529000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":238856200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":294028300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":244128600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":229572600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":302816400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":2,"Nanoseconds":263267300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":2,"Nanoseconds":307414600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":2,"Nanoseconds":256667300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":2,"Nanoseconds":258623100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":2,"Nanoseconds":281892400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":2,"Nanoseconds":246961700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":2,"Nanoseconds":237591700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":2,"Nanoseconds":306452100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":2,"Nanoseconds":271404400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":2,"Nanoseconds":335831400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":2,"Nanoseconds":256014900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":2,"Nanoseconds":225234000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":2,"Nanoseconds":273090400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":2,"Nanoseconds":249297000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":2,"Nanoseconds":239807800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":241912300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":299251100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":254589500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":237777800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":329459400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":275102800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":297020300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":249659400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":229448900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":291365100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":244188800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":225892700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":304163900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":294109700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":314922600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":269066200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":271569100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":275188000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":244857900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":249375200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":313236700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":270681500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":304208000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":247628000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":223084500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":266638400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":255511800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":234737700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":345544900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":283067200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":326482500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":261897300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":222009400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":278337900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":260747700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":243191200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":309617600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":321372400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":293901300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":277068900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":225463000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":270308100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":256137200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":240473200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":297778200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":277500500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":361381200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":261625700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":230902700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":312969200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":280562100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":236420300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":295657000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":278434900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":328588100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":246504600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":250426800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":271116100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":242504700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":235355500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":328235900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":274759600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":322022600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":274766100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":232323800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":274014500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":265559100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":229659700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":295798600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":281641100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":326450800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":249840800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":229137800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":293035200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":245539500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":243127200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":313875100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":271484300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":297278100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":265529000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":238856200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":294028300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":244128600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":229572600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":302816400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":2,"Nanoseconds":263267300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":2,"Nanoseconds":307414600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":2,"Nanoseconds":256667300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":2,"Nanoseconds":258623100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":2,"Nanoseconds":281892400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":2,"Nanoseconds":246961700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":2,"Nanoseconds":237591700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":2,"Nanoseconds":306452100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":2,"Nanoseconds":271404400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":2,"Nanoseconds":335831400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":2,"Nanoseconds":256014900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":97,"Operations":2,"Nanoseconds":225234000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":98,"Operations":2,"Nanoseconds":273090400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":99,"Operations":2,"Nanoseconds":249297000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":100,"Operations":2,"Nanoseconds":239807800}],"Metrics":[{"Value":1000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":500,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":86580660,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET Framework 4.6.2(Runtime=.NET Framework 4.6.2)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[515722800,544995000,514355500,526870300,541403100,510265400,554843300,526757500,570516600,517221500,547042600,547301000,523338900,519543800,545496500,501559000,546349400,526780700,517525000,499839100,507136000,534264500,524552300,525977000,531581400,532497200,552448900,527079100,507910400,547269700,515991100,525768700,499448800,545999000,543539000],"N":35,"Min":499448800,"LowerFence":473647125,"Q1":516606300,"Median":526780700,"Mean":529119717.14285713,"Q3":545245750,"UpperFence":588204925,"Max":570516600,"InterquartileRange":28639450,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":2931242.0065820254,"Variance":300726289540285.7,"StandardDeviation":17341461.574512273,"Skewness":0.16615288853267482,"Kurtosis":2.265405743158737,"ConfidenceInterval":{"N":35,"Mean":529119717.14285713,"StandardError":2931242.0065820254,"Level":12,"Margin":10554569.38961551,"Lower":518565147.7532416,"Upper":539674286.5324726},"Percentiles":{"P0":499448800,"P25":516606300,"P50":526780700,"P67":539832608,"P80":546069080,"P85":546973280,"P90":547288480,"P95":553167220,"P100":570516600}},"Memory":{"Gen0Collections":20,"Gen1Collections":8,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":133011904},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":206000},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":566195900},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":5300},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":527914800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":503770500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":552564700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":526818400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":538703100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":507476000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":527505400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":515722800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":544995000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":514355500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":526870300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":541403100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":510265400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":554843300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":526757500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":570516600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":517221500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":590962900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":547042600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":547301000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":523338900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":519543800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":545496500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":501559000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":546349400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":526780700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":517525000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":499839100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":507136000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":534264500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":524552300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":525977000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":531581400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":532497200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":552448900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":527079100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":507910400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":547269700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":515991100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":525768700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":499448800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":545999000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":543539000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":515722800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":544995000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":514355500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":526870300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":541403100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":510265400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":554843300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":526757500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":570516600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":517221500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":547042600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":547301000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":523338900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":519543800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":545496500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":501559000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":546349400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":526780700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":517525000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":499839100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":507136000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":534264500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":524552300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":525977000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":531581400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":532497200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":552448900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":527079100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":507910400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":547269700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":515991100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":525768700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":499448800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":545999000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":543539000}],"Metrics":[{"Value":20000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":8000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":133011904,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET Framework 4.6.2(Runtime=.NET Framework 4.6.2)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[376808500,417983500,408363000,409933400,391180300,383544000,393096500,365615500,418067900,372754800,364168700,419919400,357393800,375221000,340802200,331473000,331469300,326274600,344272900,323971500,346440800,328207700,348766100,373585100,360128600,351000300,324719200,320241100,396390200,404715500,344045100,349474100,341690000,344017900,369137000,374181300,386917500,369481000,332738900,370141000,328823200,327133100,333967500,324886500,341189500,315212400,352463800,358670200,359885100,361852000,356858400,346252800,335989400,326924800,356728200,365190600,351632600,359146800,341804200,348562800,334881500,354006800,342785800,352213800,344214100,352147000,332790500,331999100,357911000,365656600,320617600,357450900,385996600,368477100,342620800,355965900,370200400,405386700,344612300,395802000,381450900,322412900,358070600,344879600,341380500,399890400,360676100,354433400,337239400,327521200,352930300,325097400,327561100,339879500,344808100],"N":95,"Min":315212400,"LowerFence":292435125,"Q1":338559450,"Median":352213800,"Mean":355952357.8947368,"Q3":369309000,"UpperFence":415433325,"Max":419919400,"InterquartileRange":30749550,"LowerOutliers":[],"UpperOutliers":[417983500,418067900,419919400],"AllOutliers":[417983500,418067900,419919400],"StandardError":2568216.3775735744,"Variance":626594859393527.5,"StandardDeviation":25031876.865179878,"Skewness":0.7451115937851309,"Kurtosis":2.9093114393309674,"ConfidenceInterval":{"N":95,"Mean":355952357.8947368,"StandardError":2568216.3775735744,"Level":12,"Margin":8724377.69269371,"Lower":347227980.2020431,"Upper":364676735.58743054},"Percentiles":{"P0":315212400,"P25":338559450,"P50":352213800,"P67":360665150,"P80":373704340,"P85":383334690,"P90":394719800,"P95":406279590,"P100":419919400}},"Memory":{"Gen0Collections":13,"Gen1Collections":5,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":83596360},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":214400},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":455795400},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":4500},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":371340300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":365553100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":357178400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":354469300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":349285000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":360514800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":370129200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":390063700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":362563800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":393911300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":410249100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":413230100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":389433700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":376808500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":427145200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":417983500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":443278700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":408363000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":409933400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":391180300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":383544000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":393096500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":365615500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":418067900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":372754800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":364168700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":419919400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":448503900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":357393800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":375221000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":340802200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":331473000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":331469300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":326274600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":344272900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":323971500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":346440800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":328207700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":348766100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":373585100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":360128600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":351000300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":324719200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":320241100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":396390200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":404715500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":344045100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":427129700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":349474100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":341690000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":344017900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":369137000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":374181300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":386917500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":369481000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":332738900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":370141000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":436804900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":328823200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":327133100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":333967500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":324886500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":341189500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":315212400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":352463800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":358670200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":359885100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":361852000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":356858400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":346252800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":335989400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":326924800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":356728200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":365190600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":351632600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":359146800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":341804200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":348562800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":334881500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":354006800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":342785800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":352213800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":344214100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":352147000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":332790500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":331999100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":357911000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":365656600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":320617600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":357450900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":385996600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":368477100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":342620800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":355965900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":370200400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":405386700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":344612300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":395802000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":381450900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":322412900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":358070600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":344879600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":341380500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":399890400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":360676100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":354433400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":337239400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":327521200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":352930300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":325097400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":327561100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":339879500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":344808100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":376808500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":417983500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":408363000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":409933400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":391180300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":383544000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":393096500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":365615500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":418067900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":372754800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":364168700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":419919400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":357393800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":375221000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":340802200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":331473000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":331469300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":326274600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":344272900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":323971500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":346440800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":328207700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":348766100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":373585100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":360128600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":351000300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":324719200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":320241100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":396390200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":404715500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":344045100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":349474100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":341690000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":344017900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":369137000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":374181300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":386917500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":369481000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":332738900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":370141000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":328823200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":327133100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":333967500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":324886500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":341189500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":315212400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":352463800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":358670200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":359885100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":361852000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":356858400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":346252800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":335989400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":326924800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":356728200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":365190600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":351632600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":359146800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":341804200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":348562800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":334881500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":354006800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":342785800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":352213800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":344214100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":352147000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":332790500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":331999100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":357911000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":365656600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":320617600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":357450900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":385996600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":368477100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":342620800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":355965900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":370200400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":405386700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":344612300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":395802000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":381450900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":322412900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":358070600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":344879600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":341380500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":399890400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":360676100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":354433400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":337239400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":327521200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":352930300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":325097400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":327561100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":339879500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":344808100}],"Metrics":[{"Value":13000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":5000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":83596360,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET Framework 4.7.2(Runtime=.NET Framework 4.7.2)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[526392100,507279100,504626500,505311600,524880000,501503800,502309900,527521500,469299700,480320900,468670100,495274300,479395400,508185300,469042200,507773600,470483500,539082500,469664600,485264200,477585000,494792900,472637200,500940900,473319700,481618700,465116400,501944200,469644500,490510400,501315700,500978200,481257800,483484600,459412100,485729600,458171200,486235700,471896100,492589500,491773300,491221000,484436000,499873900,467127400,483920000],"N":46,"Min":458171200,"LowerFence":429834400,"Q1":472807825,"Median":485982650,"Mean":489343756.5217391,"Q3":501456775,"UpperFence":544430200,"Max":539082500,"InterquartileRange":28648950,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":2770487.9801561814,"Variance":353077767816734.4,"StandardDeviation":18790363.69570143,"Skewness":0.5394614246225087,"Kurtosis":2.7716175143166946,"ConfidenceInterval":{"N":46,"Mean":489343756.5217391,"StandardError":2770487.9801561814,"Level":12,"Margin":9752814.367994817,"Lower":479590942.1537443,"Upper":499096570.88973397},"Percentiles":{"P0":458171200,"P25":472807825,"P50":485982650,"P67":500033950,"P80":502309900,"P85":505803475,"P90":507979450,"P95":526014075,"P100":539082500}},"Memory":{"Gen0Collections":20,"Gen1Collections":8,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":133008680},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":310400},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":551815900},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":4900},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":552979600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":497487200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":486829100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":499582500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":520502000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":525121600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":502500500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":484490100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":506229700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":491678900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":526392100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":507279100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":504626500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":505311600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":524880000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":501503800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":502309900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":527521500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":469299700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":480320900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":468670100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":495274300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":479395400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":508185300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":469042200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":507773600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":470483500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":539082500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":469664600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":485264200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":477585000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":494792900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":472637200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":500940900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":473319700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":481618700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":465116400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":501944200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":469644500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":490510400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":501315700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":500978200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":481257800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":483484600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":459412100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":485729600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":458171200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":486235700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":471896100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":492589500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":491773300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":491221000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":484436000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":499873900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":467127400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":483920000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":526392100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":507279100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":504626500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":505311600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":524880000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":501503800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":502309900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":527521500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":469299700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":480320900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":468670100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":495274300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":479395400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":508185300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":469042200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":507773600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":470483500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":539082500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":469664600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":485264200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":477585000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":494792900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":472637200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":500940900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":473319700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":481618700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":465116400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":501944200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":469644500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":490510400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":501315700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":500978200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":481257800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":483484600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":459412100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":485729600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":458171200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":486235700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":471896100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":492589500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":491773300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":491221000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":484436000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":499873900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":467127400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":483920000}],"Metrics":[{"Value":20000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":8000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":133008680,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET Framework 4.7.2(Runtime=.NET Framework 4.7.2)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[346800900,342269400,329539300,331099700,331543300,341736200,325364900,340422200,344430400,346620800,335741100,324491800,324746400,343349300,326488500,341452600,327995000,349667700,341188000,359337300,339819200,329143800,337501600,330250200,332850000],"N":25,"Min":324491800,"LowerFence":310444150,"Q1":329539300,"Median":337501600,"Mean":336953984,"Q3":342269400,"UpperFence":361364550,"Max":359337300,"InterquartileRange":12730100,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":1793920.1970793833,"Variance":80453741837233.33,"StandardDeviation":8969600.985396916,"Skewness":0.41611203557128634,"Kurtosis":2.448534475638153,"ConfidenceInterval":{"N":25,"Mean":336953984,"StandardError":1793920.1970793833,"Level":12,"Margin":6718946.227125733,"Lower":330235037.7728743,"Upper":343672930.2271257},"Percentiles":{"P0":324491800,"P25":329539300,"P50":337501600,"P67":341475288,"P80":343565520,"P85":345306560,"P90":346728860,"P95":349094340,"P100":359337300}},"Memory":{"Gen0Collections":13,"Gen1Collections":5,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":83595344},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":197700},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":387777300},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":7000},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":369171600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":324458500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":353705600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":338953500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":327921300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":331131900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":330742100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":346800900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":342269400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":329539300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":331099700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":331543300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":373852700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":341736200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":325364900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":340422200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":344430400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":346620800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":335741100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":324491800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":324746400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":343349300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":326488500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":341452600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":327995000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":349667700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":341188000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":359337300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":339819200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":329143800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":337501600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":330250200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":332850000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":346800900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":342269400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":329539300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":331099700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":331543300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":341736200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":325364900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":340422200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":344430400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":346620800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":335741100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":324491800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":324746400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":343349300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":326488500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":341452600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":327995000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":349667700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":341188000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":359337300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":339819200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":329143800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":337501600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":330250200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":332850000}],"Metrics":[{"Value":13000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":5000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":83595344,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET Framework 4.8(Runtime=.NET Framework 4.8)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[482588900,476469000,478081900,466565700,501307600,474888000,492738400,484811100,491408100,473743400,476691800,483637500,477337100,452661300,502589000,491908000,490544900,481637900,502409900,468370700,497474000,472164500,514510400,480296900,472803400,465551000,491986800,474538300],"N":28,"Min":452661300,"LowerFence":447957387.5,"Q1":474339575,"Median":480967400,"Mean":482846982.14285713,"Q3":491927700,"UpperFence":518309887.5,"Max":514510400,"InterquartileRange":17588125,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":2567902.4908811036,"Variance":184635449674854.56,"StandardDeviation":13588062.763869416,"Skewness":0.21402644154091052,"Kurtosis":2.6976258693108366,"ConfidenceInterval":{"N":28,"Mean":482846982.14285713,"StandardError":2567902.4908811036,"Level":12,"Margin":9474511.74719391,"Lower":473372470.3956632,"Upper":492321493.89005107},"Percentiles":{"P0":452661300,"P25":474339575,"P50":480967400,"P67":490622588,"P80":492437760,"P85":497237220,"P90":501638290,"P95":502526315,"P100":514510400}},"Memory":{"Gen0Collections":20,"Gen1Collections":8,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":133008864},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":280300},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":528420700},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":6400},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":464524300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":482311900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":508238000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":491408200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":471584800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":483737900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":483919400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":524984100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":460606700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":482588900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":476469000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":478081900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":466565700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":501307600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":474888000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":492738400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":484811100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":491408100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":473743400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":476691800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":483637500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":477337100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":452661300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":526740600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":521275900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":502589000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":491908000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":490544900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":481637900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":502409900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":468370700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":497474000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":472164500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":514510400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":480296900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":472803400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":465551000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":491986800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":474538300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":482588900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":476469000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":478081900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":466565700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":501307600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":474888000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":492738400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":484811100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":491408100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":473743400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":476691800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":483637500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":477337100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":452661300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":502589000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":491908000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":490544900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":481637900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":502409900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":468370700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":497474000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":472164500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":514510400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":480296900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":472803400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":465551000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":491986800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":474538300}],"Metrics":[{"Value":20000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":8000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":133008864,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET Framework 4.8(Runtime=.NET Framework 4.8)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[333430700,326996100,337190100,334670000,342603600,327441400,338950500,328670000,330387700,340163000,336560200,323893000,345495500,338661100,337114200],"N":15,"Min":323893000,"LowerFence":315613425,"Q1":329528850,"Median":336560200,"Mean":334815140,"Q3":338805800,"UpperFence":352721225,"Max":345495500,"InterquartileRange":9276950,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":1608458.3613125305,"Variance":38807074501142.86,"StandardDeviation":6229532.446431503,"Skewness":-0.1382213500479216,"Kurtosis":1.807394036077102,"ConfidenceInterval":{"N":15,"Mean":334815140,"StandardError":1608458.3613125305,"Level":12,"Margin":6659748.034605383,"Lower":328155391.9653946,"Upper":341474888.0346054},"Percentiles":{"P0":323893000,"P25":329528850,"P50":336560200,"P67":337749080,"P80":339193000,"P85":340041750,"P90":341627360,"P95":343471170,"P100":345495500}},"Memory":{"Gen0Collections":13,"Gen1Collections":5,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":83518592},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":221300},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":364541700},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":3600},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":345563200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":325854500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":341367000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":339670300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":324568800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":334113400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":349354100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":319141000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":333430700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":326996100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":337190100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":334670000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":342603600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":327441400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":338950500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":328670000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":330387700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":340163000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":336560200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":323893000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":345495500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":338661100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":337114200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":333430700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":326996100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":337190100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":334670000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":342603600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":327441400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":338950500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":328670000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":330387700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":340163000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":336560200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":323893000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":345495500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":338661100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":337114200}],"Metrics":[{"Value":13000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":5000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":83518592,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]}]} +{"Title":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-20260517-114738","HostEnvironmentInfo":{"BenchmarkDotNetCaption":"BenchmarkDotNet","BenchmarkDotNetVersion":"0.15.8","OsVersion":"Windows 10 (10.0.19045.6466/22H2/2022Update)","ProcessorName":"Intel Core i7-10750H CPU 2.60GHz","PhysicalProcessorCount":1,"PhysicalCoreCount":2,"LogicalCoreCount":4,"RuntimeVersion":".NET 10.0.8 (10.0.8, 10.0.826.23019)","Architecture":"X64","HasAttachedDebugger":false,"HasRyuJit":true,"Configuration":"RELEASE","DotNetCliVersion":"10.0.300","ChronometerFrequency":{"Hertz":10000000},"HardwareTimerKind":"Unknown"},"Benchmarks":[{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET 10.0(Runtime=.NET 10.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[214495800,133068800,195768800,184253800,197337600,149660000,184225000,191056900,219224900,202627800,168208900,197972400,229249200,202157000,173445800,199371600,182774900,195583900,230797100,181136200,177949600,220403300,247627400,205404800,160729000,187933200,194692900,237554900,236777900,159460600,195609100,234184900,213962000,201556900,128644600,168957600,201049800,183861300,196422700,135663500,155355800,165453200,169582000,177973800,131741100,142821600,160703800,195389600,169934000,130039900,170404400,162599400,175107200,186570200,120895800,152471600,170444600,187951100,192010200,161075900,180988200,177754700,203829500,171952600,124248700,153945000,165460500,176650100,190533800,143528300,165787500,159122500,166699800,185986700,125399700,156373300,161074400,173799400,177298700,123980900,155616500,157388800,169887800,176537300,122288000,152541300,165093400,172459400,180228200,126261000,147516200,171073600,188520800,188598600,127973700,144276300,173344400,173510000],"N":98,"Min":120895800,"LowerFence":106984225,"Q1":159207025,"Median":173654700,"Mean":175274665.30612245,"Q3":194022225,"UpperFence":246245025,"Max":247627400,"InterquartileRange":34815200,"LowerOutliers":[],"UpperOutliers":[247627400],"AllOutliers":[247627400],"StandardError":2851417.7579062856,"Variance":796797156550124.2,"StandardDeviation":28227595.65655786,"Skewness":0.16233558713340657,"Kurtosis":2.8312905777036947,"ConfidenceInterval":{"N":98,"Mean":175274665.30612245,"StandardError":2851417.7579062856,"Level":12,"Margin":9676770.449527001,"Lower":165597894.85659546,"Upper":184951435.75564945},"Percentiles":{"P0":120895800,"P25":159207025,"P50":173654700,"P67":186564365,"P80":196161140,"P85":201277995,"P90":207971960,"P95":229481385,"P100":247627400}},"Memory":{"Gen0Collections":1,"Gen1Collections":0,"Gen2Collections":0,"TotalOperations":1,"BytesAllocatedPerOperation":122121312},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":326200},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":547227400},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":1000},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":479467300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":393670000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":424360800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":364310300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":209035300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":205691500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":139555300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":180440200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":213564200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":201575200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":214495800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":133068800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":195768800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":184253800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":197337600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":252566500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":149660000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":184225000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":191056900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":219224900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":202627800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":168208900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":197972400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":229249200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":202157000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":287881200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":173445800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":199371600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":182774900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":195583900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":230797100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":181136200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":177949600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":220403300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":247627400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":205404800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":160729000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":187933200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":194692900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":237554900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":236777900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":159460600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":195609100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":234184900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":213962000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":201556900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":128644600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":168957600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":201049800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":183861300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":196422700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":135663500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":155355800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":165453200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":169582000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":177973800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":131741100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":142821600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":160703800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":195389600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":169934000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":130039900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":170404400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":162599400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":175107200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":186570200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":120895800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":152471600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":170444600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":187951100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":192010200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":161075900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":180988200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":177754700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":203829500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":171952600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":124248700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":153945000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":165460500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":176650100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":190533800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":143528300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":165787500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":159122500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":166699800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":185986700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":125399700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":156373300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":161074400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":173799400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":177298700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":123980900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":155616500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":157388800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":169887800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":176537300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":122288000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":152541300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":165093400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":172459400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":180228200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":126261000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":147516200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":171073600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":188520800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":188598600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":127973700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":144276300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":173344400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":173510000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":214495800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":133068800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":195768800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":184253800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":197337600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":149660000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":184225000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":191056900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":219224900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":202627800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":168208900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":197972400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":229249200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":202157000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":173445800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":199371600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":182774900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":195583900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":230797100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":181136200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":177949600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":220403300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":247627400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":205404800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":160729000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":187933200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":194692900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":237554900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":236777900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":159460600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":195609100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":234184900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":213962000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":201556900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":128644600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":168957600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":201049800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":183861300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":196422700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":135663500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":155355800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":165453200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":169582000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":177973800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":131741100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":142821600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":160703800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":195389600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":169934000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":130039900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":170404400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":162599400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":175107200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":186570200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":120895800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":152471600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":170444600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":187951100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":192010200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":161075900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":180988200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":177754700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":203829500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":171952600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":124248700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":153945000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":165460500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":176650100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":190533800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":143528300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":165787500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":159122500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":166699800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":185986700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":125399700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":156373300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":161074400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":173799400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":177298700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":123980900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":155616500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":157388800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":169887800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":176537300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":122288000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":152541300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":165093400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":172459400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":180228200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":126261000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":147516200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":171073600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":188520800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":188598600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":127973700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":144276300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":173344400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":173510000}],"Metrics":[{"Value":1000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":0,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":122121312,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET 10.0(Runtime=.NET 10.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[120105800,108749800,117654050,119153000,115231450,132713850,132836800,130875500,120462950,116434350,113350500,125644700,116829950,120336250,119182250,123123400,115853050,119441150,115572300,123083400,116068700,114515550,122762750,122852200,124646850,118791750,113691300,118100100,113857900,130563550,127195150,122874850,124511200,127569100,113414250,117991850,118538000,127088200,117152100,119654500,124078800,114997750,124126000,127474300,113200550,129206150,118831350,118756550,136735350,112539550,120058150,122840900,113784050,123538200,112688850,119475950,119632950,124649600,117833250,119411250,116565500,111890600,117144350,128034750,127194500,112449800,116877700,120512600,136284750,122020600,115783750,120537950,119109650],"N":73,"Min":108749800,"LowerFence":104967675,"Q1":116434350,"Median":119441150,"Mean":120503292.46575342,"Q3":124078800,"UpperFence":135545475,"Max":136735350,"InterquartileRange":7644450,"LowerOutliers":[],"UpperOutliers":[136284750,136735350],"AllOutliers":[136284750,136735350],"StandardError":695419.6520770253,"Variance":35303419952129.95,"StandardDeviation":5941668.111913518,"Skewness":0.660441514031793,"Kurtosis":3.0497907307695744,"ConfidenceInterval":{"N":73,"Mean":120503292.46575342,"StandardError":695419.6520770253,"Level":12,"Margin":2385879.4118297426,"Lower":118117413.05392368,"Upper":122889171.87758316},"Percentiles":{"P0":108749800,"P25":116434350,"P50":119441150,"P67":122843612,"P80":124648500,"P85":127194630,"P90":127941620,"P95":131610839.99999999,"P100":136735350}},"Memory":{"Gen0Collections":1,"Gen1Collections":0,"Gen2Collections":0,"TotalOperations":2,"BytesAllocatedPerOperation":70552620},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":216100},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":236833300},{"IterationMode":"Workload","IterationStage":"Pilot","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":522197700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":538735600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":461219800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":328197000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":279201100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":223507000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":247601700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":238132300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":245473500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":257785300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":279344600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":287282900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":271103400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":284529400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":240211600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":217499600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":235308100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":238306000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":230462900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":338302300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":285041800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":265427700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":265673600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":261751000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":240925900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":232868700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":226701000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":251289400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":233659900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":240672500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":238364500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":246246800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":231706100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":238882300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":231144600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":246166800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":232137400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":229031100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":245525500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":245704400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":249293700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":237583500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":227382600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":236200200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":227715800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":261127100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":254390300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":245749700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":249022400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":275753400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":255138200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":226828500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":235983700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":237076000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":254176400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":234304200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":239309000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":248157600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":229995500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":248252000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":254948600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":226401100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":258412300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":237662700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":237513100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":273470700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":225079100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":240116300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":245681800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":227568100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":247076400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":225377700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":238951900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":239265900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":249299200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":235666500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":238822500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":233131000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":223781200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":234288700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":256069500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":254389000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":224899600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":233755400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":241025200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":272569500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":244041200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":231567500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":241075900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":238219300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":240211600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":217499600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":235308100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":238306000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":230462900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":265427700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":265673600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":261751000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":240925900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":232868700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":226701000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":251289400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":233659900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":240672500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":238364500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":246246800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":231706100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":238882300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":231144600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":246166800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":232137400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":229031100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":245525500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":245704400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":249293700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":237583500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":227382600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":236200200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":227715800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":261127100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":254390300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":245749700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":249022400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":255138200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":226828500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":235983700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":237076000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":254176400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":234304200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":239309000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":248157600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":229995500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":248252000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":254948600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":226401100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":258412300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":237662700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":237513100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":273470700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":225079100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":240116300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":245681800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":227568100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":247076400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":225377700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":238951900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":239265900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":249299200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":235666500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":238822500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":233131000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":223781200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":234288700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":256069500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":254389000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":224899600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":233755400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":241025200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":272569500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":244041200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":231567500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":241075900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":238219300}],"Metrics":[{"Value":500,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":0,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":70552620,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET 8.0(Runtime=.NET 8.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[228204800,220919200,226921100,159749700,217425300,226276700,230082100,162542800,239781000,210565900,225371600,174615100,235249200,215459600,234428400,179528300,256456800,221642600,241749100,153398300,211320700,194539600,197000900,147525000,255306700,208363600,200736000,148047700,250994700,204336700,225164100,164779600,315403000,303462600,262977300,182791200,273637700,291792600,251985400,186025700,258078600,277804200,236363600,180687400,226649100,238207300,228485100,171275200,245025700,321076800,256614400,211637800,270388200,236209900,286670700,185928200,258894200,241771800,276796500,196344900,260336700,225170800,275537200,161904500,237567400,238172800,256939200,174561600,217673900,217513800,239587600,171845600,261115000,214482800,269243100,166214000,221571900,225243000,204473400,184372300,223012200,204433900,271107900,169743900,221771500,229405900,205960900,170280900,210469500,233342300,250846300,175231100,261169100,242449700,223023200,181509900,242403200,222261500,250142000,196739700],"N":100,"Min":147525000,"LowerFence":116861887.5,"Q1":196935600,"Median":225206900,"Mean":223502992,"Q3":250318075,"UpperFence":330391787.5,"Max":321076800,"InterquartileRange":53382475,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":3766632.116765836,"Variance":1418751750305188,"StandardDeviation":37666321.16765836,"Skewness":0.07540849589956974,"Kurtosis":2.643568088882696,"ConfidenceInterval":{"N":100,"Mean":223502992,"StandardError":3766632.116765836,"Level":12,"Margin":12774641.413531039,"Lower":210728350.58646896,"Upper":236277633.41353104},"Percentiles":{"P0":147525000,"P25":196935600,"P50":225206900,"P67":238662799,"P80":256488320,"P85":260453444.99999997,"P90":270460170,"P95":278247524.99999994,"P100":321076800}},"Memory":{"Gen0Collections":2,"Gen1Collections":1,"Gen2Collections":0,"TotalOperations":1,"BytesAllocatedPerOperation":136659896},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":172400},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":463808600},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":600},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":436367000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":427690900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":374200700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":193878800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":235396800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":224508500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":227023500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":167282200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":228204800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":220919200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":226921100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":159749700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":217425300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":226276700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":230082100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":162542800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":239781000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":210565900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":225371600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":174615100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":235249200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":215459600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":234428400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":179528300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":256456800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":221642600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":241749100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":153398300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":211320700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":194539600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":197000900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":147525000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":255306700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":208363600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":200736000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":148047700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":250994700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":204336700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":225164100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":164779600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":315403000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":303462600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":262977300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":182791200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":273637700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":291792600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":251985400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":186025700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":258078600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":277804200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":236363600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":180687400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":226649100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":238207300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":228485100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":171275200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":245025700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":321076800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":256614400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":211637800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":270388200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":236209900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":286670700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":185928200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":258894200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":241771800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":276796500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":196344900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":260336700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":225170800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":275537200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":161904500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":237567400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":238172800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":256939200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":174561600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":217673900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":217513800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":239587600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":171845600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":261115000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":214482800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":269243100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":166214000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":221571900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":225243000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":204473400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":184372300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":223012200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":204433900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":271107900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":169743900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":221771500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":229405900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":205960900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":170280900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":210469500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":233342300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":250846300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":175231100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":261169100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":242449700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":223023200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":181509900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":242403200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":222261500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":250142000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":196739700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":228204800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":220919200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":226921100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":159749700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":217425300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":226276700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":230082100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":162542800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":239781000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":210565900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":225371600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":174615100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":235249200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":215459600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":234428400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":179528300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":256456800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":221642600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":241749100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":153398300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":211320700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":194539600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":197000900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":147525000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":255306700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":208363600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":200736000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":148047700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":250994700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":204336700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":225164100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":164779600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":315403000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":303462600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":262977300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":182791200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":273637700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":291792600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":251985400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":186025700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":258078600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":277804200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":236363600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":180687400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":226649100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":238207300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":228485100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":171275200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":245025700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":321076800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":256614400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":211637800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":270388200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":236209900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":286670700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":185928200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":258894200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":241771800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":276796500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":196344900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":260336700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":225170800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":275537200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":161904500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":237567400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":238172800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":256939200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":174561600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":217673900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":217513800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":239587600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":171845600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":261115000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":214482800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":269243100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":166214000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":221571900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":225243000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":204473400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":184372300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":223012200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":204433900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":271107900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":169743900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":221771500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":229405900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":205960900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":170280900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":210469500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":233342300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":250846300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":175231100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":261169100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":242449700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":223023200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":181509900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":242403200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":222261500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":250142000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":196739700}],"Metrics":[{"Value":2000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":1000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":136659896,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET 8.0(Runtime=.NET 8.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[143852600,132476850,134698850,145695150,138317700,158734950,178939100,156450400,145991050,149473250,123884750,155172350,153752150,138437400,152267850,154143600,146029850,137860550,150172400,150936500,149239850,152532100,158260000,152708500,158102850,162753350,168554100,151624650,165427400,177722200,176132500,156383750,160829100,156866600,162501250,166057550,177002400,160903150,185885000,164665950,166428900,140563300,153022000,191179950,166258400,155044700,152149000,174157250,170706550,156702100,134938050,156148250,169423800,146754300,182217450,152216200,161818800,146113750,138608000,139936150,149118650,138684200,150756200,169603050,191308600,158796850,156289300,153261500,144038450,145639150,132461750,136263050,143322250,128970900,170792350,169042950,169272300,148761900,158460150,132627050,142207800,177822950,159040450,154879350,173513650,160873250,181593350,137287900,153966800,150525200,164589800,145794100,166528800,161374150,129549550,124230700],"N":96,"Min":123884750,"LowerFence":117138937.5,"Q1":145769362.5,"Median":154511475,"Mean":155177863.02083334,"Q3":164856312.5,"UpperFence":193486737.5,"Max":191308600,"InterquartileRange":19086950,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":1496271.8464977697,"Variance":214927626107697.1,"StandardDeviation":14660410.16164613,"Skewness":0.19346970030801516,"Kurtosis":2.7036807653848434,"ConfidenceInterval":{"N":96,"Mean":155177863.02083334,"StandardError":1496271.8464977697,"Level":12,"Margin":5081194.904740028,"Lower":150096668.1160933,"Upper":160259057.92557338},"Percentiles":{"P0":123884750,"P25":145769362.5,"P50":154511475,"P67":160857797.5,"P80":166528800,"P85":169558237.5,"P90":175144875,"P95":179602662.5,"P100":191308600}},"Memory":{"Gen0Collections":1,"Gen1Collections":0,"Gen2Collections":0,"TotalOperations":2,"BytesAllocatedPerOperation":85087484},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":139200},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":248195500},{"IterationMode":"Workload","IterationStage":"Pilot","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":607363200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":674872800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":422497200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":283870800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":267807700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":315752300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":349682100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":344215200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":279366300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":281901900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":266179900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":287705200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":264953700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":269397700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":291390300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":276635400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":317469900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":418654200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":357878200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":312900800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":291982100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":298946500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":247769500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":310344700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":307504300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":276874800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":304535700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":308287200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":292059700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":275721100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":300344800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":301873000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":298479700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":305064200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":316520000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":305417000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":316205700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":325506700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":337108200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":303249300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":330854800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":355444400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":352265000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":312767500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":321658200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":313733200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":325002500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":332115100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":354004800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":321806300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":371770000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":329331900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":332857800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":281126600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":306044000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":382359900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":413950100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":409806100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":332516800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":310089400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":304298000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":348314500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":341413100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":313404200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":269876100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":312296500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":338847600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":293508600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":364434900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":304432400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":323637600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":292227500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":277216000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":279872300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":298237300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":277368400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":301512400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":339206100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":382617200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":317593700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":312578600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":306523000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":288076900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":291278300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":264923500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":272526100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":286644500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":257941800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":341584700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":338085900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":338544600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":297523800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":316920300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":265254100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":284415600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":355645900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":2,"Nanoseconds":318080900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":2,"Nanoseconds":309758700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":2,"Nanoseconds":347027300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":2,"Nanoseconds":443921300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":2,"Nanoseconds":321746500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":2,"Nanoseconds":363186700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":2,"Nanoseconds":274575800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":2,"Nanoseconds":307933600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":2,"Nanoseconds":301050400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":2,"Nanoseconds":329179600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":2,"Nanoseconds":291588200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":2,"Nanoseconds":333057600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":2,"Nanoseconds":322748300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":2,"Nanoseconds":259099100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":2,"Nanoseconds":248461400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":287705200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":264953700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":269397700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":291390300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":276635400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":317469900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":357878200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":312900800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":291982100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":298946500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":247769500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":310344700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":307504300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":276874800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":304535700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":308287200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":292059700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":275721100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":300344800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":301873000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":298479700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":305064200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":316520000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":305417000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":316205700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":325506700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":337108200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":303249300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":330854800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":355444400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":352265000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":312767500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":321658200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":313733200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":325002500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":332115100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":354004800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":321806300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":371770000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":329331900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":332857800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":281126600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":306044000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":382359900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":332516800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":310089400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":304298000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":348314500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":341413100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":313404200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":269876100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":312296500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":338847600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":293508600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":364434900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":304432400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":323637600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":292227500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":277216000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":279872300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":298237300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":277368400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":301512400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":339206100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":382617200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":317593700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":312578600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":306523000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":288076900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":291278300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":264923500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":272526100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":286644500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":257941800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":341584700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":338085900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":338544600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":297523800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":316920300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":265254100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":284415600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":355645900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":318080900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":309758700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":347027300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":2,"Nanoseconds":321746500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":2,"Nanoseconds":363186700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":2,"Nanoseconds":274575800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":2,"Nanoseconds":307933600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":2,"Nanoseconds":301050400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":2,"Nanoseconds":329179600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":2,"Nanoseconds":291588200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":2,"Nanoseconds":333057600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":2,"Nanoseconds":322748300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":2,"Nanoseconds":259099100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":2,"Nanoseconds":248461400}],"Metrics":[{"Value":500,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":0,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":85087484,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET 9.0(Runtime=.NET 9.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[307240600,239505900,269340300,154167700,211568200,217860600,208836100,145782600,197622100,237134100,233824900,170337300,274831100,251477500,239127100,190215600,250915100,218367300,208928600,194416600,239965400,210605900,201681800,144473000,223813900,204101800,221101700,162324900,219297300,245538600,241869100,142126000,206924300,216522000,241257200,186068400,263163800,225350700,204935400,141663100,206881200,236032800,211676500,141931600,220349000,225114200,229665600,177092100,209096900,194573400,207938800,173796000,283024900,268539800,231519800,170962900,213108500,209738200,246467700,161160700,252051400,250177700,253469900,183757900,212573600,228679600,214854300,142401100,206133100,201651900,234447300,146968000,216063900,251511500,252829400,168573200,240523600,214782100,286468500,156170400,307110400,265256900,241237800,156651900,240290600,288693000,251476400,148225200,205691500,215126300,238915300,152288400,217852300,208428400,212490400,159080900,233358200,206766200,198691900,187070100],"N":100,"Min":141663100,"LowerFence":126265450,"Q1":194534200,"Median":214818200,"Mean":214317447,"Q3":240046700,"UpperFence":308315450,"Max":307240600,"InterquartileRange":45512500,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":3846179.660851584,"Variance":1479309798354840.2,"StandardDeviation":38461796.60851584,"Skewness":-0.06312064483589824,"Kurtosis":2.6701876515738077,"ConfidenceInterval":{"N":100,"Mean":214317447,"StandardError":3846179.660851584,"Level":12,"Margin":13044429.202601084,"Lower":201273017.79739892,"Upper":227361876.20260108},"Percentiles":{"P0":141663100,"P25":194534200,"P50":214818200,"P67":233512211,"P80":242603000,"P85":251476565,"P90":254439290.00000006,"P95":275240790,"P100":307240600}},"Memory":{"Gen0Collections":2,"Gen1Collections":1,"Gen2Collections":0,"TotalOperations":1,"BytesAllocatedPerOperation":136097280},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":179700},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":470106600},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":1500},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":568569100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":519890800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":364663900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":188480300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":237300700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":210108700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":298240000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":178579700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":307240600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":239505900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":269340300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":154167700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":211568200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":217860600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":208836100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":145782600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":197622100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":237134100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":233824900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":170337300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":274831100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":251477500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":239127100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":190215600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":250915100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":218367300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":208928600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":194416600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":239965400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":210605900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":201681800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":144473000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":223813900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":204101800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":221101700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":162324900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":219297300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":245538600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":241869100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":142126000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":206924300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":216522000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":241257200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":186068400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":263163800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":225350700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":204935400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":141663100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":206881200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":236032800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":211676500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":141931600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":220349000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":225114200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":229665600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":177092100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":209096900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":194573400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":207938800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":173796000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":283024900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":268539800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":231519800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":170962900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":213108500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":209738200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":246467700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":161160700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":252051400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":250177700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":253469900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":183757900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":212573600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":228679600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":214854300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":142401100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":206133100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":201651900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":234447300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":146968000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":216063900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":251511500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":252829400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":168573200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":240523600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":214782100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":286468500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":156170400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":307110400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":265256900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":241237800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":156651900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":240290600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":288693000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":251476400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":148225200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":205691500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":215126300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":238915300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":152288400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":217852300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":208428400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":212490400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":159080900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":233358200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":206766200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":198691900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":187070100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":307240600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":239505900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":269340300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":154167700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":211568200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":217860600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":208836100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":145782600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":197622100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":237134100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":233824900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":170337300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":274831100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":251477500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":239127100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":190215600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":250915100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":218367300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":208928600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":194416600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":239965400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":210605900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":201681800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":144473000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":223813900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":204101800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":221101700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":162324900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":219297300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":245538600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":241869100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":142126000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":206924300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":216522000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":241257200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":186068400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":263163800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":225350700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":204935400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":141663100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":206881200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":236032800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":211676500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":141931600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":220349000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":225114200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":229665600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":177092100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":209096900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":194573400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":207938800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":173796000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":283024900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":268539800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":231519800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":170962900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":213108500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":209738200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":246467700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":161160700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":252051400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":250177700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":253469900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":183757900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":212573600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":228679600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":214854300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":142401100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":206133100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":201651900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":234447300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":146968000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":216063900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":251511500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":252829400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":168573200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":240523600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":214782100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":286468500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":156170400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":307110400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":265256900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":241237800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":156651900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":240290600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":288693000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":251476400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":148225200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":205691500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":215126300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":238915300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":152288400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":217852300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":208428400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":212490400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":159080900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":233358200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":206766200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":198691900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":187070100}],"Metrics":[{"Value":2000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":1000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":136097280,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET 9.0(Runtime=.NET 9.0)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":"AVX2+BMI1+BMI2+F16C+FMA+LZCNT+MOVBE,AVX,SSE3+SSSE3+SSE4.1+SSE4.2+POPCNT,X86Base+SSE+SSE2,AES+PCLMUL VectorSize=256","Statistics":{"OriginalValues":[158046600,161088000,150554900,160692900,119139300,126964000,144599200,150721600,130980750,140268150,131474550,127578100,129344300,155783200,141500200,158754450,148171600,169223400,141849250,123521000,148226400,126805200,131382300,141874450,133452800,128858200,181836600,121028450,143024250,135036300,120999200,130530250,136045600,157649000,161902050,141207450,147861300,129045600,170111800,151773900,151148050,178942600,147877850,157565900,134542800,133832100,123970550,155222250,141400350,155477950,134675550,127025650,147824200,134178250,148373700,139827500,133053850,135757850,136128650,129148100,132714900,130944500,122896400,126108050,147523650,176710700,135515550,141792300,144350200,135868400,151363050,123552250,143835850,151425550,165969950,159332200,147499700,134508050,138773100,169472150,130454300,151244900,180149200,166473700,168825300,159102700,132007200,136903700,137377800,151269500,156697500,147741950,183199500,153517850,160755550,156718850,156975550,147745400],"N":98,"Min":119139300,"LowerFence":99323637.5,"Q1":133153587.5,"Median":143430050,"Mean":145022420.40816328,"Q3":155706887.5,"UpperFence":189536837.5,"Max":183199500,"InterquartileRange":22553300,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":1531646.9713658534,"Variance":229902359599630.75,"StandardDeviation":15162531.437712857,"Skewness":0.5018207905041421,"Kurtosis":2.594088671436112,"ConfidenceInterval":{"N":98,"Mean":145022420.40816328,"StandardError":1531646.9713658534,"Level":12,"Margin":5197904.134013511,"Lower":139824516.27414978,"Upper":150220324.54217678},"Percentiles":{"P0":119139300,"P25":133153587.5,"P50":143430050,"P67":151243931.5,"P80":157615760,"P85":159944515,"P90":166121075,"P95":171101634.99999994,"P100":183199500}},"Memory":{"Gen0Collections":1,"Gen1Collections":0,"Gen2Collections":0,"TotalOperations":2,"BytesAllocatedPerOperation":84528656},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":160900},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":271859000},{"IterationMode":"Workload","IterationStage":"Pilot","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":612770300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":532120400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":457426600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":263125700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":287819600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":272220700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":294517800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":319895200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":352155600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":280338300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":316093200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":322176000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":301109800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":321385800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":238278600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":253928000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":289198400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":301443200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":261961500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":280536300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":262949100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":255156200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":258688600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":311566400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":283000400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":317508900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":296343200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":338446800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":283698500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":247042000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":296452800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":253610400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":262764600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":283748900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":266905600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":257716400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":363673200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":242056900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":286048500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":270072600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":241998400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":261060500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":272091200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":315298000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":323804100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":282414900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":295722600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":258091200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":340223600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":303547800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":302296100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":357885200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":295755700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":315131800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":269085600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":267664200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":247941100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":310444500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":410940500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":282800700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":310955900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":269351100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":254051300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":295648400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":268356500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":296747400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":279655000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":266107700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":271515700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":272257300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":258296200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":265429800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":261889000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":245792800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":252216100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":295047300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":353421400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":271031100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":283584600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":288700400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":271736800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":302726100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":247104500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":287671700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":302851100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":331939900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":318664400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":294999400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":269016100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":277546200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":338944300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":260908600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":302489800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":360298400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":332947400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":2,"Nanoseconds":337650600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":2,"Nanoseconds":318205400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":2,"Nanoseconds":264014400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":2,"Nanoseconds":273807400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":2,"Nanoseconds":274755600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":2,"Nanoseconds":302539000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":2,"Nanoseconds":313395000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":2,"Nanoseconds":295483900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":2,"Nanoseconds":402822800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":2,"Nanoseconds":366399000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":2,"Nanoseconds":307035700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":2,"Nanoseconds":321511100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":2,"Nanoseconds":313437700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":2,"Nanoseconds":313951100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":2,"Nanoseconds":295490800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":2,"Nanoseconds":316093200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":2,"Nanoseconds":322176000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":2,"Nanoseconds":301109800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":2,"Nanoseconds":321385800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":2,"Nanoseconds":238278600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":2,"Nanoseconds":253928000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":2,"Nanoseconds":289198400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":2,"Nanoseconds":301443200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":2,"Nanoseconds":261961500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":2,"Nanoseconds":280536300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":2,"Nanoseconds":262949100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":2,"Nanoseconds":255156200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":2,"Nanoseconds":258688600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":2,"Nanoseconds":311566400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":2,"Nanoseconds":283000400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":2,"Nanoseconds":317508900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":2,"Nanoseconds":296343200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":2,"Nanoseconds":338446800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":2,"Nanoseconds":283698500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":2,"Nanoseconds":247042000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":2,"Nanoseconds":296452800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":2,"Nanoseconds":253610400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":2,"Nanoseconds":262764600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":2,"Nanoseconds":283748900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":2,"Nanoseconds":266905600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":2,"Nanoseconds":257716400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":2,"Nanoseconds":363673200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":2,"Nanoseconds":242056900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":2,"Nanoseconds":286048500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":2,"Nanoseconds":270072600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":2,"Nanoseconds":241998400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":2,"Nanoseconds":261060500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":2,"Nanoseconds":272091200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":2,"Nanoseconds":315298000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":2,"Nanoseconds":323804100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":2,"Nanoseconds":282414900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":2,"Nanoseconds":295722600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":2,"Nanoseconds":258091200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":2,"Nanoseconds":340223600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":2,"Nanoseconds":303547800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":2,"Nanoseconds":302296100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":2,"Nanoseconds":357885200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":2,"Nanoseconds":295755700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":2,"Nanoseconds":315131800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":2,"Nanoseconds":269085600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":2,"Nanoseconds":267664200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":2,"Nanoseconds":247941100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":2,"Nanoseconds":310444500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":2,"Nanoseconds":282800700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":2,"Nanoseconds":310955900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":2,"Nanoseconds":269351100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":2,"Nanoseconds":254051300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":2,"Nanoseconds":295648400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":2,"Nanoseconds":268356500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":2,"Nanoseconds":296747400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":2,"Nanoseconds":279655000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":2,"Nanoseconds":266107700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":2,"Nanoseconds":271515700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":2,"Nanoseconds":272257300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":2,"Nanoseconds":258296200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":2,"Nanoseconds":265429800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":2,"Nanoseconds":261889000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":2,"Nanoseconds":245792800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":2,"Nanoseconds":252216100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":2,"Nanoseconds":295047300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":2,"Nanoseconds":353421400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":2,"Nanoseconds":271031100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":2,"Nanoseconds":283584600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":2,"Nanoseconds":288700400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":2,"Nanoseconds":271736800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":2,"Nanoseconds":302726100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":2,"Nanoseconds":247104500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":2,"Nanoseconds":287671700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":2,"Nanoseconds":302851100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":2,"Nanoseconds":331939900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":2,"Nanoseconds":318664400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":2,"Nanoseconds":294999400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":2,"Nanoseconds":269016100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":2,"Nanoseconds":277546200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":2,"Nanoseconds":338944300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":2,"Nanoseconds":260908600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":2,"Nanoseconds":302489800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":2,"Nanoseconds":360298400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":2,"Nanoseconds":332947400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":2,"Nanoseconds":337650600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":2,"Nanoseconds":318205400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":2,"Nanoseconds":264014400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":2,"Nanoseconds":273807400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":2,"Nanoseconds":274755600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":2,"Nanoseconds":302539000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":2,"Nanoseconds":313395000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":2,"Nanoseconds":295483900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":2,"Nanoseconds":366399000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":2,"Nanoseconds":307035700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":2,"Nanoseconds":321511100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":2,"Nanoseconds":313437700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":97,"Operations":2,"Nanoseconds":313951100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":98,"Operations":2,"Nanoseconds":295490800}],"Metrics":[{"Value":500,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":0,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":84528656,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET Framework 4.6.2(Runtime=.NET Framework 4.6.2)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[588587600,558255200,589389000,602715600,544353800,554497700,579564300,617292500,605749000,595539700,617844300,560599100,566026600,518302600,555492100,569119600,578483100,589614900,536277700,555068800,574027700,563290900,542048700,563692600,542559600,548281600,556074800,559492600,533418100,527109500,551987800,556241700,508290400,588479400,542951400,541433500,603128900,525783000,549565700,533548300,517786200,508805700,555794900,554351300,551718800,531656700,549209600,551390700,568371000,561913400,546277900,569687700,526261000,531342900,578026300,586663100,548010900,550737300,561019200,514107200,530613300,550781500,529910000,549306300],"N":64,"Min":508290400,"LowerFence":500844812.5,"Q1":541894900,"Median":554424500,"Mean":556530035.9375,"Q3":569261625,"UpperFence":610311712.5,"Max":617844300,"InterquartileRange":27366725,"LowerOutliers":[],"UpperOutliers":[617292500,617844300],"AllOutliers":[617292500,617844300],"StandardError":3191292.7212456446,"Variance":651798350891227.6,"StandardDeviation":25530341.769965157,"Skewness":0.4056529499992821,"Kurtosis":2.7516849952740374,"ConfidenceInterval":{"N":64,"Mean":556530035.9375,"StandardError":3191292.7212456446,"Level":12,"Margin":11015605.103493456,"Lower":545514430.8340065,"Upper":567545641.0409935},"Percentiles":{"P0":508290400,"P25":541894900,"P50":554424500,"P67":562202675,"P80":578209020,"P85":587662065,"P90":589547130,"P95":603066905,"P100":617844300}},"Memory":{"Gen0Collections":20,"Gen1Collections":8,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":133009368},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":268600},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":607197700},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":5500},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":627004600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":546923700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":533075700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":578526900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":602829000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":616908500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":602718700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":600544400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":534900400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":549036000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":665178600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":776671700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":739656700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":671591800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":639545800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":588587600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":558255200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":589389000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":602715600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":544353800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":554497700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":579564300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":617292500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":605749000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":595539700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":617844300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":560599100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":566026600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":518302600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":555492100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":569119600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":578483100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":589614900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":536277700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":555068800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":574027700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":563290900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":542048700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":563692600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":542559600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":548281600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":556074800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":559492600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":533418100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":527109500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":551987800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":556241700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":508290400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":588479400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":542951400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":541433500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":603128900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":525783000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":549565700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":533548300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":517786200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":508805700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":555794900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":554351300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":551718800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":531656700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":549209600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":551390700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":568371000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":561913400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":546277900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":569687700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":526261000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":531342900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":578026300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":586663100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":548010900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":550737300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":561019200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":514107200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":530613300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":550781500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":529910000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":549306300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":588587600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":558255200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":589389000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":602715600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":544353800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":554497700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":579564300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":617292500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":605749000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":595539700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":617844300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":560599100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":566026600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":518302600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":555492100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":569119600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":578483100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":589614900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":536277700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":555068800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":574027700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":563290900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":542048700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":563692600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":542559600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":548281600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":556074800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":559492600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":533418100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":527109500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":551987800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":556241700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":508290400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":588479400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":542951400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":541433500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":603128900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":525783000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":549565700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":533548300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":517786200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":508805700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":555794900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":554351300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":551718800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":531656700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":549209600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":551390700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":568371000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":561913400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":546277900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":569687700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":526261000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":531342900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":578026300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":586663100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":548010900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":550737300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":561019200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":514107200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":530613300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":550781500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":529910000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":549306300}],"Metrics":[{"Value":20000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":8000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":133009368,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET Framework 4.6.2(Runtime=.NET Framework 4.6.2)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[358872100,354217600,342847800,355045300,342795200,364245900,350991700,346600200,331408300,330179800,328860300,333379100,368759400,328267600,386078400,339206900,339964000,368267800,352915500,335756200,338234900,361564800,339089900,365062700,362628500,373306600,336420300,394007500,390582500,357884300,388295000,336402400,334171900,378630000,369665500,400731400,349994500,405647700,326094300,340803800,387889800,344976200,377583400,374194300,380214300,378002600,357752700,398270100,375971300,332780000,320940800,306153500,418150900,388933200,370353500,334469300,368549200,378217000,341727300,325790400,371899000,428626700,366789400,358894600,324116600,329200100,346427800,412209900,361074600,416283600,429121800,379650100,334376500,389191200,341700300,386223100,365434500,368900900,326764500,382161400,365849900,344730100,334545900,355276500,358468300,363742700,349674600,350253200,368719100,345765400,349763200,364716300,337941500,368676600,353872000],"N":95,"Min":306153500,"LowerFence":286339425,"Q1":339585450,"Median":358468300,"Mean":359998308.42105263,"Q3":375082800,"UpperFence":428328825,"Max":429121800,"InterquartileRange":35497350,"LowerOutliers":[],"UpperOutliers":[428626700,429121800],"AllOutliers":[428626700,429121800],"StandardError":2592457.491517482,"Variance":638479405305885.8,"StandardDeviation":25268150.01748022,"Skewness":0.5822960900513209,"Kurtosis":3.003921799636655,"ConfidenceInterval":{"N":95,"Mean":359998308.42105263,"StandardError":2592457.491517482,"Level":12,"Margin":8806726.141050732,"Lower":351191582.2800019,"Upper":368805034.5621034},"Percentiles":{"P0":306153500,"P25":339585450,"P50":358468300,"P67":368718250,"P80":378834020,"P85":386208630,"P90":390025980,"P95":407616359.99999994,"P100":429121800}},"Memory":{"Gen0Collections":12,"Gen1Collections":4,"Gen2Collections":0,"TotalOperations":1,"BytesAllocatedPerOperation":81322808},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":358400},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":406406000},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":5000},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":357086600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":353895800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":371074900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":324352800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":335685500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":356247400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":372630600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":365125900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":358872100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":354217600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":342847800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":355045300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":342795200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":364245900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":350991700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":346600200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":331408300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":330179800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":328860300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":333379100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":368759400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":328267600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":386078400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":339206900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":339964000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":368267800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":352915500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":335756200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":338234900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":361564800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":339089900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":365062700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":362628500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":373306600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":336420300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":394007500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":390582500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":357884300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":388295000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":336402400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":334171900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":378630000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":369665500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":400731400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":349994500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":405647700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":326094300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":340803800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":387889800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":344976200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":377583400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":374194300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":380214300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":378002600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":357752700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":398270100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":443100400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":375971300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":332780000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":320940800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":306153500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":436281700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":418150900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":388933200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":370353500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":334469300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":452295400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":368549200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":378217000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":341727300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":325790400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":489766700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":371899000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":428626700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":366789400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":358894600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":324116600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":329200100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":346427800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":412209900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":361074600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":416283600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":429121800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":379650100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":334376500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":477530200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":389191200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":341700300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":386223100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":365434500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":368900900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":326764500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":382161400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":365849900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":344730100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":334545900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":355276500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":358468300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":363742700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":349674600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":350253200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":368719100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":345765400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":349763200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":364716300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":337941500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":368676600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":353872000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":358872100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":354217600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":342847800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":355045300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":342795200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":364245900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":350991700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":346600200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":331408300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":330179800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":328860300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":333379100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":368759400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":328267600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":386078400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":339206900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":339964000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":368267800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":352915500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":335756200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":338234900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":361564800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":339089900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":365062700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":362628500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":373306600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":336420300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":394007500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":390582500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":357884300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":388295000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":336402400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":334171900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":378630000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":369665500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":400731400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":349994500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":405647700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":326094300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":340803800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":387889800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":344976200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":377583400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":374194300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":380214300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":378002600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":357752700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":398270100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":375971300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":332780000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":320940800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":306153500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":418150900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":388933200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":370353500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":334469300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":368549200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":378217000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":341727300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":325790400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":371899000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":428626700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":366789400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":358894600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":324116600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":329200100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":346427800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":412209900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":361074600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":416283600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":429121800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":379650100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":334376500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":389191200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":341700300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":386223100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":365434500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":368900900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":326764500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":382161400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":365849900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":344730100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":334545900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":355276500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":358468300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":363742700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":349674600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":350253200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":368719100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":345765400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":349763200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":364716300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":337941500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":368676600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":353872000}],"Metrics":[{"Value":12000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":4000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":81322808,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET Framework 4.7.2(Runtime=.NET Framework 4.7.2)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[545969700,563297800,605849800,593498300,573797900,556911400,566039400,598706700,552226000,577530200,560888900,530407900,548891300,582827400,588757300,557196700,557082200,563807800,570780300,541970300,552687000,566647700,551352400,576447300,548250500,547816000,586050500,539273000,543727000,569163100,533743900,545436600,570528500,583914400,545893900,574847600],"N":36,"Min":530407900,"LowerFence":507483400,"Q1":548141875,"Median":562093350,"Mean":563117130.5555556,"Q3":575247525,"UpperFence":615906000,"Max":605849800,"InterquartileRange":27105650,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":3111023.244112752,"Variance":348424762514753.94,"StandardDeviation":18666139.46467651,"Skewness":0.3641857310750367,"Kurtosis":2.281703101236029,"ConfidenceInterval":{"N":36,"Mean":563117130.5555556,"StandardError":3111023.244112752,"Level":12,"Margin":11172141.081613634,"Lower":551944989.4739419,"Upper":574289271.6371692},"Percentiles":{"P0":530407900,"P25":548141875,"P50":562093350,"P67":570641810,"P80":577530200,"P85":583642650,"P90":587403900,"P95":594800400,"P100":605849800}},"Memory":{"Gen0Collections":20,"Gen1Collections":8,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":133008992},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":283200},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":590270500},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":4800},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":577287000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":545328700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":538950400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":538817600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":558707000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":565123200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":534500600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":566807000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":555741400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":545969700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":624180900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":563297800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":605849800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":593498300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":573797900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":556911400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":566039400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":598706700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":552226000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":577530200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":560888900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":530407900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":548891300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":582827400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":588757300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":557196700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":557082200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":563807800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":570780300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":541970300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":552687000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":566647700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":551352400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":576447300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":548250500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":547816000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":586050500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":539273000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":543727000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":569163100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":533743900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":545436600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":570528500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":583914400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":545893900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":574847600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":545969700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":563297800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":605849800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":593498300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":573797900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":556911400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":566039400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":598706700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":552226000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":577530200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":560888900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":530407900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":548891300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":582827400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":588757300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":557196700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":557082200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":563807800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":570780300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":541970300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":552687000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":566647700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":551352400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":576447300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":548250500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":547816000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":586050500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":539273000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":543727000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":569163100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":533743900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":545436600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":570528500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":583914400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":545893900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":574847600}],"Metrics":[{"Value":20000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":8000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":133008992,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET Framework 4.7.2(Runtime=.NET Framework 4.7.2)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[378806000,348375500,359136600,330190200,393061800,346911400,358103200,349874000,334797200,354280000,360415500,346905900,350547100,363996700,368315500,336406100,325180900,364056200,341350700,349772600,356636200,323600500,357690600,332293800,327652900,375742400,346131700,358965700,344371800,388912100,336829600,368319600,342047000,374457300,357224100,363311700,364443000,379473100,374530800,370856800,358823200,360048800,342979800,357281900,344505000,393113800,333021900,380828300,341694600,358040500,343014300,343972600,351926300,341155100,340200900,334180000,330346400,339603500,366918300,334545100,352103800,348373900,373304300,382488500,334951100,345449700,361821900,347815000],"N":68,"Min":323600500,"LowerFence":308004200,"Q1":341608625,"Median":351236700,"Mean":353624739.7058824,"Q3":364011575,"UpperFence":397616000,"Max":393113800,"InterquartileRange":22402950,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":2032449.1839920213,"Variance":280897778614668.66,"StandardDeviation":16760005.328599053,"Skewness":0.4153073507686849,"Kurtosis":2.487246425808407,"ConfidenceInterval":{"N":68,"Mean":353624739.7058824,"StandardError":2032449.1839920213,"Level":12,"Margin":6995179.826399204,"Lower":346629559.87948316,"Upper":360619919.5322816},"Percentiles":{"P0":323600500,"P25":341608625,"P50":351236700,"P67":359117801,"P80":367756620,"P85":373181925,"P90":376661480,"P95":381907430,"P100":393113800}},"Memory":{"Gen0Collections":12,"Gen1Collections":4,"Gen2Collections":0,"TotalOperations":1,"BytesAllocatedPerOperation":81323032},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":260400},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":439274600},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":4800},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":356317200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":384552900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":386023000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":378595300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":340927100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":336684300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":351246100},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":339270400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":378806000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":348375500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":359136600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":330190200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":393061800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":346911400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":358103200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":349874000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":334797200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":354280000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":360415500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":346905900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":350547100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":363996700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":368315500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":336406100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":325180900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":364056200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":341350700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":349772600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":356636200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":323600500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":357690600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":332293800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":327652900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":375742400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":346131700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":358965700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":344371800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":388912100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":336829600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":368319600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":342047000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":374457300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":357224100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":363311700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":364443000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":379473100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":374530800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":370856800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":358823200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":360048800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":342979800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":357281900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":344505000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":393113800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":333021900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":380828300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":341694600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":358040500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":343014300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":343972600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":351926300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":341155100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":340200900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":334180000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":330346400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":339603500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":366918300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":334545100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":352103800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":348373900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":373304300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":415960700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":382488500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":334951100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":345449700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":361821900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":347815000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":378806000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":348375500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":359136600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":330190200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":393061800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":346911400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":358103200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":349874000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":334797200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":354280000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":360415500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":346905900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":350547100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":363996700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":368315500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":336406100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":325180900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":364056200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":341350700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":349772600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":356636200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":323600500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":357690600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":332293800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":327652900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":375742400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":346131700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":358965700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":344371800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":388912100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":336829600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":368319600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":342047000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":374457300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":357224100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":363311700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":364443000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":379473100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":374530800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":370856800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":358823200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":360048800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":342979800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":357281900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":344505000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":393113800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":333021900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":380828300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":341694600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":358040500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":343014300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":343972600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":351926300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":341155100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":340200900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":334180000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":330346400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":339603500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":366918300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":334545100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":352103800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":348373900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":373304300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":382488500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":334951100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":345449700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":361821900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":347815000}],"Metrics":[{"Value":12000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":4000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":81323032,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndSerialize: .NET Framework 4.8(Runtime=.NET Framework 4.8)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndSerialize","MethodTitle":"FetchAndSerialize","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndSerialize","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[543726700,528770700,571377600,542878700,554630300,545077200,556761000,552198200,540731300,548107700,532282600,568164800,557073000,549860700,577571700,555454700,573443600,535090700,570752700,512338500,550760700,543053600,552342100,543463800,571126200,662314100,588921400,607543700,593586900,570702000,616523700,635579800,531364600,571900000,621184500,622070700,667155900,671322300,624422900,575729500,608912400,588594100,635828200,593290200,658232800,705411900,630993500,629598000,677202100,672239500,685585700,679925800,546638000,534632900,603069400,551195000,519208300,695098100,706633500,730448200,682258800,645923400,569894200,617610800,621508800,573259800,545643200,564057800,552499300,534936000,551000000,593775500,562874800,550216100,560694100,524060900,566630700,538946100,556761400,556458700,541200300,522241100,509894300,522717500,539312800,569688300,533981600,551533500,555870000,563156900,547131800,564846600,526794300,524184800,516117200,543163300,534294300],"N":97,"Min":509894300,"LowerFence":445290900,"Q1":543463800,"Median":562874800,"Mean":579641622.6804124,"Q3":608912400,"UpperFence":707085300,"Max":730448200,"InterquartileRange":65448600,"LowerOutliers":[],"UpperOutliers":[730448200],"AllOutliers":[730448200],"StandardError":5258928.821807971,"Variance":2682664238225729.5,"StandardDeviation":51794442.15575383,"Skewness":1.0457226224113627,"Kurtosis":3.1309645328925684,"ConfidenceInterval":{"N":97,"Mean":579641622.6804124,"StandardError":5258928.821807971,"Level":12,"Margin":17852878.74220031,"Lower":561788743.9382122,"Upper":597494501.4226127},"Percentiles":{"P0":509894300,"P25":543463800,"P50":562874800,"P67":581098868,"P80":621958320,"P85":635728840,"P90":668822460,"P95":682924180,"P100":730448200}},"Memory":{"Gen0Collections":20,"Gen1Collections":8,"Gen2Collections":1,"TotalOperations":1,"BytesAllocatedPerOperation":133010456},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":260000},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":617967300},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":9900},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":543361000},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":543429700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":545673900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":546555700},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":569228600},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":865729900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":554212200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":561890300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":546405200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":543726700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":528770700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":571377600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":542878700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":554630300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":545077200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":556761000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":552198200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":540731300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":548107700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":532282600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":568164800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":557073000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":549860700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":577571700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":555454700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":573443600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":535090700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":570752700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":512338500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":550760700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":543053600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":552342100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":543463800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":571126200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":662314100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":588921400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":607543700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":593586900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":570702000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":616523700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":635579800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":531364600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":571900000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":621184500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":622070700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":786120300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":762704100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":667155900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":671322300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":624422900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":575729500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":608912400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":588594100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":635828200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":593290200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":658232800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":705411900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":630993500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":629598000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":677202100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":672239500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":685585700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":679925800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":546638000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":534632900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":603069400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":551195000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":519208300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":695098100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":761691900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":706633500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":730448200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":682258800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":645923400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":569894200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":617610800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":621508800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":573259800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":545643200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":564057800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":552499300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":534936000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":551000000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":593775500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":562874800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":550216100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":560694100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":524060900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":566630700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":538946100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":556761400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":556458700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":541200300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":522241100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":509894300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":522717500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":539312800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":569688300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":533981600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":551533500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":555870000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":563156900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":547131800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":564846600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":526794300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":524184800},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":98,"Operations":1,"Nanoseconds":516117200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":99,"Operations":1,"Nanoseconds":543163300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":100,"Operations":1,"Nanoseconds":534294300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":543726700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":528770700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":571377600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":542878700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":554630300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":545077200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":556761000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":552198200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":540731300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":548107700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":532282600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":568164800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":557073000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":549860700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":577571700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":555454700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":573443600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":535090700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":570752700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":512338500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":550760700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":543053600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":552342100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":543463800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":571126200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":662314100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":27,"Operations":1,"Nanoseconds":588921400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":28,"Operations":1,"Nanoseconds":607543700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":29,"Operations":1,"Nanoseconds":593586900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":30,"Operations":1,"Nanoseconds":570702000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":31,"Operations":1,"Nanoseconds":616523700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":32,"Operations":1,"Nanoseconds":635579800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":33,"Operations":1,"Nanoseconds":531364600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":34,"Operations":1,"Nanoseconds":571900000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":35,"Operations":1,"Nanoseconds":621184500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":36,"Operations":1,"Nanoseconds":622070700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":37,"Operations":1,"Nanoseconds":667155900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":38,"Operations":1,"Nanoseconds":671322300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":39,"Operations":1,"Nanoseconds":624422900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":40,"Operations":1,"Nanoseconds":575729500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":41,"Operations":1,"Nanoseconds":608912400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":42,"Operations":1,"Nanoseconds":588594100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":43,"Operations":1,"Nanoseconds":635828200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":44,"Operations":1,"Nanoseconds":593290200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":45,"Operations":1,"Nanoseconds":658232800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":46,"Operations":1,"Nanoseconds":705411900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":47,"Operations":1,"Nanoseconds":630993500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":48,"Operations":1,"Nanoseconds":629598000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":49,"Operations":1,"Nanoseconds":677202100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":50,"Operations":1,"Nanoseconds":672239500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":51,"Operations":1,"Nanoseconds":685585700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":52,"Operations":1,"Nanoseconds":679925800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":53,"Operations":1,"Nanoseconds":546638000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":54,"Operations":1,"Nanoseconds":534632900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":55,"Operations":1,"Nanoseconds":603069400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":56,"Operations":1,"Nanoseconds":551195000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":57,"Operations":1,"Nanoseconds":519208300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":58,"Operations":1,"Nanoseconds":695098100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":59,"Operations":1,"Nanoseconds":706633500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":60,"Operations":1,"Nanoseconds":730448200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":61,"Operations":1,"Nanoseconds":682258800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":62,"Operations":1,"Nanoseconds":645923400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":63,"Operations":1,"Nanoseconds":569894200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":64,"Operations":1,"Nanoseconds":617610800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":65,"Operations":1,"Nanoseconds":621508800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":66,"Operations":1,"Nanoseconds":573259800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":67,"Operations":1,"Nanoseconds":545643200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":68,"Operations":1,"Nanoseconds":564057800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":69,"Operations":1,"Nanoseconds":552499300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":70,"Operations":1,"Nanoseconds":534936000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":71,"Operations":1,"Nanoseconds":551000000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":72,"Operations":1,"Nanoseconds":593775500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":73,"Operations":1,"Nanoseconds":562874800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":74,"Operations":1,"Nanoseconds":550216100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":75,"Operations":1,"Nanoseconds":560694100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":76,"Operations":1,"Nanoseconds":524060900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":77,"Operations":1,"Nanoseconds":566630700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":78,"Operations":1,"Nanoseconds":538946100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":79,"Operations":1,"Nanoseconds":556761400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":80,"Operations":1,"Nanoseconds":556458700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":81,"Operations":1,"Nanoseconds":541200300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":82,"Operations":1,"Nanoseconds":522241100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":83,"Operations":1,"Nanoseconds":509894300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":84,"Operations":1,"Nanoseconds":522717500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":85,"Operations":1,"Nanoseconds":539312800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":86,"Operations":1,"Nanoseconds":569688300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":87,"Operations":1,"Nanoseconds":533981600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":88,"Operations":1,"Nanoseconds":551533500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":89,"Operations":1,"Nanoseconds":555870000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":90,"Operations":1,"Nanoseconds":563156900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":91,"Operations":1,"Nanoseconds":547131800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":92,"Operations":1,"Nanoseconds":564846600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":93,"Operations":1,"Nanoseconds":526794300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":94,"Operations":1,"Nanoseconds":524184800},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":95,"Operations":1,"Nanoseconds":516117200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":96,"Operations":1,"Nanoseconds":543163300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":97,"Operations":1,"Nanoseconds":534294300}],"Metrics":[{"Value":20000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":8000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":1000,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":133010456,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]},{"DisplayInfo":"PerformanceClonerBenchmark.FetchAndCloneInternal: .NET Framework 4.8(Runtime=.NET Framework 4.8)","Namespace":"Csla.Benchmarks.PerformanceCloner","Type":"PerformanceClonerBenchmark","Method":"FetchAndCloneInternal","MethodTitle":"FetchAndCloneInternal","Parameters":"","FullName":"Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark.FetchAndCloneInternal","HardwareIntrinsics":" VectorSize=256","Statistics":{"OriginalValues":[332331700,341653600,342703300,347859500,357006000,328162900,330329100,350402700,340605000,327161100,355434300,335369100,338406500,347421400,344470000,330099200,342255300,339219700,336363300,350530900,335369700,327347400,332350900,352665900,341300300],"N":25,"Min":327161100,"LowerFence":309745150,"Q1":332350900,"Median":340605000,"Mean":340272752,"Q3":347421400,"UpperFence":370027150,"Max":357006000,"InterquartileRange":15070500,"LowerOutliers":[],"UpperOutliers":[],"AllOutliers":[],"StandardError":1775895.5351044722,"Variance":78845123790100,"StandardDeviation":8879477.675522361,"Skewness":0.20386695511679104,"Kurtosis":1.8756615516641404,"ConfidenceInterval":{"N":25,"Mean":340272752,"StandardError":1775895.5351044722,"Level":12,"Margin":6651436.683073152,"Lower":333621315.31692684,"Upper":346924188.68307316},"Percentiles":{"P0":327161100,"P25":332350900,"P50":340605000,"P67":342844636,"P80":348368140,"P85":350453980,"P90":351811900,"P95":354880620,"P100":357006000}},"Memory":{"Gen0Collections":12,"Gen1Collections":4,"Gen2Collections":0,"TotalOperations":1,"BytesAllocatedPerOperation":81323032},"Measurements":[{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":284500},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":409020800},{"IterationMode":"Overhead","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":4800},{"IterationMode":"Workload","IterationStage":"Jitting","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":358147800},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":330042400},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":389361500},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":366690200},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":407920300},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":354303900},{"IterationMode":"Workload","IterationStage":"Warmup","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":369470700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":332331700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":341653600},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":342703300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":347859500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":357006000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":328162900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":330329100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":392014000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":350402700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":340605000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":327161100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":355434300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":335369100},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":338406500},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":347421400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":344470000},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":330099200},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":342255300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":339219700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":336363300},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":350530900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":335369700},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":327347400},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":332350900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":352665900},{"IterationMode":"Workload","IterationStage":"Actual","LaunchIndex":1,"IterationIndex":26,"Operations":1,"Nanoseconds":341300300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":1,"Operations":1,"Nanoseconds":332331700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":2,"Operations":1,"Nanoseconds":341653600},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":3,"Operations":1,"Nanoseconds":342703300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":4,"Operations":1,"Nanoseconds":347859500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":5,"Operations":1,"Nanoseconds":357006000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":6,"Operations":1,"Nanoseconds":328162900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":7,"Operations":1,"Nanoseconds":330329100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":8,"Operations":1,"Nanoseconds":350402700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":9,"Operations":1,"Nanoseconds":340605000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":10,"Operations":1,"Nanoseconds":327161100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":11,"Operations":1,"Nanoseconds":355434300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":12,"Operations":1,"Nanoseconds":335369100},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":13,"Operations":1,"Nanoseconds":338406500},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":14,"Operations":1,"Nanoseconds":347421400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":15,"Operations":1,"Nanoseconds":344470000},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":16,"Operations":1,"Nanoseconds":330099200},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":17,"Operations":1,"Nanoseconds":342255300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":18,"Operations":1,"Nanoseconds":339219700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":19,"Operations":1,"Nanoseconds":336363300},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":20,"Operations":1,"Nanoseconds":350530900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":21,"Operations":1,"Nanoseconds":335369700},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":22,"Operations":1,"Nanoseconds":327347400},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":23,"Operations":1,"Nanoseconds":332350900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":24,"Operations":1,"Nanoseconds":352665900},{"IterationMode":"Workload","IterationStage":"Result","LaunchIndex":1,"IterationIndex":25,"Operations":1,"Nanoseconds":341300300}],"Metrics":[{"Value":12000,"Descriptor":{"Id":"Gen0Collects","DisplayName":"Gen0","Legend":"GC Generation 0 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":0}},{"Value":4000,"Descriptor":{"Id":"Gen1Collects","DisplayName":"Gen1","Legend":"GC Generation 1 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":1}},{"Value":0,"Descriptor":{"Id":"Gen2Collects","DisplayName":"Gen2","Legend":"GC Generation 2 collects per 1000 operations","NumberFormat":"#0.0000","UnitType":0,"Unit":"Count","TheGreaterTheBetter":false,"PriorityInCategory":2}},{"Value":81323032,"Descriptor":{"Id":"Allocated Memory","DisplayName":"Allocated","Legend":"Allocated memory per single operation (managed only, inclusive, 1KB = 1024B)","NumberFormat":"0.##","UnitType":2,"Unit":"B","TheGreaterTheBetter":false,"PriorityInCategory":3}}]}]} diff --git a/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-github.md b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-github.md index 3eaf5cb158..5beefe9a44 100644 --- a/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-github.md +++ b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report-github.md @@ -15,20 +15,20 @@ Intel Core i7-10750H CPU 2.60GHz (Max: 2.59GHz), 1 CPU, 4 logical and 2 physical ``` | Method | Job | Runtime | Mean | Error | StdDev | Median | Ratio | RatioSD | Gen0 | Gen1 | Gen2 | Allocated | Alloc Ratio | |---------------------- |--------------------- |--------------------- |---------:|---------:|---------:|---------:|------:|--------:|-----------:|----------:|----------:|----------:|------------:| -| FetchAndSerialize | .NET 10.0 | .NET 10.0 | 159.9 ms | 8.21 ms | 24.09 ms | 160.1 ms | 1.02 | 0.22 | - | - | - | 116.46 MB | 1.00 | -| FetchAndCloneInternal | .NET 10.0 | .NET 10.0 | 111.2 ms | 2.22 ms | 5.93 ms | 109.9 ms | 0.71 | 0.12 | 500.0000 | - | - | 69.24 MB | 0.59 | +| FetchAndSerialize | .NET 10.0 | .NET 10.0 | 175.3 ms | 9.68 ms | 28.23 ms | 173.7 ms | 1.03 | 0.24 | 1000.0000 | - | - | 116.46 MB | 1.00 | +| FetchAndCloneInternal | .NET 10.0 | .NET 10.0 | 120.5 ms | 2.39 ms | 5.94 ms | 119.4 ms | 0.71 | 0.12 | 500.0000 | - | - | 67.28 MB | 0.58 | | | | | | | | | | | | | | | | -| FetchAndSerialize | .NET 8.0 | .NET 8.0 | 205.0 ms | 9.34 ms | 27.54 ms | 214.5 ms | 1.02 | 0.21 | 2000.0000 | 1000.0000 | - | 130.33 MB | 1.00 | -| FetchAndCloneInternal | .NET 8.0 | .NET 8.0 | 158.7 ms | 5.37 ms | 15.57 ms | 159.5 ms | 0.79 | 0.14 | 500.0000 | - | - | 83.11 MB | 0.64 | +| FetchAndSerialize | .NET 8.0 | .NET 8.0 | 223.5 ms | 12.77 ms | 37.67 ms | 225.2 ms | 1.03 | 0.25 | 2000.0000 | 1000.0000 | - | 130.33 MB | 1.00 | +| FetchAndCloneInternal | .NET 8.0 | .NET 8.0 | 155.2 ms | 5.08 ms | 14.66 ms | 154.5 ms | 0.72 | 0.14 | 500.0000 | - | - | 81.15 MB | 0.62 | | | | | | | | | | | | | | | | -| FetchAndSerialize | .NET 9.0 | .NET 9.0 | 207.7 ms | 12.87 ms | 36.51 ms | 215.9 ms | 1.03 | 0.27 | 2000.0000 | 1000.0000 | - | 129.79 MB | 1.00 | -| FetchAndCloneInternal | .NET 9.0 | .NET 9.0 | 135.9 ms | 5.46 ms | 16.10 ms | 135.2 ms | 0.68 | 0.16 | 1000.0000 | 500.0000 | - | 82.57 MB | 0.64 | +| FetchAndSerialize | .NET 9.0 | .NET 9.0 | 214.3 ms | 13.04 ms | 38.46 ms | 214.8 ms | 1.04 | 0.28 | 2000.0000 | 1000.0000 | - | 129.79 MB | 1.00 | +| FetchAndCloneInternal | .NET 9.0 | .NET 9.0 | 145.0 ms | 5.20 ms | 15.16 ms | 143.4 ms | 0.70 | 0.16 | 500.0000 | - | - | 80.61 MB | 0.62 | | | | | | | | | | | | | | | | -| FetchAndSerialize | .NET Framework 4.6.2 | .NET Framework 4.6.2 | 529.1 ms | 10.55 ms | 17.34 ms | 526.8 ms | 1.00 | 0.05 | 20000.0000 | 8000.0000 | 1000.0000 | 126.85 MB | 1.00 | -| FetchAndCloneInternal | .NET Framework 4.6.2 | .NET Framework 4.6.2 | 356.0 ms | 8.72 ms | 25.03 ms | 352.2 ms | 0.67 | 0.05 | 13000.0000 | 5000.0000 | 1000.0000 | 79.72 MB | 0.63 | +| FetchAndSerialize | .NET Framework 4.6.2 | .NET Framework 4.6.2 | 556.5 ms | 11.02 ms | 25.53 ms | 554.4 ms | 1.00 | 0.06 | 20000.0000 | 8000.0000 | 1000.0000 | 126.85 MB | 1.00 | +| FetchAndCloneInternal | .NET Framework 4.6.2 | .NET Framework 4.6.2 | 360.0 ms | 8.81 ms | 25.27 ms | 358.5 ms | 0.65 | 0.05 | 12000.0000 | 4000.0000 | - | 77.56 MB | 0.61 | | | | | | | | | | | | | | | | -| FetchAndSerialize | .NET Framework 4.7.2 | .NET Framework 4.7.2 | 489.3 ms | 9.75 ms | 18.79 ms | 486.0 ms | 1.00 | 0.05 | 20000.0000 | 8000.0000 | 1000.0000 | 126.85 MB | 1.00 | -| FetchAndCloneInternal | .NET Framework 4.7.2 | .NET Framework 4.7.2 | 337.0 ms | 6.72 ms | 8.97 ms | 337.5 ms | 0.69 | 0.03 | 13000.0000 | 5000.0000 | 1000.0000 | 79.72 MB | 0.63 | +| FetchAndSerialize | .NET Framework 4.7.2 | .NET Framework 4.7.2 | 563.1 ms | 11.17 ms | 18.67 ms | 562.1 ms | 1.00 | 0.05 | 20000.0000 | 8000.0000 | 1000.0000 | 126.85 MB | 1.00 | +| FetchAndCloneInternal | .NET Framework 4.7.2 | .NET Framework 4.7.2 | 353.6 ms | 7.00 ms | 16.76 ms | 351.2 ms | 0.63 | 0.04 | 12000.0000 | 4000.0000 | - | 77.56 MB | 0.61 | | | | | | | | | | | | | | | | -| FetchAndSerialize | .NET Framework 4.8 | .NET Framework 4.8 | 482.8 ms | 9.47 ms | 13.59 ms | 481.0 ms | 1.00 | 0.04 | 20000.0000 | 8000.0000 | 1000.0000 | 126.85 MB | 1.00 | -| FetchAndCloneInternal | .NET Framework 4.8 | .NET Framework 4.8 | 334.8 ms | 6.66 ms | 6.23 ms | 336.6 ms | 0.69 | 0.02 | 13000.0000 | 5000.0000 | 1000.0000 | 79.65 MB | 0.63 | +| FetchAndSerialize | .NET Framework 4.8 | .NET Framework 4.8 | 579.6 ms | 17.85 ms | 51.79 ms | 562.9 ms | 1.01 | 0.12 | 20000.0000 | 8000.0000 | 1000.0000 | 126.85 MB | 1.00 | +| FetchAndCloneInternal | .NET Framework 4.8 | .NET Framework 4.8 | 340.3 ms | 6.65 ms | 8.88 ms | 340.6 ms | 0.59 | 0.05 | 12000.0000 | 4000.0000 | - | 77.56 MB | 0.61 | diff --git a/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.csv b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.csv index c5346501bd..741750cccd 100644 --- a/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.csv +++ b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.csv @@ -1,13 +1,13 @@ Method;Job;AnalyzeLaunchVariance;EvaluateOverhead;MaxAbsoluteError;MaxRelativeError;MinInvokeCount;MinIterationTime;OutlierMode;Affinity;EnvironmentVariables;Jit;LargeAddressAware;Platform;PowerPlanMode;Runtime;AllowVeryLargeObjects;Concurrent;CpuGroups;Force;HeapAffinitizeMask;HeapCount;NoAffinitize;RetainVm;Server;Arguments;BuildConfiguration;Clock;EngineFactory;NuGetReferences;IsMutator;InvocationCount;IterationCount;IterationTime;LaunchCount;MaxIterationCount;MaxWarmupIterationCount;MemoryRandomization;MinIterationCount;MinWarmupIterationCount;RunStrategy;UnrollFactor;WarmupCount;Mean;Error;StdDev;Median;Ratio;RatioSD;Gen0;Gen1;Gen2;Allocated;Alloc Ratio -FetchAndSerialize;.NET 10.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 10.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;159.9 ms;8.21 ms;24.09 ms;160.1 ms;1.02;0.22;0.0000;0.0000;0.0000;116.46 MB;1.00 -FetchAndCloneInternal;.NET 10.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 10.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;111.2 ms;2.22 ms;5.93 ms;109.9 ms;0.71;0.12;500.0000;0.0000;0.0000;69.24 MB;0.59 -FetchAndSerialize;.NET 8.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 8.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;205.0 ms;9.34 ms;27.54 ms;214.5 ms;1.02;0.21;2000.0000;1000.0000;0.0000;130.33 MB;1.00 -FetchAndCloneInternal;.NET 8.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 8.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;158.7 ms;5.37 ms;15.57 ms;159.5 ms;0.79;0.14;500.0000;0.0000;0.0000;83.11 MB;0.64 -FetchAndSerialize;.NET 9.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 9.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;207.7 ms;12.87 ms;36.51 ms;215.9 ms;1.03;0.27;2000.0000;1000.0000;0.0000;129.79 MB;1.00 -FetchAndCloneInternal;.NET 9.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 9.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;135.9 ms;5.46 ms;16.10 ms;135.2 ms;0.68;0.16;1000.0000;500.0000;0.0000;82.57 MB;0.64 -FetchAndSerialize;.NET Framework 4.6.2;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.6.2;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;529.1 ms;10.55 ms;17.34 ms;526.8 ms;1.00;0.05;20000.0000;8000.0000;1000.0000;126.85 MB;1.00 -FetchAndCloneInternal;.NET Framework 4.6.2;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.6.2;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;356.0 ms;8.72 ms;25.03 ms;352.2 ms;0.67;0.05;13000.0000;5000.0000;1000.0000;79.72 MB;0.63 -FetchAndSerialize;.NET Framework 4.7.2;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.7.2;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;489.3 ms;9.75 ms;18.79 ms;486.0 ms;1.00;0.05;20000.0000;8000.0000;1000.0000;126.85 MB;1.00 -FetchAndCloneInternal;.NET Framework 4.7.2;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.7.2;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;337.0 ms;6.72 ms;8.97 ms;337.5 ms;0.69;0.03;13000.0000;5000.0000;1000.0000;79.72 MB;0.63 -FetchAndSerialize;.NET Framework 4.8;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.8;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;482.8 ms;9.47 ms;13.59 ms;481.0 ms;1.00;0.04;20000.0000;8000.0000;1000.0000;126.85 MB;1.00 -FetchAndCloneInternal;.NET Framework 4.8;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.8;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;334.8 ms;6.66 ms;6.23 ms;336.6 ms;0.69;0.02;13000.0000;5000.0000;1000.0000;79.65 MB;0.63 +FetchAndSerialize;.NET 10.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 10.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;175.3 ms;9.68 ms;28.23 ms;173.7 ms;1.03;0.24;1000.0000;0.0000;0.0000;116.46 MB;1.00 +FetchAndCloneInternal;.NET 10.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 10.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;120.5 ms;2.39 ms;5.94 ms;119.4 ms;0.71;0.12;500.0000;0.0000;0.0000;67.28 MB;0.58 +FetchAndSerialize;.NET 8.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 8.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;223.5 ms;12.77 ms;37.67 ms;225.2 ms;1.03;0.25;2000.0000;1000.0000;0.0000;130.33 MB;1.00 +FetchAndCloneInternal;.NET 8.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 8.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;155.2 ms;5.08 ms;14.66 ms;154.5 ms;0.72;0.14;500.0000;0.0000;0.0000;81.15 MB;0.62 +FetchAndSerialize;.NET 9.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 9.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;214.3 ms;13.04 ms;38.46 ms;214.8 ms;1.04;0.28;2000.0000;1000.0000;0.0000;129.79 MB;1.00 +FetchAndCloneInternal;.NET 9.0;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET 9.0;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;145.0 ms;5.20 ms;15.16 ms;143.4 ms;0.70;0.16;500.0000;0.0000;0.0000;80.61 MB;0.62 +FetchAndSerialize;.NET Framework 4.6.2;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.6.2;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;556.5 ms;11.02 ms;25.53 ms;554.4 ms;1.00;0.06;20000.0000;8000.0000;1000.0000;126.85 MB;1.00 +FetchAndCloneInternal;.NET Framework 4.6.2;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.6.2;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;360.0 ms;8.81 ms;25.27 ms;358.5 ms;0.65;0.05;12000.0000;4000.0000;0.0000;77.56 MB;0.61 +FetchAndSerialize;.NET Framework 4.7.2;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.7.2;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;563.1 ms;11.17 ms;18.67 ms;562.1 ms;1.00;0.05;20000.0000;8000.0000;1000.0000;126.85 MB;1.00 +FetchAndCloneInternal;.NET Framework 4.7.2;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.7.2;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;353.6 ms;7.00 ms;16.76 ms;351.2 ms;0.63;0.04;12000.0000;4000.0000;0.0000;77.56 MB;0.61 +FetchAndSerialize;.NET Framework 4.8;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.8;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;579.6 ms;17.85 ms;51.79 ms;562.9 ms;1.01;0.12;20000.0000;8000.0000;1000.0000;126.85 MB;1.00 +FetchAndCloneInternal;.NET Framework 4.8;False;Default;Default;Default;Default;Default;Default;1111;Empty;RyuJit;Default;X64;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c;.NET Framework 4.8;False;False;False;True;Default;Default;False;False;False;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;Default;16;Default;340.3 ms;6.65 ms;8.88 ms;340.6 ms;0.59;0.05;12000.0000;4000.0000;0.0000;77.56 MB;0.61 diff --git a/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.html b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.html index e8cbe33586..27145a6dcd 100644 --- a/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.html +++ b/Source/Csla.Benchmarks/PerformanceCloner/results/Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-report.html @@ -2,7 +2,7 @@ -Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-20260516-160802 +Csla.Benchmarks.PerformanceCloner.PerformanceClonerBenchmark-20260517-114738