Soenneker.Utils.SingletonDictionary 1.0.80

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 1.0.80
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 1.0.80
                    
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="1.0.80" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.SingletonDictionary" Version="1.0.80" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Utils.SingletonDictionary" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Utils.SingletonDictionary --version 1.0.80
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 1.0.80"
                    
#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.
#:package Soenneker.Utils.SingletonDictionary@1.0.80
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Utils.SingletonDictionary&version=1.0.80
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=1.0.80
                    
Install as a Cake Tool

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

Install-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 net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

Soenneker.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

Soenneker.Utils.RateLimiting.Factory

An async thread-safe singleton dictionary for Soenneker.Utils.RateLimiting.Executors, designed to manage the rate at which tasks are executed.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1108 14,254 9/30/2025
3.0.1107 44,078 9/9/2025
3.0.1106 26,967 9/3/2025
3.0.1105 414 9/3/2025
3.0.1104 2,644 9/3/2025
3.0.1103 35,448 8/14/2025
3.0.1102 9,078 8/11/2025
3.0.1101 3,654 8/11/2025
3.0.1100 904 8/11/2025
3.0.1099 159 8/11/2025
3.0.1098 27,069 8/6/2025
3.0.1097 5,834 8/5/2025
3.0.1096 34,322 7/9/2025
3.0.1095 35,036 6/28/2025
3.0.1094 2,040 6/28/2025
3.0.1093 2,848 6/27/2025
3.0.1092 3,661 6/27/2025
3.0.1091 38,500 6/10/2025
3.0.1090 26,620 5/27/2025
3.0.1089 1,455 5/27/2025
3.0.1088 1,498 5/27/2025
3.0.1087 3,681 5/27/2025
3.0.1086 22,295 5/23/2025
3.0.1085 1,976 5/23/2025
3.0.1084 1,973 5/23/2025
3.0.1083 1,881 5/23/2025
3.0.1082 359 5/22/2025
3.0.1081 15,346 5/18/2025
3.0.1079 2,343 5/18/2025
3.0.1078 2,283 5/18/2025
3.0.1077 6,550 5/14/2025
3.0.1076 14,232 5/8/2025
3.0.1075 426 5/8/2025
3.0.1074 909 5/8/2025
3.0.1073 1,698 5/7/2025
3.0.1072 19,854 5/5/2025
3.0.1071 1,324 5/5/2025
3.0.1070 2,468 5/5/2025
3.0.1069 1,129 5/5/2025
3.0.1068 308 5/5/2025
3.0.1067 204 5/5/2025
3.0.1066 27,983 4/9/2025
3.0.1065 379 4/9/2025
3.0.1064 1,651 4/8/2025
3.0.1063 3,526 4/8/2025
3.0.1062 4,738 4/8/2025
3.0.1061 266 4/8/2025
3.0.1060 228 4/8/2025
3.0.1059 256 4/8/2025
3.0.1058 211 4/8/2025
3.0.1057 1,387 4/8/2025
3.0.1056 405 4/8/2025
3.0.1055 10,656 4/8/2025
3.0.1054 1,044 4/8/2025
3.0.1053 5,303 4/7/2025
3.0.1052 1,114 4/7/2025
3.0.1051 215 4/7/2025
3.0.1050 907 4/7/2025
3.0.1049 215 4/7/2025
3.0.1048 11,219 4/7/2025
3.0.1047 217 4/7/2025
3.0.1046 15,796 4/7/2025
3.0.1045 219 4/7/2025
3.0.1044 2,137 4/7/2025
3.0.1043 219 4/7/2025
3.0.1042 2,590 4/7/2025
3.0.1041 1,497 4/6/2025
3.0.1040 401 4/6/2025
3.0.1039 224 4/6/2025
3.0.1038 1,800 4/6/2025
3.0.1037 224 4/6/2025
3.0.1036 588 4/6/2025
3.0.1035 1,872 4/6/2025
3.0.1034 189 4/6/2025
3.0.1033 3,364 4/6/2025
3.0.1032 165 4/6/2025
3.0.1031 217 4/6/2025
3.0.1030 173 4/6/2025
3.0.1029 2,606 4/5/2025
3.0.1028 261 4/5/2025
3.0.1027 1,925 4/5/2025
3.0.1026 1,614 4/5/2025
3.0.1025 1,714 4/5/2025
3.0.1024 977 4/5/2025
3.0.1023 864 4/5/2025
3.0.1022 164 4/5/2025
3.0.1021 2,089 4/4/2025
3.0.1020 11,061 4/4/2025
3.0.1019 37,818 4/4/2025
3.0.1018 11,313 4/1/2025
3.0.1017 4,376 4/1/2025
3.0.1016 221 4/1/2025
3.0.1015 9,190 4/1/2025
3.0.1014 3,951 3/31/2025
3.0.1013 524 3/31/2025
3.0.1012 6,398 3/31/2025
3.0.1011 11,617 3/29/2025
3.0.1010 1,779 3/29/2025
3.0.1009 2,387 3/29/2025
3.0.1008 158 3/29/2025
3.0.1007 7,406 3/27/2025
3.0.1006 6,270 3/25/2025
3.0.1005 733 3/25/2025
3.0.1004 5,030 3/25/2025
3.0.1003 10,313 3/21/2025
3.0.1002 4,344 3/21/2025
3.0.1001 11,137 3/18/2025
3.0.1000 5,747 3/18/2025
3.0.999 10,889 3/15/2025
3.0.998 3,086 3/15/2025
3.0.997 133 3/15/2025
3.0.996 10,279 3/12/2025
3.0.995 3,630 3/12/2025
3.0.994 229 3/12/2025
3.0.993 570 3/12/2025
3.0.992 210 3/12/2025
3.0.991 4,559 3/11/2025
3.0.990 223 3/11/2025
3.0.989 2,059 3/11/2025
3.0.988 222 3/11/2025
3.0.987 4,114 3/11/2025
3.0.986 234 3/11/2025
3.0.985 4,260 3/11/2025
3.0.984 216 3/11/2025
3.0.983 2,697 3/11/2025
3.0.982 205 3/11/2025
3.0.981 14,866 3/7/2025
3.0.980 4,313 3/7/2025
3.0.979 9,864 3/2/2025
3.0.978 1,702 3/2/2025
3.0.977 1,067 3/2/2025
3.0.976 151 3/2/2025
3.0.975 7,171 3/2/2025
3.0.974 159 3/2/2025
3.0.973 5,453 3/1/2025
3.0.972 141 3/1/2025
3.0.971 7,390 3/1/2025
3.0.970 189 3/1/2025
3.0.969 138 3/1/2025
3.0.968 668 3/1/2025
3.0.967 155 3/1/2025
3.0.966 10,011 3/1/2025
3.0.965 7,723 2/26/2025
3.0.964 1,341 2/26/2025
3.0.963 3,944 2/25/2025
3.0.962 145 2/25/2025
3.0.961 1,356 2/25/2025
3.0.960 124 2/25/2025
3.0.959 194 2/25/2025
3.0.958 3,095 2/25/2025
3.0.957 8,125 2/24/2025
3.0.956 7,558 2/23/2025
3.0.955 1,775 2/22/2025
3.0.954 141 2/22/2025
3.0.953 12,805 2/22/2025
3.0.952 3,697 2/22/2025
3.0.951 1,796 2/22/2025
3.0.950 1,246 2/22/2025
3.0.949 197 2/22/2025
3.0.948 158 2/22/2025
3.0.947 160 2/22/2025
3.0.946 7,815 2/21/2025
3.0.945 152 2/21/2025
3.0.944 9,389 2/21/2025
3.0.943 7,565 2/19/2025
3.0.942 2,610 2/19/2025
3.0.941 1,046 2/19/2025
3.0.940 159 2/19/2025
3.0.939 618 2/18/2025
3.0.938 161 2/18/2025
3.0.937 9,001 2/18/2025
3.0.936 160 2/18/2025
3.0.935 4,553 2/18/2025
3.0.934 10,887 2/16/2025
3.0.933 2,474 2/14/2025
3.0.932 1,289 2/14/2025
3.0.931 1,146 2/13/2025
3.0.930 4,020 2/13/2025
3.0.929 422 2/13/2025
3.0.928 6,140 2/13/2025
3.0.927 6,043 2/12/2025
3.0.926 2,374 2/12/2025
3.0.925 184 2/12/2025
3.0.924 159 2/12/2025
3.0.923 3,358 2/12/2025
3.0.922 498 2/12/2025
3.0.921 163 2/12/2025
3.0.920 253 2/12/2025
3.0.919 264 2/12/2025
3.0.918 159 2/12/2025
3.0.917 235 2/11/2025
3.0.916 5,686 2/11/2025
3.0.915 6,203 2/11/2025
3.0.914 3,746 2/11/2025
3.0.913 170 2/11/2025
3.0.912 595 2/11/2025
3.0.911 2,840 2/10/2025
3.0.910 175 2/10/2025
3.0.909 1,203 2/10/2025
3.0.908 174 2/10/2025
3.0.907 10,444 2/10/2025
3.0.906 169 2/10/2025
3.0.905 1,920 2/9/2025
3.0.904 9,360 2/9/2025
3.0.903 151 2/9/2025
3.0.902 12,242 2/8/2025
3.0.901 167 2/8/2025
3.0.900 2,825 2/7/2025
3.0.899 160 2/7/2025
3.0.898 2,673 2/7/2025
3.0.897 161 2/7/2025
3.0.896 985 2/7/2025
3.0.895 659 2/7/2025
3.0.894 172 2/7/2025
3.0.893 537 2/7/2025
3.0.892 159 2/7/2025
3.0.891 1,698 2/7/2025
3.0.890 151 2/7/2025
3.0.889 168 2/7/2025
3.0.888 17,649 2/7/2025
3.0.887 10,479 2/5/2025
3.0.886 978 2/5/2025
3.0.885 1,532 2/5/2025
3.0.884 445 2/5/2025
3.0.883 1,682 2/5/2025
3.0.882 1,050 2/5/2025
3.0.881 5,194 2/5/2025
3.0.880 146 2/5/2025
3.0.879 17,162 1/28/2025
3.0.878 1,113 1/28/2025
3.0.877 3,191 1/28/2025
3.0.876 351 1/28/2025
3.0.875 6,820 1/28/2025
3.0.874 1,101 1/27/2025
3.0.873 127 1/27/2025
3.0.872 275 1/27/2025
3.0.871 430 1/27/2025
3.0.870 147 1/27/2025
3.0.869 8,641 1/27/2025
3.0.868 7,727 1/26/2025
3.0.867 1,584 1/26/2025
3.0.866 273 1/26/2025
3.0.865 1,723 1/26/2025
3.0.864 2,242 1/25/2025
3.0.863 148 1/25/2025
3.0.862 9,773 1/25/2025
3.0.861 1,755 1/25/2025
3.0.860 484 1/25/2025
3.0.859 157 1/25/2025
3.0.858 3,281 1/25/2025
3.0.857 2,165 1/25/2025
3.0.856 11,063 1/24/2025
3.0.855 2,721 1/24/2025
3.0.854 133 1/24/2025
3.0.853 3,552 1/24/2025
3.0.852 517 1/24/2025
3.0.851 346 1/24/2025
3.0.850 5,478 1/24/2025
3.0.849 150 1/24/2025
3.0.848 825 1/23/2025
3.0.847 154 1/23/2025
3.0.846 964 1/23/2025
3.0.845 148 1/23/2025
3.0.844 13,379 1/22/2025
3.0.843 1,671 1/21/2025
3.0.842 1,609 1/21/2025
3.0.841 895 1/21/2025
3.0.840 138 1/21/2025
3.0.839 933 1/21/2025
3.0.838 1,160 1/21/2025
3.0.837 9,195 1/21/2025
3.0.836 922 1/21/2025
3.0.835 1,664 1/21/2025
3.0.834 153 1/21/2025
3.0.833 1,370 1/21/2025
3.0.832 147 1/21/2025
3.0.831 3,818 1/21/2025
3.0.830 138 1/21/2025
3.0.829 645 1/20/2025
3.0.828 4,793 1/20/2025
3.0.827 376 1/20/2025
3.0.826 3,452 1/20/2025
3.0.825 149 1/20/2025
3.0.824 1,834 1/20/2025
3.0.823 167 1/20/2025
3.0.822 163 1/20/2025
3.0.821 153 1/20/2025
3.0.820 588 1/20/2025
3.0.819 155 1/20/2025
3.0.818 151 1/20/2025
3.0.817 9,742 1/19/2025
3.0.816 159 1/19/2025
3.0.815 8,921 1/19/2025
3.0.814 2,734 1/19/2025
3.0.813 187 1/19/2025
3.0.812 623 1/19/2025
3.0.811 150 1/19/2025
3.0.810 3,268 1/19/2025
3.0.809 146 1/19/2025
3.0.808 5,558 1/18/2025
3.0.807 154 1/18/2025
3.0.806 11,859 1/17/2025
3.0.805 163 1/17/2025
3.0.804 1,052 1/17/2025
3.0.803 1,576 1/17/2025
3.0.802 7,270 1/16/2025
3.0.801 2,420 1/16/2025
3.0.800 3,685 1/16/2025
3.0.799 893 1/16/2025
3.0.798 2,023 1/16/2025
3.0.797 1,728 1/16/2025
3.0.796 138 1/16/2025
3.0.795 7,957 1/15/2025
3.0.794 146 1/15/2025
3.0.793 4,725 1/15/2025
3.0.792 143 1/15/2025
3.0.791 220 1/15/2025
3.0.790 5,694 1/15/2025
3.0.789 119 1/15/2025
3.0.788 5,007 1/15/2025
3.0.787 125 1/15/2025
3.0.786 858 1/15/2025
3.0.785 122 1/15/2025
3.0.784 2,907 1/15/2025
3.0.783 126 1/15/2025
3.0.782 426 1/14/2025
3.0.781 127 1/14/2025
3.0.780 136 1/14/2025
3.0.779 6,301 1/14/2025
3.0.778 1,017 1/14/2025
3.0.777 141 1/14/2025
3.0.776 1,839 1/14/2025
3.0.775 125 1/14/2025
3.0.774 9,750 1/13/2025
3.0.773 2,818 1/13/2025
3.0.772 2,416 1/13/2025
3.0.771 143 1/13/2025
3.0.770 9,271 1/11/2025
3.0.769 3,754 1/11/2025
3.0.768 168 1/11/2025
3.0.767 3,330 1/11/2025
3.0.766 168 1/11/2025
3.0.765 3,170 1/10/2025
3.0.764 3,552 1/10/2025
3.0.763 153 1/10/2025
3.0.762 1,424 1/10/2025
3.0.761 161 1/10/2025
3.0.760 151 1/10/2025
3.0.759 11,142 1/3/2025
3.0.758 737 1/3/2025
3.0.757 1,640 1/3/2025
3.0.756 189 1/3/2025
3.0.755 2,486 1/3/2025
3.0.754 158 1/3/2025
3.0.753 1,911 1/3/2025
3.0.752 1,812 1/2/2025
3.0.751 153 1/2/2025
3.0.750 3,041 1/2/2025
3.0.749 160 1/2/2025
3.0.748 5,102 1/2/2025
3.0.747 145 1/2/2025
3.0.746 166 1/2/2025
3.0.745 8,394 1/1/2025
3.0.744 1,745 1/1/2025
3.0.743 435 1/1/2025
3.0.742 176 1/1/2025
3.0.741 2,693 1/1/2025
3.0.740 159 1/1/2025
3.0.739 156 1/1/2025
3.0.738 169 1/1/2025
3.0.737 534 12/31/2024
3.0.736 169 12/31/2024
3.0.735 183 12/31/2024
3.0.734 1,056 12/31/2024
3.0.733 182 12/31/2024
3.0.732 8,142 12/31/2024
3.0.731 170 12/31/2024
3.0.730 7,862 12/31/2024
3.0.729 129 12/31/2024
3.0.728 4,345 12/31/2024
3.0.727 553 12/31/2024
3.0.726 160 12/31/2024
3.0.725 2,319 12/31/2024
3.0.724 158 12/31/2024
3.0.723 15,705 12/28/2024
3.0.722 2,004 12/28/2024
3.0.721 2,203 12/27/2024
3.0.720 171 12/27/2024
3.0.719 4,729 12/27/2024
3.0.718 8,769 12/24/2024
3.0.717 2,154 12/24/2024
3.0.716 1,562 12/24/2024
3.0.715 1,331 12/24/2024
3.0.714 2,343 12/24/2024
3.0.713 152 12/24/2024
3.0.712 3,861 12/24/2024
3.0.711 1,044 12/24/2024
3.0.710 144 12/24/2024
3.0.709 703 12/24/2024
3.0.708 1,654 12/24/2024
3.0.707 386 12/24/2024
3.0.706 181 12/24/2024
3.0.705 1,751 12/24/2024
3.0.704 161 12/24/2024
3.0.703 3,070 12/23/2024
3.0.702 5,004 12/23/2024
3.0.701 161 12/23/2024
3.0.700 1,162 12/23/2024
3.0.699 149 12/23/2024
3.0.698 3,380 12/23/2024
3.0.697 146 12/23/2024
3.0.696 2,561 12/23/2024
3.0.695 164 12/23/2024
3.0.694 750 12/22/2024
3.0.693 2,444 12/22/2024
3.0.692 7,064 12/22/2024
3.0.691 167 12/22/2024
3.0.690 2,787 12/22/2024
3.0.689 244 12/22/2024
3.0.688 776 12/22/2024
3.0.687 154 12/22/2024
3.0.686 430 12/22/2024
3.0.685 161 12/22/2024
3.0.684 11,907 12/22/2024
3.0.683 138 12/22/2024
3.0.682 1,899 12/21/2024
3.0.681 462 12/21/2024
3.0.680 145 12/21/2024
3.0.679 854 12/21/2024
3.0.678 1,368 12/21/2024
3.0.677 151 12/21/2024
3.0.676 6,805 12/21/2024
3.0.675 651 12/21/2024
3.0.674 154 12/21/2024
3.0.673 4,558 12/21/2024
3.0.672 1,188 12/21/2024
3.0.671 165 12/21/2024
3.0.670 2,699 12/20/2024
3.0.669 171 12/20/2024
3.0.668 161 12/20/2024
3.0.667 6,589 12/20/2024
3.0.666 1,964 12/20/2024
3.0.665 361 12/20/2024
3.0.664 6,190 12/19/2024
3.0.663 733 12/19/2024
3.0.662 3,620 12/18/2024
3.0.661 155 12/18/2024
3.0.660 11,256 12/17/2024
3.0.659 318 12/17/2024
3.0.658 1,113 12/16/2024
3.0.657 152 12/16/2024
3.0.656 226 12/16/2024
3.0.655 151 12/16/2024
3.0.654 11,148 12/10/2024
3.0.653 1,745 12/10/2024
3.0.652 649 12/9/2024
3.0.651 159 12/9/2024
3.0.650 4,676 12/9/2024
3.0.649 2,425 12/9/2024
3.0.648 144 12/9/2024
3.0.647 6,649 12/9/2024
3.0.646 4,953 12/6/2024
3.0.645 718 12/6/2024
3.0.644 149 12/6/2024
3.0.643 1,160 12/6/2024
3.0.641 6,839 12/6/2024
3.0.640 4,252 12/6/2024
3.0.639 9,469 12/6/2024
3.0.637 582 12/6/2024
3.0.636 4,374 12/5/2024
3.0.635 6,109 12/5/2024
3.0.634 5,022 12/5/2024
3.0.633 151 12/5/2024
3.0.632 3,362 12/5/2024
3.0.631 1,722 12/5/2024
3.0.630 162 12/5/2024
3.0.629 631 12/5/2024
3.0.628 157 12/5/2024
3.0.627 210 12/5/2024
3.0.626 156 12/5/2024
3.0.625 5,908 12/4/2024
3.0.624 146 12/4/2024
3.0.623 173 12/4/2024
3.0.622 174 12/4/2024
3.0.621 2,926 12/4/2024
3.0.620 523 12/4/2024
3.0.619 677 12/4/2024
3.0.618 5,972 12/3/2024
3.0.617 162 12/3/2024
3.0.616 1,942 12/3/2024
3.0.615 751 12/3/2024
3.0.614 164 12/3/2024
3.0.613 172 12/3/2024
3.0.612 6,972 12/3/2024
3.0.611 153 12/3/2024
3.0.610 5,904 12/3/2024
3.0.609 137 12/3/2024
3.0.608 5,432 12/2/2024
3.0.607 4,815 12/2/2024
3.0.606 2,892 12/2/2024
3.0.605 447 12/2/2024
3.0.604 164 12/2/2024
3.0.603 691 12/2/2024
3.0.602 6,075 12/1/2024
3.0.601 170 12/1/2024
3.0.600 3,334 12/1/2024
3.0.599 310 12/1/2024
3.0.598 6,136 12/1/2024
3.0.597 165 12/1/2024
3.0.596 6,293 11/29/2024
3.0.595 1,857 11/29/2024
3.0.594 9,547 11/21/2024
3.0.593 509 11/21/2024
3.0.592 7,950 11/20/2024
3.0.591 536 11/20/2024
3.0.590 170 11/20/2024
3.0.589 153 11/20/2024
3.0.588 685 11/20/2024
3.0.587 252 11/20/2024
3.0.586 153 11/20/2024
3.0.585 3,432 11/20/2024
3.0.584 4,734 11/19/2024
3.0.583 152 11/19/2024
3.0.582 1,056 11/19/2024
3.0.581 143 11/19/2024
3.0.580 4,163 11/19/2024
3.0.579 138 11/19/2024
3.0.578 2,203 11/19/2024
3.0.577 163 11/19/2024
3.0.576 14,730 11/14/2024
3.0.575 225 11/14/2024
3.0.574 895 11/14/2024
3.0.573 4,061 11/14/2024
3.0.572 1,251 11/14/2024
3.0.571 174 11/14/2024
3.0.570 166 11/14/2024
3.0.569 7,051 11/14/2024
3.0.568 165 11/14/2024
3.0.567 164 11/14/2024
3.0.566 6,133 11/14/2024
3.0.565 159 11/14/2024
3.0.564 154 11/14/2024
3.0.563 150 11/14/2024
2.1.562 13,927 11/13/2024
2.1.561 2,292 11/13/2024
2.1.560 5,196 11/13/2024
2.1.559 177 11/13/2024
2.1.558 2,217 11/12/2024
2.1.557 627 11/12/2024
2.1.556 13,659 11/9/2024
2.1.555 582 11/9/2024
2.1.554 179 11/9/2024
2.1.553 2,902 11/9/2024
2.1.552 160 11/9/2024
2.1.551 1,492 11/8/2024
2.1.550 162 11/8/2024
2.1.549 155 11/8/2024
2.1.548 170 11/8/2024
2.1.547 661 11/8/2024
2.1.546 3,175 11/8/2024
2.1.545 149 11/8/2024
2.1.544 9,181 11/8/2024
2.1.543 143 11/8/2024
2.1.542 19,952 11/1/2024
2.1.541 736 11/1/2024
2.1.540 11,714 10/29/2024
2.1.539 1,258 10/29/2024
2.1.538 4,674 10/29/2024
2.1.537 977 10/29/2024
2.1.536 9,311 10/28/2024
2.1.535 3,195 10/28/2024
2.1.534 6,471 10/26/2024
2.1.533 1,145 10/26/2024
2.1.532 13,730 10/22/2024
2.1.531 414 10/22/2024
2.1.530 882 10/22/2024
2.1.529 1,533 10/22/2024
2.1.528 162 10/22/2024
2.1.527 758 10/22/2024
2.1.526 11,209 10/18/2024
2.1.525 1,829 10/17/2024
2.1.524 7,089 10/15/2024
2.1.523 2,738 10/15/2024
2.1.522 159 10/14/2024
2.1.521 8,786 10/12/2024
2.1.520 1,100 10/11/2024
2.1.519 158 10/11/2024
2.1.518 776 10/11/2024
2.1.517 5,006 10/11/2024
2.1.516 10,981 10/9/2024
2.1.515 598 10/9/2024
2.1.514 142 10/9/2024
2.1.513 3,358 10/8/2024
2.1.512 222 10/8/2024
2.1.511 3,651 10/8/2024
2.1.510 215 10/8/2024
2.1.509 159 10/8/2024
2.1.508 6,681 10/8/2024
2.1.507 10,490 10/3/2024
2.1.506 163 10/3/2024
2.1.505 1,937 10/3/2024
2.1.504 3,355 10/3/2024
2.1.503 2,389 10/3/2024
2.1.502 10,012 10/2/2024
2.1.501 159 10/2/2024
2.1.500 3,133 10/2/2024
2.1.499 1,723 10/2/2024
2.1.498 7,045 10/1/2024
2.1.497 1,080 10/1/2024
2.1.496 170 10/1/2024
2.1.495 4,463 10/1/2024
2.1.494 171 10/1/2024
2.1.493 214 10/1/2024
2.1.492 9,233 9/29/2024
2.1.491 2,263 9/29/2024
2.1.490 164 9/29/2024
2.1.489 2,048 9/29/2024
2.1.488 161 9/29/2024
2.1.487 4,385 9/29/2024
2.1.486 8,623 9/27/2024
2.1.485 1,296 9/27/2024
2.1.484 5,199 9/27/2024
2.1.483 185 9/27/2024
2.1.482 708 9/27/2024
2.1.481 3,663 9/27/2024
2.1.480 5,371 9/26/2024
2.1.479 5,898 9/26/2024
2.1.478 4,001 9/26/2024
2.1.477 3,612 9/26/2024
2.1.476 6,292 9/26/2024
2.1.475 159 9/26/2024
2.1.474 9,420 9/23/2024
2.1.473 2,118 9/23/2024
2.1.472 1,540 9/23/2024
2.1.471 1,853 9/23/2024
2.1.470 161 9/23/2024
2.1.469 2,559 9/23/2024
2.1.468 142 9/23/2024
2.1.467 7,970 9/23/2024
2.1.466 166 9/23/2024
2.1.465 1,165 9/23/2024
2.1.464 179 9/23/2024
2.1.463 152 9/23/2024
2.1.462 1,504 9/23/2024
2.1.461 15,433 9/18/2024
2.1.460 389 9/17/2024
2.1.459 2,007 9/17/2024
2.1.458 2,708 9/17/2024
2.1.457 159 9/17/2024
2.1.456 2,948 9/17/2024
2.1.455 754 9/17/2024
2.1.454 5,308 9/17/2024
2.1.453 875 9/17/2024
2.1.452 305 9/17/2024
2.1.451 4,290 9/17/2024
2.1.450 12,452 9/16/2024
2.1.449 1,112 9/16/2024
2.1.448 7,992 9/12/2024
2.1.447 4,717 9/12/2024
2.1.446 2,094 9/11/2024
2.1.445 2,534 9/11/2024
2.1.443 5,762 9/11/2024
2.1.442 1,513 9/11/2024
2.1.441 1,431 9/11/2024
2.1.440 3,529 9/11/2024
2.1.439 12,710 9/10/2024
2.1.438 184 9/10/2024
2.1.437 1,836 9/10/2024
2.1.436 179 9/10/2024
2.1.434 4,548 9/10/2024
2.1.433 905 9/9/2024
2.1.432 2,814 9/9/2024
2.1.430 2,392 9/9/2024
2.1.428 185 9/9/2024
2.1.427 684 9/9/2024
2.1.426 20,940 9/7/2024
2.1.425 209 9/7/2024
2.1.424 8,013 9/6/2024
2.1.423 533 9/6/2024
2.1.422 3,547 9/6/2024
2.1.421 166 9/5/2024
2.1.420 185 9/5/2024
2.1.419 3,809 9/5/2024
2.1.418 1,756 9/5/2024
2.1.417 173 9/5/2024
2.1.416 1,749 9/5/2024
2.1.415 684 9/5/2024
2.1.414 170 9/5/2024
2.1.413 8,015 9/5/2024
2.1.412 280 9/5/2024
2.1.411 171 9/5/2024
2.1.410 3,561 9/4/2024
2.1.409 12,840 9/3/2024
2.1.408 166 9/3/2024
2.1.407 166 9/3/2024
2.1.406 6,468 9/3/2024
2.1.405 211 9/3/2024
2.1.404 4,060 9/3/2024
2.1.403 8,539 8/29/2024
2.1.402 4,210 8/29/2024
2.1.401 4,601 8/26/2024
2.1.400 156 8/26/2024
2.1.399 8,097 8/21/2024
2.1.398 967 8/21/2024
2.1.397 206 8/21/2024
2.1.396 4,239 8/21/2024
2.1.395 212 8/20/2024
2.1.394 202 8/20/2024
2.1.393 723 8/20/2024
2.1.392 4,936 8/20/2024
2.1.391 683 8/20/2024
2.1.390 169 8/20/2024
2.1.389 4,292 8/20/2024
2.1.388 184 8/20/2024
2.1.387 1,936 8/20/2024
2.1.386 4,736 8/19/2024
2.1.385 7,793 8/15/2024
2.1.384 3,355 8/15/2024
2.1.383 7,757 8/14/2024
2.1.382 205 8/13/2024
2.1.381 9,064 8/7/2024
2.1.380 477 8/6/2024
2.1.379 4,411 8/6/2024
2.1.378 8,336 8/1/2024
2.1.377 562 8/1/2024
2.1.376 156 8/1/2024
2.1.374 2,002 8/1/2024
2.1.373 9,973 7/25/2024
2.1.372 157 7/25/2024
2.1.371 1,291 7/25/2024
2.1.370 490 7/25/2024
2.1.369 588 7/25/2024
2.1.368 309 7/25/2024
2.1.367 649 7/24/2024
2.1.366 230 7/24/2024
2.1.365 349 7/24/2024
2.1.364 534 7/24/2024
2.1.363 14,106 7/20/2024
2.1.362 2,512 7/20/2024
2.1.361 8,464 7/14/2024
2.1.360 2,560 7/14/2024
2.1.359 165 7/14/2024
2.1.358 2,425 7/14/2024
2.1.357 7,174 7/10/2024
2.1.355 1,148 7/10/2024
2.1.354 1,948 7/10/2024
2.1.353 172 7/10/2024
2.1.352 2,811 7/10/2024
2.1.351 204 7/10/2024
2.1.350 163 7/10/2024
2.1.349 254 7/10/2024
2.1.348 161 7/10/2024
2.1.347 3,334 7/10/2024
2.1.346 183 7/10/2024
2.1.345 1,341 7/10/2024
2.1.344 165 7/10/2024
2.1.343 309 7/9/2024
2.1.342 143 7/9/2024
2.1.339 3,112 7/9/2024
2.1.338 712 7/9/2024
2.1.337 6,612 7/9/2024
2.1.336 1,852 7/9/2024
2.1.335 176 7/9/2024
2.1.334 4,275 7/9/2024
2.1.333 158 7/9/2024
2.1.332 11,881 7/9/2024
2.1.331 173 7/9/2024
2.1.330 4,144 7/9/2024
2.1.329 161 7/9/2024
2.1.328 1,738 7/9/2024
2.1.327 1,097 7/8/2024
2.1.326 1,641 7/8/2024
2.1.325 172 7/8/2024
2.1.324 186 7/8/2024
2.1.323 7,988 7/8/2024
2.1.322 2,736 7/8/2024
2.1.321 169 7/8/2024
2.1.320 3,884 7/7/2024
2.1.319 183 7/7/2024
2.1.318 194 7/7/2024
2.1.317 179 7/7/2024
2.1.316 1,864 7/7/2024
2.1.315 3,605 7/7/2024
2.1.314 3,037 7/7/2024
2.1.313 343 7/7/2024
2.1.312 5,649 7/5/2024
2.1.311 6,671 7/3/2024
2.1.310 5,157 7/3/2024
2.1.309 631 7/3/2024
2.1.308 6,728 7/2/2024
2.1.307 3,068 6/30/2024
2.1.306 3,734 6/28/2024
2.1.305 8,801 6/22/2024
2.1.304 7,973 6/15/2024
2.1.303 6,494 6/14/2024
2.1.302 9,459 6/1/2024
2.1.301 2,610 6/1/2024
2.1.300 937 6/1/2024
2.1.299 9,596 5/31/2024
2.1.298 5,995 5/29/2024
2.1.297 4,942 5/28/2024
2.1.296 3,956 5/27/2024
2.1.295 7,820 5/26/2024
2.1.294 3,260 5/26/2024
2.1.293 735 5/26/2024
2.1.292 4,049 5/25/2024
2.1.291 2,154 5/25/2024
2.1.290 195 5/25/2024
2.1.289 175 5/25/2024
2.1.288 1,096 5/25/2024
2.1.287 183 5/25/2024
2.1.286 600 5/25/2024
2.1.285 180 5/25/2024
2.1.284 187 5/25/2024
2.1.283 11,929 5/23/2024
2.1.282 857 5/23/2024
2.1.281 397 5/22/2024
2.1.280 5,871 5/22/2024
2.1.279 190 5/22/2024
2.1.278 191 5/22/2024
2.1.277 180 5/22/2024
2.1.276 3,509 5/22/2024
2.1.275 5,448 5/18/2024
2.1.274 3,025 5/18/2024
2.1.273 2,870 5/17/2024
2.1.272 178 5/17/2024
2.1.271 4,347 5/16/2024
2.1.270 663 5/15/2024
2.1.269 4,403 5/15/2024
2.1.268 7,286 5/12/2024
2.1.267 4,416 5/3/2024
2.1.266 1,882 4/30/2024
2.1.265 2,825 4/29/2024
2.1.264 3,030 4/29/2024
2.1.263 4,281 4/28/2024
2.1.262 2,402 4/28/2024
2.1.261 1,742 4/28/2024
2.1.260 2,727 4/28/2024
2.1.259 1,468 4/28/2024
2.1.258 171 4/28/2024
2.1.257 6,716 4/27/2024
2.1.256 191 4/27/2024
2.1.255 6,824 4/19/2024
2.1.254 6,542 4/18/2024
2.1.253 5,400 4/12/2024
2.1.252 1,779 4/12/2024
2.1.251 1,097 4/12/2024
2.1.250 1,350 4/12/2024
2.1.249 290 4/12/2024
2.1.248 166 4/12/2024
2.1.247 1,522 4/12/2024
2.1.246 463 4/12/2024
2.1.245 2,527 4/11/2024
2.1.244 6,015 4/10/2024
2.1.243 1,771 4/9/2024
2.1.242 4,965 4/2/2024
2.1.241 1,395 4/1/2024
2.1.240 3,290 3/29/2024
2.1.239 2,836 3/25/2024
2.1.238 441 3/25/2024
2.1.237 5,244 3/20/2024
2.1.236 3,256 3/19/2024
2.1.235 731 3/19/2024
2.1.234 3,760 3/18/2024
2.1.233 2,070 3/18/2024
2.1.232 2,049 3/15/2024
2.1.231 3,618 3/13/2024
2.1.230 1,620 3/13/2024
2.1.229 1,037 3/13/2024
2.1.228 1,116 3/13/2024
2.1.227 186 3/13/2024
2.1.226 771 3/13/2024
2.1.225 190 3/13/2024
2.1.224 194 3/13/2024
2.1.223 2,549 3/12/2024
2.1.222 4,320 3/11/2024
2.1.221 3,759 3/11/2024
2.1.220 2,522 3/10/2024
2.1.219 2,859 3/8/2024
2.1.218 1,594 3/8/2024
2.1.217 2,373 3/8/2024
2.1.216 3,182 3/6/2024
2.1.215 3,004 3/4/2024
2.1.214 2,148 3/4/2024
2.1.213 3,951 3/2/2024
2.1.212 1,807 3/2/2024
2.1.211 610 3/2/2024
2.1.210 514 3/2/2024
2.1.209 758 3/2/2024
2.1.208 5,152 2/29/2024
2.1.207 928 2/29/2024
2.1.206 521 2/29/2024
2.1.205 4,978 2/26/2024
2.1.204 2,214 2/25/2024
2.1.203 3,936 2/23/2024
2.1.202 2,802 2/22/2024
2.1.201 1,383 2/22/2024
2.1.200 648 2/21/2024
2.1.199 1,720 2/21/2024
2.1.198 416 2/21/2024
2.1.197 985 2/21/2024
2.1.196 182 2/21/2024
2.1.195 1,945 2/21/2024
2.1.194 602 2/21/2024
2.1.193 185 2/21/2024
2.1.192 210 2/21/2024
2.1.191 825 2/21/2024
2.1.190 177 2/21/2024
2.1.189 4,001 2/20/2024
2.1.188 983 2/20/2024
2.1.187 935 2/20/2024
2.1.186 1,207 2/20/2024
2.1.185 3,112 2/19/2024
2.1.184 2,783 2/17/2024
2.1.183 1,344 2/16/2024
2.1.182 1,223 2/16/2024
2.1.181 1,993 2/16/2024
2.1.180 191 2/16/2024
2.1.179 993 2/16/2024
2.1.178 193 2/16/2024
2.1.177 187 2/16/2024
2.1.176 798 2/16/2024
2.1.175 179 2/16/2024
2.1.174 4,858 2/13/2024
2.1.173 2,026 2/13/2024
2.1.172 1,626 2/13/2024
2.1.171 681 2/13/2024
2.1.170 915 2/13/2024
2.1.169 2,856 2/12/2024
2.1.168 669 2/11/2024
2.1.167 2,233 2/11/2024
2.1.166 1,211 2/11/2024
2.1.165 4,132 2/10/2024
2.1.164 779 2/9/2024
2.1.163 186 2/9/2024
2.1.162 2,297 2/9/2024
2.1.161 2,404 2/9/2024
2.1.160 592 2/8/2024
2.1.159 1,775 2/8/2024
2.1.158 1,162 2/8/2024
2.1.157 2,132 2/8/2024
2.1.156 172 2/8/2024
2.1.155 2,728 2/7/2024
2.1.154 639 2/7/2024
2.1.153 850 2/7/2024
2.1.152 1,874 2/7/2024
2.1.151 502 2/6/2024
2.1.150 181 2/6/2024
2.1.149 187 2/6/2024
2.1.148 4,069 2/5/2024
2.1.147 2,266 2/4/2024
2.1.146 3,048 2/2/2024
2.1.145 2,778 1/31/2024
2.1.144 3,043 1/29/2024
2.1.143 1,935 1/29/2024
2.1.142 516 1/29/2024
2.1.141 2,047 1/28/2024
2.1.140 671 1/28/2024
2.1.139 441 1/28/2024
2.1.138 754 1/28/2024
2.1.137 2,833 1/28/2024
2.1.136 1,472 1/28/2024
2.1.135 440 1/27/2024
2.1.134 1,318 1/27/2024
2.1.133 1,827 1/27/2024
2.1.132 1,759 1/27/2024
2.1.131 210 1/27/2024
2.1.130 945 1/27/2024
2.1.129 1,573 1/26/2024
2.1.128 353 1/26/2024
2.1.127 1,256 1/26/2024
2.1.126 1,660 1/26/2024
2.1.125 2,347 1/26/2024
2.1.124 1,336 1/25/2024
2.1.123 1,442 1/25/2024
2.1.122 649 1/25/2024
2.1.121 1,326 1/25/2024
2.1.120 721 1/25/2024
2.1.119 3,810 1/19/2024
2.1.118 3,108 1/15/2024
2.1.117 693 1/15/2024
2.1.116 1,860 1/15/2024
2.1.115 183 1/15/2024
2.1.114 799 1/15/2024
2.1.113 1,951 1/15/2024
2.1.112 3,560 1/14/2024
2.1.111 2,307 1/13/2024
2.1.110 2,483 1/12/2024
2.1.109 2,898 1/11/2024
2.1.108 3,702 1/7/2024
2.1.107 2,837 1/5/2024
2.1.106 710 1/5/2024
2.1.105 203 1/5/2024
2.1.104 189 1/5/2024
2.1.103 2,064 1/5/2024
2.1.102 197 1/5/2024
2.1.101 3,911 1/1/2024
2.1.100 3,117 12/28/2023
2.1.99 1,044 12/28/2023
2.1.98 716 12/28/2023
2.1.97 183 12/28/2023
2.1.96 194 12/28/2023
2.1.95 1,022 12/27/2023
2.1.94 203 12/27/2023
2.1.93 737 12/27/2023
2.1.92 197 12/27/2023
2.1.91 202 12/27/2023
2.1.90 3,304 12/25/2023
2.1.89 519 12/25/2023
2.1.88 1,213 12/25/2023
2.1.87 207 12/25/2023
2.1.86 993 12/25/2023
2.1.85 195 12/25/2023
2.1.84 850 12/25/2023
2.1.83 193 12/25/2023
2.1.82 2,477 12/24/2023
2.1.81 1,618 12/23/2023
2.1.80 1,330 12/23/2023
2.1.79 436 12/23/2023
2.1.78 873 12/23/2023
2.1.77 198 12/23/2023
2.1.76 182 12/23/2023
2.1.75 1,599 12/23/2023
2.1.74 187 12/23/2023
2.1.73 2,112 12/19/2023
2.1.72 317 12/19/2023
2.1.71 4,500 12/11/2023
2.1.70 1,063 12/10/2023
2.1.69 186 12/10/2023
2.1.68 642 12/10/2023
2.1.67 2,148 12/10/2023
2.1.66 550 12/9/2023
2.1.65 569 12/9/2023
2.1.64 417 12/9/2023
2.1.63 203 12/9/2023
2.1.62 366 12/9/2023
2.1.61 306 12/9/2023
2.1.60 168 12/9/2023
2.1.59 1,592 12/9/2023
2.1.58 196 12/9/2023
2.1.57 2,321 12/6/2023
2.1.56 598 12/6/2023
2.1.55 363 12/6/2023
2.1.54 421 12/6/2023
2.1.53 1,373 12/5/2023
2.1.52 567 12/5/2023
2.1.51 511 12/5/2023
2.1.50 578 12/5/2023
2.1.49 162 12/5/2023
2.1.48 492 12/5/2023
2.1.47 399 12/5/2023
2.1.46 166 12/4/2023
2.1.45 173 12/4/2023
2.1.44 487 12/4/2023
2.1.43 198 12/4/2023
2.1.42 1,597 12/4/2023
2.1.41 145 12/4/2023
2.1.40 1,804 11/27/2023
2.1.39 817 11/26/2023
2.1.38 332 11/26/2023
2.1.37 967 11/23/2023
2.1.36 1,066 11/23/2023
2.1.35 1,022 11/23/2023
2.1.34 176 11/23/2023
2.1.33 625 11/23/2023
2.1.32 186 11/23/2023
2.1.31 1,711 11/20/2023
2.1.30 1,786 11/20/2023
2.1.29 1,301 11/19/2023
2.1.28 389 11/19/2023
2.1.27 731 11/19/2023
2.1.26 754 11/19/2023
2.1.25 763 11/19/2023
2.1.24 163 11/19/2023
2.1.23 341 11/18/2023
2.1.22 1,558 11/18/2023
2.1.21 555 11/18/2023
2.1.20 839 11/18/2023
2.1.19 186 11/18/2023
2.1.18 465 11/18/2023
2.1.17 176 11/18/2023
2.1.16 963 11/17/2023
2.1.15 827 11/17/2023
2.1.14 167 11/17/2023
2.1.13 662 11/17/2023
2.1.12 462 11/17/2023
2.1.11 772 11/17/2023
2.1.10 173 11/17/2023
2.1.9 775 11/17/2023
2.1.8 180 11/17/2023
2.1.7 224 11/17/2023
2.1.6 504 11/17/2023
2.1.5 569 11/16/2023
2.0.101 3,521 11/15/2023
2.0.100 151 11/15/2023
2.0.99 181 11/15/2023
2.0.4 174 11/16/2023
2.0.3 188 11/16/2023
2.0.2 178 11/16/2023
2.0.1 173 11/16/2023
1.0.98 970 11/14/2023
1.0.97 1,130 11/13/2023
1.0.96 156 11/13/2023
1.0.95 779 11/10/2023
1.0.94 173 11/10/2023
1.0.93 1,414 11/9/2023
1.0.92 175 11/9/2023
1.0.91 1,553 11/7/2023
1.0.90 172 11/7/2023
1.0.89 736 11/6/2023
1.0.88 182 11/6/2023
1.0.87 854 11/3/2023
1.0.86 186 11/3/2023
1.0.85 1,296 11/2/2023
1.0.84 166 11/2/2023
1.0.83 859 11/1/2023
1.0.82 2,121 10/26/2023
1.0.81 1,903 10/19/2023
1.0.80 198 10/19/2023
1.0.79 1,151 10/18/2023
1.0.78 213 10/18/2023
1.0.77 1,053 10/17/2023
1.0.76 202 10/17/2023
1.0.75 947 10/16/2023
1.0.74 204 10/16/2023
1.0.73 1,024 10/13/2023
1.0.72 465 10/12/2023
1.0.71 2,481 9/20/2023
1.0.70 1,032 9/19/2023
1.0.69 1,014 9/18/2023
1.0.68 203 9/18/2023
1.0.67 1,321 9/14/2023
1.0.66 2,125 8/31/2023
1.0.65 201 8/31/2023
1.0.64 1,214 8/30/2023
1.0.63 229 8/30/2023
1.0.62 246 8/30/2023
1.0.61 1,235 8/28/2023
1.0.60 1,015 8/25/2023
1.0.59 203 8/25/2023
1.0.58 714 8/24/2023
1.0.57 2,120 8/21/2023
1.0.56 1,225 8/18/2023
1.0.55 1,086 8/17/2023
1.0.54 228 8/17/2023
1.0.53 2,758 8/10/2023
1.0.52 799 8/9/2023
1.0.51 971 8/8/2023
1.0.50 919 8/7/2023
1.0.49 248 8/7/2023
1.0.48 3,494 7/13/2023
1.0.47 1,263 7/11/2023
1.0.46 1,017 7/10/2023
1.0.45 964 7/7/2023
1.0.44 249 7/7/2023
1.0.43 2,957 6/30/2023
1.0.42 1,470 6/29/2023
1.0.41 815 6/28/2023
1.0.40 2,127 6/26/2023
1.0.39 1,128 6/23/2023
1.0.38 1,495 6/21/2023
1.0.37 2,026 6/15/2023
1.0.36 692 6/14/2023
1.0.35 2,452 6/9/2023
1.0.34 1,109 6/8/2023
1.0.33 2,127 6/7/2023
1.0.32 247 6/7/2023
1.0.31 1,571 6/6/2023
1.0.30 1,562 6/5/2023
1.0.29 1,735 6/2/2023
1.0.28 238 6/2/2023
1.0.27 1,587 6/1/2023
1.0.26 829 5/31/2023
1.0.25 661 5/31/2023
1.0.24 243 5/31/2023
1.0.23 1,952 5/30/2023
1.0.22 2,030 5/26/2023
1.0.21 924 5/25/2023
1.0.20 221 5/25/2023
1.0.19 1,097 5/24/2023
1.0.18 232 5/24/2023
1.0.17 645 5/23/2023
1.0.13 1,963 5/22/2023
1.0.12 1,592 5/18/2023
1.0.11 831 5/17/2023
1.0.10 1,966 5/1/2023
1.0.9 1,305 4/25/2023
1.0.8 610 4/24/2023
1.0.7 1,259 4/21/2023
1.0.6 2,518 4/13/2023
1.0.5 769 4/12/2023
1.0.4 1,313 4/8/2023
1.0.3 272 4/8/2023
1.0.2 773 4/8/2023
1.0.1 279 4/8/2023