Soenneker.Utils.SingletonDictionary 3.0.761

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

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

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.  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 (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.808 49 1/18/2025
3.0.807 13 1/18/2025
3.0.806 1,382 1/17/2025
3.0.805 45 1/17/2025
3.0.804 207 1/17/2025
3.0.803 313 1/17/2025
3.0.802 1,446 1/16/2025
3.0.801 592 1/16/2025
3.0.800 693 1/16/2025
3.0.799 195 1/16/2025
3.0.798 473 1/16/2025
3.0.797 375 1/16/2025
3.0.796 51 1/16/2025
3.0.795 1,780 1/15/2025
3.0.794 56 1/15/2025
3.0.793 1,172 1/15/2025
3.0.792 51 1/15/2025
3.0.791 84 1/15/2025
3.0.790 1,411 1/15/2025
3.0.789 57 1/15/2025
3.0.788 1,358 1/15/2025
3.0.787 42 1/15/2025
3.0.786 299 1/15/2025
3.0.785 42 1/15/2025
3.0.784 828 1/15/2025
3.0.783 41 1/15/2025
3.0.782 72 1/14/2025
3.0.781 36 1/14/2025
3.0.780 38 1/14/2025
3.0.779 1,160 1/14/2025
3.0.778 140 1/14/2025
3.0.777 32 1/14/2025
3.0.776 298 1/14/2025
3.0.775 39 1/14/2025
3.0.774 2,157 1/13/2025
3.0.773 1,157 1/13/2025
3.0.772 1,135 1/13/2025
3.0.771 53 1/13/2025
3.0.770 4,425 1/11/2025
3.0.769 1,717 1/11/2025
3.0.768 67 1/11/2025
3.0.767 1,643 1/11/2025
3.0.766 60 1/11/2025
3.0.765 1,469 1/10/2025
3.0.764 1,659 1/10/2025
3.0.763 59 1/10/2025
3.0.762 673 1/10/2025
3.0.761 63 1/10/2025
3.0.760 58 1/10/2025
3.0.759 5,341 1/3/2025
3.0.758 393 1/3/2025
3.0.757 878 1/3/2025
3.0.756 83 1/3/2025
3.0.755 1,258 1/3/2025
3.0.754 64 1/3/2025
3.0.753 961 1/3/2025
3.0.752 924 1/2/2025
3.0.751 58 1/2/2025
3.0.750 1,533 1/2/2025
3.0.749 68 1/2/2025
3.0.748 2,656 1/2/2025
3.0.747 53 1/2/2025
3.0.746 64 1/2/2025
3.0.745 4,396 1/1/2025
3.0.744 964 1/1/2025
3.0.743 242 1/1/2025
3.0.742 89 1/1/2025
3.0.741 1,424 1/1/2025
3.0.740 84 1/1/2025
3.0.739 89 1/1/2025
3.0.738 92 1/1/2025
3.0.737 287 12/31/2024
3.0.736 89 12/31/2024
3.0.735 103 12/31/2024
3.0.734 584 12/31/2024
3.0.733 103 12/31/2024
3.0.732 4,457 12/31/2024
3.0.731 96 12/31/2024
3.0.730 4,278 12/31/2024
3.0.729 76 12/31/2024
3.0.728 2,545 12/31/2024
3.0.727 304 12/31/2024
3.0.726 78 12/31/2024
3.0.725 1,291 12/31/2024
3.0.724 78 12/31/2024
3.0.723 8,788 12/28/2024
3.0.722 1,096 12/28/2024
3.0.721 1,192 12/27/2024
3.0.720 84 12/27/2024
3.0.719 2,654 12/27/2024
3.0.718 4,856 12/24/2024
3.0.717 1,220 12/24/2024
3.0.716 912 12/24/2024
3.0.715 778 12/24/2024
3.0.714 1,353 12/24/2024
3.0.713 69 12/24/2024
3.0.712 2,217 12/24/2024
3.0.711 616 12/24/2024
3.0.710 78 12/24/2024
3.0.709 433 12/24/2024
3.0.708 947 12/24/2024
3.0.707 229 12/24/2024
3.0.706 99 12/24/2024
3.0.705 1,020 12/24/2024
3.0.704 79 12/24/2024
3.0.703 1,754 12/23/2024
3.0.702 2,721 12/23/2024
3.0.701 85 12/23/2024
3.0.700 641 12/23/2024
3.0.699 77 12/23/2024
3.0.698 1,798 12/23/2024
3.0.697 83 12/23/2024
3.0.696 1,422 12/23/2024
3.0.695 86 12/23/2024
3.0.694 412 12/22/2024
3.0.693 1,369 12/22/2024
3.0.692 3,970 12/22/2024
3.0.691 82 12/22/2024
3.0.690 1,511 12/22/2024
3.0.689 135 12/22/2024
3.0.688 446 12/22/2024
3.0.687 80 12/22/2024
3.0.686 241 12/22/2024
3.0.685 79 12/22/2024
3.0.684 6,726 12/22/2024
3.0.683 79 12/22/2024
3.0.682 1,040 12/21/2024
3.0.681 237 12/21/2024
3.0.680 85 12/21/2024
3.0.679 461 12/21/2024
3.0.678 747 12/21/2024
3.0.677 78 12/21/2024
3.0.676 3,742 12/21/2024
3.0.675 357 12/21/2024
3.0.674 77 12/21/2024
3.0.673 2,506 12/21/2024
3.0.672 653 12/21/2024
3.0.671 81 12/21/2024
3.0.670 1,554 12/20/2024
3.0.669 86 12/20/2024
3.0.668 79 12/20/2024
3.0.667 3,647 12/20/2024
3.0.666 1,113 12/20/2024
3.0.665 193 12/20/2024
3.0.664 3,421 12/19/2024
3.0.663 404 12/19/2024
3.0.662 1,990 12/18/2024
3.0.661 85 12/18/2024
3.0.660 6,526 12/17/2024
3.0.659 183 12/17/2024
3.0.658 662 12/16/2024
3.0.657 88 12/16/2024
3.0.656 119 12/16/2024
3.0.655 77 12/16/2024
3.0.654 6,442 12/10/2024
3.0.653 971 12/10/2024
3.0.652 353 12/9/2024
3.0.651 83 12/9/2024
3.0.650 2,642 12/9/2024
3.0.649 1,341 12/9/2024
3.0.648 75 12/9/2024
3.0.647 3,602 12/9/2024
3.0.646 2,701 12/6/2024
3.0.645 404 12/6/2024
3.0.644 88 12/6/2024
3.0.643 660 12/6/2024
3.0.641 3,838 12/6/2024
3.0.640 2,420 12/6/2024
3.0.639 5,248 12/6/2024
3.0.637 343 12/6/2024
3.0.636 2,493 12/5/2024
3.0.635 3,541 12/5/2024
3.0.634 3,141 12/5/2024
3.0.633 81 12/5/2024
3.0.632 1,712 12/5/2024
3.0.631 1,007 12/5/2024
3.0.630 85 12/5/2024
3.0.629 356 12/5/2024
3.0.628 81 12/5/2024
3.0.627 123 12/5/2024
3.0.626 79 12/5/2024
3.0.625 3,334 12/4/2024
3.0.624 79 12/4/2024
3.0.623 90 12/4/2024
3.0.622 85 12/4/2024
3.0.621 1,691 12/4/2024
3.0.620 274 12/4/2024
3.0.619 385 12/4/2024
3.0.618 3,329 12/3/2024
3.0.617 87 12/3/2024
3.0.616 1,099 12/3/2024
3.0.615 418 12/3/2024
3.0.614 93 12/3/2024
3.0.613 84 12/3/2024
3.0.612 3,992 12/3/2024
3.0.611 84 12/3/2024
3.0.610 3,271 12/3/2024
3.0.609 77 12/3/2024
3.0.608 3,032 12/2/2024
3.0.607 2,621 12/2/2024
3.0.606 1,598 12/2/2024
3.0.605 250 12/2/2024
3.0.604 86 12/2/2024
3.0.603 375 12/2/2024
3.0.602 3,417 12/1/2024
3.0.601 86 12/1/2024
3.0.600 1,840 12/1/2024
3.0.599 173 12/1/2024
3.0.598 3,428 12/1/2024
3.0.597 91 12/1/2024
3.0.596 3,539 11/29/2024
3.0.595 1,027 11/29/2024
3.0.594 4,596 11/21/2024
3.0.593 271 11/21/2024
3.0.592 4,467 11/20/2024
3.0.591 311 11/20/2024
3.0.590 86 11/20/2024
3.0.589 91 11/20/2024
3.0.588 397 11/20/2024
3.0.587 133 11/20/2024
3.0.586 81 11/20/2024
3.0.585 2,006 11/20/2024
3.0.584 2,727 11/19/2024
3.0.583 80 11/19/2024
3.0.582 616 11/19/2024
3.0.581 80 11/19/2024
3.0.580 2,653 11/19/2024
3.0.579 75 11/19/2024
3.0.578 1,288 11/19/2024
3.0.577 82 11/19/2024
3.0.576 8,470 11/14/2024
3.0.575 116 11/14/2024
3.0.574 488 11/14/2024
3.0.573 2,343 11/14/2024
3.0.572 695 11/14/2024
3.0.571 89 11/14/2024
3.0.570 86 11/14/2024
3.0.569 4,111 11/14/2024
3.0.568 94 11/14/2024
3.0.567 90 11/14/2024
3.0.566 3,461 11/14/2024
3.0.565 90 11/14/2024
3.0.564 86 11/14/2024
3.0.563 90 11/14/2024
2.1.562 7,800 11/13/2024
2.1.561 1,332 11/13/2024
2.1.560 3,026 11/13/2024
2.1.559 91 11/13/2024
2.1.558 1,311 11/12/2024
2.1.557 381 11/12/2024
2.1.556 8,212 11/9/2024
2.1.555 343 11/9/2024
2.1.554 86 11/9/2024
2.1.553 1,708 11/9/2024
2.1.552 86 11/9/2024
2.1.551 931 11/8/2024
2.1.550 91 11/8/2024
2.1.549 90 11/8/2024
2.1.548 88 11/8/2024
2.1.547 404 11/8/2024
2.1.546 1,862 11/8/2024
2.1.545 87 11/8/2024
2.1.544 5,430 11/8/2024
2.1.543 83 11/8/2024
2.1.542 11,538 11/1/2024
2.1.541 436 11/1/2024
2.1.540 6,744 10/29/2024
2.1.539 711 10/29/2024
2.1.538 2,815 10/29/2024
2.1.537 607 10/29/2024
2.1.536 5,524 10/28/2024
2.1.535 1,822 10/28/2024
2.1.534 3,988 10/26/2024
2.1.533 685 10/26/2024
2.1.532 7,433 10/22/2024
2.1.531 236 10/22/2024
2.1.530 531 10/22/2024
2.1.529 860 10/22/2024
2.1.528 71 10/22/2024
2.1.527 463 10/22/2024
2.1.526 6,466 10/18/2024
2.1.525 1,069 10/17/2024
2.1.524 4,124 10/15/2024
2.1.523 1,579 10/15/2024
2.1.522 85 10/14/2024
2.1.521 5,098 10/12/2024
2.1.520 633 10/11/2024
2.1.519 87 10/11/2024
2.1.518 457 10/11/2024
2.1.517 2,897 10/11/2024
2.1.516 6,314 10/9/2024
2.1.515 365 10/9/2024
2.1.514 83 10/9/2024
2.1.513 1,946 10/8/2024
2.1.512 123 10/8/2024
2.1.511 2,199 10/8/2024
2.1.510 128 10/8/2024
2.1.509 80 10/8/2024
2.1.508 3,910 10/8/2024
2.1.507 6,121 10/3/2024
2.1.506 89 10/3/2024
2.1.505 1,084 10/3/2024
2.1.504 1,898 10/3/2024
2.1.503 1,385 10/3/2024
2.1.502 5,696 10/2/2024
2.1.501 87 10/2/2024
2.1.500 1,794 10/2/2024
2.1.499 982 10/2/2024
2.1.498 4,150 10/1/2024
2.1.497 674 10/1/2024
2.1.496 89 10/1/2024
2.1.495 2,600 10/1/2024
2.1.494 88 10/1/2024
2.1.493 129 10/1/2024
2.1.492 5,317 9/29/2024
2.1.491 1,357 9/29/2024
2.1.490 89 9/29/2024
2.1.489 1,198 9/29/2024
2.1.488 84 9/29/2024
2.1.487 2,497 9/29/2024
2.1.486 4,983 9/27/2024
2.1.485 759 9/27/2024
2.1.484 3,102 9/27/2024
2.1.483 96 9/27/2024
2.1.482 426 9/27/2024
2.1.481 2,141 9/27/2024
2.1.480 3,134 9/26/2024
2.1.479 3,450 9/26/2024
2.1.478 2,332 9/26/2024
2.1.477 2,138 9/26/2024
2.1.476 3,766 9/26/2024
2.1.475 91 9/26/2024
2.1.474 5,518 9/23/2024
2.1.473 1,279 9/23/2024
2.1.472 934 9/23/2024
2.1.471 1,116 9/23/2024
2.1.470 84 9/23/2024
2.1.469 1,526 9/23/2024
2.1.468 84 9/23/2024
2.1.467 4,624 9/23/2024
2.1.466 90 9/23/2024
2.1.465 699 9/23/2024
2.1.464 96 9/23/2024
2.1.463 85 9/23/2024
2.1.462 858 9/23/2024
2.1.461 9,037 9/18/2024
2.1.460 236 9/17/2024
2.1.459 1,184 9/17/2024
2.1.458 1,689 9/17/2024
2.1.457 91 9/17/2024
2.1.456 1,779 9/17/2024
2.1.455 442 9/17/2024
2.1.454 3,238 9/17/2024
2.1.453 518 9/17/2024
2.1.452 180 9/17/2024
2.1.451 2,623 9/17/2024
2.1.450 7,421 9/16/2024
2.1.449 699 9/16/2024
2.1.448 4,941 9/12/2024
2.1.447 2,898 9/12/2024
2.1.446 1,290 9/11/2024
2.1.445 1,515 9/11/2024
2.1.443 3,699 9/11/2024
2.1.442 975 9/11/2024
2.1.441 942 9/11/2024
2.1.440 2,285 9/11/2024
2.1.439 8,048 9/10/2024
2.1.438 113 9/10/2024
2.1.437 1,133 9/10/2024
2.1.436 105 9/10/2024
2.1.434 2,893 9/10/2024
2.1.433 586 9/9/2024
2.1.432 1,982 9/9/2024
2.1.430 1,526 9/9/2024
2.1.428 129 9/9/2024
2.1.427 448 9/9/2024
2.1.426 13,209 9/7/2024
2.1.425 121 9/7/2024
2.1.424 4,964 9/6/2024
2.1.423 352 9/6/2024
2.1.422 2,186 9/6/2024
2.1.421 105 9/5/2024
2.1.420 114 9/5/2024
2.1.419 2,364 9/5/2024
2.1.418 1,127 9/5/2024
2.1.417 107 9/5/2024
2.1.416 1,128 9/5/2024
2.1.415 417 9/5/2024
2.1.414 107 9/5/2024
2.1.413 5,007 9/5/2024
2.1.412 185 9/5/2024
2.1.411 111 9/5/2024
2.1.410 2,236 9/4/2024
2.1.409 7,954 9/3/2024
2.1.408 98 9/3/2024
2.1.407 92 9/3/2024
2.1.406 3,979 9/3/2024
2.1.405 142 9/3/2024
2.1.404 2,457 9/3/2024
2.1.403 5,245 8/29/2024
2.1.402 2,523 8/29/2024
2.1.401 2,855 8/26/2024
2.1.400 98 8/26/2024
2.1.399 4,905 8/21/2024
2.1.398 600 8/21/2024
2.1.397 122 8/21/2024
2.1.396 2,536 8/21/2024
2.1.395 134 8/20/2024
2.1.394 123 8/20/2024
2.1.393 457 8/20/2024
2.1.392 2,941 8/20/2024
2.1.391 406 8/20/2024
2.1.390 108 8/20/2024
2.1.389 2,628 8/20/2024
2.1.388 110 8/20/2024
2.1.387 1,190 8/20/2024
2.1.386 2,869 8/19/2024
2.1.385 4,735 8/15/2024
2.1.384 2,091 8/15/2024
2.1.383 4,778 8/14/2024
2.1.382 146 8/13/2024
2.1.381 5,627 8/7/2024
2.1.380 264 8/6/2024
2.1.379 2,667 8/6/2024
2.1.378 4,897 8/1/2024
2.1.377 317 8/1/2024
2.1.376 89 8/1/2024
2.1.374 1,121 8/1/2024
2.1.373 5,765 7/25/2024
2.1.372 84 7/25/2024
2.1.371 711 7/25/2024
2.1.370 296 7/25/2024
2.1.369 347 7/25/2024
2.1.368 172 7/25/2024
2.1.367 372 7/24/2024
2.1.366 129 7/24/2024
2.1.365 196 7/24/2024
2.1.364 299 7/24/2024
2.1.363 7,948 7/20/2024
2.1.362 1,436 7/20/2024
2.1.361 4,952 7/14/2024
2.1.360 1,518 7/14/2024
2.1.359 94 7/14/2024
2.1.358 1,487 7/14/2024
2.1.357 4,270 7/10/2024
2.1.355 776 7/10/2024
2.1.354 1,168 7/10/2024
2.1.353 111 7/10/2024
2.1.352 1,891 7/10/2024
2.1.351 112 7/10/2024
2.1.350 92 7/10/2024
2.1.349 157 7/10/2024
2.1.348 95 7/10/2024
2.1.347 2,025 7/10/2024
2.1.346 111 7/10/2024
2.1.345 801 7/10/2024
2.1.344 99 7/10/2024
2.1.343 197 7/9/2024
2.1.342 89 7/9/2024
2.1.339 1,945 7/9/2024
2.1.338 476 7/9/2024
2.1.337 3,984 7/9/2024
2.1.336 1,058 7/9/2024
2.1.335 102 7/9/2024
2.1.334 2,554 7/9/2024
2.1.333 106 7/9/2024
2.1.332 4,669 7/9/2024
2.1.331 95 7/9/2024
2.1.330 2,487 7/9/2024
2.1.329 83 7/9/2024
2.1.328 1,049 7/9/2024
2.1.327 698 7/8/2024
2.1.326 948 7/8/2024
2.1.325 112 7/8/2024
2.1.324 108 7/8/2024
2.1.323 4,807 7/8/2024
2.1.322 1,597 7/8/2024
2.1.321 114 7/8/2024
2.1.320 2,259 7/7/2024
2.1.319 107 7/7/2024
2.1.318 117 7/7/2024
2.1.317 98 7/7/2024
2.1.316 1,118 7/7/2024
2.1.315 2,135 7/7/2024
2.1.314 1,829 7/7/2024
2.1.313 201 7/7/2024
2.1.312 3,337 7/5/2024
2.1.311 3,838 7/3/2024
2.1.310 3,007 7/3/2024
2.1.309 368 7/3/2024
2.1.308 3,859 7/2/2024
2.1.307 1,822 6/30/2024
2.1.306 2,219 6/28/2024
2.1.305 5,353 6/22/2024
2.1.304 4,827 6/15/2024
2.1.303 4,050 6/14/2024
2.1.302 5,828 6/1/2024
2.1.301 1,554 6/1/2024
2.1.300 570 6/1/2024
2.1.299 5,776 5/31/2024
2.1.298 3,661 5/29/2024
2.1.297 2,990 5/28/2024
2.1.296 2,425 5/27/2024
2.1.295 4,779 5/26/2024
2.1.294 1,993 5/26/2024
2.1.293 468 5/26/2024
2.1.292 2,480 5/25/2024
2.1.291 1,349 5/25/2024
2.1.290 117 5/25/2024
2.1.289 110 5/25/2024
2.1.288 661 5/25/2024
2.1.287 111 5/25/2024
2.1.286 391 5/25/2024
2.1.285 121 5/25/2024
2.1.284 111 5/25/2024
2.1.283 7,343 5/23/2024
2.1.282 514 5/23/2024
2.1.281 251 5/22/2024
2.1.280 3,591 5/22/2024
2.1.279 105 5/22/2024
2.1.278 118 5/22/2024
2.1.277 120 5/22/2024
2.1.276 2,092 5/22/2024
2.1.275 3,363 5/18/2024
2.1.274 1,873 5/18/2024
2.1.273 1,781 5/17/2024
2.1.272 100 5/17/2024
2.1.271 2,695 5/16/2024
2.1.270 416 5/15/2024
2.1.269 2,702 5/15/2024
2.1.268 4,401 5/12/2024
2.1.267 2,699 5/3/2024
2.1.266 1,118 4/30/2024
2.1.265 1,728 4/29/2024
2.1.264 1,867 4/29/2024
2.1.263 2,608 4/28/2024
2.1.262 1,444 4/28/2024
2.1.261 1,072 4/28/2024
2.1.260 1,728 4/28/2024
2.1.259 880 4/28/2024
2.1.258 102 4/28/2024
2.1.257 4,108 4/27/2024
2.1.256 115 4/27/2024
2.1.255 4,339 4/19/2024
2.1.254 4,024 4/18/2024
2.1.253 3,385 4/12/2024
2.1.252 1,121 4/12/2024
2.1.251 707 4/12/2024
2.1.250 838 4/12/2024
2.1.249 181 4/12/2024
2.1.248 98 4/12/2024
2.1.247 970 4/12/2024
2.1.246 289 4/12/2024
2.1.245 1,622 4/11/2024
2.1.244 3,657 4/10/2024
2.1.243 1,098 4/9/2024
2.1.242 3,113 4/2/2024
2.1.241 881 4/1/2024
2.1.240 2,048 3/29/2024
2.1.239 1,792 3/25/2024
2.1.238 280 3/25/2024
2.1.237 3,270 3/20/2024
2.1.236 2,117 3/19/2024
2.1.235 504 3/19/2024
2.1.234 2,296 3/18/2024
2.1.233 1,372 3/18/2024
2.1.232 1,359 3/15/2024
2.1.231 2,311 3/13/2024
2.1.230 1,070 3/13/2024
2.1.229 637 3/13/2024
2.1.228 738 3/13/2024
2.1.227 122 3/13/2024
2.1.226 525 3/13/2024
2.1.225 127 3/13/2024
2.1.224 135 3/13/2024
2.1.223 1,629 3/12/2024
2.1.222 2,799 3/11/2024
2.1.221 2,419 3/11/2024
2.1.220 1,588 3/10/2024
2.1.219 1,848 3/8/2024
2.1.218 1,032 3/8/2024
2.1.217 1,525 3/8/2024
2.1.216 2,052 3/6/2024
2.1.215 1,969 3/4/2024
2.1.214 1,384 3/4/2024
2.1.213 2,527 3/2/2024
2.1.212 1,187 3/2/2024
2.1.211 389 3/2/2024
2.1.210 335 3/2/2024
2.1.209 456 3/2/2024
2.1.208 3,379 2/29/2024
2.1.207 622 2/29/2024
2.1.206 323 2/29/2024
2.1.205 3,264 2/26/2024
2.1.204 1,465 2/25/2024
2.1.203 2,559 2/23/2024
2.1.202 1,866 2/22/2024
2.1.201 924 2/22/2024
2.1.200 403 2/21/2024
2.1.199 1,167 2/21/2024
2.1.198 274 2/21/2024
2.1.197 741 2/21/2024
2.1.196 115 2/21/2024
2.1.195 1,209 2/21/2024
2.1.194 390 2/21/2024
2.1.193 123 2/21/2024
2.1.192 120 2/21/2024
2.1.191 575 2/21/2024
2.1.190 100 2/21/2024
2.1.189 2,598 2/20/2024
2.1.188 688 2/20/2024
2.1.187 620 2/20/2024
2.1.186 728 2/20/2024
2.1.185 2,068 2/19/2024
2.1.184 1,842 2/17/2024
2.1.183 867 2/16/2024
2.1.182 837 2/16/2024
2.1.181 1,310 2/16/2024
2.1.180 111 2/16/2024
2.1.179 616 2/16/2024
2.1.178 120 2/16/2024
2.1.177 121 2/16/2024
2.1.176 529 2/16/2024
2.1.175 105 2/16/2024
2.1.174 3,256 2/13/2024
2.1.173 1,346 2/13/2024
2.1.172 1,063 2/13/2024
2.1.171 440 2/13/2024
2.1.170 609 2/13/2024
2.1.169 1,908 2/12/2024
2.1.168 497 2/11/2024
2.1.167 1,501 2/11/2024
2.1.166 836 2/11/2024
2.1.165 2,716 2/10/2024
2.1.164 530 2/9/2024
2.1.163 130 2/9/2024
2.1.162 1,530 2/9/2024
2.1.161 1,641 2/9/2024
2.1.160 374 2/8/2024
2.1.159 1,200 2/8/2024
2.1.158 822 2/8/2024
2.1.157 1,418 2/8/2024
2.1.156 115 2/8/2024
2.1.155 1,829 2/7/2024
2.1.154 428 2/7/2024
2.1.153 584 2/7/2024
2.1.152 1,244 2/7/2024
2.1.151 367 2/6/2024
2.1.150 125 2/6/2024
2.1.149 118 2/6/2024
2.1.148 2,720 2/5/2024
2.1.147 1,506 2/4/2024
2.1.146 2,057 2/2/2024
2.1.145 1,889 1/31/2024
2.1.144 2,109 1/29/2024
2.1.143 1,334 1/29/2024
2.1.142 335 1/29/2024
2.1.141 1,457 1/28/2024
2.1.140 440 1/28/2024
2.1.139 294 1/28/2024
2.1.138 528 1/28/2024
2.1.137 1,895 1/28/2024
2.1.136 911 1/28/2024
2.1.135 276 1/27/2024
2.1.134 900 1/27/2024
2.1.133 1,142 1/27/2024
2.1.132 1,159 1/27/2024
2.1.131 144 1/27/2024
2.1.130 684 1/27/2024
2.1.129 1,037 1/26/2024
2.1.128 209 1/26/2024
2.1.127 857 1/26/2024
2.1.126 1,106 1/26/2024
2.1.125 1,610 1/26/2024
2.1.124 866 1/25/2024
2.1.123 1,081 1/25/2024
2.1.122 442 1/25/2024
2.1.121 897 1/25/2024
2.1.120 506 1/25/2024
2.1.119 2,549 1/19/2024
2.1.118 2,189 1/15/2024
2.1.117 488 1/15/2024
2.1.116 1,196 1/15/2024
2.1.115 121 1/15/2024
2.1.114 551 1/15/2024
2.1.113 1,359 1/15/2024
2.1.112 2,520 1/14/2024
2.1.111 1,582 1/13/2024
2.1.110 1,813 1/12/2024
2.1.109 2,020 1/11/2024
2.1.108 2,603 1/7/2024
2.1.107 2,074 1/5/2024
2.1.106 475 1/5/2024
2.1.105 130 1/5/2024
2.1.104 137 1/5/2024
2.1.103 1,464 1/5/2024
2.1.102 135 1/5/2024
2.1.101 2,732 1/1/2024
2.1.100 2,192 12/28/2023
2.1.99 728 12/28/2023
2.1.98 486 12/28/2023
2.1.97 127 12/28/2023
2.1.96 124 12/28/2023
2.1.95 704 12/27/2023
2.1.94 134 12/27/2023
2.1.93 458 12/27/2023
2.1.92 130 12/27/2023
2.1.91 130 12/27/2023
2.1.90 2,196 12/25/2023
2.1.89 346 12/25/2023
2.1.88 764 12/25/2023
2.1.87 133 12/25/2023
2.1.86 616 12/25/2023
2.1.85 124 12/25/2023
2.1.84 559 12/25/2023
2.1.83 128 12/25/2023
2.1.82 1,625 12/24/2023
2.1.81 1,056 12/23/2023
2.1.80 852 12/23/2023
2.1.79 305 12/23/2023
2.1.78 534 12/23/2023
2.1.77 122 12/23/2023
2.1.76 114 12/23/2023
2.1.75 1,072 12/23/2023
2.1.74 115 12/23/2023
2.1.73 1,381 12/19/2023
2.1.72 211 12/19/2023
2.1.71 3,050 12/11/2023
2.1.70 714 12/10/2023
2.1.69 113 12/10/2023
2.1.68 479 12/10/2023
2.1.67 1,394 12/10/2023
2.1.66 361 12/9/2023
2.1.65 355 12/9/2023
2.1.64 286 12/9/2023
2.1.63 125 12/9/2023
2.1.62 256 12/9/2023
2.1.61 193 12/9/2023
2.1.60 124 12/9/2023
2.1.59 1,061 12/9/2023
2.1.58 120 12/9/2023
2.1.57 1,489 12/6/2023
2.1.56 386 12/6/2023
2.1.55 240 12/6/2023
2.1.54 266 12/6/2023
2.1.53 917 12/5/2023
2.1.52 375 12/5/2023
2.1.51 340 12/5/2023
2.1.50 379 12/5/2023
2.1.49 127 12/5/2023
2.1.48 337 12/5/2023
2.1.47 272 12/5/2023
2.1.46 127 12/4/2023
2.1.45 128 12/4/2023
2.1.44 324 12/4/2023
2.1.43 140 12/4/2023
2.1.42 993 12/4/2023
2.1.41 110 12/4/2023
2.1.40 1,159 11/27/2023
2.1.39 509 11/26/2023
2.1.38 212 11/26/2023
2.1.37 622 11/23/2023
2.1.36 677 11/23/2023
2.1.35 628 11/23/2023
2.1.34 128 11/23/2023
2.1.33 389 11/23/2023
2.1.32 134 11/23/2023
2.1.31 1,066 11/20/2023
2.1.30 1,033 11/20/2023
2.1.29 786 11/19/2023
2.1.28 253 11/19/2023
2.1.27 451 11/19/2023
2.1.26 487 11/19/2023
2.1.25 486 11/19/2023
2.1.24 117 11/19/2023
2.1.23 215 11/18/2023
2.1.22 969 11/18/2023
2.1.21 371 11/18/2023
2.1.20 528 11/18/2023
2.1.19 127 11/18/2023
2.1.18 301 11/18/2023
2.1.17 122 11/18/2023
2.1.16 586 11/17/2023
2.1.15 510 11/17/2023
2.1.14 121 11/17/2023
2.1.13 416 11/17/2023
2.1.12 293 11/17/2023
2.1.11 485 11/17/2023
2.1.10 123 11/17/2023
2.1.9 505 11/17/2023
2.1.8 123 11/17/2023
2.1.7 138 11/17/2023
2.1.6 317 11/17/2023
2.1.5 367 11/16/2023
2.0.101 2,058 11/15/2023
2.0.100 118 11/15/2023
2.0.99 127 11/15/2023
2.0.4 126 11/16/2023
2.0.3 130 11/16/2023
2.0.2 123 11/16/2023
2.0.1 119 11/16/2023
1.0.98 606 11/14/2023
1.0.97 745 11/13/2023
1.0.96 114 11/13/2023
1.0.95 565 11/10/2023
1.0.94 117 11/10/2023
1.0.93 917 11/9/2023
1.0.92 123 11/9/2023
1.0.91 1,020 11/7/2023
1.0.90 113 11/7/2023
1.0.89 500 11/6/2023
1.0.88 123 11/6/2023
1.0.87 591 11/3/2023
1.0.86 129 11/3/2023
1.0.85 878 11/2/2023
1.0.84 120 11/2/2023
1.0.83 596 11/1/2023
1.0.82 1,437 10/26/2023
1.0.81 1,286 10/19/2023
1.0.80 136 10/19/2023
1.0.79 772 10/18/2023
1.0.78 154 10/18/2023
1.0.77 723 10/17/2023
1.0.76 141 10/17/2023
1.0.75 631 10/16/2023
1.0.74 146 10/16/2023
1.0.73 693 10/13/2023
1.0.72 331 10/12/2023
1.0.71 1,718 9/20/2023
1.0.70 668 9/19/2023
1.0.69 669 9/18/2023
1.0.68 134 9/18/2023
1.0.67 883 9/14/2023
1.0.66 1,495 8/31/2023
1.0.65 142 8/31/2023
1.0.64 783 8/30/2023
1.0.63 150 8/30/2023
1.0.62 151 8/30/2023
1.0.61 830 8/28/2023
1.0.60 676 8/25/2023
1.0.59 143 8/25/2023
1.0.58 475 8/24/2023
1.0.57 1,434 8/21/2023
1.0.56 786 8/18/2023
1.0.55 737 8/17/2023
1.0.54 146 8/17/2023
1.0.53 1,888 8/10/2023
1.0.52 555 8/9/2023
1.0.51 663 8/8/2023
1.0.50 635 8/7/2023
1.0.49 170 8/7/2023
1.0.48 2,429 7/13/2023
1.0.47 867 7/11/2023
1.0.46 712 7/10/2023
1.0.45 676 7/7/2023
1.0.44 162 7/7/2023
1.0.43 2,090 6/30/2023
1.0.42 1,045 6/29/2023
1.0.41 587 6/28/2023
1.0.40 1,493 6/26/2023
1.0.39 769 6/23/2023
1.0.38 1,068 6/21/2023
1.0.37 1,396 6/15/2023
1.0.36 464 6/14/2023
1.0.35 1,732 6/9/2023
1.0.34 803 6/8/2023
1.0.33 1,573 6/7/2023
1.0.32 161 6/7/2023
1.0.31 1,191 6/6/2023
1.0.30 1,126 6/5/2023
1.0.29 1,327 6/2/2023
1.0.28 147 6/2/2023
1.0.27 1,215 6/1/2023
1.0.26 590 5/31/2023
1.0.25 474 5/31/2023
1.0.24 156 5/31/2023
1.0.23 1,445 5/30/2023
1.0.22 1,510 5/26/2023
1.0.21 664 5/25/2023
1.0.20 143 5/25/2023
1.0.19 821 5/24/2023
1.0.18 151 5/24/2023
1.0.17 438 5/23/2023
1.0.13 1,458 5/22/2023
1.0.12 1,179 5/18/2023
1.0.11 583 5/17/2023
1.0.10 1,540 5/1/2023
1.0.9 1,015 4/25/2023
1.0.8 466 4/24/2023
1.0.7 989 4/21/2023
1.0.6 1,949 4/13/2023
1.0.5 584 4/12/2023
1.0.4 1,007 4/8/2023
1.0.3 181 4/8/2023
1.0.2 579 4/8/2023
1.0.1 184 4/8/2023