Soenneker.Utils.SingletonDictionary 3.0.597

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.597                
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.597                
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.597" />                
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.597                
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.597"                
#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.597

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

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.618 0 12/3/2024
3.0.617 0 12/3/2024
3.0.616 0 12/3/2024
3.0.615 0 12/3/2024
3.0.614 0 12/3/2024
3.0.613 0 12/3/2024
3.0.612 21 12/3/2024
3.0.611 15 12/3/2024
3.0.610 168 12/3/2024
3.0.609 17 12/3/2024
3.0.608 819 12/2/2024
3.0.607 1,114 12/2/2024
3.0.606 803 12/2/2024
3.0.605 112 12/2/2024
3.0.604 33 12/2/2024
3.0.603 216 12/2/2024
3.0.602 1,894 12/1/2024
3.0.601 33 12/1/2024
3.0.600 1,073 12/1/2024
3.0.599 82 12/1/2024
3.0.598 2,042 12/1/2024
3.0.597 33 12/1/2024
3.0.596 2,165 11/29/2024
3.0.595 614 11/29/2024
3.0.594 3,116 11/21/2024
3.0.593 257 11/21/2024
3.0.592 4,453 11/20/2024
3.0.591 297 11/20/2024
3.0.590 72 11/20/2024
3.0.589 77 11/20/2024
3.0.588 385 11/20/2024
3.0.587 119 11/20/2024
3.0.586 67 11/20/2024
3.0.585 1,994 11/20/2024
3.0.584 2,713 11/19/2024
3.0.583 70 11/19/2024
3.0.582 604 11/19/2024
3.0.581 66 11/19/2024
3.0.580 2,639 11/19/2024
3.0.579 64 11/19/2024
3.0.578 1,274 11/19/2024
3.0.577 72 11/19/2024
3.0.576 8,391 11/14/2024
3.0.575 101 11/14/2024
3.0.574 474 11/14/2024
3.0.573 2,330 11/14/2024
3.0.572 685 11/14/2024
3.0.571 79 11/14/2024
3.0.570 74 11/14/2024
3.0.569 4,092 11/14/2024
3.0.568 78 11/14/2024
3.0.567 74 11/14/2024
3.0.566 3,444 11/14/2024
3.0.565 74 11/14/2024
3.0.564 71 11/14/2024
3.0.563 74 11/14/2024
2.1.562 7,209 11/13/2024
2.1.561 1,274 11/13/2024
2.1.560 3,014 11/13/2024
2.1.559 79 11/13/2024
2.1.558 1,297 11/12/2024
2.1.557 369 11/12/2024
2.1.556 8,073 11/9/2024
2.1.555 329 11/9/2024
2.1.554 71 11/9/2024
2.1.553 1,696 11/9/2024
2.1.552 75 11/9/2024
2.1.551 918 11/8/2024
2.1.550 79 11/8/2024
2.1.549 77 11/8/2024
2.1.548 75 11/8/2024
2.1.547 389 11/8/2024
2.1.546 1,851 11/8/2024
2.1.545 72 11/8/2024
2.1.544 5,416 11/8/2024
2.1.543 69 11/8/2024
2.1.542 11,509 11/1/2024
2.1.541 425 11/1/2024
2.1.540 6,721 10/29/2024
2.1.539 698 10/29/2024
2.1.538 2,799 10/29/2024
2.1.537 594 10/29/2024
2.1.536 5,512 10/28/2024
2.1.535 1,808 10/28/2024
2.1.534 3,976 10/26/2024
2.1.533 670 10/26/2024
2.1.532 7,024 10/22/2024
2.1.531 225 10/22/2024
2.1.530 520 10/22/2024
2.1.529 847 10/22/2024
2.1.528 58 10/22/2024
2.1.527 452 10/22/2024
2.1.526 6,445 10/18/2024
2.1.525 1,058 10/17/2024
2.1.524 4,113 10/15/2024
2.1.523 1,568 10/15/2024
2.1.522 76 10/14/2024
2.1.521 5,088 10/12/2024
2.1.520 617 10/11/2024
2.1.519 78 10/11/2024
2.1.518 446 10/11/2024
2.1.517 2,885 10/11/2024
2.1.516 6,291 10/9/2024
2.1.515 356 10/9/2024
2.1.514 72 10/9/2024
2.1.513 1,930 10/8/2024
2.1.512 114 10/8/2024
2.1.511 2,190 10/8/2024
2.1.510 117 10/8/2024
2.1.509 71 10/8/2024
2.1.508 3,899 10/8/2024
2.1.507 6,102 10/3/2024
2.1.506 80 10/3/2024
2.1.505 1,075 10/3/2024
2.1.504 1,879 10/3/2024
2.1.503 1,368 10/3/2024
2.1.502 5,687 10/2/2024
2.1.501 78 10/2/2024
2.1.500 1,781 10/2/2024
2.1.499 973 10/2/2024
2.1.498 4,136 10/1/2024
2.1.497 668 10/1/2024
2.1.496 82 10/1/2024
2.1.495 2,586 10/1/2024
2.1.494 77 10/1/2024
2.1.493 120 10/1/2024
2.1.492 5,278 9/29/2024
2.1.491 1,346 9/29/2024
2.1.490 77 9/29/2024
2.1.489 1,187 9/29/2024
2.1.488 77 9/29/2024
2.1.487 2,481 9/29/2024
2.1.486 4,883 9/27/2024
2.1.485 748 9/27/2024
2.1.484 3,091 9/27/2024
2.1.483 85 9/27/2024
2.1.482 419 9/27/2024
2.1.481 2,130 9/27/2024
2.1.480 3,122 9/26/2024
2.1.479 3,438 9/26/2024
2.1.478 2,318 9/26/2024
2.1.477 2,128 9/26/2024
2.1.476 3,744 9/26/2024
2.1.475 80 9/26/2024
2.1.474 5,497 9/23/2024
2.1.473 1,269 9/23/2024
2.1.472 914 9/23/2024
2.1.471 1,101 9/23/2024
2.1.470 71 9/23/2024
2.1.469 1,517 9/23/2024
2.1.468 74 9/23/2024
2.1.467 4,617 9/23/2024
2.1.466 81 9/23/2024
2.1.465 686 9/23/2024
2.1.464 90 9/23/2024
2.1.463 79 9/23/2024
2.1.462 849 9/23/2024
2.1.461 9,002 9/18/2024
2.1.460 227 9/17/2024
2.1.459 1,175 9/17/2024
2.1.458 1,677 9/17/2024
2.1.457 82 9/17/2024
2.1.456 1,770 9/17/2024
2.1.455 433 9/17/2024
2.1.454 3,221 9/17/2024
2.1.453 511 9/17/2024
2.1.452 171 9/17/2024
2.1.451 2,616 9/17/2024
2.1.450 7,403 9/16/2024
2.1.449 692 9/16/2024
2.1.448 4,914 9/12/2024
2.1.447 2,884 9/12/2024
2.1.446 1,281 9/11/2024
2.1.445 1,506 9/11/2024
2.1.443 3,690 9/11/2024
2.1.442 964 9/11/2024
2.1.441 934 9/11/2024
2.1.440 2,266 9/11/2024
2.1.439 8,025 9/10/2024
2.1.438 104 9/10/2024
2.1.437 1,126 9/10/2024
2.1.436 96 9/10/2024
2.1.434 2,884 9/10/2024
2.1.433 576 9/9/2024
2.1.432 1,973 9/9/2024
2.1.430 1,517 9/9/2024
2.1.428 116 9/9/2024
2.1.427 432 9/9/2024
2.1.426 13,196 9/7/2024
2.1.425 112 9/7/2024
2.1.424 4,950 9/6/2024
2.1.423 343 9/6/2024
2.1.422 2,177 9/6/2024
2.1.421 96 9/5/2024
2.1.420 107 9/5/2024
2.1.419 2,357 9/5/2024
2.1.418 1,116 9/5/2024
2.1.417 96 9/5/2024
2.1.416 1,119 9/5/2024
2.1.415 408 9/5/2024
2.1.414 96 9/5/2024
2.1.413 4,998 9/5/2024
2.1.412 176 9/5/2024
2.1.411 100 9/5/2024
2.1.410 2,225 9/4/2024
2.1.409 7,939 9/3/2024
2.1.408 89 9/3/2024
2.1.407 81 9/3/2024
2.1.406 3,972 9/3/2024
2.1.405 133 9/3/2024
2.1.404 2,448 9/3/2024
2.1.403 5,235 8/29/2024
2.1.402 2,504 8/29/2024
2.1.401 2,849 8/26/2024
2.1.400 89 8/26/2024
2.1.399 4,897 8/21/2024
2.1.398 592 8/21/2024
2.1.397 113 8/21/2024
2.1.396 2,526 8/21/2024
2.1.395 127 8/20/2024
2.1.394 115 8/20/2024
2.1.393 449 8/20/2024
2.1.392 2,935 8/20/2024
2.1.391 396 8/20/2024
2.1.390 101 8/20/2024
2.1.389 2,621 8/20/2024
2.1.388 103 8/20/2024
2.1.387 1,182 8/20/2024
2.1.386 2,861 8/19/2024
2.1.385 4,724 8/15/2024
2.1.384 2,083 8/15/2024
2.1.383 4,767 8/14/2024
2.1.382 138 8/13/2024
2.1.381 5,615 8/7/2024
2.1.380 258 8/6/2024
2.1.379 2,654 8/6/2024
2.1.378 4,891 8/1/2024
2.1.377 309 8/1/2024
2.1.376 82 8/1/2024
2.1.374 1,115 8/1/2024
2.1.373 5,756 7/25/2024
2.1.372 80 7/25/2024
2.1.371 702 7/25/2024
2.1.370 288 7/25/2024
2.1.369 338 7/25/2024
2.1.368 166 7/25/2024
2.1.367 366 7/24/2024
2.1.366 123 7/24/2024
2.1.365 190 7/24/2024
2.1.364 295 7/24/2024
2.1.363 7,803 7/20/2024
2.1.362 1,422 7/20/2024
2.1.361 4,938 7/14/2024
2.1.360 1,509 7/14/2024
2.1.359 87 7/14/2024
2.1.358 1,475 7/14/2024
2.1.357 4,263 7/10/2024
2.1.355 769 7/10/2024
2.1.354 1,161 7/10/2024
2.1.353 104 7/10/2024
2.1.352 1,882 7/10/2024
2.1.351 105 7/10/2024
2.1.350 83 7/10/2024
2.1.349 145 7/10/2024
2.1.348 88 7/10/2024
2.1.347 2,018 7/10/2024
2.1.346 104 7/10/2024
2.1.345 794 7/10/2024
2.1.344 92 7/10/2024
2.1.343 190 7/9/2024
2.1.342 82 7/9/2024
2.1.339 1,938 7/9/2024
2.1.338 469 7/9/2024
2.1.337 3,968 7/9/2024
2.1.336 1,052 7/9/2024
2.1.335 95 7/9/2024
2.1.334 2,547 7/9/2024
2.1.333 99 7/9/2024
2.1.332 3,678 7/9/2024
2.1.331 88 7/9/2024
2.1.330 2,480 7/9/2024
2.1.329 76 7/9/2024
2.1.328 1,043 7/9/2024
2.1.327 691 7/8/2024
2.1.326 941 7/8/2024
2.1.325 105 7/8/2024
2.1.324 98 7/8/2024
2.1.323 4,794 7/8/2024
2.1.322 1,590 7/8/2024
2.1.321 104 7/8/2024
2.1.320 2,246 7/7/2024
2.1.319 99 7/7/2024
2.1.318 110 7/7/2024
2.1.317 90 7/7/2024
2.1.316 1,103 7/7/2024
2.1.315 2,127 7/7/2024
2.1.314 1,821 7/7/2024
2.1.313 193 7/7/2024
2.1.312 3,330 7/5/2024
2.1.311 3,832 7/3/2024
2.1.310 2,984 7/3/2024
2.1.309 360 7/3/2024
2.1.308 3,852 7/2/2024
2.1.307 1,815 6/30/2024
2.1.306 2,211 6/28/2024
2.1.305 5,336 6/22/2024
2.1.304 4,820 6/15/2024
2.1.303 4,043 6/14/2024
2.1.302 5,817 6/1/2024
2.1.301 1,546 6/1/2024
2.1.300 563 6/1/2024
2.1.299 5,764 5/31/2024
2.1.298 3,653 5/29/2024
2.1.297 2,981 5/28/2024
2.1.296 2,402 5/27/2024
2.1.295 4,767 5/26/2024
2.1.294 1,986 5/26/2024
2.1.293 456 5/26/2024
2.1.292 2,470 5/25/2024
2.1.291 1,341 5/25/2024
2.1.290 109 5/25/2024
2.1.289 102 5/25/2024
2.1.288 653 5/25/2024
2.1.287 103 5/25/2024
2.1.286 378 5/25/2024
2.1.285 113 5/25/2024
2.1.284 103 5/25/2024
2.1.283 7,318 5/23/2024
2.1.282 506 5/23/2024
2.1.281 243 5/22/2024
2.1.280 3,581 5/22/2024
2.1.279 97 5/22/2024
2.1.278 109 5/22/2024
2.1.277 112 5/22/2024
2.1.276 2,082 5/22/2024
2.1.275 3,334 5/18/2024
2.1.274 1,858 5/18/2024
2.1.273 1,766 5/17/2024
2.1.272 92 5/17/2024
2.1.271 2,685 5/16/2024
2.1.270 406 5/15/2024
2.1.269 2,694 5/15/2024
2.1.268 4,393 5/12/2024
2.1.267 2,691 5/3/2024
2.1.266 1,112 4/30/2024
2.1.265 1,715 4/29/2024
2.1.264 1,859 4/29/2024
2.1.263 2,600 4/28/2024
2.1.262 1,437 4/28/2024
2.1.261 1,064 4/28/2024
2.1.260 1,717 4/28/2024
2.1.259 864 4/28/2024
2.1.258 94 4/28/2024
2.1.257 4,095 4/27/2024
2.1.256 109 4/27/2024
2.1.255 4,329 4/19/2024
2.1.254 4,008 4/18/2024
2.1.253 3,379 4/12/2024
2.1.252 1,111 4/12/2024
2.1.251 701 4/12/2024
2.1.250 832 4/12/2024
2.1.249 170 4/12/2024
2.1.248 90 4/12/2024
2.1.247 962 4/12/2024
2.1.246 283 4/12/2024
2.1.245 1,614 4/11/2024
2.1.244 3,651 4/10/2024
2.1.243 1,090 4/9/2024
2.1.242 3,102 4/2/2024
2.1.241 870 4/1/2024
2.1.240 2,033 3/29/2024
2.1.239 1,785 3/25/2024
2.1.238 271 3/25/2024
2.1.237 3,263 3/20/2024
2.1.236 2,110 3/19/2024
2.1.235 499 3/19/2024
2.1.234 2,279 3/18/2024
2.1.233 1,365 3/18/2024
2.1.232 1,350 3/15/2024
2.1.231 2,300 3/13/2024
2.1.230 1,063 3/13/2024
2.1.229 630 3/13/2024
2.1.228 727 3/13/2024
2.1.227 117 3/13/2024
2.1.226 518 3/13/2024
2.1.225 122 3/13/2024
2.1.224 127 3/13/2024
2.1.223 1,622 3/12/2024
2.1.222 2,784 3/11/2024
2.1.221 2,412 3/11/2024
2.1.220 1,570 3/10/2024
2.1.219 1,838 3/8/2024
2.1.218 1,026 3/8/2024
2.1.217 1,520 3/8/2024
2.1.216 2,047 3/6/2024
2.1.215 1,964 3/4/2024
2.1.214 1,366 3/4/2024
2.1.213 2,508 3/2/2024
2.1.212 1,173 3/2/2024
2.1.211 384 3/2/2024
2.1.210 328 3/2/2024
2.1.209 440 3/2/2024
2.1.208 3,370 2/29/2024
2.1.207 615 2/29/2024
2.1.206 316 2/29/2024
2.1.205 3,254 2/26/2024
2.1.204 1,460 2/25/2024
2.1.203 2,552 2/23/2024
2.1.202 1,859 2/22/2024
2.1.201 917 2/22/2024
2.1.200 396 2/21/2024
2.1.199 1,160 2/21/2024
2.1.198 269 2/21/2024
2.1.197 736 2/21/2024
2.1.196 108 2/21/2024
2.1.195 1,202 2/21/2024
2.1.194 383 2/21/2024
2.1.193 116 2/21/2024
2.1.192 115 2/21/2024
2.1.191 565 2/21/2024
2.1.190 91 2/21/2024
2.1.189 2,581 2/20/2024
2.1.188 681 2/20/2024
2.1.187 608 2/20/2024
2.1.186 723 2/20/2024
2.1.185 2,052 2/19/2024
2.1.184 1,837 2/17/2024
2.1.183 862 2/16/2024
2.1.182 822 2/16/2024
2.1.181 1,293 2/16/2024
2.1.180 98 2/16/2024
2.1.179 601 2/16/2024
2.1.178 105 2/16/2024
2.1.177 108 2/16/2024
2.1.176 518 2/16/2024
2.1.175 94 2/16/2024
2.1.174 3,245 2/13/2024
2.1.173 1,337 2/13/2024
2.1.172 1,058 2/13/2024
2.1.171 433 2/13/2024
2.1.170 604 2/13/2024
2.1.169 1,895 2/12/2024
2.1.168 480 2/11/2024
2.1.167 1,480 2/11/2024
2.1.166 815 2/11/2024
2.1.165 2,685 2/10/2024
2.1.164 521 2/9/2024
2.1.163 119 2/9/2024
2.1.162 1,519 2/9/2024
2.1.161 1,625 2/9/2024
2.1.160 361 2/8/2024
2.1.159 1,151 2/8/2024
2.1.158 811 2/8/2024
2.1.157 1,409 2/8/2024
2.1.156 106 2/8/2024
2.1.155 1,819 2/7/2024
2.1.154 423 2/7/2024
2.1.153 579 2/7/2024
2.1.152 1,238 2/7/2024
2.1.151 357 2/6/2024
2.1.150 119 2/6/2024
2.1.149 112 2/6/2024
2.1.148 2,714 2/5/2024
2.1.147 1,490 2/4/2024
2.1.146 2,039 2/2/2024
2.1.145 1,881 1/31/2024
2.1.144 2,103 1/29/2024
2.1.143 1,328 1/29/2024
2.1.142 329 1/29/2024
2.1.141 1,443 1/28/2024
2.1.140 432 1/28/2024
2.1.139 288 1/28/2024
2.1.138 517 1/28/2024
2.1.137 1,885 1/28/2024
2.1.136 906 1/28/2024
2.1.135 271 1/27/2024
2.1.134 895 1/27/2024
2.1.133 1,137 1/27/2024
2.1.132 1,149 1/27/2024
2.1.131 139 1/27/2024
2.1.130 679 1/27/2024
2.1.129 1,032 1/26/2024
2.1.128 204 1/26/2024
2.1.127 850 1/26/2024
2.1.126 1,101 1/26/2024
2.1.125 1,605 1/26/2024
2.1.124 859 1/25/2024
2.1.123 1,071 1/25/2024
2.1.122 432 1/25/2024
2.1.121 892 1/25/2024
2.1.120 501 1/25/2024
2.1.119 2,540 1/19/2024
2.1.118 2,182 1/15/2024
2.1.117 481 1/15/2024
2.1.116 1,189 1/15/2024
2.1.115 112 1/15/2024
2.1.114 543 1/15/2024
2.1.113 1,345 1/15/2024
2.1.112 2,513 1/14/2024
2.1.111 1,577 1/13/2024
2.1.110 1,799 1/12/2024
2.1.109 2,013 1/11/2024
2.1.108 2,596 1/7/2024
2.1.107 2,060 1/5/2024
2.1.106 468 1/5/2024
2.1.105 125 1/5/2024
2.1.104 130 1/5/2024
2.1.103 1,457 1/5/2024
2.1.102 130 1/5/2024
2.1.101 2,712 1/1/2024
2.1.100 2,187 12/28/2023
2.1.99 721 12/28/2023
2.1.98 481 12/28/2023
2.1.97 119 12/28/2023
2.1.96 117 12/28/2023
2.1.95 698 12/27/2023
2.1.94 127 12/27/2023
2.1.93 453 12/27/2023
2.1.92 123 12/27/2023
2.1.91 123 12/27/2023
2.1.90 2,184 12/25/2023
2.1.89 338 12/25/2023
2.1.88 757 12/25/2023
2.1.87 126 12/25/2023
2.1.86 604 12/25/2023
2.1.85 117 12/25/2023
2.1.84 550 12/25/2023
2.1.83 123 12/25/2023
2.1.82 1,616 12/24/2023
2.1.81 1,048 12/23/2023
2.1.80 845 12/23/2023
2.1.79 293 12/23/2023
2.1.78 528 12/23/2023
2.1.77 117 12/23/2023
2.1.76 107 12/23/2023
2.1.75 1,057 12/23/2023
2.1.74 108 12/23/2023
2.1.73 1,374 12/19/2023
2.1.72 199 12/19/2023
2.1.71 3,012 12/11/2023
2.1.70 707 12/10/2023
2.1.69 106 12/10/2023
2.1.68 468 12/10/2023
2.1.67 1,387 12/10/2023
2.1.66 357 12/9/2023
2.1.65 348 12/9/2023
2.1.64 279 12/9/2023
2.1.63 118 12/9/2023
2.1.62 249 12/9/2023
2.1.61 186 12/9/2023
2.1.60 118 12/9/2023
2.1.59 1,054 12/9/2023
2.1.58 113 12/9/2023
2.1.57 1,483 12/6/2023
2.1.56 379 12/6/2023
2.1.55 232 12/6/2023
2.1.54 259 12/6/2023
2.1.53 905 12/5/2023
2.1.52 368 12/5/2023
2.1.51 333 12/5/2023
2.1.50 372 12/5/2023
2.1.49 120 12/5/2023
2.1.48 330 12/5/2023
2.1.47 267 12/5/2023
2.1.46 120 12/4/2023
2.1.45 123 12/4/2023
2.1.44 317 12/4/2023
2.1.43 133 12/4/2023
2.1.42 986 12/4/2023
2.1.41 103 12/4/2023
2.1.40 1,152 11/27/2023
2.1.39 500 11/26/2023
2.1.38 205 11/26/2023
2.1.37 615 11/23/2023
2.1.36 671 11/23/2023
2.1.35 621 11/23/2023
2.1.34 121 11/23/2023
2.1.33 384 11/23/2023
2.1.32 128 11/23/2023
2.1.31 1,061 11/20/2023
2.1.30 1,026 11/20/2023
2.1.29 774 11/19/2023
2.1.28 246 11/19/2023
2.1.27 444 11/19/2023
2.1.26 482 11/19/2023
2.1.25 479 11/19/2023
2.1.24 110 11/19/2023
2.1.23 210 11/18/2023
2.1.22 963 11/18/2023
2.1.21 362 11/18/2023
2.1.20 521 11/18/2023
2.1.19 120 11/18/2023
2.1.18 293 11/18/2023
2.1.17 117 11/18/2023
2.1.16 579 11/17/2023
2.1.15 503 11/17/2023
2.1.14 115 11/17/2023
2.1.13 409 11/17/2023
2.1.12 286 11/17/2023
2.1.11 476 11/17/2023
2.1.10 116 11/17/2023
2.1.9 499 11/17/2023
2.1.8 113 11/17/2023
2.1.7 133 11/17/2023
2.1.6 310 11/17/2023
2.1.5 360 11/16/2023
2.0.101 2,051 11/15/2023
2.0.100 111 11/15/2023
2.0.99 117 11/15/2023
2.0.4 117 11/16/2023
2.0.3 125 11/16/2023
2.0.2 114 11/16/2023
2.0.1 112 11/16/2023
1.0.98 599 11/14/2023
1.0.97 738 11/13/2023
1.0.96 107 11/13/2023
1.0.95 560 11/10/2023
1.0.94 110 11/10/2023
1.0.93 910 11/9/2023
1.0.92 116 11/9/2023
1.0.91 1,007 11/7/2023
1.0.90 108 11/7/2023
1.0.89 493 11/6/2023
1.0.88 116 11/6/2023
1.0.87 584 11/3/2023
1.0.86 122 11/3/2023
1.0.85 870 11/2/2023
1.0.84 113 11/2/2023
1.0.83 589 11/1/2023
1.0.82 1,430 10/26/2023
1.0.81 1,281 10/19/2023
1.0.80 128 10/19/2023
1.0.79 765 10/18/2023
1.0.78 147 10/18/2023
1.0.77 715 10/17/2023
1.0.76 136 10/17/2023
1.0.75 625 10/16/2023
1.0.74 139 10/16/2023
1.0.73 686 10/13/2023
1.0.72 324 10/12/2023
1.0.71 1,711 9/20/2023
1.0.70 649 9/19/2023
1.0.69 662 9/18/2023
1.0.68 127 9/18/2023
1.0.67 876 9/14/2023
1.0.66 1,481 8/31/2023
1.0.65 136 8/31/2023
1.0.64 775 8/30/2023
1.0.63 143 8/30/2023
1.0.62 146 8/30/2023
1.0.61 823 8/28/2023
1.0.60 669 8/25/2023
1.0.59 136 8/25/2023
1.0.58 468 8/24/2023
1.0.57 1,426 8/21/2023
1.0.56 779 8/18/2023
1.0.55 730 8/17/2023
1.0.54 139 8/17/2023
1.0.53 1,883 8/10/2023
1.0.52 550 8/9/2023
1.0.51 652 8/8/2023
1.0.50 629 8/7/2023
1.0.49 163 8/7/2023
1.0.48 2,424 7/13/2023
1.0.47 859 7/11/2023
1.0.46 708 7/10/2023
1.0.45 671 7/7/2023
1.0.44 157 7/7/2023
1.0.43 2,078 6/30/2023
1.0.42 1,040 6/29/2023
1.0.41 582 6/28/2023
1.0.40 1,488 6/26/2023
1.0.39 754 6/23/2023
1.0.38 1,063 6/21/2023
1.0.37 1,391 6/15/2023
1.0.36 457 6/14/2023
1.0.35 1,727 6/9/2023
1.0.34 798 6/8/2023
1.0.33 1,568 6/7/2023
1.0.32 156 6/7/2023
1.0.31 1,186 6/6/2023
1.0.30 1,121 6/5/2023
1.0.29 1,322 6/2/2023
1.0.28 140 6/2/2023
1.0.27 1,210 6/1/2023
1.0.26 585 5/31/2023
1.0.25 469 5/31/2023
1.0.24 151 5/31/2023
1.0.23 1,440 5/30/2023
1.0.22 1,505 5/26/2023
1.0.21 659 5/25/2023
1.0.20 138 5/25/2023
1.0.19 816 5/24/2023
1.0.18 146 5/24/2023
1.0.17 432 5/23/2023
1.0.13 1,452 5/22/2023
1.0.12 1,173 5/18/2023
1.0.11 577 5/17/2023
1.0.10 1,535 5/1/2023
1.0.9 1,010 4/25/2023
1.0.8 461 4/24/2023
1.0.7 985 4/21/2023
1.0.6 1,944 4/13/2023
1.0.5 576 4/12/2023
1.0.4 1,002 4/8/2023
1.0.3 176 4/8/2023
1.0.2 574 4/8/2023
1.0.1 179 4/8/2023