Soenneker.Utils.SingletonDictionary 3.0.1091

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.1091
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1091
                    
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.1091" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.SingletonDictionary" Version="3.0.1091" />
                    
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 3.0.1091
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1091"
                    
#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@3.0.1091
                    
#: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=3.0.1091
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1091
                    
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

A flexible singleton dictionary with double-check async locking, sync/async disposal, and external initialization


Features

  • ✅ Async and sync initialization patterns
  • ✅ Optional cancellation support
  • ✅ Async and sync access methods
  • ✅ Fully disposable (sync and async)
  • ✅ Thread-safe with AsyncLock from Nito.AsyncEx

Installation

dotnet add package Soenneker.Utils.SingletonDictionary

✨ Example Usage

Here’s an example using SingletonDictionary to manage singleton HttpClient instances keyed by configuration (e.g. timeout):

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

    public HttpRequester()
    {
        _clients = new SingletonDictionary<HttpClient>((args) =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

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

            return client;
        });
    }

    public async ValueTask Get()
    {
        var client = await _clients.Get("100", 100);
        await client.GetAsync("https://google.com");
    }

    public async ValueTask DisposeAsync()
    {
        GC.SuppressFinalize(this);
        await _clients.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(this);
        _clients.Dispose();
    }
}

🔍 Internals

SingletonDictionary<T> is backed by a ConcurrentDictionary<string, T> and supports:

  • Multiple constructor overloads for async/sync factory functions
  • Internal double-checked locking on access
  • Deferred/lazy factory execution
  • Proper disposal of values (both sync and async interfaces)
  • Safe mutation via SetInitialization before first use

Example constructor overloads include:

new SingletonDictionary<T>(Func<string, object[], ValueTask<T>> factory);
new SingletonDictionary<T>(Func<object[], T> factory);
new SingletonDictionary<T>(Func<string, CancellationToken, object[], ValueTask<T>> factory);
// And more...

You can also initialize manually:

var dict = new SingletonDictionary<MyService>();
dict.SetInitialization((args) => new MyService(args));

🛡️ Thread Safety

This library uses AsyncLock for safe concurrent access in async contexts, and synchronously via Lock() for blocking methods. This avoids race conditions and guarantees safe singleton creation.

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.  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 5,050 9/30/2025
3.0.1107 41,105 9/9/2025
3.0.1106 26,102 9/3/2025
3.0.1105 403 9/3/2025
3.0.1104 2,567 9/3/2025
3.0.1103 34,328 8/14/2025
3.0.1102 8,715 8/11/2025
3.0.1101 3,536 8/11/2025
3.0.1100 879 8/11/2025
3.0.1099 149 8/11/2025
3.0.1098 26,064 8/6/2025
3.0.1097 5,618 8/5/2025
3.0.1096 32,963 7/9/2025
3.0.1095 33,939 6/28/2025
3.0.1094 1,937 6/28/2025
3.0.1093 2,751 6/27/2025
3.0.1092 3,533 6/27/2025
3.0.1091 37,143 6/10/2025
3.0.1090 25,733 5/27/2025
3.0.1089 1,399 5/27/2025
3.0.1088 1,458 5/27/2025
3.0.1087 3,552 5/27/2025
3.0.1086 21,556 5/23/2025
3.0.1085 1,899 5/23/2025
3.0.1084 1,901 5/23/2025
3.0.1083 1,800 5/23/2025
3.0.1082 346 5/22/2025
3.0.1081 14,855 5/18/2025
3.0.1079 2,289 5/18/2025
3.0.1078 2,217 5/18/2025
3.0.1077 6,318 5/14/2025
3.0.1076 13,712 5/8/2025
3.0.1075 389 5/8/2025
3.0.1074 881 5/8/2025
3.0.1073 1,642 5/7/2025
3.0.1072 19,112 5/5/2025
3.0.1071 1,295 5/5/2025
3.0.1070 2,384 5/5/2025
3.0.1069 1,106 5/5/2025
3.0.1068 288 5/5/2025
3.0.1067 193 5/5/2025
3.0.1066 26,949 4/9/2025
3.0.1065 368 4/9/2025
3.0.1064 1,579 4/8/2025
3.0.1063 3,398 4/8/2025
3.0.1062 4,577 4/8/2025
3.0.1061 252 4/8/2025
3.0.1060 214 4/8/2025
3.0.1059 244 4/8/2025
3.0.1058 196 4/8/2025
3.0.1057 1,279 4/8/2025
3.0.1056 394 4/8/2025
3.0.1055 10,274 4/8/2025
3.0.1054 1,034 4/8/2025
3.0.1053 5,072 4/7/2025
3.0.1052 1,012 4/7/2025
3.0.1051 204 4/7/2025
3.0.1050 829 4/7/2025
3.0.1049 205 4/7/2025
3.0.1048 10,806 4/7/2025
3.0.1047 207 4/7/2025
3.0.1046 15,081 4/7/2025
3.0.1045 208 4/7/2025
3.0.1044 2,041 4/7/2025
3.0.1043 209 4/7/2025
3.0.1042 2,468 4/7/2025
3.0.1041 1,404 4/6/2025
3.0.1040 373 4/6/2025
3.0.1039 212 4/6/2025
3.0.1038 1,743 4/6/2025
3.0.1037 212 4/6/2025
3.0.1036 557 4/6/2025
3.0.1035 1,794 4/6/2025
3.0.1034 179 4/6/2025
3.0.1033 3,187 4/6/2025
3.0.1032 154 4/6/2025
3.0.1031 207 4/6/2025
3.0.1030 162 4/6/2025
3.0.1029 2,494 4/5/2025
3.0.1028 251 4/5/2025
3.0.1027 1,840 4/5/2025
3.0.1026 1,563 4/5/2025
3.0.1025 1,618 4/5/2025
3.0.1024 923 4/5/2025
3.0.1023 812 4/5/2025
3.0.1022 153 4/5/2025
3.0.1021 2,025 4/4/2025
3.0.1020 10,758 4/4/2025
3.0.1019 36,304 4/4/2025
3.0.1018 10,859 4/1/2025
3.0.1017 4,153 4/1/2025
3.0.1016 210 4/1/2025
3.0.1015 8,833 4/1/2025
3.0.1014 3,793 3/31/2025
3.0.1013 499 3/31/2025
3.0.1012 6,151 3/31/2025
3.0.1011 11,169 3/29/2025
3.0.1010 1,689 3/29/2025
3.0.1009 2,312 3/29/2025
3.0.1008 146 3/29/2025
3.0.1007 7,181 3/27/2025
3.0.1006 6,004 3/25/2025
3.0.1005 723 3/25/2025
3.0.1004 4,862 3/25/2025
3.0.1003 9,904 3/21/2025
3.0.1002 4,137 3/21/2025
3.0.1001 10,812 3/18/2025
3.0.1000 5,544 3/18/2025
3.0.999 10,459 3/15/2025
3.0.998 3,002 3/15/2025
3.0.997 122 3/15/2025
3.0.996 9,860 3/12/2025
3.0.995 3,496 3/12/2025
3.0.994 214 3/12/2025
3.0.993 530 3/12/2025
3.0.992 200 3/12/2025
3.0.991 4,371 3/11/2025
3.0.990 210 3/11/2025
3.0.989 1,982 3/11/2025
3.0.988 212 3/11/2025
3.0.987 3,996 3/11/2025
3.0.986 218 3/11/2025
3.0.985 4,074 3/11/2025
3.0.984 204 3/11/2025
3.0.983 2,591 3/11/2025
3.0.982 195 3/11/2025
3.0.981 14,333 3/7/2025
3.0.980 4,177 3/7/2025
3.0.979 9,544 3/2/2025
3.0.978 1,631 3/2/2025
3.0.977 1,026 3/2/2025
3.0.976 140 3/2/2025
3.0.975 6,955 3/2/2025
3.0.974 148 3/2/2025
3.0.973 5,232 3/1/2025
3.0.972 131 3/1/2025
3.0.971 7,106 3/1/2025
3.0.970 165 3/1/2025
3.0.969 128 3/1/2025
3.0.968 647 3/1/2025
3.0.967 141 3/1/2025
3.0.966 9,600 3/1/2025
3.0.965 7,506 2/26/2025
3.0.964 1,294 2/26/2025
3.0.963 3,825 2/25/2025
3.0.962 143 2/25/2025
3.0.961 1,345 2/25/2025
3.0.960 124 2/25/2025
3.0.959 173 2/25/2025
3.0.958 2,956 2/25/2025
3.0.957 7,816 2/24/2025
3.0.956 7,273 2/23/2025
3.0.955 1,735 2/22/2025
3.0.954 131 2/22/2025
3.0.953 12,304 2/22/2025
3.0.952 3,566 2/22/2025
3.0.951 1,722 2/22/2025
3.0.950 1,204 2/22/2025
3.0.949 187 2/22/2025
3.0.948 148 2/22/2025
3.0.947 150 2/22/2025
3.0.946 7,518 2/21/2025
3.0.945 141 2/21/2025
3.0.944 9,126 2/21/2025
3.0.943 7,239 2/19/2025
3.0.942 2,509 2/19/2025
3.0.941 979 2/19/2025
3.0.940 148 2/19/2025
3.0.939 590 2/18/2025
3.0.938 149 2/18/2025
3.0.937 8,731 2/18/2025
3.0.936 141 2/18/2025
3.0.935 4,441 2/18/2025
3.0.934 10,497 2/16/2025
3.0.933 2,379 2/14/2025
3.0.932 1,213 2/14/2025
3.0.931 1,118 2/13/2025
3.0.930 3,833 2/13/2025
3.0.929 411 2/13/2025
3.0.928 5,888 2/13/2025
3.0.927 5,845 2/12/2025
3.0.926 2,271 2/12/2025
3.0.925 171 2/12/2025
3.0.924 148 2/12/2025
3.0.923 3,220 2/12/2025
3.0.922 469 2/12/2025
3.0.921 153 2/12/2025
3.0.920 243 2/12/2025
3.0.919 228 2/12/2025
3.0.918 147 2/12/2025
3.0.917 211 2/11/2025
3.0.916 5,457 2/11/2025
3.0.915 6,045 2/11/2025
3.0.914 3,574 2/11/2025
3.0.913 157 2/11/2025
3.0.912 536 2/11/2025
3.0.911 2,778 2/10/2025
3.0.910 165 2/10/2025
3.0.909 1,186 2/10/2025
3.0.908 163 2/10/2025
3.0.907 10,052 2/10/2025
3.0.906 157 2/10/2025
3.0.905 1,879 2/9/2025
3.0.904 9,088 2/9/2025
3.0.903 141 2/9/2025
3.0.902 11,679 2/8/2025
3.0.901 156 2/8/2025
3.0.900 2,678 2/7/2025
3.0.899 149 2/7/2025
3.0.898 2,546 2/7/2025
3.0.897 150 2/7/2025
3.0.896 972 2/7/2025
3.0.895 615 2/7/2025
3.0.894 161 2/7/2025
3.0.893 491 2/7/2025
3.0.892 146 2/7/2025
3.0.891 1,659 2/7/2025
3.0.890 140 2/7/2025
3.0.889 157 2/7/2025
3.0.888 16,976 2/7/2025
3.0.887 10,049 2/5/2025
3.0.886 927 2/5/2025
3.0.885 1,447 2/5/2025
3.0.884 416 2/5/2025
3.0.883 1,597 2/5/2025
3.0.882 1,030 2/5/2025
3.0.881 4,925 2/5/2025
3.0.880 136 2/5/2025
3.0.879 16,500 1/28/2025
3.0.878 1,072 1/28/2025
3.0.877 3,038 1/28/2025
3.0.876 339 1/28/2025
3.0.875 6,578 1/28/2025
3.0.874 1,039 1/27/2025
3.0.873 117 1/27/2025
3.0.872 248 1/27/2025
3.0.871 417 1/27/2025
3.0.870 133 1/27/2025
3.0.869 8,221 1/27/2025
3.0.868 7,439 1/26/2025
3.0.867 1,527 1/26/2025
3.0.866 259 1/26/2025
3.0.865 1,669 1/26/2025
3.0.864 2,143 1/25/2025
3.0.863 137 1/25/2025
3.0.862 9,326 1/25/2025
3.0.861 1,695 1/25/2025
3.0.860 474 1/25/2025
3.0.859 145 1/25/2025
3.0.858 3,172 1/25/2025
3.0.857 2,054 1/25/2025
3.0.856 10,565 1/24/2025
3.0.855 2,604 1/24/2025
3.0.854 122 1/24/2025
3.0.853 3,394 1/24/2025
3.0.852 483 1/24/2025
3.0.851 331 1/24/2025
3.0.850 5,292 1/24/2025
3.0.849 138 1/24/2025
3.0.848 797 1/23/2025
3.0.847 142 1/23/2025
3.0.846 902 1/23/2025
3.0.845 135 1/23/2025
3.0.844 12,802 1/22/2025
3.0.843 1,593 1/21/2025
3.0.842 1,535 1/21/2025
3.0.841 871 1/21/2025
3.0.840 128 1/21/2025
3.0.839 892 1/21/2025
3.0.838 1,126 1/21/2025
3.0.837 8,758 1/21/2025
3.0.836 883 1/21/2025
3.0.835 1,596 1/21/2025
3.0.834 143 1/21/2025
3.0.833 1,304 1/21/2025
3.0.832 136 1/21/2025
3.0.831 3,695 1/21/2025
3.0.830 125 1/21/2025
3.0.829 628 1/20/2025
3.0.828 4,600 1/20/2025
3.0.827 355 1/20/2025
3.0.826 3,369 1/20/2025
3.0.825 137 1/20/2025
3.0.824 1,754 1/20/2025
3.0.823 145 1/20/2025
3.0.822 150 1/20/2025
3.0.821 141 1/20/2025
3.0.820 576 1/20/2025
3.0.819 145 1/20/2025
3.0.818 139 1/20/2025
3.0.817 9,189 1/19/2025
3.0.816 144 1/19/2025
3.0.815 8,540 1/19/2025
3.0.814 2,624 1/19/2025
3.0.813 175 1/19/2025
3.0.812 594 1/19/2025
3.0.811 135 1/19/2025
3.0.810 3,136 1/19/2025
3.0.809 135 1/19/2025
3.0.808 5,367 1/18/2025
3.0.807 142 1/18/2025
3.0.806 11,495 1/17/2025
3.0.805 153 1/17/2025
3.0.804 1,027 1/17/2025
3.0.803 1,485 1/17/2025
3.0.802 6,867 1/16/2025
3.0.801 2,337 1/16/2025
3.0.800 3,471 1/16/2025
3.0.799 865 1/16/2025
3.0.798 1,948 1/16/2025
3.0.797 1,628 1/16/2025
3.0.796 128 1/16/2025
3.0.795 7,597 1/15/2025
3.0.794 134 1/15/2025
3.0.793 4,562 1/15/2025
3.0.792 130 1/15/2025
3.0.791 209 1/15/2025
3.0.790 5,403 1/15/2025
3.0.789 117 1/15/2025
3.0.788 4,730 1/15/2025
3.0.787 114 1/15/2025
3.0.786 785 1/15/2025
3.0.785 110 1/15/2025
3.0.784 2,752 1/15/2025
3.0.783 114 1/15/2025
3.0.782 408 1/14/2025
3.0.781 127 1/14/2025
3.0.780 126 1/14/2025
3.0.779 5,999 1/14/2025
3.0.778 982 1/14/2025
3.0.777 128 1/14/2025
3.0.776 1,819 1/14/2025
3.0.775 114 1/14/2025
3.0.774 9,332 1/13/2025
3.0.773 2,720 1/13/2025
3.0.772 2,295 1/13/2025
3.0.771 133 1/13/2025
3.0.770 8,887 1/11/2025
3.0.769 3,610 1/11/2025
3.0.768 158 1/11/2025
3.0.767 3,198 1/11/2025
3.0.766 142 1/11/2025
3.0.765 3,002 1/10/2025
3.0.764 3,379 1/10/2025
3.0.763 135 1/10/2025
3.0.762 1,398 1/10/2025
3.0.761 150 1/10/2025
3.0.760 138 1/10/2025
3.0.759 10,681 1/3/2025
3.0.758 701 1/3/2025
3.0.757 1,582 1/3/2025
3.0.756 172 1/3/2025
3.0.755 2,348 1/3/2025
3.0.754 146 1/3/2025
3.0.753 1,841 1/3/2025
3.0.752 1,744 1/2/2025
3.0.751 143 1/2/2025
3.0.750 2,879 1/2/2025
3.0.749 145 1/2/2025
3.0.748 4,928 1/2/2025
3.0.747 135 1/2/2025
3.0.746 155 1/2/2025
3.0.745 8,084 1/1/2025
3.0.744 1,686 1/1/2025
3.0.743 423 1/1/2025
3.0.742 165 1/1/2025
3.0.741 2,577 1/1/2025
3.0.740 148 1/1/2025
3.0.739 146 1/1/2025
3.0.738 158 1/1/2025
3.0.737 476 12/31/2024
3.0.736 159 12/31/2024
3.0.735 172 12/31/2024
3.0.734 1,013 12/31/2024
3.0.733 170 12/31/2024
3.0.732 7,924 12/31/2024
3.0.731 159 12/31/2024
3.0.730 7,459 12/31/2024
3.0.729 129 12/31/2024
3.0.728 4,209 12/31/2024
3.0.727 534 12/31/2024
3.0.726 149 12/31/2024
3.0.725 2,276 12/31/2024
3.0.724 147 12/31/2024
3.0.723 14,905 12/28/2024
3.0.722 1,919 12/28/2024
3.0.721 2,113 12/27/2024
3.0.720 160 12/27/2024
3.0.719 4,545 12/27/2024
3.0.718 8,393 12/24/2024
3.0.717 2,058 12/24/2024
3.0.716 1,484 12/24/2024
3.0.715 1,269 12/24/2024
3.0.714 2,256 12/24/2024
3.0.713 141 12/24/2024
3.0.712 3,722 12/24/2024
3.0.711 995 12/24/2024
3.0.710 142 12/24/2024
3.0.709 675 12/24/2024
3.0.708 1,587 12/24/2024
3.0.707 365 12/24/2024
3.0.706 181 12/24/2024
3.0.705 1,703 12/24/2024
3.0.704 150 12/24/2024
3.0.703 2,955 12/23/2024
3.0.702 4,753 12/23/2024
3.0.701 150 12/23/2024
3.0.700 1,142 12/23/2024
3.0.699 147 12/23/2024
3.0.698 3,214 12/23/2024
3.0.697 146 12/23/2024
3.0.696 2,423 12/23/2024
3.0.695 153 12/23/2024
3.0.694 698 12/22/2024
3.0.693 2,363 12/22/2024
3.0.692 6,710 12/22/2024
3.0.691 157 12/22/2024
3.0.690 2,723 12/22/2024
3.0.689 225 12/22/2024
3.0.688 766 12/22/2024
3.0.687 142 12/22/2024
3.0.686 419 12/22/2024
3.0.685 149 12/22/2024
3.0.684 11,396 12/22/2024
3.0.683 138 12/22/2024
3.0.682 1,841 12/21/2024
3.0.681 427 12/21/2024
3.0.680 143 12/21/2024
3.0.679 815 12/21/2024
3.0.678 1,325 12/21/2024
3.0.677 140 12/21/2024
3.0.676 6,510 12/21/2024
3.0.675 626 12/21/2024
3.0.674 144 12/21/2024
3.0.673 4,323 12/21/2024
3.0.672 1,063 12/21/2024
3.0.671 153 12/21/2024
3.0.670 2,575 12/20/2024
3.0.669 154 12/20/2024
3.0.668 151 12/20/2024
3.0.667 6,310 12/20/2024
3.0.666 1,927 12/20/2024
3.0.665 351 12/20/2024
3.0.664 5,946 12/19/2024
3.0.663 718 12/19/2024
3.0.662 3,423 12/18/2024
3.0.661 142 12/18/2024
3.0.660 10,784 12/17/2024
3.0.659 293 12/17/2024
3.0.658 1,092 12/16/2024
3.0.657 152 12/16/2024
3.0.656 215 12/16/2024
3.0.655 140 12/16/2024
3.0.654 10,650 12/10/2024
3.0.653 1,660 12/10/2024
3.0.652 596 12/9/2024
3.0.651 148 12/9/2024
3.0.650 4,501 12/9/2024
3.0.649 2,284 12/9/2024
3.0.648 143 12/9/2024
3.0.647 6,378 12/9/2024
3.0.646 4,715 12/6/2024
3.0.645 669 12/6/2024
3.0.644 149 12/6/2024
3.0.643 1,125 12/6/2024
3.0.641 6,482 12/6/2024
3.0.640 4,081 12/6/2024
3.0.639 8,958 12/6/2024
3.0.637 541 12/6/2024
3.0.636 4,150 12/5/2024
3.0.635 5,760 12/5/2024
3.0.634 4,823 12/5/2024
3.0.633 141 12/5/2024
3.0.632 3,230 12/5/2024
3.0.631 1,656 12/5/2024
3.0.630 151 12/5/2024
3.0.629 600 12/5/2024
3.0.628 145 12/5/2024
3.0.627 208 12/5/2024
3.0.626 146 12/5/2024
3.0.625 5,525 12/4/2024
3.0.624 145 12/4/2024
3.0.623 162 12/4/2024
3.0.622 164 12/4/2024
3.0.621 2,804 12/4/2024
3.0.620 485 12/4/2024
3.0.619 666 12/4/2024
3.0.618 5,616 12/3/2024
3.0.617 152 12/3/2024
3.0.616 1,862 12/3/2024
3.0.615 740 12/3/2024
3.0.614 164 12/3/2024
3.0.613 162 12/3/2024
3.0.612 6,736 12/3/2024
3.0.611 143 12/3/2024
3.0.610 5,604 12/3/2024
3.0.609 136 12/3/2024
3.0.608 5,143 12/2/2024
3.0.607 4,644 12/2/2024
3.0.606 2,733 12/2/2024
3.0.605 435 12/2/2024
3.0.604 154 12/2/2024
3.0.603 609 12/2/2024
3.0.602 5,817 12/1/2024
3.0.601 157 12/1/2024
3.0.600 3,105 12/1/2024
3.0.599 274 12/1/2024
3.0.598 5,858 12/1/2024
3.0.597 155 12/1/2024
3.0.596 5,950 11/29/2024
3.0.595 1,783 11/29/2024
3.0.594 8,985 11/21/2024
3.0.593 484 11/21/2024
3.0.592 7,536 11/20/2024
3.0.591 509 11/20/2024
3.0.590 159 11/20/2024
3.0.589 143 11/20/2024
3.0.588 668 11/20/2024
3.0.587 240 11/20/2024
3.0.586 143 11/20/2024
3.0.585 3,169 11/20/2024
3.0.584 4,502 11/19/2024
3.0.583 150 11/19/2024
3.0.582 1,023 11/19/2024
3.0.581 133 11/19/2024
3.0.580 4,031 11/19/2024
3.0.579 128 11/19/2024
3.0.578 2,117 11/19/2024
3.0.577 153 11/19/2024
3.0.576 13,941 11/14/2024
3.0.575 214 11/14/2024
3.0.574 860 11/14/2024
3.0.573 3,851 11/14/2024
3.0.572 1,201 11/14/2024
3.0.571 163 11/14/2024
3.0.570 155 11/14/2024
3.0.569 6,722 11/14/2024
3.0.568 155 11/14/2024
3.0.567 154 11/14/2024
3.0.566 5,815 11/14/2024
3.0.565 149 11/14/2024
3.0.564 152 11/14/2024
3.0.563 149 11/14/2024
2.1.562 13,382 11/13/2024
2.1.561 2,186 11/13/2024
2.1.560 4,949 11/13/2024
2.1.559 165 11/13/2024
2.1.558 2,133 11/12/2024
2.1.557 565 11/12/2024
2.1.556 13,070 11/9/2024
2.1.555 542 11/9/2024
2.1.554 161 11/9/2024
2.1.553 2,788 11/9/2024
2.1.552 146 11/9/2024
2.1.551 1,406 11/8/2024
2.1.550 150 11/8/2024
2.1.549 154 11/8/2024
2.1.548 156 11/8/2024
2.1.547 599 11/8/2024
2.1.546 3,060 11/8/2024
2.1.545 139 11/8/2024
2.1.544 8,688 11/8/2024
2.1.543 133 11/8/2024
2.1.542 18,986 11/1/2024
2.1.541 701 11/1/2024
2.1.540 11,130 10/29/2024
2.1.539 1,216 10/29/2024
2.1.538 4,477 10/29/2024
2.1.537 931 10/29/2024
2.1.536 8,900 10/28/2024
2.1.535 3,035 10/28/2024
2.1.534 6,248 10/26/2024
2.1.533 1,083 10/26/2024
2.1.532 13,260 10/22/2024
2.1.531 396 10/22/2024
2.1.530 841 10/22/2024
2.1.529 1,456 10/22/2024
2.1.528 147 10/22/2024
2.1.527 679 10/22/2024
2.1.526 10,658 10/18/2024
2.1.525 1,742 10/17/2024
2.1.524 6,783 10/15/2024
2.1.523 2,604 10/15/2024
2.1.522 148 10/14/2024
2.1.521 8,330 10/12/2024
2.1.520 1,084 10/11/2024
2.1.519 146 10/11/2024
2.1.518 771 10/11/2024
2.1.517 4,770 10/11/2024
2.1.516 10,446 10/9/2024
2.1.515 596 10/9/2024
2.1.514 132 10/9/2024
2.1.513 3,192 10/8/2024
2.1.512 207 10/8/2024
2.1.511 3,527 10/8/2024
2.1.510 205 10/8/2024
2.1.509 138 10/8/2024
2.1.508 6,381 10/8/2024
2.1.507 10,038 10/3/2024
2.1.506 151 10/3/2024
2.1.505 1,867 10/3/2024
2.1.504 3,190 10/3/2024
2.1.503 2,317 10/3/2024
2.1.502 9,454 10/2/2024
2.1.501 146 10/2/2024
2.1.500 3,016 10/2/2024
2.1.499 1,621 10/2/2024
2.1.498 6,652 10/1/2024
2.1.497 1,037 10/1/2024
2.1.496 160 10/1/2024
2.1.495 4,275 10/1/2024
2.1.494 152 10/1/2024
2.1.493 202 10/1/2024
2.1.492 8,751 9/29/2024
2.1.491 2,133 9/29/2024
2.1.490 150 9/29/2024
2.1.489 1,963 9/29/2024
2.1.488 160 9/29/2024
2.1.487 4,238 9/29/2024
2.1.486 8,212 9/27/2024
2.1.485 1,219 9/27/2024
2.1.484 4,938 9/27/2024
2.1.483 162 9/27/2024
2.1.482 656 9/27/2024
2.1.481 3,513 9/27/2024
2.1.480 5,154 9/26/2024
2.1.479 5,581 9/26/2024
2.1.478 3,777 9/26/2024
2.1.477 3,469 9/26/2024
2.1.476 6,019 9/26/2024
2.1.475 147 9/26/2024
2.1.474 8,989 9/23/2024
2.1.473 1,991 9/23/2024
2.1.472 1,488 9/23/2024
2.1.471 1,770 9/23/2024
2.1.470 160 9/23/2024
2.1.469 2,440 9/23/2024
2.1.468 132 9/23/2024
2.1.467 7,516 9/23/2024
2.1.466 156 9/23/2024
2.1.465 1,102 9/23/2024
2.1.464 167 9/23/2024
2.1.463 141 9/23/2024
2.1.462 1,450 9/23/2024
2.1.461 14,727 9/18/2024
2.1.460 361 9/17/2024
2.1.459 1,919 9/17/2024
2.1.458 2,609 9/17/2024
2.1.457 159 9/17/2024
2.1.456 2,807 9/17/2024
2.1.455 680 9/17/2024
2.1.454 4,998 9/17/2024
2.1.453 841 9/17/2024
2.1.452 274 9/17/2024
2.1.451 4,076 9/17/2024
2.1.450 11,787 9/16/2024
2.1.449 1,058 9/16/2024
2.1.448 7,626 9/12/2024
2.1.447 4,507 9/12/2024
2.1.446 2,000 9/11/2024
2.1.445 2,473 9/11/2024
2.1.443 5,507 9/11/2024
2.1.442 1,453 9/11/2024
2.1.441 1,368 9/11/2024
2.1.440 3,425 9/11/2024
2.1.439 12,176 9/10/2024
2.1.438 173 9/10/2024
2.1.437 1,731 9/10/2024
2.1.436 168 9/10/2024
2.1.434 4,398 9/10/2024
2.1.433 862 9/9/2024
2.1.432 2,718 9/9/2024
2.1.430 2,318 9/9/2024
2.1.428 175 9/9/2024
2.1.427 621 9/9/2024
2.1.426 20,034 9/7/2024
2.1.425 191 9/7/2024
2.1.424 7,586 9/6/2024
2.1.423 499 9/6/2024
2.1.422 3,409 9/6/2024
2.1.421 166 9/5/2024
2.1.420 175 9/5/2024
2.1.419 3,661 9/5/2024
2.1.418 1,685 9/5/2024
2.1.417 163 9/5/2024
2.1.416 1,679 9/5/2024
2.1.415 669 9/5/2024
2.1.414 160 9/5/2024
2.1.413 7,586 9/5/2024
2.1.412 278 9/5/2024
2.1.411 171 9/5/2024
2.1.410 3,366 9/4/2024
2.1.409 12,255 9/3/2024
2.1.408 154 9/3/2024
2.1.407 156 9/3/2024
2.1.406 6,260 9/3/2024
2.1.405 211 9/3/2024
2.1.404 3,828 9/3/2024
2.1.403 8,233 8/29/2024
2.1.402 3,952 8/29/2024
2.1.401 4,379 8/26/2024
2.1.400 146 8/26/2024
2.1.399 7,720 8/21/2024
2.1.398 900 8/21/2024
2.1.397 189 8/21/2024
2.1.396 4,060 8/21/2024
2.1.395 202 8/20/2024
2.1.394 192 8/20/2024
2.1.393 660 8/20/2024
2.1.392 4,693 8/20/2024
2.1.391 643 8/20/2024
2.1.390 168 8/20/2024
2.1.389 4,102 8/20/2024
2.1.388 171 8/20/2024
2.1.387 1,837 8/20/2024
2.1.386 4,518 8/19/2024
2.1.385 7,498 8/15/2024
2.1.384 3,187 8/15/2024
2.1.383 7,303 8/14/2024
2.1.382 191 8/13/2024
2.1.381 8,735 8/7/2024
2.1.380 446 8/6/2024
2.1.379 4,227 8/6/2024
2.1.378 7,971 8/1/2024
2.1.377 540 8/1/2024
2.1.376 146 8/1/2024
2.1.374 1,961 8/1/2024
2.1.373 9,325 7/25/2024
2.1.372 143 7/25/2024
2.1.371 1,245 7/25/2024
2.1.370 449 7/25/2024
2.1.369 557 7/25/2024
2.1.368 285 7/25/2024
2.1.367 619 7/24/2024
2.1.366 219 7/24/2024
2.1.365 337 7/24/2024
2.1.364 503 7/24/2024
2.1.363 13,385 7/20/2024
2.1.362 2,402 7/20/2024
2.1.361 8,135 7/14/2024
2.1.360 2,477 7/14/2024
2.1.359 154 7/14/2024
2.1.358 2,283 7/14/2024
2.1.357 6,889 7/10/2024
2.1.355 1,102 7/10/2024
2.1.354 1,853 7/10/2024
2.1.353 161 7/10/2024
2.1.352 2,680 7/10/2024
2.1.351 194 7/10/2024
2.1.350 151 7/10/2024
2.1.349 239 7/10/2024
2.1.348 159 7/10/2024
2.1.347 3,135 7/10/2024
2.1.346 173 7/10/2024
2.1.345 1,271 7/10/2024
2.1.344 154 7/10/2024
2.1.343 309 7/9/2024
2.1.342 140 7/9/2024
2.1.339 3,033 7/9/2024
2.1.338 634 7/9/2024
2.1.337 6,540 7/9/2024
2.1.336 1,715 7/9/2024
2.1.335 166 7/9/2024
2.1.334 4,049 7/9/2024
2.1.333 148 7/9/2024
2.1.332 11,625 7/9/2024
2.1.331 161 7/9/2024
2.1.330 4,003 7/9/2024
2.1.329 149 7/9/2024
2.1.328 1,681 7/9/2024
2.1.327 948 7/8/2024
2.1.326 1,570 7/8/2024
2.1.325 162 7/8/2024
2.1.324 176 7/8/2024
2.1.323 7,698 7/8/2024
2.1.322 2,634 7/8/2024
2.1.321 159 7/8/2024
2.1.320 3,783 7/7/2024
2.1.319 171 7/7/2024
2.1.318 183 7/7/2024
2.1.317 169 7/7/2024
2.1.316 1,779 7/7/2024
2.1.315 3,483 7/7/2024
2.1.314 2,858 7/7/2024
2.1.313 330 7/7/2024
2.1.312 5,489 7/5/2024
2.1.311 6,404 7/3/2024
2.1.310 4,976 7/3/2024
2.1.309 590 7/3/2024
2.1.308 6,469 7/2/2024
2.1.307 2,977 6/30/2024
2.1.306 3,592 6/28/2024
2.1.305 8,475 6/22/2024
2.1.304 7,643 6/15/2024
2.1.303 6,255 6/14/2024
2.1.302 9,158 6/1/2024
2.1.301 2,530 6/1/2024
2.1.300 869 6/1/2024
2.1.299 9,276 5/31/2024
2.1.298 5,718 5/29/2024
2.1.297 4,770 5/28/2024
2.1.296 3,796 5/27/2024
2.1.295 7,573 5/26/2024
2.1.294 3,128 5/26/2024
2.1.293 697 5/26/2024
2.1.292 3,969 5/25/2024
2.1.291 2,022 5/25/2024
2.1.290 182 5/25/2024
2.1.289 174 5/25/2024
2.1.288 1,038 5/25/2024
2.1.287 173 5/25/2024
2.1.286 543 5/25/2024
2.1.285 170 5/25/2024
2.1.284 168 5/25/2024
2.1.283 11,550 5/23/2024
2.1.282 775 5/23/2024
2.1.281 385 5/22/2024
2.1.280 5,675 5/22/2024
2.1.279 177 5/22/2024
2.1.278 181 5/22/2024
2.1.277 170 5/22/2024
2.1.276 3,369 5/22/2024
2.1.275 5,252 5/18/2024
2.1.274 2,904 5/18/2024
2.1.273 2,769 5/17/2024
2.1.272 166 5/17/2024
2.1.271 4,157 5/16/2024
2.1.270 626 5/15/2024
2.1.269 4,237 5/15/2024
2.1.268 7,005 5/12/2024
2.1.267 4,243 5/3/2024
2.1.266 1,802 4/30/2024
2.1.265 2,685 4/29/2024
2.1.264 2,953 4/29/2024
2.1.263 4,101 4/28/2024
2.1.262 2,339 4/28/2024
2.1.261 1,665 4/28/2024
2.1.260 2,598 4/28/2024
2.1.259 1,375 4/28/2024
2.1.258 160 4/28/2024
2.1.257 6,451 4/27/2024
2.1.256 180 4/27/2024
2.1.255 6,547 4/19/2024
2.1.254 6,265 4/18/2024
2.1.253 5,184 4/12/2024
2.1.252 1,732 4/12/2024
2.1.251 1,064 4/12/2024
2.1.250 1,302 4/12/2024
2.1.249 289 4/12/2024
2.1.248 154 4/12/2024
2.1.247 1,500 4/12/2024
2.1.246 451 4/12/2024
2.1.245 2,355 4/11/2024
2.1.244 5,784 4/10/2024
2.1.243 1,676 4/9/2024
2.1.242 4,780 4/2/2024
2.1.241 1,347 4/1/2024
2.1.240 3,154 3/29/2024
2.1.239 2,703 3/25/2024
2.1.238 416 3/25/2024
2.1.237 5,040 3/20/2024
2.1.236 3,104 3/19/2024
2.1.235 709 3/19/2024
2.1.234 3,619 3/18/2024
2.1.233 1,978 3/18/2024
2.1.232 1,964 3/15/2024
2.1.231 3,478 3/13/2024
2.1.230 1,547 3/13/2024
2.1.229 969 3/13/2024
2.1.228 1,091 3/13/2024
2.1.227 186 3/13/2024
2.1.226 754 3/13/2024
2.1.225 180 3/13/2024
2.1.224 184 3/13/2024
2.1.223 2,393 3/12/2024
2.1.222 4,150 3/11/2024
2.1.221 3,579 3/11/2024
2.1.220 2,389 3/10/2024
2.1.219 2,746 3/8/2024
2.1.218 1,503 3/8/2024
2.1.217 2,250 3/8/2024
2.1.216 3,061 3/6/2024
2.1.215 2,883 3/4/2024
2.1.214 2,081 3/4/2024
2.1.213 3,759 3/2/2024
2.1.212 1,732 3/2/2024
2.1.211 565 3/2/2024
2.1.210 472 3/2/2024
2.1.209 697 3/2/2024
2.1.208 4,943 2/29/2024
2.1.207 895 2/29/2024
2.1.206 495 2/29/2024
2.1.205 4,787 2/26/2024
2.1.204 2,080 2/25/2024
2.1.203 3,717 2/23/2024
2.1.202 2,629 2/22/2024
2.1.201 1,301 2/22/2024
2.1.200 630 2/21/2024
2.1.199 1,613 2/21/2024
2.1.198 392 2/21/2024
2.1.197 941 2/21/2024
2.1.196 170 2/21/2024
2.1.195 1,838 2/21/2024
2.1.194 551 2/21/2024
2.1.193 175 2/21/2024
2.1.192 189 2/21/2024
2.1.191 752 2/21/2024
2.1.190 166 2/21/2024
2.1.189 3,747 2/20/2024
2.1.188 904 2/20/2024
2.1.187 874 2/20/2024
2.1.186 1,143 2/20/2024
2.1.185 2,934 2/19/2024
2.1.184 2,641 2/17/2024
2.1.183 1,275 2/16/2024
2.1.182 1,133 2/16/2024
2.1.181 1,874 2/16/2024
2.1.180 180 2/16/2024
2.1.179 926 2/16/2024
2.1.178 182 2/16/2024
2.1.177 177 2/16/2024
2.1.176 758 2/16/2024
2.1.175 166 2/16/2024
2.1.174 4,631 2/13/2024
2.1.173 1,901 2/13/2024
2.1.172 1,530 2/13/2024
2.1.171 628 2/13/2024
2.1.170 862 2/13/2024
2.1.169 2,691 2/12/2024
2.1.168 637 2/11/2024
2.1.167 2,132 2/11/2024
2.1.166 1,154 2/11/2024
2.1.165 3,939 2/10/2024
2.1.164 724 2/9/2024
2.1.163 176 2/9/2024
2.1.162 2,180 2/9/2024
2.1.161 2,282 2/9/2024
2.1.160 555 2/8/2024
2.1.159 1,705 2/8/2024
2.1.158 1,080 2/8/2024
2.1.157 2,045 2/8/2024
2.1.156 162 2/8/2024
2.1.155 2,595 2/7/2024
2.1.154 599 2/7/2024
2.1.153 796 2/7/2024
2.1.152 1,781 2/7/2024
2.1.151 465 2/6/2024
2.1.150 171 2/6/2024
2.1.149 174 2/6/2024
2.1.148 3,855 2/5/2024
2.1.147 2,151 2/4/2024
2.1.146 2,915 2/2/2024
2.1.145 2,628 1/31/2024
2.1.144 2,897 1/29/2024
2.1.143 1,842 1/29/2024
2.1.142 492 1/29/2024
2.1.141 1,935 1/28/2024
2.1.140 645 1/28/2024
2.1.139 418 1/28/2024
2.1.138 687 1/28/2024
2.1.137 2,703 1/28/2024
2.1.136 1,380 1/28/2024
2.1.135 422 1/27/2024
2.1.134 1,251 1/27/2024
2.1.133 1,731 1/27/2024
2.1.132 1,697 1/27/2024
2.1.131 196 1/27/2024
2.1.130 900 1/27/2024
2.1.129 1,506 1/26/2024
2.1.128 311 1/26/2024
2.1.127 1,186 1/26/2024
2.1.126 1,566 1/26/2024
2.1.125 2,244 1/26/2024
2.1.124 1,254 1/25/2024
2.1.123 1,365 1/25/2024
2.1.122 619 1/25/2024
2.1.121 1,245 1/25/2024
2.1.120 670 1/25/2024
2.1.119 3,646 1/19/2024
2.1.118 2,964 1/15/2024
2.1.117 651 1/15/2024
2.1.116 1,774 1/15/2024
2.1.115 173 1/15/2024
2.1.114 768 1/15/2024
2.1.113 1,838 1/15/2024
2.1.112 3,393 1/14/2024
2.1.111 2,195 1/13/2024
2.1.110 2,372 1/12/2024
2.1.109 2,785 1/11/2024
2.1.108 3,534 1/7/2024
2.1.107 2,695 1/5/2024
2.1.106 678 1/5/2024
2.1.105 193 1/5/2024
2.1.104 179 1/5/2024
2.1.103 1,951 1/5/2024
2.1.102 186 1/5/2024
2.1.101 3,738 1/1/2024
2.1.100 2,991 12/28/2023
2.1.99 1,001 12/28/2023
2.1.98 695 12/28/2023
2.1.97 173 12/28/2023
2.1.96 179 12/28/2023
2.1.95 986 12/27/2023
2.1.94 193 12/27/2023
2.1.93 705 12/27/2023
2.1.92 186 12/27/2023
2.1.91 191 12/27/2023
2.1.90 3,158 12/25/2023
2.1.89 489 12/25/2023
2.1.88 1,151 12/25/2023
2.1.87 195 12/25/2023
2.1.86 965 12/25/2023
2.1.85 185 12/25/2023
2.1.84 825 12/25/2023
2.1.83 183 12/25/2023
2.1.82 2,380 12/24/2023
2.1.81 1,569 12/23/2023
2.1.80 1,269 12/23/2023
2.1.79 401 12/23/2023
2.1.78 828 12/23/2023
2.1.77 186 12/23/2023
2.1.76 171 12/23/2023
2.1.75 1,535 12/23/2023
2.1.74 175 12/23/2023
2.1.73 2,004 12/19/2023
2.1.72 286 12/19/2023
2.1.71 4,326 12/11/2023
2.1.70 1,027 12/10/2023
2.1.69 175 12/10/2023
2.1.68 615 12/10/2023
2.1.67 2,069 12/10/2023
2.1.66 525 12/9/2023
2.1.65 520 12/9/2023
2.1.64 385 12/9/2023
2.1.63 193 12/9/2023
2.1.62 349 12/9/2023
2.1.61 281 12/9/2023
2.1.60 168 12/9/2023
2.1.59 1,519 12/9/2023
2.1.58 185 12/9/2023
2.1.57 2,221 12/6/2023
2.1.56 563 12/6/2023
2.1.55 338 12/6/2023
2.1.54 391 12/6/2023
2.1.53 1,312 12/5/2023
2.1.52 534 12/5/2023
2.1.51 481 12/5/2023
2.1.50 548 12/5/2023
2.1.49 152 12/5/2023
2.1.48 468 12/5/2023
2.1.47 369 12/5/2023
2.1.46 156 12/4/2023
2.1.45 170 12/4/2023
2.1.44 462 12/4/2023
2.1.43 184 12/4/2023
2.1.42 1,503 12/4/2023
2.1.41 135 12/4/2023
2.1.40 1,742 11/27/2023
2.1.39 762 11/26/2023
2.1.38 310 11/26/2023
2.1.37 927 11/23/2023
2.1.36 1,024 11/23/2023
2.1.35 952 11/23/2023
2.1.34 165 11/23/2023
2.1.33 589 11/23/2023
2.1.32 176 11/23/2023
2.1.31 1,611 11/20/2023
2.1.30 1,671 11/20/2023
2.1.29 1,244 11/19/2023
2.1.28 365 11/19/2023
2.1.27 688 11/19/2023
2.1.26 708 11/19/2023
2.1.25 716 11/19/2023
2.1.24 153 11/19/2023
2.1.23 289 11/18/2023
2.1.22 1,509 11/18/2023
2.1.21 531 11/18/2023
2.1.20 787 11/18/2023
2.1.19 175 11/18/2023
2.1.18 441 11/18/2023
2.1.17 164 11/18/2023
2.1.16 891 11/17/2023
2.1.15 777 11/17/2023
2.1.14 166 11/17/2023
2.1.13 628 11/17/2023
2.1.12 416 11/17/2023
2.1.11 727 11/17/2023
2.1.10 161 11/17/2023
2.1.9 737 11/17/2023
2.1.8 168 11/17/2023
2.1.7 211 11/17/2023
2.1.6 470 11/17/2023
2.1.5 542 11/16/2023
2.0.101 3,337 11/15/2023
2.0.100 151 11/15/2023
2.0.99 169 11/15/2023
2.0.4 162 11/16/2023
2.0.3 177 11/16/2023
2.0.2 166 11/16/2023
2.0.1 162 11/16/2023
1.0.98 888 11/14/2023
1.0.97 1,069 11/13/2023
1.0.96 146 11/13/2023
1.0.95 737 11/10/2023
1.0.94 161 11/10/2023
1.0.93 1,331 11/9/2023
1.0.92 163 11/9/2023
1.0.91 1,447 11/7/2023
1.0.90 162 11/7/2023
1.0.89 687 11/6/2023
1.0.88 172 11/6/2023
1.0.87 805 11/3/2023
1.0.86 176 11/3/2023
1.0.85 1,218 11/2/2023
1.0.84 156 11/2/2023
1.0.83 796 11/1/2023
1.0.82 2,033 10/26/2023
1.0.81 1,817 10/19/2023
1.0.80 179 10/19/2023
1.0.79 1,090 10/18/2023
1.0.78 202 10/18/2023
1.0.77 1,004 10/17/2023
1.0.76 191 10/17/2023
1.0.75 900 10/16/2023
1.0.74 193 10/16/2023
1.0.73 970 10/13/2023
1.0.72 463 10/12/2023
1.0.71 2,339 9/20/2023
1.0.70 967 9/19/2023
1.0.69 938 9/18/2023
1.0.68 192 9/18/2023
1.0.67 1,255 9/14/2023
1.0.66 2,023 8/31/2023
1.0.65 191 8/31/2023
1.0.64 1,134 8/30/2023
1.0.63 218 8/30/2023
1.0.62 233 8/30/2023
1.0.61 1,158 8/28/2023
1.0.60 945 8/25/2023
1.0.59 193 8/25/2023
1.0.58 662 8/24/2023
1.0.57 2,046 8/21/2023
1.0.56 1,167 8/18/2023
1.0.55 1,022 8/17/2023
1.0.54 215 8/17/2023
1.0.53 2,642 8/10/2023
1.0.52 746 8/9/2023
1.0.51 907 8/8/2023
1.0.50 842 8/7/2023
1.0.49 238 8/7/2023
1.0.48 3,368 7/13/2023
1.0.47 1,186 7/11/2023
1.0.46 942 7/10/2023
1.0.45 894 7/7/2023
1.0.44 238 7/7/2023
1.0.43 2,859 6/30/2023
1.0.42 1,418 6/29/2023
1.0.41 759 6/28/2023
1.0.40 2,025 6/26/2023
1.0.39 1,068 6/23/2023
1.0.38 1,441 6/21/2023
1.0.37 1,960 6/15/2023
1.0.36 609 6/14/2023
1.0.35 2,382 6/9/2023
1.0.34 1,041 6/8/2023
1.0.33 2,055 6/7/2023
1.0.32 235 6/7/2023
1.0.31 1,507 6/6/2023
1.0.30 1,481 6/5/2023
1.0.29 1,666 6/2/2023
1.0.28 227 6/2/2023
1.0.27 1,541 6/1/2023
1.0.26 781 5/31/2023
1.0.25 603 5/31/2023
1.0.24 232 5/31/2023
1.0.23 1,870 5/30/2023
1.0.22 1,914 5/26/2023
1.0.21 887 5/25/2023
1.0.20 207 5/25/2023
1.0.19 1,039 5/24/2023
1.0.18 221 5/24/2023
1.0.17 594 5/23/2023
1.0.13 1,831 5/22/2023
1.0.12 1,531 5/18/2023
1.0.11 777 5/17/2023
1.0.10 1,888 5/1/2023
1.0.9 1,229 4/25/2023
1.0.8 574 4/24/2023
1.0.7 1,208 4/21/2023
1.0.6 2,365 4/13/2023
1.0.5 747 4/12/2023
1.0.4 1,227 4/8/2023
1.0.3 260 4/8/2023
1.0.2 761 4/8/2023
1.0.1 265 4/8/2023