Soenneker.Reflection.Cache 3.0.363

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Reflection.Cache --version 3.0.363                
NuGet\Install-Package Soenneker.Reflection.Cache -Version 3.0.363                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.Reflection.Cache" Version="3.0.363" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Reflection.Cache --version 3.0.363                
#r "nuget: Soenneker.Reflection.Cache, 3.0.363"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Soenneker.Reflection.Cache as a Cake Addin
#addin nuget:?package=Soenneker.Reflection.Cache&version=3.0.363

// Install Soenneker.Reflection.Cache as a Cake Tool
#tool nuget:?package=Soenneker.Reflection.Cache&version=3.0.363                

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Reflection.Cache

The fastest .NET Reflection cache

Why?

System.Reflection is slow. If you need to call Reflection code repeatedly, this library can drastically speed up subsequent calls. It's thread-safe and supports concurrency.

Installation

dotnet add package Soenneker.Reflection.Cache

This cache can either be added to DI like so:

public void ConfigureServices(IServiceCollection services)
{
    services.AddReflectionCacheAsSingleton(); // or AddReflectionCacheAsScoped()
}

and you could access it like:

public class MyService
{
    private readonly IReflectionCache _cache;

    public MyService(IReflectionCache cache)
    {
        _cache = cache;
    }
}

or you can instantiate it manually:

var cache = new ReflectionCache(threadSafe: true); // can be disabled for extra speed

Usage

var type1 = Type.GetType("System.String"); // <-- regular Reflection
var type2 = cache.GetType("System.String"); // <-- cached Reflection
bool areEqual = type1 == type2; // true

Keep in mind:

cache.GetType("System.String"); // <-- as slow as regular Reflection
cache.GetType("System.String"); // <-- very fast because the first call was cached

⚠️ Important ⚠️

Be mindful of the "cache chain". Use the Cached methods and types until you need to get the final Reflection type you need from the cache.

There are two methods for most operations like this:

Type typeofString = cache.GetType("System.String"); // <-- caches, stops the cache chain
CachedType type = cache.GetCachedType("System.String"); // <-- caches, continues the cache chain
Scenario: Retrieving parameters from a method

✅ Good:

CachedType cachedType = cache.GetCachedType("System.String");
CachedMethod cachedMethodInfo = cachedType.GetCachedMethod("Intern");
ParameterInfo?[] parameters = cachedMethodInfo.GetParameters(); // < -- parameters are now cached

❌ Bad:

CachedType cachedType = cache.GetCachedType("System.String");
MethodInfo methodInfo = cachedType.GetMethod("Intern"); // <-- uh oh, a non-cached Reflection type
ParameterInfo?[] parameters = methodInfo.GetParameters(); // <-- not cached, repeat calls are slow

Tips

  • Almost all of the Cached methods (e.g. GetCachedParameters() vs GetParameters() are faster due to the final preparation needed to match the System.Reflection methods.
  • Work with the Cached objects instead of Reflection objects if possible. They're faster to retrieve and allow for more efficient downstream chaining.
  • Thread safety can be disabled for more speed. It's enabled by default.
  • Consider if caching is even necessary for your use case. If you're only calling Reflection once, it may not be worth it.
  • Caching isn't free. Be thoughtful of your memory footprint and where/when you dispose of the cache.

Notes

  • A cache removal mechanism is needing to be built yet.
  • Many Reflection functionalities are not yet implemented, and could benefit from caching.
  • If you see something that could be improved (performance or allocation), please open an issue or PR.

Benchmarks (.NET)

GetType() 5,772% faster

Method Mean Error StdDev Ratio RatioSD
GetType_string_NoCache 1,022.30 ns 9.462 ns 8.851 ns baseline
GetType_string_Cache 17.52 ns 0.303 ns 0.283 ns 58.38x faster 1.12x
GetType_string_threadSafe_Cache 24.73 ns 0.139 ns 0.116 ns 41.29x faster 0.33x
GetCachedType_type_Cache 12.21 ns 0.234 ns 0.218 ns 83.76x faster 1.74x
GetCachedType_type_ThreadSafe_Cache 19.01 ns 0.067 ns 0.052 ns 53.73x faster 0.47x

GetMethods() 24,842% faster

Method Mean Error StdDev Ratio RatioSD
GetMethods_NoCache 256.526 ns 1.4587 ns 1.2180 ns baseline
GetMethods_Cache 1.030 ns 0.0412 ns 0.0385 ns 249.428x faster 10.30x

GetMethod() 37% faster

Method Mean Error StdDev Ratio RatioSD
GetMethod_NoCache 23.06 ns 0.234 ns 0.208 ns baseline
GetMethod_Cache 16.77 ns 0.079 ns 0.070 ns 1.37x faster 0.01x

GetMembers() 83,924% faster

Method Mean Error StdDev Ratio RatioSD
GetMembers_NoCache 550.2334 ns 4.1411 ns 3.8736 ns baseline
GetMembers_Cache 0.6579 ns 0.0515 ns 0.0481 ns 840.247x faster 58.17x
GetMembers_ThreadSafe_Cache 0.7273 ns 0.0307 ns 0.0287 ns 757.728x faster 31.76x

GetMember() 1,043% faster

Method Mean Error StdDev Ratio RatioSD
GetMember_NoCache 136.57 ns 1.353 ns 1.266 ns baseline
GetMember_Cache 11.95 ns 0.091 ns 0.081 ns 11.43x faster 0.12x

GetProperties() 8,960% faster

Method Mean Error StdDev Ratio RatioSD
GetProperties_NoCache 58.5363 ns 0.3463 ns 0.3070 ns baseline
GetProperties_Cache 0.6502 ns 0.0370 ns 0.0328 ns 90.25x faster 4.59x
GetProperties_ThreadSafe_Cache 0.7169 ns 0.0129 ns 0.0108 ns 81.72x faster 1.36x

GetProperty() 57% faster

Method Mean Error StdDev Ratio RatioSD
GetProperty_NoCache 25.61 ns 0.382 ns 0.357 ns baseline
GetProperty_Cache 16.23 ns 0.074 ns 0.062 ns 1.57x faster 0.01x

GetFields() 419% faster

Method Mean Error StdDev Ratio RatioSD
GetFields_NoCache 48.941 ns 0.9092 ns 0.8505 ns baseline
GetFields_Cache 1.141 ns 0.0512 ns 0.0479 ns 42.95x faster 1.32x
GetFields_ThreadSafe_Cache 1.178 ns 0.0144 ns 0.0128 ns 41.56x faster 0.79x

GetInterfaces() 1,439% faster

Method Mean Error StdDev Ratio RatioSD
GetInterfaces_NoCache 13.1880 ns 0.1197 ns 0.0999 ns baseline
GetInterfaces_Cache 0.8649 ns 0.0469 ns 0.0439 ns 15.39x faster 0.58x

GetInterface() 144% faster

Method Mean Error StdDev Ratio RatioSD
GetInterface_NoCache 32.84 ns 0.411 ns 0.364 ns baseline
GetInterface_Cache 13.47 ns 0.227 ns 0.212 ns 2.44x faster 0.05x

GetConstructors() 4,054% faster

Method Mean Error StdDev Ratio RatioSD
GetConstructors_NoCache 38.4477 ns 0.2020 ns 0.1687 ns baseline
GetConstructors_Cache 0.9280 ns 0.0109 ns 0.0102 ns 41.54x faster 0.36x
GetConstructors_ThreadSafe_Cache 1.0120 ns 0.0689 ns 0.0645 ns 38.39x faster 2.42x

GetConstructor() 601% faster

Method Mean Error StdDev Ratio RatioSD
GetConstructor_NoCache 18.16 ns 0.298 ns 0.278 ns baseline
GetConstructor_NoCache_Parameters 127.18 ns 1.592 ns 1.489 ns 7.01x slower 0.16x
GetConstructor_Cache 10.36 ns 0.057 ns 0.048 ns 1.76x faster 0.03x
GetConstructor_Cache_Parameters 21.12 ns 0.366 ns 0.342 ns 1.16x slower 0.02x

Activator.CreateInstance(params) vs cachedConstructor.CreateInstance(params) 242% faster

Method Mean Error StdDev Ratio RatioSD
Activator_Create_with_parameters 325.58 ns 1.713 ns 1.431 ns baseline
Cache_CreateInstance_with_parameters 95.61 ns 1.943 ns 1.908 ns 3.42x faster 0.07x

GetCustomAttributes() 1,658% faster

Method Mean Error StdDev Ratio RatioSD
GetAttributes_NoCache 2,560.76 ns 6.740 ns 6.305 ns baseline
GetAttributes_Cache 15.35 ns 0.287 ns 0.268 ns 166.858x faster 2.97x

GetGenericTypeDefinition() 499% faster

Method Mean Error StdDev Ratio RatioSD
GetGenericTypeDefinition_NoCache 1.8759 ns 0.0481 ns 0.0450 ns baseline
GetGenericTypeDefinition_Cache 0.3159 ns 0.0313 ns 0.0293 ns 5.99x faster 0.58x

IsAssignableFrom() 51% faster

Method Mean Error StdDev Ratio RatioSD
IsAssignableFrom_NoCache 9.355 ns 0.1357 ns 0.1270 ns baseline
IsAssignableFrom_Cache 6.198 ns 0.0794 ns 0.0742 ns 1.51x faster 0.04x

MakeGenericType() 1,485% faster

Method Mean Error StdDev Ratio RatioSD
MakeGenericType_NoCache 158.56 ns 0.900 ns 0.842 ns baseline
MakeGenericType_Cache 10.01 ns 0.216 ns 0.202 ns 15.85x faster 0.31x

GetElementType() 1,847% faster

Method Mean Error StdDev Ratio RatioSD
GetElementType_NoCache 4.9175 ns 0.0442 ns 0.0369 ns baseline
GetElementType_Cache 0.2585 ns 0.0204 ns 0.0191 ns 19.47x faster 1.06x

Properties on Type (e.g. typeof(string).IsNullable)

Method Mean Error StdDev Median
IsAbstract_NoCache 2.4277 ns 0.0319 ns 0.0299 ns 2.4152 ns
IsAbstract_Cache 0.0000 ns 0.0000 ns 0.0000 ns 0.0000 ns
IsInterface_NoCache 0.7720 ns 0.0219 ns 0.0194 ns 0.7662 ns
IsInterface_Cache 0.0045 ns 0.0076 ns 0.0071 ns 0.0000 ns
IsGenericType_NoCache 0.8707 ns 0.0281 ns 0.0262 ns 0.8732 ns
IsGenericType_Cache 0.2667 ns 0.0195 ns 0.0182 ns 0.2651 ns
IsEnum_NoCache 0.5322 ns 0.0242 ns 0.0227 ns 0.5291 ns
IsEnum_Cache 0.2612 ns 0.0251 ns 0.0235 ns 0.2526 ns
IsNullable_NoCache 1.4296 ns 0.0297 ns 0.0278 ns 1.4305 ns
IsNullable_Cache 0.2312 ns 0.0077 ns 0.0065 ns 0.2278 ns
IsByRef_NoCache 1.8439 ns 0.0332 ns 0.0310 ns 1.8410 ns
IsByRef_Cache 0.0012 ns 0.0025 ns 0.0022 ns 0.0000 ns
IsArray_NoCache 2.2914 ns 0.0484 ns 0.0452 ns 2.2652 ns
IsArray_Cache 0.0060 ns 0.0102 ns 0.0096 ns 0.0000 ns

Notes:

  • These benchmarks are built over iterations. The first operation is going to be as slow as the Reflection it sits in front of.
  • Many of these are based off of a test class TestType which is located in the test library.
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Soenneker.Reflection.Cache:

Package Downloads
Soenneker.Utils.AutoBogus

The .NET Bogus autogenerator

Soenneker.Cosmos.Serializer

A fast, lightweight JSON (de)serializer for Azure Cosmos DB

Soenneker.Utils.String

A utility library for useful String operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.390 0 4 hours ago
3.0.389 0 5 hours ago
3.0.388 0 12 hours ago
3.0.387 0 12 hours ago
3.0.386 0 12 hours ago
3.0.385 0 14 hours ago
3.0.384 0 14 hours ago
3.0.383 0 17 hours ago
3.0.382 0 17 hours ago
3.0.381 57 2 days ago
3.0.380 3,931 2 days ago
3.0.379 7,115 4 days ago
3.0.378 289 5 days ago
3.0.377 31 5 days ago
3.0.376 1,874 5 days ago
3.0.375 30 5 days ago
3.0.374 93 5 days ago
3.0.373 31 5 days ago
3.0.372 3,066 5 days ago
3.0.371 31 5 days ago
3.0.370 32 5 days ago
3.0.369 33 5 days ago
3.0.368 9,578 12 days ago
3.0.367 88 12 days ago
3.0.366 1,962 13 days ago
3.0.365 95 13 days ago
3.0.364 625 13 days ago
3.0.363 87 13 days ago
3.0.362 86 13 days ago
3.0.361 88 13 days ago
3.0.360 320 13 days ago
3.0.359 9,229 14 days ago
3.0.358 111 14 days ago
3.0.357 90 14 days ago
3.0.356 86 14 days ago
3.0.355 2,701 14 days ago
3.0.354 86 14 days ago
3.0.353 81 14 days ago
3.0.352 92 15 days ago
3.0.351 81 15 days ago
3.0.350 80 15 days ago
3.0.349 88 15 days ago
3.0.348 89 15 days ago
3.0.347 757 15 days ago
3.0.346 5,184 15 days ago
3.0.345 4,659 15 days ago
3.0.344 72 15 days ago
3.0.343 76 15 days ago
3.0.342 428 15 days ago
3.0.341 68 15 days ago
3.0.340 79 15 days ago
3.0.339 82 15 days ago
3.0.338 4,189 15 days ago
3.0.337 10,363 19 days ago
3.0.336 6,813 22 days ago
3.0.335 430 22 days ago
3.0.334 80 22 days ago
3.0.333 84 22 days ago
3.0.332 204 22 days ago
3.0.331 79 22 days ago
3.0.330 75 22 days ago
3.0.329 75 22 days ago
3.0.328 80 22 days ago
3.0.327 81 22 days ago
3.0.326 2,896 23 days ago
3.0.325 2,096 23 days ago
3.0.324 396 23 days ago
3.0.323 3,421 23 days ago
3.0.322 3,100 23 days ago
3.0.321 1,965 23 days ago
3.0.320 3,026 24 days ago
3.0.319 6,526 24 days ago
3.0.318 3,878 24 days ago
3.0.317 105 24 days ago
3.0.316 74 24 days ago
3.0.315 114 24 days ago
3.0.314 84 24 days ago
3.0.313 3,243 25 days ago
3.0.312 77 25 days ago
3.0.311 80 25 days ago
3.0.310 3,043 25 days ago
3.0.309 86 25 days ago
3.0.308 80 25 days ago
3.0.307 434 25 days ago
3.0.306 76 25 days ago
3.0.305 79 25 days ago
3.0.304 277 25 days ago
3.0.303 353 25 days ago
3.0.302 86 25 days ago
3.0.301 332 25 days ago
3.0.300 79 25 days ago
3.0.299 7,642 a month ago
3.0.298 88 a month ago
3.0.297 5,530 a month ago
3.0.296 2,171 a month ago
3.0.295 79 a month ago
3.0.294 3,680 a month ago
3.0.293 1,653 a month ago
3.0.292 80 a month ago
3.0.291 83 a month ago
3.0.290 83 a month ago
3.0.289 6,485 a month ago
3.0.288 83 a month ago
3.0.287 663 a month ago
3.0.286 75 a month ago
3.0.285 73 a month ago
3.0.284 76 a month ago
3.0.283 77 a month ago
3.0.282 16,282 a month ago
3.0.281 3,861 a month ago
3.0.280 88 a month ago
3.0.279 6,746 a month ago
3.0.278 90 a month ago
3.0.277 144 a month ago
3.0.276 176 a month ago
3.0.275 5,125 a month ago
3.0.274 93 a month ago
3.0.273 2,603 a month ago
3.0.272 5,417 a month ago
3.0.271 89 a month ago
3.0.270 9,997 a month ago
3.0.269 2,154 a month ago
3.0.268 2,048 a month ago
3.0.267 6,073 a month ago
3.0.266 4,867 a month ago
3.0.265 1,676 a month ago
3.0.264 1,419 a month ago
3.0.263 2,398 a month ago
3.0.262 77 a month ago
3.0.261 1,959 a month ago
3.0.260 6,519 a month ago
3.0.259 2,432 a month ago
3.0.258 97 a month ago
3.0.257 17,185 2 months ago
3.0.256 4,002 2 months ago
3.0.255 5,582 2 months ago
3.0.254 76 2 months ago
3.0.253 74 2 months ago
3.0.252 80 2 months ago
3.0.251 3,374 2 months ago
3.0.250 78 2 months ago
3.0.249 76 2 months ago
3.0.248 82 2 months ago
3.0.247 11,465 2 months ago
3.0.246 3,712 2 months ago
3.0.245 5,012 2 months ago
3.0.244 95 2 months ago
3.0.243 95 2 months ago
3.0.242 100 2 months ago
3.0.241 97 2 months ago
3.0.240 90 2 months ago
3.0.239 96 2 months ago
3.0.238 92 2 months ago
2.1.237 3,466 2 months ago
2.1.236 9,253 2 months ago
2.1.235 302 2 months ago
2.1.234 96 2 months ago
2.1.233 9,475 2 months ago
2.1.232 3,284 2 months ago
2.1.231 3,460 2 months ago
2.1.230 13,979 2 months ago
2.1.229 226 2 months ago
2.1.228 6,532 3 months ago
2.1.227 11,314 3 months ago
2.1.226 9,595 3 months ago
2.1.225 11,529 3 months ago
2.1.224 5,526 3 months ago
2.1.223 807 3 months ago
2.1.222 7,421 3 months ago
2.1.221 5,788 3 months ago
2.1.220 92 3 months ago
2.1.219 8,984 3 months ago
2.1.218 9,559 3 months ago
2.1.217 7,105 3 months ago
2.1.216 6,924 4 months ago
2.1.215 1,366 4 months ago
2.1.214 6,151 4 months ago
2.1.213 95 4 months ago
2.1.212 263 4 months ago
2.1.211 97 4 months ago
2.1.210 105 4 months ago
2.1.209 92 4 months ago
2.1.208 96 4 months ago
2.1.207 3,101 4 months ago
2.1.206 8,289 4 months ago
2.1.205 1,438 4 months ago
2.1.204 7,183 4 months ago
2.1.203 5,671 4 months ago
2.1.202 4,879 4 months ago
2.1.201 3,753 4 months ago
2.1.200 97 4 months ago
2.1.199 797 4 months ago
2.1.198 93 4 months ago
2.1.197 546 4 months ago
2.1.196 101 4 months ago
2.1.195 10,060 4 months ago
2.1.194 582 4 months ago
2.1.193 153 4 months ago
2.1.192 99 4 months ago
2.1.191 107 4 months ago
2.1.190 102 4 months ago
2.1.189 110 4 months ago
2.1.188 25,159 4 months ago
2.1.187 3,644 4 months ago
2.1.186 9,072 4 months ago
2.1.185 1,604 4 months ago
2.1.184 3,135 4 months ago
2.1.183 6,479 4 months ago
2.1.182 8,326 4 months ago
2.1.181 4,631 4 months ago
2.1.180 2,084 4 months ago
2.1.179 2,477 4 months ago
2.1.178 109 4 months ago
2.1.177 1,042 4 months ago
2.1.176 112 4 months ago
2.1.175 113 4 months ago
2.1.174 8,016 4 months ago
2.1.173 8,401 4 months ago
2.1.172 3,029 4 months ago
2.1.171 14,693 5 months ago
2.1.170 1,549 5 months ago
2.1.169 298 5 months ago
2.1.168 122 5 months ago
2.1.167 125 5 months ago
2.1.166 2,550 5 months ago
2.1.165 124 5 months ago
2.1.164 116 5 months ago
2.1.163 7,704 5 months ago
2.1.162 8,110 5 months ago
2.1.161 9,491 5 months ago
2.1.160 7,455 5 months ago
2.1.159 3,570 5 months ago
2.1.158 6,599 6 months ago
2.1.157 70 6 months ago
2.1.156 2,181 6 months ago
2.1.155 16,586 6 months ago
2.1.154 7,634 6 months ago
2.1.153 3,727 6 months ago
2.1.151 1,636 6 months ago
2.1.149 150 6 months ago
2.1.148 6,117 6 months ago
2.1.147 3,734 6 months ago
2.1.146 102 6 months ago
2.1.145 1,575 6 months ago
2.1.144 103 6 months ago
2.1.143 3,421 6 months ago
2.1.141 609 6 months ago
2.1.140 97 6 months ago
2.1.139 97 6 months ago
2.1.138 1,737 6 months ago
2.1.137 8,399 6 months ago
2.1.136 1,043 6 months ago
2.1.135 12,582 6 months ago
2.1.134 14,593 7 months ago
2.1.133 10,734 7 months ago
2.1.132 84 7 months ago
2.1.131 620 7 months ago
2.1.130 5,598 8 months ago
2.1.129 3,269 8 months ago
2.1.128 3,701 8 months ago
2.1.127 2,385 8 months ago
2.1.126 6,882 8 months ago
2.1.125 1,863 8 months ago
2.1.124 159 8 months ago
2.1.123 115 8 months ago
2.1.122 1,658 8 months ago
2.1.121 121 8 months ago
2.1.120 116 8 months ago
2.1.119 121 8 months ago
2.1.118 114 8 months ago
2.1.117 19,207 8 months ago
2.1.116 1,905 8 months ago
2.1.115 1,500 8 months ago
2.1.114 116 8 months ago
2.1.113 118 8 months ago
2.1.112 230 8 months ago
2.1.111 3,760 8 months ago
2.1.110 6,608 8 months ago
2.1.109 6,871 8 months ago
2.1.108 88 8 months ago
2.1.107 15,548 9 months ago
2.1.106 147 9 months ago
2.1.105 3,775 9 months ago
2.1.104 2,413 9 months ago
2.1.103 110 9 months ago
2.1.102 2,887 9 months ago
2.1.101 113 9 months ago
2.1.100 1,674 9 months ago
2.1.99 114 9 months ago
2.1.98 118 9 months ago
2.1.97 115 9 months ago
2.1.96 646 9 months ago
2.1.95 113 9 months ago
2.1.94 1,364 9 months ago
2.1.93 12,765 9 months ago
2.1.92 3,212 9 months ago
2.1.91 122 9 months ago
2.1.90 131 9 months ago
2.1.89 160 9 months ago
2.1.88 174 9 months ago
2.1.87 123 9 months ago
2.1.86 2,407 9 months ago
2.1.85 136 9 months ago
2.1.84 7,741 9 months ago
2.1.83 3,791 9 months ago
2.1.82 7,505 10 months ago
2.1.81 4,167 10 months ago
2.1.80 6,166 3/13/2024
2.1.79 125 3/13/2024
2.1.78 1,006 3/13/2024
2.1.77 123 3/13/2024
2.1.76 120 3/13/2024
2.1.75 2,886 3/12/2024
2.1.74 126 3/12/2024
2.1.73 7,877 3/8/2024
2.1.72 3,785 3/6/2024
2.1.71 2,051 3/4/2024
2.1.70 3,810 3/2/2024
2.1.69 1,609 3/2/2024
2.1.68 2,544 2/29/2024
2.1.67 4,752 2/25/2024
2.1.66 4,207 2/22/2024
2.1.65 2,147 2/21/2024
2.1.64 651 2/21/2024
2.1.63 1,371 2/21/2024
2.1.62 117 2/21/2024
2.1.61 132 2/21/2024
2.1.60 119 2/21/2024
2.1.59 127 2/21/2024
2.1.58 1,182 2/20/2024
2.1.57 3,210 2/20/2024
2.1.56 2,780 2/19/2024
2.1.55 127 2/19/2024
2.1.54 116 2/19/2024
2.1.53 134 2/18/2024
2.1.52 4,095 2/16/2024
2.1.51 129 2/16/2024
2.1.50 803 2/16/2024
2.1.49 1,288 2/16/2024
2.1.48 826 2/16/2024
2.1.47 1,544 2/16/2024
2.1.46 2,188 2/13/2024
2.1.45 2,178 2/13/2024
2.1.44 131 2/13/2024
2.1.43 130 2/13/2024
2.1.42 3,239 2/11/2024
2.1.41 2,318 2/11/2024
2.1.40 1,221 2/10/2024
2.1.39 132 2/10/2024
2.1.38 123 2/10/2024
2.1.37 167 2/9/2024
2.1.36 2,493 2/9/2024
2.1.35 1,558 2/9/2024
2.1.34 131 2/9/2024
2.1.33 1,464 2/8/2024
2.1.32 1,227 2/8/2024
2.1.31 1,178 2/8/2024
2.1.30 2,892 2/6/2024
2.1.29 1,127 2/6/2024
2.1.28 117 2/6/2024
2.1.27 2,272 2/6/2024
2.1.26 132 2/6/2024
2.1.25 176 2/5/2024
2.1.24 2,930 2/4/2024
2.1.23 120 2/4/2024
2.1.22 1,322 2/2/2024
2.1.21 103 2/1/2024
2.1.20 126 2/1/2024
2.1.19 146 2/1/2024
2.1.18 118 1/31/2024
2.1.17 110 1/31/2024
2.1.16 1,742 1/30/2024
2.1.15 4,068 1/28/2024
2.1.14 7,663 1/27/2024
2.1.13 865 1/26/2024
2.1.12 5,984 1/25/2024
2.1.11 115 1/25/2024
2.1.10 114 1/25/2024
2.1.9 118 1/25/2024
2.1.8 112 1/25/2024
2.1.7 2,290 1/23/2024
2.1.6 120 1/21/2024