Soenneker.Utils.SingletonDictionary 3.0.959

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

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

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 (9)

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.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.965 717 2/26/2025
3.0.964 526 2/26/2025
3.0.963 1,556 2/25/2025
3.0.962 67 2/25/2025
3.0.961 601 2/25/2025
3.0.960 69 2/25/2025
3.0.959 97 2/25/2025
3.0.958 1,540 2/25/2025
3.0.957 3,883 2/24/2025
3.0.956 4,134 2/23/2025
3.0.955 1,044 2/22/2025
3.0.954 70 2/22/2025
3.0.953 7,493 2/22/2025
3.0.952 2,149 2/22/2025
3.0.951 1,007 2/22/2025
3.0.950 725 2/22/2025
3.0.949 103 2/22/2025
3.0.948 87 2/22/2025
3.0.947 71 2/22/2025
3.0.946 4,573 2/21/2025
3.0.945 75 2/21/2025
3.0.944 5,434 2/21/2025
3.0.943 4,492 2/19/2025
3.0.942 1,581 2/19/2025
3.0.941 694 2/19/2025
3.0.940 81 2/19/2025
3.0.939 374 2/18/2025
3.0.938 79 2/18/2025
3.0.937 5,403 2/18/2025
3.0.936 78 2/18/2025
3.0.935 2,764 2/18/2025
3.0.934 6,340 2/16/2025
3.0.933 1,493 2/14/2025
3.0.932 778 2/14/2025
3.0.931 677 2/13/2025
3.0.930 2,343 2/13/2025
3.0.929 243 2/13/2025
3.0.928 3,622 2/13/2025
3.0.927 3,517 2/12/2025
3.0.926 1,428 2/12/2025
3.0.925 121 2/12/2025
3.0.924 74 2/12/2025
3.0.923 1,938 2/12/2025
3.0.922 309 2/12/2025
3.0.921 89 2/12/2025
3.0.920 158 2/12/2025
3.0.919 160 2/12/2025
3.0.918 83 2/12/2025
3.0.917 139 2/11/2025
3.0.916 3,343 2/11/2025
3.0.915 3,624 2/11/2025
3.0.914 2,137 2/11/2025
3.0.913 86 2/11/2025
3.0.912 368 2/11/2025
3.0.911 1,684 2/10/2025
3.0.910 88 2/10/2025
3.0.909 749 2/10/2025
3.0.908 83 2/10/2025
3.0.907 6,264 2/10/2025
3.0.906 85 2/10/2025
3.0.905 1,126 2/9/2025
3.0.904 5,554 2/9/2025
3.0.903 82 2/9/2025
3.0.902 7,059 2/8/2025
3.0.901 83 2/8/2025
3.0.900 1,643 2/7/2025
3.0.899 74 2/7/2025
3.0.898 1,540 2/7/2025
3.0.897 81 2/7/2025
3.0.896 609 2/7/2025
3.0.895 375 2/7/2025
3.0.894 87 2/7/2025
3.0.893 295 2/7/2025
3.0.892 80 2/7/2025
3.0.891 1,004 2/7/2025
3.0.890 77 2/7/2025
3.0.889 85 2/7/2025
3.0.888 10,509 2/7/2025
3.0.887 6,115 2/5/2025
3.0.886 566 2/5/2025
3.0.885 860 2/5/2025
3.0.884 257 2/5/2025
3.0.883 951 2/5/2025
3.0.882 623 2/5/2025
3.0.881 2,868 2/5/2025
3.0.880 85 2/5/2025
3.0.879 10,070 1/28/2025
3.0.878 609 1/28/2025
3.0.877 1,704 1/28/2025
3.0.876 194 1/28/2025
3.0.875 3,612 1/28/2025
3.0.874 601 1/27/2025
3.0.873 71 1/27/2025
3.0.872 154 1/27/2025
3.0.871 239 1/27/2025
3.0.870 75 1/27/2025
3.0.869 4,661 1/27/2025
3.0.868 4,324 1/26/2025
3.0.867 891 1/26/2025
3.0.866 149 1/26/2025
3.0.865 975 1/26/2025
3.0.864 1,283 1/25/2025
3.0.863 80 1/25/2025
3.0.862 5,475 1/25/2025
3.0.861 925 1/25/2025
3.0.860 270 1/25/2025
3.0.859 75 1/25/2025
3.0.858 1,754 1/25/2025
3.0.857 1,221 1/25/2025
3.0.856 6,341 1/24/2025
3.0.855 1,439 1/24/2025
3.0.854 67 1/24/2025
3.0.853 1,880 1/24/2025
3.0.852 287 1/24/2025
3.0.851 176 1/24/2025
3.0.850 2,974 1/24/2025
3.0.849 74 1/24/2025
3.0.848 455 1/23/2025
3.0.847 73 1/23/2025
3.0.846 531 1/23/2025
3.0.845 71 1/23/2025
3.0.844 7,520 1/22/2025
3.0.843 939 1/21/2025
3.0.842 919 1/21/2025
3.0.841 532 1/21/2025
3.0.840 79 1/21/2025
3.0.839 559 1/21/2025
3.0.838 686 1/21/2025
3.0.837 5,196 1/21/2025
3.0.836 505 1/21/2025
3.0.835 960 1/21/2025
3.0.834 78 1/21/2025
3.0.833 758 1/21/2025
3.0.832 72 1/21/2025
3.0.831 2,051 1/21/2025
3.0.830 69 1/21/2025
3.0.829 358 1/20/2025
3.0.828 2,658 1/20/2025
3.0.827 205 1/20/2025
3.0.826 1,937 1/20/2025
3.0.825 79 1/20/2025
3.0.824 1,020 1/20/2025
3.0.823 80 1/20/2025
3.0.822 87 1/20/2025
3.0.821 73 1/20/2025
3.0.820 324 1/20/2025
3.0.819 78 1/20/2025
3.0.818 79 1/20/2025
3.0.817 5,350 1/19/2025
3.0.816 81 1/19/2025
3.0.815 4,948 1/19/2025
3.0.814 1,517 1/19/2025
3.0.813 95 1/19/2025
3.0.812 349 1/19/2025
3.0.811 69 1/19/2025
3.0.810 1,770 1/19/2025
3.0.809 75 1/19/2025
3.0.808 3,064 1/18/2025
3.0.807 76 1/18/2025
3.0.806 6,849 1/17/2025
3.0.805 88 1/17/2025
3.0.804 554 1/17/2025
3.0.803 872 1/17/2025
3.0.802 3,969 1/16/2025
3.0.801 1,369 1/16/2025
3.0.800 1,980 1/16/2025
3.0.799 512 1/16/2025
3.0.798 1,129 1/16/2025
3.0.797 962 1/16/2025
3.0.796 68 1/16/2025
3.0.795 4,345 1/15/2025
3.0.794 71 1/15/2025
3.0.793 2,671 1/15/2025
3.0.792 71 1/15/2025
3.0.791 115 1/15/2025
3.0.790 3,149 1/15/2025
3.0.789 63 1/15/2025
3.0.788 2,635 1/15/2025
3.0.787 48 1/15/2025
3.0.786 407 1/15/2025
3.0.785 48 1/15/2025
3.0.784 1,517 1/15/2025
3.0.783 47 1/15/2025
3.0.782 187 1/14/2025
3.0.781 56 1/14/2025
3.0.780 65 1/14/2025
3.0.779 2,915 1/14/2025
3.0.778 489 1/14/2025
3.0.777 57 1/14/2025
3.0.776 1,016 1/14/2025
3.0.775 63 1/14/2025
3.0.774 4,930 1/13/2025
3.0.773 1,506 1/13/2025
3.0.772 1,269 1/13/2025
3.0.771 63 1/13/2025
3.0.770 4,806 1/11/2025
3.0.769 1,917 1/11/2025
3.0.768 88 1/11/2025
3.0.767 2,032 1/11/2025
3.0.766 78 1/11/2025
3.0.765 1,640 1/10/2025
3.0.764 1,774 1/10/2025
3.0.763 76 1/10/2025
3.0.762 732 1/10/2025
3.0.761 80 1/10/2025
3.0.760 75 1/10/2025
3.0.759 6,211 1/3/2025
3.0.758 440 1/3/2025
3.0.757 959 1/3/2025
3.0.756 108 1/3/2025
3.0.755 1,388 1/3/2025
3.0.754 89 1/3/2025
3.0.753 1,035 1/3/2025
3.0.752 995 1/2/2025
3.0.751 83 1/2/2025
3.0.750 1,679 1/2/2025
3.0.749 93 1/2/2025
3.0.748 2,801 1/2/2025
3.0.747 83 1/2/2025
3.0.746 89 1/2/2025
3.0.745 4,618 1/1/2025
3.0.744 973 1/1/2025
3.0.743 249 1/1/2025
3.0.742 96 1/1/2025
3.0.741 1,437 1/1/2025
3.0.740 91 1/1/2025
3.0.739 96 1/1/2025
3.0.738 99 1/1/2025
3.0.737 296 12/31/2024
3.0.736 94 12/31/2024
3.0.735 108 12/31/2024
3.0.734 591 12/31/2024
3.0.733 108 12/31/2024
3.0.732 4,509 12/31/2024
3.0.731 102 12/31/2024
3.0.730 4,335 12/31/2024
3.0.729 82 12/31/2024
3.0.728 2,551 12/31/2024
3.0.727 310 12/31/2024
3.0.726 84 12/31/2024
3.0.725 1,298 12/31/2024
3.0.724 84 12/31/2024
3.0.723 8,819 12/28/2024
3.0.722 1,101 12/28/2024
3.0.721 1,197 12/27/2024
3.0.720 89 12/27/2024
3.0.719 2,659 12/27/2024
3.0.718 4,863 12/24/2024
3.0.717 1,225 12/24/2024
3.0.716 918 12/24/2024
3.0.715 783 12/24/2024
3.0.714 1,359 12/24/2024
3.0.713 76 12/24/2024
3.0.712 2,223 12/24/2024
3.0.711 621 12/24/2024
3.0.710 84 12/24/2024
3.0.709 439 12/24/2024
3.0.708 953 12/24/2024
3.0.707 235 12/24/2024
3.0.706 104 12/24/2024
3.0.705 1,025 12/24/2024
3.0.704 83 12/24/2024
3.0.703 1,758 12/23/2024
3.0.702 2,725 12/23/2024
3.0.701 89 12/23/2024
3.0.700 645 12/23/2024
3.0.699 82 12/23/2024
3.0.698 1,807 12/23/2024
3.0.697 88 12/23/2024
3.0.696 1,426 12/23/2024
3.0.695 92 12/23/2024
3.0.694 416 12/22/2024
3.0.693 1,374 12/22/2024
3.0.692 3,975 12/22/2024
3.0.691 86 12/22/2024
3.0.690 1,515 12/22/2024
3.0.689 139 12/22/2024
3.0.688 451 12/22/2024
3.0.687 84 12/22/2024
3.0.686 245 12/22/2024
3.0.685 83 12/22/2024
3.0.684 6,733 12/22/2024
3.0.683 84 12/22/2024
3.0.682 1,045 12/21/2024
3.0.681 248 12/21/2024
3.0.680 90 12/21/2024
3.0.679 466 12/21/2024
3.0.678 751 12/21/2024
3.0.677 82 12/21/2024
3.0.676 3,749 12/21/2024
3.0.675 362 12/21/2024
3.0.674 82 12/21/2024
3.0.673 2,511 12/21/2024
3.0.672 660 12/21/2024
3.0.671 87 12/21/2024
3.0.670 1,559 12/20/2024
3.0.669 91 12/20/2024
3.0.668 83 12/20/2024
3.0.667 3,660 12/20/2024
3.0.666 1,117 12/20/2024
3.0.665 198 12/20/2024
3.0.664 3,425 12/19/2024
3.0.663 409 12/19/2024
3.0.662 1,994 12/18/2024
3.0.661 89 12/18/2024
3.0.660 6,537 12/17/2024
3.0.659 189 12/17/2024
3.0.658 667 12/16/2024
3.0.657 93 12/16/2024
3.0.656 123 12/16/2024
3.0.655 82 12/16/2024
3.0.654 6,451 12/10/2024
3.0.653 976 12/10/2024
3.0.652 358 12/9/2024
3.0.651 88 12/9/2024
3.0.650 2,646 12/9/2024
3.0.649 1,346 12/9/2024
3.0.648 80 12/9/2024
3.0.647 3,605 12/9/2024
3.0.646 2,706 12/6/2024
3.0.645 408 12/6/2024
3.0.644 93 12/6/2024
3.0.643 669 12/6/2024
3.0.641 3,850 12/6/2024
3.0.640 2,425 12/6/2024
3.0.639 5,256 12/6/2024
3.0.637 355 12/6/2024
3.0.636 2,500 12/5/2024
3.0.635 3,545 12/5/2024
3.0.634 3,146 12/5/2024
3.0.633 88 12/5/2024
3.0.632 1,719 12/5/2024
3.0.631 1,012 12/5/2024
3.0.630 90 12/5/2024
3.0.629 361 12/5/2024
3.0.628 85 12/5/2024
3.0.627 128 12/5/2024
3.0.626 84 12/5/2024
3.0.625 3,338 12/4/2024
3.0.624 84 12/4/2024
3.0.623 95 12/4/2024
3.0.622 91 12/4/2024
3.0.621 1,696 12/4/2024
3.0.620 278 12/4/2024
3.0.619 393 12/4/2024
3.0.618 3,340 12/3/2024
3.0.617 91 12/3/2024
3.0.616 1,107 12/3/2024
3.0.615 423 12/3/2024
3.0.614 98 12/3/2024
3.0.613 89 12/3/2024
3.0.612 4,013 12/3/2024
3.0.611 88 12/3/2024
3.0.610 3,276 12/3/2024
3.0.609 81 12/3/2024
3.0.608 3,041 12/2/2024
3.0.607 2,626 12/2/2024
3.0.606 1,603 12/2/2024
3.0.605 255 12/2/2024
3.0.604 90 12/2/2024
3.0.603 380 12/2/2024
3.0.602 3,422 12/1/2024
3.0.601 90 12/1/2024
3.0.600 1,850 12/1/2024
3.0.599 177 12/1/2024
3.0.598 3,437 12/1/2024
3.0.597 98 12/1/2024
3.0.596 3,546 11/29/2024
3.0.595 1,033 11/29/2024
3.0.594 5,154 11/21/2024
3.0.593 275 11/21/2024
3.0.592 4,488 11/20/2024
3.0.591 316 11/20/2024
3.0.590 90 11/20/2024
3.0.589 96 11/20/2024
3.0.588 402 11/20/2024
3.0.587 138 11/20/2024
3.0.586 86 11/20/2024
3.0.585 2,011 11/20/2024
3.0.584 2,742 11/19/2024
3.0.583 85 11/19/2024
3.0.582 623 11/19/2024
3.0.581 85 11/19/2024
3.0.580 2,658 11/19/2024
3.0.579 81 11/19/2024
3.0.578 1,295 11/19/2024
3.0.577 89 11/19/2024
3.0.576 8,474 11/14/2024
3.0.575 120 11/14/2024
3.0.574 493 11/14/2024
3.0.573 2,350 11/14/2024
3.0.572 702 11/14/2024
3.0.571 94 11/14/2024
3.0.570 91 11/14/2024
3.0.569 4,122 11/14/2024
3.0.568 99 11/14/2024
3.0.567 94 11/14/2024
3.0.566 3,466 11/14/2024
3.0.565 94 11/14/2024
3.0.564 90 11/14/2024
3.0.563 94 11/14/2024
2.1.562 8,053 11/13/2024
2.1.561 1,350 11/13/2024
2.1.560 3,036 11/13/2024
2.1.559 95 11/13/2024
2.1.558 1,316 11/12/2024
2.1.557 386 11/12/2024
2.1.556 8,223 11/9/2024
2.1.555 347 11/9/2024
2.1.554 91 11/9/2024
2.1.553 1,715 11/9/2024
2.1.552 92 11/9/2024
2.1.551 941 11/8/2024
2.1.550 96 11/8/2024
2.1.549 94 11/8/2024
2.1.548 94 11/8/2024
2.1.547 410 11/8/2024
2.1.546 1,870 11/8/2024
2.1.545 91 11/8/2024
2.1.544 5,435 11/8/2024
2.1.543 88 11/8/2024
2.1.542 11,573 11/1/2024
2.1.541 443 11/1/2024
2.1.540 6,755 10/29/2024
2.1.539 721 10/29/2024
2.1.538 2,820 10/29/2024
2.1.537 612 10/29/2024
2.1.536 5,532 10/28/2024
2.1.535 1,829 10/28/2024
2.1.534 3,994 10/26/2024
2.1.533 690 10/26/2024
2.1.532 8,035 10/22/2024
2.1.531 240 10/22/2024
2.1.530 535 10/22/2024
2.1.529 865 10/22/2024
2.1.528 77 10/22/2024
2.1.527 476 10/22/2024
2.1.526 6,474 10/18/2024
2.1.525 1,072 10/17/2024
2.1.524 4,133 10/15/2024
2.1.523 1,582 10/15/2024
2.1.522 87 10/14/2024
2.1.521 5,103 10/12/2024
2.1.520 636 10/11/2024
2.1.519 90 10/11/2024
2.1.518 459 10/11/2024
2.1.517 2,899 10/11/2024
2.1.516 6,339 10/9/2024
2.1.515 368 10/9/2024
2.1.514 85 10/9/2024
2.1.513 1,955 10/8/2024
2.1.512 127 10/8/2024
2.1.511 2,202 10/8/2024
2.1.510 130 10/8/2024
2.1.509 83 10/8/2024
2.1.508 3,919 10/8/2024
2.1.507 6,135 10/3/2024
2.1.506 91 10/3/2024
2.1.505 1,086 10/3/2024
2.1.504 1,906 10/3/2024
2.1.503 1,395 10/3/2024
2.1.502 5,698 10/2/2024
2.1.501 89 10/2/2024
2.1.500 1,802 10/2/2024
2.1.499 984 10/2/2024
2.1.498 4,152 10/1/2024
2.1.497 679 10/1/2024
2.1.496 94 10/1/2024
2.1.495 2,607 10/1/2024
2.1.494 90 10/1/2024
2.1.493 132 10/1/2024
2.1.492 5,362 9/29/2024
2.1.491 1,359 9/29/2024
2.1.490 91 9/29/2024
2.1.489 1,201 9/29/2024
2.1.488 88 9/29/2024
2.1.487 2,500 9/29/2024
2.1.486 5,025 9/27/2024
2.1.485 761 9/27/2024
2.1.484 3,105 9/27/2024
2.1.483 98 9/27/2024
2.1.482 428 9/27/2024
2.1.481 2,144 9/27/2024
2.1.480 3,139 9/26/2024
2.1.479 3,464 9/26/2024
2.1.478 2,339 9/26/2024
2.1.477 2,150 9/26/2024
2.1.476 3,769 9/26/2024
2.1.475 93 9/26/2024
2.1.474 5,564 9/23/2024
2.1.473 1,281 9/23/2024
2.1.472 937 9/23/2024
2.1.471 1,125 9/23/2024
2.1.470 87 9/23/2024
2.1.469 1,534 9/23/2024
2.1.468 86 9/23/2024
2.1.467 4,641 9/23/2024
2.1.466 92 9/23/2024
2.1.465 702 9/23/2024
2.1.464 101 9/23/2024
2.1.463 87 9/23/2024
2.1.462 860 9/23/2024
2.1.461 9,062 9/18/2024
2.1.460 239 9/17/2024
2.1.459 1,188 9/17/2024
2.1.458 1,697 9/17/2024
2.1.457 93 9/17/2024
2.1.456 1,786 9/17/2024
2.1.455 445 9/17/2024
2.1.454 3,252 9/17/2024
2.1.453 531 9/17/2024
2.1.452 183 9/17/2024
2.1.451 2,628 9/17/2024
2.1.450 7,435 9/16/2024
2.1.449 705 9/16/2024
2.1.448 4,978 9/12/2024
2.1.447 2,903 9/12/2024
2.1.446 1,291 9/11/2024
2.1.445 1,516 9/11/2024
2.1.443 3,700 9/11/2024
2.1.442 981 9/11/2024
2.1.441 943 9/11/2024
2.1.440 2,296 9/11/2024
2.1.439 8,059 9/10/2024
2.1.438 114 9/10/2024
2.1.437 1,135 9/10/2024
2.1.436 106 9/10/2024
2.1.434 2,894 9/10/2024
2.1.433 588 9/9/2024
2.1.432 1,989 9/9/2024
2.1.430 1,532 9/9/2024
2.1.428 130 9/9/2024
2.1.427 449 9/9/2024
2.1.426 13,214 9/7/2024
2.1.425 121 9/7/2024
2.1.424 4,976 9/6/2024
2.1.423 357 9/6/2024
2.1.422 2,193 9/6/2024
2.1.421 105 9/5/2024
2.1.420 117 9/5/2024
2.1.419 2,373 9/5/2024
2.1.418 1,128 9/5/2024
2.1.417 107 9/5/2024
2.1.416 1,129 9/5/2024
2.1.415 420 9/5/2024
2.1.414 108 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,242 9/4/2024
2.1.409 7,969 9/3/2024
2.1.408 98 9/3/2024
2.1.407 93 9/3/2024
2.1.406 3,991 9/3/2024
2.1.405 143 9/3/2024
2.1.404 2,470 9/3/2024
2.1.403 5,262 8/29/2024
2.1.402 2,535 8/29/2024
2.1.401 2,867 8/26/2024
2.1.400 99 8/26/2024
2.1.399 4,913 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 136 8/20/2024
2.1.394 124 8/20/2024
2.1.393 458 8/20/2024
2.1.392 2,943 8/20/2024
2.1.391 407 8/20/2024
2.1.390 109 8/20/2024
2.1.389 2,634 8/20/2024
2.1.388 111 8/20/2024
2.1.387 1,191 8/20/2024
2.1.386 2,883 8/19/2024
2.1.385 4,736 8/15/2024
2.1.384 2,102 8/15/2024
2.1.383 4,790 8/14/2024
2.1.382 147 8/13/2024
2.1.381 5,652 8/7/2024
2.1.380 265 8/6/2024
2.1.379 2,678 8/6/2024
2.1.378 4,907 8/1/2024
2.1.377 323 8/1/2024
2.1.376 89 8/1/2024
2.1.374 1,122 8/1/2024
2.1.373 5,772 7/25/2024
2.1.372 85 7/25/2024
2.1.371 711 7/25/2024
2.1.370 297 7/25/2024
2.1.369 348 7/25/2024
2.1.368 172 7/25/2024
2.1.367 373 7/24/2024
2.1.366 129 7/24/2024
2.1.365 197 7/24/2024
2.1.364 300 7/24/2024
2.1.363 8,173 7/20/2024
2.1.362 1,436 7/20/2024
2.1.361 4,967 7/14/2024
2.1.360 1,521 7/14/2024
2.1.359 94 7/14/2024
2.1.358 1,488 7/14/2024
2.1.357 4,294 7/10/2024
2.1.355 782 7/10/2024
2.1.354 1,169 7/10/2024
2.1.353 112 7/10/2024
2.1.352 1,892 7/10/2024
2.1.351 115 7/10/2024
2.1.350 94 7/10/2024
2.1.349 159 7/10/2024
2.1.348 98 7/10/2024
2.1.347 2,033 7/10/2024
2.1.346 113 7/10/2024
2.1.345 801 7/10/2024
2.1.344 100 7/10/2024
2.1.343 197 7/9/2024
2.1.342 90 7/9/2024
2.1.339 1,963 7/9/2024
2.1.338 476 7/9/2024
2.1.337 3,990 7/9/2024
2.1.336 1,059 7/9/2024
2.1.335 105 7/9/2024
2.1.334 2,560 7/9/2024
2.1.333 106 7/9/2024
2.1.332 6,135 7/9/2024
2.1.331 96 7/9/2024
2.1.330 2,489 7/9/2024
2.1.329 86 7/9/2024
2.1.328 1,050 7/9/2024
2.1.327 699 7/8/2024
2.1.326 949 7/8/2024
2.1.325 115 7/8/2024
2.1.324 108 7/8/2024
2.1.323 4,808 7/8/2024
2.1.322 1,601 7/8/2024
2.1.321 118 7/8/2024
2.1.320 2,263 7/7/2024
2.1.319 111 7/7/2024
2.1.318 118 7/7/2024
2.1.317 102 7/7/2024
2.1.316 1,132 7/7/2024
2.1.315 2,143 7/7/2024
2.1.314 1,838 7/7/2024
2.1.313 209 7/7/2024
2.1.312 3,362 7/5/2024
2.1.311 3,852 7/3/2024
2.1.310 3,018 7/3/2024
2.1.309 375 7/3/2024
2.1.308 3,882 7/2/2024
2.1.307 1,838 6/30/2024
2.1.306 2,225 6/28/2024
2.1.305 5,358 6/22/2024
2.1.304 4,833 6/15/2024
2.1.303 4,056 6/14/2024
2.1.302 5,860 6/1/2024
2.1.301 1,570 6/1/2024
2.1.300 571 6/1/2024
2.1.299 5,791 5/31/2024
2.1.298 3,671 5/29/2024
2.1.297 3,009 5/28/2024
2.1.296 2,433 5/27/2024
2.1.295 4,787 5/26/2024
2.1.294 1,995 5/26/2024
2.1.293 469 5/26/2024
2.1.292 2,482 5/25/2024
2.1.291 1,357 5/25/2024
2.1.290 119 5/25/2024
2.1.289 110 5/25/2024
2.1.288 666 5/25/2024
2.1.287 114 5/25/2024
2.1.286 394 5/25/2024
2.1.285 124 5/25/2024
2.1.284 111 5/25/2024
2.1.283 7,351 5/23/2024
2.1.282 515 5/23/2024
2.1.281 253 5/22/2024
2.1.280 3,593 5/22/2024
2.1.279 107 5/22/2024
2.1.278 121 5/22/2024
2.1.277 123 5/22/2024
2.1.276 2,097 5/22/2024
2.1.275 3,370 5/18/2024
2.1.274 1,875 5/18/2024
2.1.273 1,782 5/17/2024
2.1.272 100 5/17/2024
2.1.271 2,701 5/16/2024
2.1.270 418 5/15/2024
2.1.269 2,712 5/15/2024
2.1.268 4,408 5/12/2024
2.1.267 2,700 5/3/2024
2.1.266 1,119 4/30/2024
2.1.265 1,729 4/29/2024
2.1.264 1,879 4/29/2024
2.1.263 2,611 4/28/2024
2.1.262 1,453 4/28/2024
2.1.261 1,086 4/28/2024
2.1.260 1,728 4/28/2024
2.1.259 889 4/28/2024
2.1.258 105 4/28/2024
2.1.257 4,121 4/27/2024
2.1.256 117 4/27/2024
2.1.255 4,342 4/19/2024
2.1.254 4,038 4/18/2024
2.1.253 3,390 4/12/2024
2.1.252 1,129 4/12/2024
2.1.251 707 4/12/2024
2.1.250 846 4/12/2024
2.1.249 184 4/12/2024
2.1.248 102 4/12/2024
2.1.247 972 4/12/2024
2.1.246 293 4/12/2024
2.1.245 1,624 4/11/2024
2.1.244 3,681 4/10/2024
2.1.243 1,114 4/9/2024
2.1.242 3,136 4/2/2024
2.1.241 882 4/1/2024
2.1.240 2,061 3/29/2024
2.1.239 1,810 3/25/2024
2.1.238 282 3/25/2024
2.1.237 3,271 3/20/2024
2.1.236 2,119 3/19/2024
2.1.235 508 3/19/2024
2.1.234 2,307 3/18/2024
2.1.233 1,379 3/18/2024
2.1.232 1,361 3/15/2024
2.1.231 2,322 3/13/2024
2.1.230 1,077 3/13/2024
2.1.229 644 3/13/2024
2.1.228 742 3/13/2024
2.1.227 126 3/13/2024
2.1.226 527 3/13/2024
2.1.225 130 3/13/2024
2.1.224 137 3/13/2024
2.1.223 1,641 3/12/2024
2.1.222 2,807 3/11/2024
2.1.221 2,441 3/11/2024
2.1.220 1,595 3/10/2024
2.1.219 1,855 3/8/2024
2.1.218 1,034 3/8/2024
2.1.217 1,526 3/8/2024
2.1.216 2,056 3/6/2024
2.1.215 1,971 3/4/2024
2.1.214 1,396 3/4/2024
2.1.213 2,539 3/2/2024
2.1.212 1,189 3/2/2024
2.1.211 393 3/2/2024
2.1.210 337 3/2/2024
2.1.209 458 3/2/2024
2.1.208 3,391 2/29/2024
2.1.207 623 2/29/2024
2.1.206 325 2/29/2024
2.1.205 3,267 2/26/2024
2.1.204 1,468 2/25/2024
2.1.203 2,567 2/23/2024
2.1.202 1,867 2/22/2024
2.1.201 930 2/22/2024
2.1.200 411 2/21/2024
2.1.199 1,168 2/21/2024
2.1.198 277 2/21/2024
2.1.197 748 2/21/2024
2.1.196 116 2/21/2024
2.1.195 1,217 2/21/2024
2.1.194 392 2/21/2024
2.1.193 125 2/21/2024
2.1.192 124 2/21/2024
2.1.191 576 2/21/2024
2.1.190 102 2/21/2024
2.1.189 2,609 2/20/2024
2.1.188 704 2/20/2024
2.1.187 628 2/20/2024
2.1.186 738 2/20/2024
2.1.185 2,088 2/19/2024
2.1.184 1,849 2/17/2024
2.1.183 875 2/16/2024
2.1.182 844 2/16/2024
2.1.181 1,321 2/16/2024
2.1.180 113 2/16/2024
2.1.179 621 2/16/2024
2.1.178 122 2/16/2024
2.1.177 122 2/16/2024
2.1.176 536 2/16/2024
2.1.175 108 2/16/2024
2.1.174 3,262 2/13/2024
2.1.173 1,352 2/13/2024
2.1.172 1,065 2/13/2024
2.1.171 440 2/13/2024
2.1.170 612 2/13/2024
2.1.169 1,908 2/12/2024
2.1.168 498 2/11/2024
2.1.167 1,502 2/11/2024
2.1.166 837 2/11/2024
2.1.165 2,739 2/10/2024
2.1.164 533 2/9/2024
2.1.163 134 2/9/2024
2.1.162 1,532 2/9/2024
2.1.161 1,649 2/9/2024
2.1.160 376 2/8/2024
2.1.159 1,201 2/8/2024
2.1.158 836 2/8/2024
2.1.157 1,436 2/8/2024
2.1.156 119 2/8/2024
2.1.155 1,830 2/7/2024
2.1.154 429 2/7/2024
2.1.153 590 2/7/2024
2.1.152 1,245 2/7/2024
2.1.151 369 2/6/2024
2.1.150 125 2/6/2024
2.1.149 119 2/6/2024
2.1.148 2,744 2/5/2024
2.1.147 1,511 2/4/2024
2.1.146 2,066 2/2/2024
2.1.145 1,894 1/31/2024
2.1.144 2,116 1/29/2024
2.1.143 1,340 1/29/2024
2.1.142 335 1/29/2024
2.1.141 1,464 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,897 1/28/2024
2.1.136 911 1/28/2024
2.1.135 277 1/27/2024
2.1.134 916 1/27/2024
2.1.133 1,143 1/27/2024
2.1.132 1,166 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 210 1/26/2024
2.1.127 857 1/26/2024
2.1.126 1,107 1/26/2024
2.1.125 1,611 1/26/2024
2.1.124 867 1/25/2024
2.1.123 1,087 1/25/2024
2.1.122 442 1/25/2024
2.1.121 900 1/25/2024
2.1.120 509 1/25/2024
2.1.119 2,550 1/19/2024
2.1.118 2,190 1/15/2024
2.1.117 489 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,530 1/14/2024
2.1.111 1,588 1/13/2024
2.1.110 1,813 1/12/2024
2.1.109 2,030 1/11/2024
2.1.108 2,607 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 138 1/5/2024
2.1.103 1,469 1/5/2024
2.1.102 136 1/5/2024
2.1.101 2,737 1/1/2024
2.1.100 2,205 12/28/2023
2.1.99 729 12/28/2023
2.1.98 488 12/28/2023
2.1.97 128 12/28/2023
2.1.96 124 12/28/2023
2.1.95 705 12/27/2023
2.1.94 134 12/27/2023
2.1.93 460 12/27/2023
2.1.92 130 12/27/2023
2.1.91 131 12/27/2023
2.1.90 2,197 12/25/2023
2.1.89 346 12/25/2023
2.1.88 765 12/25/2023
2.1.87 134 12/25/2023
2.1.86 621 12/25/2023
2.1.85 125 12/25/2023
2.1.84 562 12/25/2023
2.1.83 131 12/25/2023
2.1.82 1,642 12/24/2023
2.1.81 1,057 12/23/2023
2.1.80 858 12/23/2023
2.1.79 306 12/23/2023
2.1.78 548 12/23/2023
2.1.77 125 12/23/2023
2.1.76 114 12/23/2023
2.1.75 1,073 12/23/2023
2.1.74 118 12/23/2023
2.1.73 1,386 12/19/2023
2.1.72 212 12/19/2023
2.1.71 3,064 12/11/2023
2.1.70 714 12/10/2023
2.1.69 114 12/10/2023
2.1.68 479 12/10/2023
2.1.67 1,405 12/10/2023
2.1.66 361 12/9/2023
2.1.65 361 12/9/2023
2.1.64 287 12/9/2023
2.1.63 126 12/9/2023
2.1.62 257 12/9/2023
2.1.61 194 12/9/2023
2.1.60 126 12/9/2023
2.1.59 1,062 12/9/2023
2.1.58 122 12/9/2023
2.1.57 1,512 12/6/2023
2.1.56 387 12/6/2023
2.1.55 240 12/6/2023
2.1.54 269 12/6/2023
2.1.53 918 12/5/2023
2.1.52 376 12/5/2023
2.1.51 341 12/5/2023
2.1.50 380 12/5/2023
2.1.49 128 12/5/2023
2.1.48 337 12/5/2023
2.1.47 273 12/5/2023
2.1.46 127 12/4/2023
2.1.45 128 12/4/2023
2.1.44 325 12/4/2023
2.1.43 141 12/4/2023
2.1.42 998 12/4/2023
2.1.41 110 12/4/2023
2.1.40 1,162 11/27/2023
2.1.39 516 11/26/2023
2.1.38 212 11/26/2023
2.1.37 623 11/23/2023
2.1.36 677 11/23/2023
2.1.35 633 11/23/2023
2.1.34 129 11/23/2023
2.1.33 396 11/23/2023
2.1.32 134 11/23/2023
2.1.31 1,072 11/20/2023
2.1.30 1,033 11/20/2023
2.1.29 791 11/19/2023
2.1.28 253 11/19/2023
2.1.27 451 11/19/2023
2.1.26 488 11/19/2023
2.1.25 487 11/19/2023
2.1.24 117 11/19/2023
2.1.23 216 11/18/2023
2.1.22 969 11/18/2023
2.1.21 376 11/18/2023
2.1.20 529 11/18/2023
2.1.19 127 11/18/2023
2.1.18 304 11/18/2023
2.1.17 125 11/18/2023
2.1.16 599 11/17/2023
2.1.15 510 11/17/2023
2.1.14 122 11/17/2023
2.1.13 419 11/17/2023
2.1.12 294 11/17/2023
2.1.11 491 11/17/2023
2.1.10 124 11/17/2023
2.1.9 505 11/17/2023
2.1.8 124 11/17/2023
2.1.7 140 11/17/2023
2.1.6 317 11/17/2023
2.1.5 368 11/16/2023
2.0.101 2,064 11/15/2023
2.0.100 118 11/15/2023
2.0.99 128 11/15/2023
2.0.4 127 11/16/2023
2.0.3 132 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 747 11/13/2023
1.0.96 114 11/13/2023
1.0.95 568 11/10/2023
1.0.94 118 11/10/2023
1.0.93 925 11/9/2023
1.0.92 124 11/9/2023
1.0.91 1,029 11/7/2023
1.0.90 115 11/7/2023
1.0.89 501 11/6/2023
1.0.88 123 11/6/2023
1.0.87 593 11/3/2023
1.0.86 129 11/3/2023
1.0.85 887 11/2/2023
1.0.84 120 11/2/2023
1.0.83 597 11/1/2023
1.0.82 1,438 10/26/2023
1.0.81 1,289 10/19/2023
1.0.80 136 10/19/2023
1.0.79 773 10/18/2023
1.0.78 154 10/18/2023
1.0.77 724 10/17/2023
1.0.76 141 10/17/2023
1.0.75 634 10/16/2023
1.0.74 147 10/16/2023
1.0.73 694 10/13/2023
1.0.72 332 10/12/2023
1.0.71 1,726 9/20/2023
1.0.70 668 9/19/2023
1.0.69 670 9/18/2023
1.0.68 136 9/18/2023
1.0.67 884 9/14/2023
1.0.66 1,495 8/31/2023
1.0.65 143 8/31/2023
1.0.64 792 8/30/2023
1.0.63 150 8/30/2023
1.0.62 153 8/30/2023
1.0.61 830 8/28/2023
1.0.60 681 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 808 8/18/2023
1.0.55 738 8/17/2023
1.0.54 147 8/17/2023
1.0.53 1,889 8/10/2023
1.0.52 556 8/9/2023
1.0.51 664 8/8/2023
1.0.50 636 8/7/2023
1.0.49 171 8/7/2023
1.0.48 2,437 7/13/2023
1.0.47 874 7/11/2023
1.0.46 712 7/10/2023
1.0.45 677 7/7/2023
1.0.44 163 7/7/2023
1.0.43 2,091 6/30/2023
1.0.42 1,046 6/29/2023
1.0.41 588 6/28/2023
1.0.40 1,494 6/26/2023
1.0.39 771 6/23/2023
1.0.38 1,069 6/21/2023
1.0.37 1,399 6/15/2023
1.0.36 466 6/14/2023
1.0.35 1,741 6/9/2023
1.0.34 814 6/8/2023
1.0.33 1,583 6/7/2023
1.0.32 165 6/7/2023
1.0.31 1,194 6/6/2023
1.0.30 1,129 6/5/2023
1.0.29 1,330 6/2/2023
1.0.28 151 6/2/2023
1.0.27 1,218 6/1/2023
1.0.26 594 5/31/2023
1.0.25 477 5/31/2023
1.0.24 160 5/31/2023
1.0.23 1,455 5/30/2023
1.0.22 1,514 5/26/2023
1.0.21 668 5/25/2023
1.0.20 146 5/25/2023
1.0.19 824 5/24/2023
1.0.18 155 5/24/2023
1.0.17 442 5/23/2023
1.0.13 1,462 5/22/2023
1.0.12 1,182 5/18/2023
1.0.11 588 5/17/2023
1.0.10 1,545 5/1/2023
1.0.9 1,019 4/25/2023
1.0.8 470 4/24/2023
1.0.7 994 4/21/2023
1.0.6 1,953 4/13/2023
1.0.5 589 4/12/2023
1.0.4 1,012 4/8/2023
1.0.3 186 4/8/2023
1.0.2 584 4/8/2023
1.0.1 188 4/8/2023