Soenneker.Utils.SingletonDictionary 3.0.590

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.590                
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.590                
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.Utils.SingletonDictionary" Version="3.0.590" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Utils.SingletonDictionary --version 3.0.590                
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.590"                
#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.Utils.SingletonDictionary as a Cake Addin
#addin nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.590

// Install Soenneker.Utils.SingletonDictionary as a Cake Tool
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.590                

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.Utils.SingletonDictionary

An externally initializing singleton dictionary that uses double-check asynchronous locking, with optional async and sync disposal

Installation

dotnet add package Soenneker.Utils.SingletonDictionary

Example

Below is a long-living HttpClient implementation using SingletonDictionary with different settings. It guarantees only one instance of a particular key is instantiated due to the locking.

public class HttpRequester : IDisposable, IAsyncDisposable
{
    private readonly SingletonDictionary<HttpClient> _clients;

    public HttpRequester()
    {
        // This func will lazily execute once it's retrieved the first time.
        // Other threads calling this at the same moment will asynchronously wait,
        // and then utilize the HttpClient that was created from the first caller.
        _clients = new SingletonDictionary<HttpClient>((args) =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

            HttpClient client = new HttpClient(socketsHandler);
            client.Timeout = TimeSpan.FromSeconds((int)args[0]);

            return client;
        });
    }

    public async ValueTask Get()
    {
        // retrieve the singleton async, thus not blocking the calling thread
        await (await _client.Get("100", 100)).GetAsync("https://google.com");
    }

    // Disposal is not necessary for AsyncSingleton unless the type used is IDisposable/IAsyncDisposable
    public ValueTask DisposeAsync()
    {
        GC.SuppressFinalize(false);

        return _client.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(false);
        
        _client.Dispose();
    }
}
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on Soenneker.Utils.SingletonDictionary:

Package Downloads
Soenneker.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Soenneker.Cosmos.Database

A utility library for storing Azure Cosmos databases

Soenneker.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

Soenneker.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.594 663 11/21/2024
3.0.593 130 11/21/2024
3.0.592 2,232 11/20/2024
3.0.591 214 11/20/2024
3.0.590 63 11/20/2024
3.0.589 67 11/20/2024
3.0.588 254 11/20/2024
3.0.587 100 11/20/2024
3.0.586 58 11/20/2024
3.0.585 1,433 11/20/2024
3.0.584 1,976 11/19/2024
3.0.583 61 11/19/2024
3.0.582 506 11/19/2024
3.0.581 61 11/19/2024
3.0.580 1,957 11/19/2024
3.0.579 59 11/19/2024
3.0.578 956 11/19/2024
3.0.577 67 11/19/2024
3.0.576 6,744 11/14/2024
3.0.575 97 11/14/2024
3.0.574 470 11/14/2024
3.0.573 2,326 11/14/2024
3.0.572 681 11/14/2024
3.0.571 75 11/14/2024
3.0.570 70 11/14/2024
3.0.569 4,088 11/14/2024
3.0.568 74 11/14/2024
3.0.567 70 11/14/2024
3.0.566 3,440 11/14/2024
3.0.565 70 11/14/2024
3.0.564 56 11/14/2024
3.0.563 70 11/14/2024
2.1.562 7,097 11/13/2024
2.1.561 1,256 11/13/2024
2.1.560 3,006 11/13/2024
2.1.559 71 11/13/2024
2.1.558 1,289 11/12/2024
2.1.557 361 11/12/2024
2.1.556 7,992 11/9/2024
2.1.555 325 11/9/2024
2.1.554 67 11/9/2024
2.1.553 1,692 11/9/2024
2.1.552 71 11/9/2024
2.1.551 914 11/8/2024
2.1.550 75 11/8/2024
2.1.549 73 11/8/2024
2.1.548 71 11/8/2024
2.1.547 385 11/8/2024
2.1.546 1,847 11/8/2024
2.1.545 68 11/8/2024
2.1.544 5,412 11/8/2024
2.1.543 65 11/8/2024
2.1.542 11,505 11/1/2024
2.1.541 421 11/1/2024
2.1.540 6,717 10/29/2024
2.1.539 696 10/29/2024
2.1.538 2,797 10/29/2024
2.1.537 592 10/29/2024
2.1.536 5,509 10/28/2024
2.1.535 1,806 10/28/2024
2.1.534 3,971 10/26/2024
2.1.533 668 10/26/2024
2.1.532 6,705 10/22/2024
2.1.531 223 10/22/2024
2.1.530 518 10/22/2024
2.1.529 845 10/22/2024
2.1.528 56 10/22/2024
2.1.527 450 10/22/2024
2.1.526 6,441 10/18/2024
2.1.525 1,055 10/17/2024
2.1.524 4,110 10/15/2024
2.1.523 1,562 10/15/2024
2.1.522 73 10/14/2024
2.1.521 5,081 10/12/2024
2.1.520 615 10/11/2024
2.1.519 76 10/11/2024
2.1.518 444 10/11/2024
2.1.517 2,883 10/11/2024
2.1.516 6,286 10/9/2024
2.1.515 354 10/9/2024
2.1.514 70 10/9/2024
2.1.513 1,928 10/8/2024
2.1.512 112 10/8/2024
2.1.511 2,188 10/8/2024
2.1.510 115 10/8/2024
2.1.509 69 10/8/2024
2.1.508 3,897 10/8/2024
2.1.507 6,100 10/3/2024
2.1.506 78 10/3/2024
2.1.505 1,073 10/3/2024
2.1.504 1,877 10/3/2024
2.1.503 1,366 10/3/2024
2.1.502 5,680 10/2/2024
2.1.501 76 10/2/2024
2.1.500 1,779 10/2/2024
2.1.499 971 10/2/2024
2.1.498 4,134 10/1/2024
2.1.497 666 10/1/2024
2.1.496 80 10/1/2024
2.1.495 2,584 10/1/2024
2.1.494 75 10/1/2024
2.1.493 118 10/1/2024
2.1.492 5,276 9/29/2024
2.1.491 1,344 9/29/2024
2.1.490 75 9/29/2024
2.1.489 1,185 9/29/2024
2.1.488 75 9/29/2024
2.1.487 2,479 9/29/2024
2.1.486 4,840 9/27/2024
2.1.485 746 9/27/2024
2.1.484 3,089 9/27/2024
2.1.483 83 9/27/2024
2.1.482 417 9/27/2024
2.1.481 2,128 9/27/2024
2.1.480 3,115 9/26/2024
2.1.479 3,431 9/26/2024
2.1.478 2,316 9/26/2024
2.1.477 2,126 9/26/2024
2.1.476 3,737 9/26/2024
2.1.475 78 9/26/2024
2.1.474 5,484 9/23/2024
2.1.473 1,267 9/23/2024
2.1.472 912 9/23/2024
2.1.471 1,099 9/23/2024
2.1.470 69 9/23/2024
2.1.469 1,515 9/23/2024
2.1.468 72 9/23/2024
2.1.467 4,615 9/23/2024
2.1.466 79 9/23/2024
2.1.465 684 9/23/2024
2.1.464 88 9/23/2024
2.1.463 77 9/23/2024
2.1.462 847 9/23/2024
2.1.461 8,979 9/18/2024
2.1.460 225 9/17/2024
2.1.459 1,173 9/17/2024
2.1.458 1,675 9/17/2024
2.1.457 80 9/17/2024
2.1.456 1,768 9/17/2024
2.1.455 431 9/17/2024
2.1.454 3,219 9/17/2024
2.1.453 509 9/17/2024
2.1.452 169 9/17/2024
2.1.451 2,614 9/17/2024
2.1.450 7,401 9/16/2024
2.1.449 690 9/16/2024
2.1.448 4,912 9/12/2024
2.1.447 2,882 9/12/2024
2.1.446 1,279 9/11/2024
2.1.445 1,504 9/11/2024
2.1.443 3,688 9/11/2024
2.1.442 962 9/11/2024
2.1.441 932 9/11/2024
2.1.440 2,264 9/11/2024
2.1.439 8,023 9/10/2024
2.1.438 102 9/10/2024
2.1.437 1,124 9/10/2024
2.1.436 94 9/10/2024
2.1.434 2,882 9/10/2024
2.1.433 574 9/9/2024
2.1.432 1,971 9/9/2024
2.1.430 1,515 9/9/2024
2.1.428 114 9/9/2024
2.1.427 430 9/9/2024
2.1.426 13,194 9/7/2024
2.1.425 110 9/7/2024
2.1.424 4,948 9/6/2024
2.1.423 341 9/6/2024
2.1.422 2,169 9/6/2024
2.1.421 94 9/5/2024
2.1.420 105 9/5/2024
2.1.419 2,355 9/5/2024
2.1.418 1,114 9/5/2024
2.1.417 94 9/5/2024
2.1.416 1,117 9/5/2024
2.1.415 406 9/5/2024
2.1.414 94 9/5/2024
2.1.413 4,996 9/5/2024
2.1.412 174 9/5/2024
2.1.411 98 9/5/2024
2.1.410 2,210 9/4/2024
2.1.409 7,937 9/3/2024
2.1.408 87 9/3/2024
2.1.407 79 9/3/2024
2.1.406 3,970 9/3/2024
2.1.405 131 9/3/2024
2.1.404 2,446 9/3/2024
2.1.403 5,230 8/29/2024
2.1.402 2,502 8/29/2024
2.1.401 2,847 8/26/2024
2.1.400 87 8/26/2024
2.1.399 4,895 8/21/2024
2.1.398 590 8/21/2024
2.1.397 111 8/21/2024
2.1.396 2,524 8/21/2024
2.1.395 125 8/20/2024
2.1.394 113 8/20/2024
2.1.393 447 8/20/2024
2.1.392 2,933 8/20/2024
2.1.391 394 8/20/2024
2.1.390 99 8/20/2024
2.1.389 2,619 8/20/2024
2.1.388 101 8/20/2024
2.1.387 1,180 8/20/2024
2.1.386 2,859 8/19/2024
2.1.385 4,722 8/15/2024
2.1.384 2,081 8/15/2024
2.1.383 4,765 8/14/2024
2.1.382 136 8/13/2024
2.1.381 5,613 8/7/2024
2.1.380 256 8/6/2024
2.1.379 2,652 8/6/2024
2.1.378 4,889 8/1/2024
2.1.377 307 8/1/2024
2.1.376 80 8/1/2024
2.1.374 1,113 8/1/2024
2.1.373 5,754 7/25/2024
2.1.372 78 7/25/2024
2.1.371 700 7/25/2024
2.1.370 286 7/25/2024
2.1.369 336 7/25/2024
2.1.368 164 7/25/2024
2.1.367 364 7/24/2024
2.1.366 121 7/24/2024
2.1.365 188 7/24/2024
2.1.364 293 7/24/2024
2.1.363 7,784 7/20/2024
2.1.362 1,420 7/20/2024
2.1.361 4,936 7/14/2024
2.1.360 1,507 7/14/2024
2.1.359 85 7/14/2024
2.1.358 1,473 7/14/2024
2.1.357 4,261 7/10/2024
2.1.355 767 7/10/2024
2.1.354 1,159 7/10/2024
2.1.353 102 7/10/2024
2.1.352 1,880 7/10/2024
2.1.351 103 7/10/2024
2.1.350 81 7/10/2024
2.1.349 143 7/10/2024
2.1.348 86 7/10/2024
2.1.347 2,016 7/10/2024
2.1.346 102 7/10/2024
2.1.345 792 7/10/2024
2.1.344 90 7/10/2024
2.1.343 188 7/9/2024
2.1.342 80 7/9/2024
2.1.339 1,936 7/9/2024
2.1.338 467 7/9/2024
2.1.337 3,966 7/9/2024
2.1.336 1,050 7/9/2024
2.1.335 93 7/9/2024
2.1.334 2,542 7/9/2024
2.1.333 97 7/9/2024
2.1.332 3,445 7/9/2024
2.1.331 86 7/9/2024
2.1.330 2,478 7/9/2024
2.1.329 74 7/9/2024
2.1.328 1,041 7/9/2024
2.1.327 689 7/8/2024
2.1.326 939 7/8/2024
2.1.325 103 7/8/2024
2.1.324 96 7/8/2024
2.1.323 4,787 7/8/2024
2.1.322 1,588 7/8/2024
2.1.321 102 7/8/2024
2.1.320 2,244 7/7/2024
2.1.319 97 7/7/2024
2.1.318 108 7/7/2024
2.1.317 88 7/7/2024
2.1.316 1,101 7/7/2024
2.1.315 2,125 7/7/2024
2.1.314 1,819 7/7/2024
2.1.313 191 7/7/2024
2.1.312 3,328 7/5/2024
2.1.311 3,830 7/3/2024
2.1.310 2,982 7/3/2024
2.1.309 358 7/3/2024
2.1.308 3,850 7/2/2024
2.1.307 1,813 6/30/2024
2.1.306 2,209 6/28/2024
2.1.305 5,334 6/22/2024
2.1.304 4,818 6/15/2024
2.1.303 4,041 6/14/2024
2.1.302 5,815 6/1/2024
2.1.301 1,544 6/1/2024
2.1.300 561 6/1/2024
2.1.299 5,762 5/31/2024
2.1.298 3,651 5/29/2024
2.1.297 2,979 5/28/2024
2.1.296 2,400 5/27/2024
2.1.295 4,765 5/26/2024
2.1.294 1,984 5/26/2024
2.1.293 454 5/26/2024
2.1.292 2,468 5/25/2024
2.1.291 1,339 5/25/2024
2.1.290 107 5/25/2024
2.1.289 100 5/25/2024
2.1.288 651 5/25/2024
2.1.287 101 5/25/2024
2.1.286 376 5/25/2024
2.1.285 111 5/25/2024
2.1.284 101 5/25/2024
2.1.283 7,311 5/23/2024
2.1.282 504 5/23/2024
2.1.281 241 5/22/2024
2.1.280 3,579 5/22/2024
2.1.279 95 5/22/2024
2.1.278 107 5/22/2024
2.1.277 110 5/22/2024
2.1.276 2,080 5/22/2024
2.1.275 3,332 5/18/2024
2.1.274 1,856 5/18/2024
2.1.273 1,764 5/17/2024
2.1.272 90 5/17/2024
2.1.271 2,683 5/16/2024
2.1.270 404 5/15/2024
2.1.269 2,692 5/15/2024
2.1.268 4,391 5/12/2024
2.1.267 2,689 5/3/2024
2.1.266 1,110 4/30/2024
2.1.265 1,713 4/29/2024
2.1.264 1,857 4/29/2024
2.1.263 2,598 4/28/2024
2.1.262 1,435 4/28/2024
2.1.261 1,062 4/28/2024
2.1.260 1,715 4/28/2024
2.1.259 862 4/28/2024
2.1.258 92 4/28/2024
2.1.257 4,093 4/27/2024
2.1.256 107 4/27/2024
2.1.255 4,327 4/19/2024
2.1.254 4,006 4/18/2024
2.1.253 3,377 4/12/2024
2.1.252 1,109 4/12/2024
2.1.251 699 4/12/2024
2.1.250 830 4/12/2024
2.1.249 168 4/12/2024
2.1.248 88 4/12/2024
2.1.247 960 4/12/2024
2.1.246 281 4/12/2024
2.1.245 1,612 4/11/2024
2.1.244 3,649 4/10/2024
2.1.243 1,088 4/9/2024
2.1.242 3,100 4/2/2024
2.1.241 868 4/1/2024
2.1.240 2,031 3/29/2024
2.1.239 1,783 3/25/2024
2.1.238 269 3/25/2024
2.1.237 3,261 3/20/2024
2.1.236 2,108 3/19/2024
2.1.235 497 3/19/2024
2.1.234 2,277 3/18/2024
2.1.233 1,363 3/18/2024
2.1.232 1,348 3/15/2024
2.1.231 2,298 3/13/2024
2.1.230 1,061 3/13/2024
2.1.229 628 3/13/2024
2.1.228 725 3/13/2024
2.1.227 115 3/13/2024
2.1.226 516 3/13/2024
2.1.225 120 3/13/2024
2.1.224 125 3/13/2024
2.1.223 1,620 3/12/2024
2.1.222 2,782 3/11/2024
2.1.221 2,410 3/11/2024
2.1.220 1,563 3/10/2024
2.1.219 1,836 3/8/2024
2.1.218 1,024 3/8/2024
2.1.217 1,518 3/8/2024
2.1.216 2,045 3/6/2024
2.1.215 1,962 3/4/2024
2.1.214 1,364 3/4/2024
2.1.213 2,506 3/2/2024
2.1.212 1,171 3/2/2024
2.1.211 382 3/2/2024
2.1.210 326 3/2/2024
2.1.209 438 3/2/2024
2.1.208 3,368 2/29/2024
2.1.207 613 2/29/2024
2.1.206 314 2/29/2024
2.1.205 3,252 2/26/2024
2.1.204 1,458 2/25/2024
2.1.203 2,550 2/23/2024
2.1.202 1,854 2/22/2024
2.1.201 915 2/22/2024
2.1.200 394 2/21/2024
2.1.199 1,158 2/21/2024
2.1.198 267 2/21/2024
2.1.197 734 2/21/2024
2.1.196 106 2/21/2024
2.1.195 1,200 2/21/2024
2.1.194 381 2/21/2024
2.1.193 114 2/21/2024
2.1.192 113 2/21/2024
2.1.191 563 2/21/2024
2.1.190 89 2/21/2024
2.1.189 2,579 2/20/2024
2.1.188 679 2/20/2024
2.1.187 606 2/20/2024
2.1.186 721 2/20/2024
2.1.185 2,050 2/19/2024
2.1.184 1,835 2/17/2024
2.1.183 860 2/16/2024
2.1.182 820 2/16/2024
2.1.181 1,291 2/16/2024
2.1.180 96 2/16/2024
2.1.179 599 2/16/2024
2.1.178 103 2/16/2024
2.1.177 106 2/16/2024
2.1.176 516 2/16/2024
2.1.175 92 2/16/2024
2.1.174 3,243 2/13/2024
2.1.173 1,335 2/13/2024
2.1.172 1,056 2/13/2024
2.1.171 431 2/13/2024
2.1.170 601 2/13/2024
2.1.169 1,893 2/12/2024
2.1.168 478 2/11/2024
2.1.167 1,478 2/11/2024
2.1.166 813 2/11/2024
2.1.165 2,683 2/10/2024
2.1.164 519 2/9/2024
2.1.163 117 2/9/2024
2.1.162 1,517 2/9/2024
2.1.161 1,623 2/9/2024
2.1.160 359 2/8/2024
2.1.159 1,149 2/8/2024
2.1.158 809 2/8/2024
2.1.157 1,407 2/8/2024
2.1.156 102 2/8/2024
2.1.155 1,817 2/7/2024
2.1.154 421 2/7/2024
2.1.153 577 2/7/2024
2.1.152 1,233 2/7/2024
2.1.151 354 2/6/2024
2.1.150 117 2/6/2024
2.1.149 110 2/6/2024
2.1.148 2,712 2/5/2024
2.1.147 1,488 2/4/2024
2.1.146 2,037 2/2/2024
2.1.145 1,879 1/31/2024
2.1.144 2,101 1/29/2024
2.1.143 1,326 1/29/2024
2.1.142 327 1/29/2024
2.1.141 1,441 1/28/2024
2.1.140 430 1/28/2024
2.1.139 286 1/28/2024
2.1.138 515 1/28/2024
2.1.137 1,879 1/28/2024
2.1.136 903 1/28/2024
2.1.135 268 1/27/2024
2.1.134 892 1/27/2024
2.1.133 1,134 1/27/2024
2.1.132 1,147 1/27/2024
2.1.131 137 1/27/2024
2.1.130 677 1/27/2024
2.1.129 1,030 1/26/2024
2.1.128 202 1/26/2024
2.1.127 848 1/26/2024
2.1.126 1,097 1/26/2024
2.1.125 1,603 1/26/2024
2.1.124 857 1/25/2024
2.1.123 1,064 1/25/2024
2.1.122 430 1/25/2024
2.1.121 890 1/25/2024
2.1.120 499 1/25/2024
2.1.119 2,538 1/19/2024
2.1.118 2,177 1/15/2024
2.1.117 479 1/15/2024
2.1.116 1,187 1/15/2024
2.1.115 110 1/15/2024
2.1.114 541 1/15/2024
2.1.113 1,343 1/15/2024
2.1.112 2,511 1/14/2024
2.1.111 1,575 1/13/2024
2.1.110 1,797 1/12/2024
2.1.109 2,011 1/11/2024
2.1.108 2,594 1/7/2024
2.1.107 2,058 1/5/2024
2.1.106 466 1/5/2024
2.1.105 123 1/5/2024
2.1.104 128 1/5/2024
2.1.103 1,455 1/5/2024
2.1.102 128 1/5/2024
2.1.101 2,709 1/1/2024
2.1.100 2,185 12/28/2023
2.1.99 719 12/28/2023
2.1.98 479 12/28/2023
2.1.97 117 12/28/2023
2.1.96 115 12/28/2023
2.1.95 696 12/27/2023
2.1.94 125 12/27/2023
2.1.93 451 12/27/2023
2.1.92 121 12/27/2023
2.1.91 121 12/27/2023
2.1.90 2,182 12/25/2023
2.1.89 336 12/25/2023
2.1.88 755 12/25/2023
2.1.87 123 12/25/2023
2.1.86 602 12/25/2023
2.1.85 115 12/25/2023
2.1.84 548 12/25/2023
2.1.83 121 12/25/2023
2.1.82 1,614 12/24/2023
2.1.81 1,046 12/23/2023
2.1.80 843 12/23/2023
2.1.79 291 12/23/2023
2.1.78 526 12/23/2023
2.1.77 115 12/23/2023
2.1.76 104 12/23/2023
2.1.75 1,055 12/23/2023
2.1.74 106 12/23/2023
2.1.73 1,372 12/19/2023
2.1.72 197 12/19/2023
2.1.71 3,010 12/11/2023
2.1.70 704 12/10/2023
2.1.69 104 12/10/2023
2.1.68 466 12/10/2023
2.1.67 1,385 12/10/2023
2.1.66 355 12/9/2023
2.1.65 346 12/9/2023
2.1.64 277 12/9/2023
2.1.63 116 12/9/2023
2.1.62 247 12/9/2023
2.1.61 184 12/9/2023
2.1.60 116 12/9/2023
2.1.59 1,052 12/9/2023
2.1.58 111 12/9/2023
2.1.57 1,481 12/6/2023
2.1.56 377 12/6/2023
2.1.55 230 12/6/2023
2.1.54 257 12/6/2023
2.1.53 903 12/5/2023
2.1.52 366 12/5/2023
2.1.51 331 12/5/2023
2.1.50 370 12/5/2023
2.1.49 118 12/5/2023
2.1.48 328 12/5/2023
2.1.47 265 12/5/2023
2.1.46 118 12/4/2023
2.1.45 121 12/4/2023
2.1.44 315 12/4/2023
2.1.43 131 12/4/2023
2.1.42 984 12/4/2023
2.1.41 101 12/4/2023
2.1.40 1,150 11/27/2023
2.1.39 498 11/26/2023
2.1.38 198 11/26/2023
2.1.37 613 11/23/2023
2.1.36 669 11/23/2023
2.1.35 619 11/23/2023
2.1.34 119 11/23/2023
2.1.33 382 11/23/2023
2.1.32 126 11/23/2023
2.1.31 1,059 11/20/2023
2.1.30 1,024 11/20/2023
2.1.29 772 11/19/2023
2.1.28 244 11/19/2023
2.1.27 442 11/19/2023
2.1.26 480 11/19/2023
2.1.25 477 11/19/2023
2.1.24 108 11/19/2023
2.1.23 208 11/18/2023
2.1.22 961 11/18/2023
2.1.21 360 11/18/2023
2.1.20 519 11/18/2023
2.1.19 118 11/18/2023
2.1.18 291 11/18/2023
2.1.17 115 11/18/2023
2.1.16 577 11/17/2023
2.1.15 501 11/17/2023
2.1.14 113 11/17/2023
2.1.13 407 11/17/2023
2.1.12 284 11/17/2023
2.1.11 474 11/17/2023
2.1.10 114 11/17/2023
2.1.9 497 11/17/2023
2.1.8 111 11/17/2023
2.1.7 131 11/17/2023
2.1.6 308 11/17/2023
2.1.5 358 11/16/2023
2.0.101 2,049 11/15/2023
2.0.100 109 11/15/2023
2.0.99 115 11/15/2023
2.0.4 115 11/16/2023
2.0.3 123 11/16/2023
2.0.2 112 11/16/2023
2.0.1 110 11/16/2023
1.0.98 597 11/14/2023
1.0.97 736 11/13/2023
1.0.96 105 11/13/2023
1.0.95 558 11/10/2023
1.0.94 108 11/10/2023
1.0.93 908 11/9/2023
1.0.92 114 11/9/2023
1.0.91 1,005 11/7/2023
1.0.90 106 11/7/2023
1.0.89 491 11/6/2023
1.0.88 114 11/6/2023
1.0.87 582 11/3/2023
1.0.86 120 11/3/2023
1.0.85 868 11/2/2023
1.0.84 111 11/2/2023
1.0.83 587 11/1/2023
1.0.82 1,428 10/26/2023
1.0.81 1,279 10/19/2023
1.0.80 126 10/19/2023
1.0.79 763 10/18/2023
1.0.78 145 10/18/2023
1.0.77 713 10/17/2023
1.0.76 134 10/17/2023
1.0.75 623 10/16/2023
1.0.74 137 10/16/2023
1.0.73 684 10/13/2023
1.0.72 322 10/12/2023
1.0.71 1,709 9/20/2023
1.0.70 647 9/19/2023
1.0.69 660 9/18/2023
1.0.68 125 9/18/2023
1.0.67 874 9/14/2023
1.0.66 1,479 8/31/2023
1.0.65 134 8/31/2023
1.0.64 773 8/30/2023
1.0.63 141 8/30/2023
1.0.62 144 8/30/2023
1.0.61 821 8/28/2023
1.0.60 667 8/25/2023
1.0.59 134 8/25/2023
1.0.58 466 8/24/2023
1.0.57 1,424 8/21/2023
1.0.56 777 8/18/2023
1.0.55 728 8/17/2023
1.0.54 137 8/17/2023
1.0.53 1,881 8/10/2023
1.0.52 548 8/9/2023
1.0.51 650 8/8/2023
1.0.50 627 8/7/2023
1.0.49 161 8/7/2023
1.0.48 2,422 7/13/2023
1.0.47 855 7/11/2023
1.0.46 706 7/10/2023
1.0.45 667 7/7/2023
1.0.44 155 7/7/2023
1.0.43 2,076 6/30/2023
1.0.42 1,038 6/29/2023
1.0.41 580 6/28/2023
1.0.40 1,486 6/26/2023
1.0.39 752 6/23/2023
1.0.38 1,061 6/21/2023
1.0.37 1,389 6/15/2023
1.0.36 455 6/14/2023
1.0.35 1,725 6/9/2023
1.0.34 796 6/8/2023
1.0.33 1,566 6/7/2023
1.0.32 154 6/7/2023
1.0.31 1,184 6/6/2023
1.0.30 1,119 6/5/2023
1.0.29 1,320 6/2/2023
1.0.28 138 6/2/2023
1.0.27 1,208 6/1/2023
1.0.26 583 5/31/2023
1.0.25 467 5/31/2023
1.0.24 149 5/31/2023
1.0.23 1,438 5/30/2023
1.0.22 1,503 5/26/2023
1.0.21 657 5/25/2023
1.0.20 136 5/25/2023
1.0.19 814 5/24/2023
1.0.18 144 5/24/2023
1.0.17 430 5/23/2023
1.0.13 1,450 5/22/2023
1.0.12 1,171 5/18/2023
1.0.11 575 5/17/2023
1.0.10 1,533 5/1/2023
1.0.9 1,008 4/25/2023
1.0.8 459 4/24/2023
1.0.7 983 4/21/2023
1.0.6 1,942 4/13/2023
1.0.5 574 4/12/2023
1.0.4 1,000 4/8/2023
1.0.3 174 4/8/2023
1.0.2 572 4/8/2023
1.0.1 177 4/8/2023