Soenneker.Utils.SingletonDictionary 4.0.1114

Prefix Reserved
dotnet add package Soenneker.Utils.SingletonDictionary --version 4.0.1114
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 4.0.1114
                    
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="4.0.1114" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.SingletonDictionary" Version="4.0.1114" />
                    
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 4.0.1114
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 4.0.1114"
                    
#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@4.0.1114
                    
#: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=4.0.1114
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=4.0.1114
                    
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 net10.0 is compatible.  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 (10)

Showing the top 5 NuGet packages that depend on Soenneker.Utils.SingletonDictionary:

Package Downloads
Soenneker.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Soenneker.Cosmos.Client

A utility library for Azure Cosmos client accessibility

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

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.1114 871 11/3/2025
4.0.1113 10,032 10/30/2025
4.0.1112 1,176 10/30/2025
4.0.1111 247 10/30/2025
4.0.1110 3,263 10/29/2025
3.0.1109 31,800 10/16/2025
3.0.1108 35,371 9/30/2025
3.0.1107 45,234 9/9/2025
3.0.1106 29,706 9/3/2025
3.0.1105 430 9/3/2025
3.0.1104 2,989 9/3/2025
3.0.1103 38,783 8/14/2025
3.0.1102 10,048 8/11/2025
3.0.1101 4,047 8/11/2025
3.0.1100 1,025 8/11/2025
3.0.1099 168 8/11/2025
3.0.1098 29,749 8/6/2025
3.0.1097 6,491 8/5/2025
3.0.1096 35,338 7/9/2025
3.0.1095 35,254 6/28/2025
3.0.1094 2,058 6/28/2025
3.0.1093 2,899 6/27/2025
3.0.1092 3,726 6/27/2025
3.0.1091 38,832 6/10/2025
3.0.1090 26,837 5/27/2025
3.0.1089 1,478 5/27/2025
3.0.1088 1,547 5/27/2025
3.0.1087 3,730 5/27/2025
3.0.1086 22,495 5/23/2025
3.0.1085 2,007 5/23/2025
3.0.1084 1,990 5/23/2025
3.0.1083 1,904 5/23/2025
3.0.1082 375 5/22/2025
3.0.1081 15,477 5/18/2025
3.0.1079 2,375 5/18/2025
3.0.1078 2,333 5/18/2025
3.0.1077 6,623 5/14/2025
3.0.1076 14,374 5/8/2025
3.0.1075 439 5/8/2025
3.0.1074 923 5/8/2025
3.0.1073 1,733 5/7/2025
3.0.1072 20,015 5/5/2025
3.0.1071 1,357 5/5/2025
3.0.1070 2,506 5/5/2025
3.0.1069 1,143 5/5/2025
3.0.1068 332 5/5/2025
3.0.1067 219 5/5/2025
3.0.1066 28,287 4/9/2025
3.0.1065 400 4/9/2025
3.0.1064 1,676 4/8/2025
3.0.1063 3,560 4/8/2025
3.0.1062 4,776 4/8/2025
3.0.1061 284 4/8/2025
3.0.1060 242 4/8/2025
3.0.1059 266 4/8/2025
3.0.1058 226 4/8/2025
3.0.1057 1,407 4/8/2025
3.0.1056 422 4/8/2025
3.0.1055 10,776 4/8/2025
3.0.1054 1,057 4/8/2025
3.0.1053 5,338 4/7/2025
3.0.1052 1,134 4/7/2025
3.0.1051 231 4/7/2025
3.0.1050 919 4/7/2025
3.0.1049 227 4/7/2025
3.0.1048 11,342 4/7/2025
3.0.1047 231 4/7/2025
3.0.1046 16,034 4/7/2025
3.0.1045 236 4/7/2025
3.0.1044 2,165 4/7/2025
3.0.1043 231 4/7/2025
3.0.1042 2,648 4/7/2025
3.0.1041 1,533 4/6/2025
3.0.1040 417 4/6/2025
3.0.1039 236 4/6/2025
3.0.1038 1,824 4/6/2025
3.0.1037 240 4/6/2025
3.0.1036 605 4/6/2025
3.0.1035 1,894 4/6/2025
3.0.1034 201 4/6/2025
3.0.1033 3,422 4/6/2025
3.0.1032 177 4/6/2025
3.0.1031 227 4/6/2025
3.0.1030 184 4/6/2025
3.0.1029 2,622 4/5/2025
3.0.1028 274 4/5/2025
3.0.1027 1,961 4/5/2025
3.0.1026 1,647 4/5/2025
3.0.1025 1,746 4/5/2025
3.0.1024 988 4/5/2025
3.0.1023 875 4/5/2025
3.0.1022 176 4/5/2025
3.0.1021 2,125 4/4/2025
3.0.1020 11,193 4/4/2025
3.0.1019 38,225 4/4/2025
3.0.1018 11,480 4/1/2025
3.0.1017 4,438 4/1/2025
3.0.1016 238 4/1/2025
3.0.1015 9,313 4/1/2025
3.0.1014 4,006 3/31/2025
3.0.1013 544 3/31/2025
3.0.1012 6,519 3/31/2025
3.0.1011 11,748 3/29/2025
3.0.1010 1,806 3/29/2025
3.0.1009 2,437 3/29/2025
3.0.1008 176 3/29/2025
3.0.1007 7,516 3/27/2025
3.0.1006 6,342 3/25/2025
3.0.1005 750 3/25/2025
3.0.1004 5,094 3/25/2025
3.0.1003 10,442 3/21/2025
3.0.1002 4,403 3/21/2025
3.0.1001 11,250 3/18/2025
3.0.1000 5,813 3/18/2025
3.0.999 11,010 3/15/2025
3.0.998 3,133 3/15/2025
3.0.997 148 3/15/2025
3.0.996 10,410 3/12/2025
3.0.995 3,674 3/12/2025
3.0.994 240 3/12/2025
3.0.993 585 3/12/2025
3.0.992 225 3/12/2025
3.0.991 4,615 3/11/2025
3.0.990 233 3/11/2025
3.0.989 2,111 3/11/2025
3.0.988 238 3/11/2025
3.0.987 4,147 3/11/2025
3.0.986 252 3/11/2025
3.0.985 4,299 3/11/2025
3.0.984 229 3/11/2025
3.0.983 2,745 3/11/2025
3.0.982 213 3/11/2025
3.0.981 15,034 3/7/2025
3.0.980 4,371 3/7/2025
3.0.979 10,012 3/2/2025
3.0.978 1,731 3/2/2025
3.0.977 1,092 3/2/2025
3.0.976 157 3/2/2025
3.0.975 7,244 3/2/2025
3.0.974 172 3/2/2025
3.0.973 5,538 3/1/2025
3.0.972 152 3/1/2025
3.0.971 7,476 3/1/2025
3.0.970 201 3/1/2025
3.0.969 147 3/1/2025
3.0.968 683 3/1/2025
3.0.967 170 3/1/2025
3.0.966 10,112 3/1/2025
3.0.965 7,871 2/26/2025
3.0.964 1,357 2/26/2025
3.0.963 3,966 2/25/2025
3.0.962 160 2/25/2025
3.0.961 1,395 2/25/2025
3.0.960 133 2/25/2025
3.0.959 210 2/25/2025
3.0.958 3,150 2/25/2025
3.0.957 8,231 2/24/2025
3.0.956 7,655 2/23/2025
3.0.955 1,807 2/22/2025
3.0.954 148 2/22/2025
3.0.953 12,958 2/22/2025
3.0.952 3,770 2/22/2025
3.0.951 1,839 2/22/2025
3.0.950 1,271 2/22/2025
3.0.949 206 2/22/2025
3.0.948 166 2/22/2025
3.0.947 174 2/22/2025
3.0.946 7,894 2/21/2025
3.0.945 165 2/21/2025
3.0.944 9,542 2/21/2025
3.0.943 7,665 2/19/2025
3.0.942 2,652 2/19/2025
3.0.941 1,073 2/19/2025
3.0.940 174 2/19/2025
3.0.939 626 2/18/2025
3.0.938 173 2/18/2025
3.0.937 9,116 2/18/2025
3.0.936 177 2/18/2025
3.0.935 4,677 2/18/2025
3.0.934 10,980 2/16/2025
3.0.933 2,518 2/14/2025
3.0.932 1,307 2/14/2025
3.0.931 1,183 2/13/2025
3.0.930 4,057 2/13/2025
3.0.929 443 2/13/2025
3.0.928 6,200 2/13/2025
3.0.927 6,136 2/12/2025
3.0.926 2,408 2/12/2025
3.0.925 195 2/12/2025
3.0.924 168 2/12/2025
3.0.923 3,431 2/12/2025
3.0.922 520 2/12/2025
3.0.921 182 2/12/2025
3.0.920 262 2/12/2025
3.0.919 276 2/12/2025
3.0.918 172 2/12/2025
3.0.917 251 2/11/2025
3.0.916 5,745 2/11/2025
3.0.915 6,270 2/11/2025
3.0.914 3,824 2/11/2025
3.0.913 186 2/11/2025
3.0.912 611 2/11/2025
3.0.911 2,934 2/10/2025
3.0.910 191 2/10/2025
3.0.909 1,252 2/10/2025
3.0.908 185 2/10/2025
3.0.907 10,578 2/10/2025
3.0.906 180 2/10/2025
3.0.905 1,951 2/9/2025
3.0.904 9,475 2/9/2025
3.0.903 164 2/9/2025
3.0.902 12,371 2/8/2025
3.0.901 184 2/8/2025
3.0.900 2,857 2/7/2025
3.0.899 175 2/7/2025
3.0.898 2,721 2/7/2025
3.0.897 174 2/7/2025
3.0.896 1,028 2/7/2025
3.0.895 680 2/7/2025
3.0.894 185 2/7/2025
3.0.893 555 2/7/2025
3.0.892 173 2/7/2025
3.0.891 1,741 2/7/2025
3.0.890 165 2/7/2025
3.0.889 179 2/7/2025
3.0.888 17,803 2/7/2025
3.0.887 10,613 2/5/2025
3.0.886 1,005 2/5/2025
3.0.885 1,553 2/5/2025
3.0.884 467 2/5/2025
3.0.883 1,700 2/5/2025
3.0.882 1,094 2/5/2025
3.0.881 5,291 2/5/2025
3.0.880 153 2/5/2025
3.0.879 17,357 1/28/2025
3.0.878 1,127 1/28/2025
3.0.877 3,213 1/28/2025
3.0.876 372 1/28/2025
3.0.875 6,916 1/28/2025
3.0.874 1,122 1/27/2025
3.0.873 133 1/27/2025
3.0.872 287 1/27/2025
3.0.871 446 1/27/2025
3.0.870 157 1/27/2025
3.0.869 8,772 1/27/2025
3.0.868 7,855 1/26/2025
3.0.867 1,604 1/26/2025
3.0.866 287 1/26/2025
3.0.865 1,751 1/26/2025
3.0.864 2,266 1/25/2025
3.0.863 164 1/25/2025
3.0.862 9,901 1/25/2025
3.0.861 1,775 1/25/2025
3.0.860 494 1/25/2025
3.0.859 171 1/25/2025
3.0.858 3,347 1/25/2025
3.0.857 2,241 1/25/2025
3.0.856 11,208 1/24/2025
3.0.855 2,772 1/24/2025
3.0.854 147 1/24/2025
3.0.853 3,595 1/24/2025
3.0.852 535 1/24/2025
3.0.851 366 1/24/2025
3.0.850 5,578 1/24/2025
3.0.849 162 1/24/2025
3.0.848 860 1/23/2025
3.0.847 170 1/23/2025
3.0.846 993 1/23/2025
3.0.845 159 1/23/2025
3.0.844 13,602 1/22/2025
3.0.843 1,704 1/21/2025
3.0.842 1,641 1/21/2025
3.0.841 911 1/21/2025
3.0.840 145 1/21/2025
3.0.839 946 1/21/2025
3.0.838 1,183 1/21/2025
3.0.837 9,313 1/21/2025
3.0.836 949 1/21/2025
3.0.835 1,705 1/21/2025
3.0.834 169 1/21/2025
3.0.833 1,400 1/21/2025
3.0.832 159 1/21/2025
3.0.831 3,861 1/21/2025
3.0.830 152 1/21/2025
3.0.829 667 1/20/2025
3.0.828 4,851 1/20/2025
3.0.827 394 1/20/2025
3.0.826 3,502 1/20/2025
3.0.825 160 1/20/2025
3.0.824 1,861 1/20/2025
3.0.823 181 1/20/2025
3.0.822 183 1/20/2025
3.0.821 164 1/20/2025
3.0.820 616 1/20/2025
3.0.819 167 1/20/2025
3.0.818 163 1/20/2025
3.0.817 9,901 1/19/2025
3.0.816 173 1/19/2025
3.0.815 9,045 1/19/2025
3.0.814 2,800 1/19/2025
3.0.813 209 1/19/2025
3.0.812 634 1/19/2025
3.0.811 163 1/19/2025
3.0.810 3,342 1/19/2025
3.0.809 158 1/19/2025
3.0.808 5,658 1/18/2025
3.0.807 170 1/18/2025
3.0.806 11,965 1/17/2025
3.0.805 179 1/17/2025
3.0.804 1,082 1/17/2025
3.0.803 1,591 1/17/2025
3.0.802 7,404 1/16/2025
3.0.801 2,465 1/16/2025
3.0.800 3,729 1/16/2025
3.0.799 933 1/16/2025
3.0.798 2,048 1/16/2025
3.0.797 1,770 1/16/2025
3.0.796 152 1/16/2025
3.0.795 8,053 1/15/2025
3.0.794 154 1/15/2025
3.0.793 4,789 1/15/2025
3.0.792 157 1/15/2025
3.0.791 238 1/15/2025
3.0.790 5,811 1/15/2025
3.0.789 131 1/15/2025
3.0.788 5,090 1/15/2025
3.0.787 138 1/15/2025
3.0.786 876 1/15/2025
3.0.785 137 1/15/2025
3.0.784 2,975 1/15/2025
3.0.783 139 1/15/2025
3.0.782 460 1/14/2025
3.0.781 138 1/14/2025
3.0.780 151 1/14/2025
3.0.779 6,411 1/14/2025
3.0.778 1,044 1/14/2025
3.0.777 156 1/14/2025
3.0.776 1,880 1/14/2025
3.0.775 133 1/14/2025
3.0.774 9,872 1/13/2025
3.0.773 2,854 1/13/2025
3.0.772 2,461 1/13/2025
3.0.771 158 1/13/2025
3.0.770 9,378 1/11/2025
3.0.769 3,807 1/11/2025
3.0.768 178 1/11/2025
3.0.767 3,366 1/11/2025
3.0.766 182 1/11/2025
3.0.765 3,233 1/10/2025
3.0.764 3,605 1/10/2025
3.0.763 163 1/10/2025
3.0.762 1,463 1/10/2025
3.0.761 176 1/10/2025
3.0.760 162 1/10/2025
3.0.759 11,283 1/3/2025
3.0.758 756 1/3/2025
3.0.757 1,678 1/3/2025
3.0.756 202 1/3/2025
3.0.755 2,539 1/3/2025
3.0.754 172 1/3/2025
3.0.753 1,926 1/3/2025
3.0.752 1,867 1/2/2025
3.0.751 166 1/2/2025
3.0.750 3,095 1/2/2025
3.0.749 166 1/2/2025
3.0.748 5,155 1/2/2025
3.0.747 152 1/2/2025
3.0.746 179 1/2/2025
3.0.745 8,498 1/1/2025
3.0.744 1,783 1/1/2025
3.0.743 448 1/1/2025
3.0.742 192 1/1/2025
3.0.741 2,752 1/1/2025
3.0.740 173 1/1/2025
3.0.739 164 1/1/2025
3.0.738 179 1/1/2025
3.0.737 543 12/31/2024
3.0.736 181 12/31/2024
3.0.735 194 12/31/2024
3.0.734 1,092 12/31/2024
3.0.733 194 12/31/2024
3.0.732 8,267 12/31/2024
3.0.731 180 12/31/2024
3.0.730 7,929 12/31/2024
3.0.729 135 12/31/2024
3.0.728 4,392 12/31/2024
3.0.727 569 12/31/2024
3.0.726 171 12/31/2024
3.0.725 2,379 12/31/2024
3.0.724 172 12/31/2024
3.0.723 15,868 12/28/2024
3.0.722 2,035 12/28/2024
3.0.721 2,236 12/27/2024
3.0.720 185 12/27/2024
3.0.719 4,798 12/27/2024
3.0.718 8,881 12/24/2024
3.0.717 2,186 12/24/2024
3.0.716 1,575 12/24/2024
3.0.715 1,370 12/24/2024
3.0.714 2,361 12/24/2024
3.0.713 164 12/24/2024
3.0.712 3,901 12/24/2024
3.0.711 1,060 12/24/2024
3.0.710 158 12/24/2024
3.0.709 725 12/24/2024
3.0.708 1,685 12/24/2024
3.0.707 395 12/24/2024
3.0.706 194 12/24/2024
3.0.705 1,780 12/24/2024
3.0.704 177 12/24/2024
3.0.703 3,108 12/23/2024
3.0.702 5,077 12/23/2024
3.0.701 177 12/23/2024
3.0.700 1,178 12/23/2024
3.0.699 160 12/23/2024
3.0.698 3,421 12/23/2024
3.0.697 158 12/23/2024
3.0.696 2,581 12/23/2024
3.0.695 177 12/23/2024
3.0.694 769 12/22/2024
3.0.693 2,477 12/22/2024
3.0.692 7,181 12/22/2024
3.0.691 181 12/22/2024
3.0.690 2,817 12/22/2024
3.0.689 254 12/22/2024
3.0.688 794 12/22/2024
3.0.687 164 12/22/2024
3.0.686 442 12/22/2024
3.0.685 170 12/22/2024
3.0.684 12,021 12/22/2024
3.0.683 150 12/22/2024
3.0.682 1,924 12/21/2024
3.0.681 478 12/21/2024
3.0.680 158 12/21/2024
3.0.679 880 12/21/2024
3.0.678 1,395 12/21/2024
3.0.677 168 12/21/2024
3.0.676 6,885 12/21/2024
3.0.675 681 12/21/2024
3.0.674 170 12/21/2024
3.0.673 4,609 12/21/2024
3.0.672 1,204 12/21/2024
3.0.671 178 12/21/2024
3.0.670 2,748 12/20/2024
3.0.669 188 12/20/2024
3.0.668 173 12/20/2024
3.0.667 6,712 12/20/2024
3.0.666 1,991 12/20/2024
3.0.665 381 12/20/2024
3.0.664 6,263 12/19/2024
3.0.663 742 12/19/2024
3.0.662 3,671 12/18/2024
3.0.661 166 12/18/2024
3.0.660 11,567 12/17/2024
3.0.659 336 12/17/2024
3.0.658 1,138 12/16/2024
3.0.657 168 12/16/2024
3.0.656 241 12/16/2024
3.0.655 166 12/16/2024
3.0.654 11,269 12/10/2024
3.0.653 1,765 12/10/2024
3.0.652 667 12/9/2024
3.0.651 172 12/9/2024
3.0.650 4,746 12/9/2024
3.0.649 2,466 12/9/2024
3.0.648 153 12/9/2024
3.0.647 6,775 12/9/2024
3.0.646 5,020 12/6/2024
3.0.645 739 12/6/2024
3.0.644 161 12/6/2024
3.0.643 1,182 12/6/2024
3.0.641 6,946 12/6/2024
3.0.640 4,290 12/6/2024
3.0.639 9,537 12/6/2024
3.0.637 591 12/6/2024
3.0.636 4,417 12/5/2024
3.0.635 6,258 12/5/2024
3.0.634 5,078 12/5/2024
3.0.633 169 12/5/2024
3.0.632 3,431 12/5/2024
3.0.631 1,746 12/5/2024
3.0.630 172 12/5/2024
3.0.629 648 12/5/2024
3.0.628 167 12/5/2024
3.0.627 222 12/5/2024
3.0.626 170 12/5/2024
3.0.625 5,996 12/4/2024
3.0.624 162 12/4/2024
3.0.623 185 12/4/2024
3.0.622 185 12/4/2024
3.0.621 2,976 12/4/2024
3.0.620 544 12/4/2024
3.0.619 705 12/4/2024
3.0.618 6,053 12/3/2024
3.0.617 174 12/3/2024
3.0.616 1,958 12/3/2024
3.0.615 773 12/3/2024
3.0.614 177 12/3/2024
3.0.613 187 12/3/2024
3.0.612 7,198 12/3/2024
3.0.611 168 12/3/2024
3.0.610 5,970 12/3/2024
3.0.609 152 12/3/2024
3.0.608 5,529 12/2/2024
3.0.607 4,899 12/2/2024
3.0.606 2,919 12/2/2024
3.0.605 467 12/2/2024
3.0.604 175 12/2/2024
3.0.603 706 12/2/2024
3.0.602 6,144 12/1/2024
3.0.601 180 12/1/2024
3.0.600 3,429 12/1/2024
3.0.599 322 12/1/2024
3.0.598 6,197 12/1/2024
3.0.597 180 12/1/2024
3.0.596 6,411 11/29/2024
3.0.595 1,878 11/29/2024
3.0.594 10,264 11/21/2024
3.0.593 532 11/21/2024
3.0.592 8,045 11/20/2024
3.0.591 554 11/20/2024
3.0.590 188 11/20/2024
3.0.589 161 11/20/2024
3.0.588 701 11/20/2024
3.0.587 264 11/20/2024
3.0.586 166 11/20/2024
3.0.585 3,495 11/20/2024
3.0.584 4,798 11/19/2024
3.0.583 160 11/19/2024
3.0.582 1,077 11/19/2024
3.0.581 149 11/19/2024
3.0.580 4,194 11/19/2024
3.0.579 145 11/19/2024
3.0.578 2,249 11/19/2024
3.0.577 178 11/19/2024
3.0.576 14,937 11/14/2024
3.0.575 238 11/14/2024
3.0.574 919 11/14/2024
3.0.573 4,124 11/14/2024
3.0.572 1,287 11/14/2024
3.0.571 188 11/14/2024
3.0.570 179 11/14/2024
3.0.569 7,158 11/14/2024
3.0.568 175 11/14/2024
3.0.567 174 11/14/2024
3.0.566 6,218 11/14/2024
3.0.565 172 11/14/2024
3.0.564 163 11/14/2024
3.0.563 160 11/14/2024
2.1.562 14,330 11/13/2024
2.1.561 2,375 11/13/2024
2.1.560 5,274 11/13/2024
2.1.559 191 11/13/2024
2.1.558 2,249 11/12/2024
2.1.557 633 11/12/2024
2.1.556 13,772 11/9/2024
2.1.555 606 11/9/2024
2.1.554 194 11/9/2024
2.1.553 2,953 11/9/2024
2.1.552 176 11/9/2024
2.1.551 1,515 11/8/2024
2.1.550 175 11/8/2024
2.1.549 172 11/8/2024
2.1.548 187 11/8/2024
2.1.547 689 11/8/2024
2.1.546 3,253 11/8/2024
2.1.545 156 11/8/2024
2.1.544 9,243 11/8/2024
2.1.543 152 11/8/2024
2.1.542 20,198 11/1/2024
2.1.541 754 11/1/2024
2.1.540 11,827 10/29/2024
2.1.539 1,283 10/29/2024
2.1.538 4,743 10/29/2024
2.1.537 1,006 10/29/2024
2.1.536 9,406 10/28/2024
2.1.535 3,228 10/28/2024
2.1.534 6,575 10/26/2024
2.1.533 1,189 10/26/2024
2.1.532 13,845 10/22/2024
2.1.531 425 10/22/2024
2.1.530 908 10/22/2024
2.1.529 1,586 10/22/2024
2.1.528 177 10/22/2024
2.1.527 771 10/22/2024
2.1.526 11,313 10/18/2024
2.1.525 1,864 10/17/2024
2.1.524 7,220 10/15/2024
2.1.523 2,790 10/15/2024
2.1.522 176 10/14/2024
2.1.521 8,912 10/12/2024
2.1.520 1,131 10/11/2024
2.1.519 170 10/11/2024
2.1.518 794 10/11/2024
2.1.517 5,059 10/11/2024
2.1.516 11,075 10/9/2024
2.1.515 617 10/9/2024
2.1.514 151 10/9/2024
2.1.513 3,390 10/8/2024
2.1.512 236 10/8/2024
2.1.511 3,690 10/8/2024
2.1.510 222 10/8/2024
2.1.509 173 10/8/2024
2.1.508 6,753 10/8/2024
2.1.507 10,596 10/3/2024
2.1.506 177 10/3/2024
2.1.505 1,965 10/3/2024
2.1.504 3,396 10/3/2024
2.1.503 2,428 10/3/2024
2.1.502 10,084 10/2/2024
2.1.501 172 10/2/2024
2.1.500 3,156 10/2/2024
2.1.499 1,740 10/2/2024
2.1.498 7,107 10/1/2024
2.1.497 1,105 10/1/2024
2.1.496 183 10/1/2024
2.1.495 4,496 10/1/2024
2.1.494 183 10/1/2024
2.1.493 230 10/1/2024
2.1.492 9,334 9/29/2024
2.1.491 2,289 9/29/2024
2.1.490 181 9/29/2024
2.1.489 2,069 9/29/2024
2.1.488 178 9/29/2024
2.1.487 4,421 9/29/2024
2.1.486 8,712 9/27/2024
2.1.485 1,314 9/27/2024
2.1.484 5,252 9/27/2024
2.1.483 196 9/27/2024
2.1.482 741 9/27/2024
2.1.481 3,689 9/27/2024
2.1.480 5,424 9/26/2024
2.1.479 5,974 9/26/2024
2.1.478 4,058 9/26/2024
2.1.477 3,665 9/26/2024
2.1.476 6,355 9/26/2024
2.1.475 180 9/26/2024
2.1.474 9,489 9/23/2024
2.1.473 2,151 9/23/2024
2.1.472 1,560 9/23/2024
2.1.471 1,865 9/23/2024
2.1.470 175 9/23/2024
2.1.469 2,579 9/23/2024
2.1.468 150 9/23/2024
2.1.467 8,011 9/23/2024
2.1.466 176 9/23/2024
2.1.465 1,190 9/23/2024
2.1.464 196 9/23/2024
2.1.463 168 9/23/2024
2.1.462 1,525 9/23/2024
2.1.461 15,603 9/18/2024
2.1.460 406 9/17/2024
2.1.459 2,023 9/17/2024
2.1.458 2,735 9/17/2024
2.1.457 172 9/17/2024
2.1.456 2,966 9/17/2024
2.1.455 767 9/17/2024
2.1.454 5,329 9/17/2024
2.1.453 891 9/17/2024
2.1.452 317 9/17/2024
2.1.451 4,329 9/17/2024
2.1.450 12,546 9/16/2024
2.1.449 1,135 9/16/2024
2.1.448 8,073 9/12/2024
2.1.447 4,773 9/12/2024
2.1.446 2,120 9/11/2024
2.1.445 2,566 9/11/2024
2.1.443 5,813 9/11/2024
2.1.442 1,528 9/11/2024
2.1.441 1,451 9/11/2024
2.1.440 3,564 9/11/2024
2.1.439 12,831 9/10/2024
2.1.438 193 9/10/2024
2.1.437 1,854 9/10/2024
2.1.436 194 9/10/2024
2.1.434 4,627 9/10/2024
2.1.433 916 9/9/2024
2.1.432 2,857 9/9/2024
2.1.430 2,425 9/9/2024
2.1.428 194 9/9/2024
2.1.427 698 9/9/2024
2.1.426 21,064 9/7/2024
2.1.425 225 9/7/2024
2.1.424 8,076 9/6/2024
2.1.423 545 9/6/2024
2.1.422 3,573 9/6/2024
2.1.421 178 9/5/2024
2.1.420 195 9/5/2024
2.1.419 3,836 9/5/2024
2.1.418 1,780 9/5/2024
2.1.417 182 9/5/2024
2.1.416 1,786 9/5/2024
2.1.415 697 9/5/2024
2.1.414 176 9/5/2024
2.1.413 8,100 9/5/2024
2.1.412 296 9/5/2024
2.1.411 183 9/5/2024
2.1.410 3,583 9/4/2024
2.1.409 12,960 9/3/2024
2.1.408 179 9/3/2024
2.1.407 178 9/3/2024
2.1.406 6,527 9/3/2024
2.1.405 220 9/3/2024
2.1.404 4,107 9/3/2024
2.1.403 8,594 8/29/2024
2.1.402 4,231 8/29/2024
2.1.401 4,636 8/26/2024
2.1.400 162 8/26/2024
2.1.399 8,198 8/21/2024
2.1.398 991 8/21/2024
2.1.397 221 8/21/2024
2.1.396 4,320 8/21/2024
2.1.395 225 8/20/2024
2.1.394 219 8/20/2024
2.1.393 743 8/20/2024
2.1.392 5,005 8/20/2024
2.1.391 700 8/20/2024
2.1.390 180 8/20/2024
2.1.389 4,338 8/20/2024
2.1.388 200 8/20/2024
2.1.387 1,960 8/20/2024
2.1.386 4,805 8/19/2024
2.1.385 7,882 8/15/2024
2.1.384 3,395 8/15/2024
2.1.383 7,801 8/14/2024
2.1.382 214 8/13/2024
2.1.381 9,169 8/7/2024
2.1.380 494 8/6/2024
2.1.379 4,461 8/6/2024
2.1.378 8,449 8/1/2024
2.1.377 572 8/1/2024
2.1.376 171 8/1/2024
2.1.374 2,041 8/1/2024
2.1.373 10,132 7/25/2024
2.1.372 171 7/25/2024
2.1.371 1,311 7/25/2024
2.1.370 508 7/25/2024
2.1.369 609 7/25/2024
2.1.368 324 7/25/2024
2.1.367 670 7/24/2024
2.1.366 243 7/24/2024
2.1.365 365 7/24/2024
2.1.364 564 7/24/2024
2.1.363 14,341 7/20/2024
2.1.362 2,547 7/20/2024
2.1.361 8,570 7/14/2024
2.1.360 2,596 7/14/2024
2.1.359 181 7/14/2024
2.1.358 2,469 7/14/2024
2.1.357 7,299 7/10/2024
2.1.355 1,173 7/10/2024
2.1.354 1,978 7/10/2024
2.1.353 183 7/10/2024
2.1.352 2,830 7/10/2024
2.1.351 218 7/10/2024
2.1.350 179 7/10/2024
2.1.349 263 7/10/2024
2.1.348 178 7/10/2024
2.1.347 3,386 7/10/2024
2.1.346 197 7/10/2024
2.1.345 1,357 7/10/2024
2.1.344 186 7/10/2024
2.1.343 324 7/9/2024
2.1.342 161 7/9/2024
2.1.339 3,173 7/9/2024
2.1.338 718 7/9/2024
2.1.337 6,712 7/9/2024
2.1.336 1,864 7/9/2024
2.1.335 190 7/9/2024
2.1.334 4,331 7/9/2024
2.1.333 166 7/9/2024
2.1.332 12,572 7/9/2024
2.1.331 189 7/9/2024
2.1.330 4,204 7/9/2024
2.1.329 175 7/9/2024
2.1.328 1,759 7/9/2024
2.1.327 1,103 7/8/2024
2.1.326 1,676 7/8/2024
2.1.325 180 7/8/2024
2.1.324 197 7/8/2024
2.1.323 8,105 7/8/2024
2.1.322 2,767 7/8/2024
2.1.321 178 7/8/2024
2.1.320 3,955 7/7/2024
2.1.319 202 7/7/2024
2.1.318 202 7/7/2024
2.1.317 188 7/7/2024
2.1.316 1,890 7/7/2024
2.1.315 3,665 7/7/2024
2.1.314 3,076 7/7/2024
2.1.313 365 7/7/2024
2.1.312 5,703 7/5/2024
2.1.311 6,750 7/3/2024
2.1.310 5,212 7/3/2024
2.1.309 643 7/3/2024
2.1.308 6,814 7/2/2024
2.1.307 3,100 6/30/2024
2.1.306 3,794 6/28/2024
2.1.305 8,914 6/22/2024
2.1.304 8,063 6/15/2024
2.1.303 6,569 6/14/2024
2.1.302 9,556 6/1/2024
2.1.301 2,640 6/1/2024
2.1.300 963 6/1/2024
2.1.299 9,678 5/31/2024
2.1.298 6,091 5/29/2024
2.1.297 4,985 5/28/2024
2.1.296 4,016 5/27/2024
2.1.295 7,927 5/26/2024
2.1.294 3,320 5/26/2024
2.1.293 759 5/26/2024
2.1.292 4,095 5/25/2024
2.1.291 2,181 5/25/2024
2.1.290 206 5/25/2024
2.1.289 189 5/25/2024
2.1.288 1,119 5/25/2024
2.1.287 198 5/25/2024
2.1.286 620 5/25/2024
2.1.285 190 5/25/2024
2.1.284 203 5/25/2024
2.1.283 12,105 5/23/2024
2.1.282 876 5/23/2024
2.1.281 420 5/22/2024
2.1.280 5,969 5/22/2024
2.1.279 206 5/22/2024
2.1.278 203 5/22/2024
2.1.277 187 5/22/2024
2.1.276 3,562 5/22/2024
2.1.275 5,543 5/18/2024
2.1.274 3,085 5/18/2024
2.1.273 2,907 5/17/2024
2.1.272 189 5/17/2024
2.1.271 4,421 5/16/2024
2.1.270 676 5/15/2024
2.1.269 4,457 5/15/2024
2.1.268 7,406 5/12/2024
2.1.267 4,488 5/3/2024
2.1.266 1,935 4/30/2024
2.1.265 2,865 4/29/2024
2.1.264 3,078 4/29/2024
2.1.263 4,349 4/28/2024
2.1.262 2,439 4/28/2024
2.1.261 1,762 4/28/2024
2.1.260 2,751 4/28/2024
2.1.259 1,504 4/28/2024
2.1.258 184 4/28/2024
2.1.257 6,857 4/27/2024
2.1.256 203 4/27/2024
2.1.255 6,911 4/19/2024
2.1.254 6,642 4/18/2024
2.1.253 5,449 4/12/2024
2.1.252 1,806 4/12/2024
2.1.251 1,124 4/12/2024
2.1.250 1,370 4/12/2024
2.1.249 305 4/12/2024
2.1.248 176 4/12/2024
2.1.247 1,559 4/12/2024
2.1.246 493 4/12/2024
2.1.245 2,544 4/11/2024
2.1.244 6,116 4/10/2024
2.1.243 1,799 4/9/2024
2.1.242 5,031 4/2/2024
2.1.241 1,422 4/1/2024
2.1.240 3,331 3/29/2024
2.1.239 2,884 3/25/2024
2.1.238 455 3/25/2024
2.1.237 5,295 3/20/2024
2.1.236 3,286 3/19/2024
2.1.235 740 3/19/2024
2.1.234 3,812 3/18/2024
2.1.233 2,108 3/18/2024
2.1.232 2,075 3/15/2024
2.1.231 3,653 3/13/2024
2.1.230 1,646 3/13/2024
2.1.229 1,063 3/13/2024
2.1.228 1,144 3/13/2024
2.1.227 201 3/13/2024
2.1.226 790 3/13/2024
2.1.225 199 3/13/2024
2.1.224 202 3/13/2024
2.1.223 2,591 3/12/2024
2.1.222 4,383 3/11/2024
2.1.221 3,787 3/11/2024
2.1.220 2,559 3/10/2024
2.1.219 2,897 3/8/2024
2.1.218 1,640 3/8/2024
2.1.217 2,403 3/8/2024
2.1.216 3,212 3/6/2024
2.1.215 3,033 3/4/2024
2.1.214 2,176 3/4/2024
2.1.213 3,997 3/2/2024
2.1.212 1,831 3/2/2024
2.1.211 624 3/2/2024
2.1.210 529 3/2/2024
2.1.209 772 3/2/2024
2.1.208 5,210 2/29/2024
2.1.207 953 2/29/2024
2.1.206 538 2/29/2024
2.1.205 5,025 2/26/2024
2.1.204 2,228 2/25/2024
2.1.203 3,984 2/23/2024
2.1.202 2,824 2/22/2024
2.1.201 1,396 2/22/2024
2.1.200 663 2/21/2024
2.1.199 1,740 2/21/2024
2.1.198 430 2/21/2024
2.1.197 1,013 2/21/2024
2.1.196 196 2/21/2024
2.1.195 1,980 2/21/2024
2.1.194 614 2/21/2024
2.1.193 193 2/21/2024
2.1.192 223 2/21/2024
2.1.191 841 2/21/2024
2.1.190 189 2/21/2024
2.1.189 4,050 2/20/2024
2.1.188 995 2/20/2024
2.1.187 946 2/20/2024
2.1.186 1,230 2/20/2024
2.1.185 3,151 2/19/2024
2.1.184 2,827 2/17/2024
2.1.183 1,375 2/16/2024
2.1.182 1,258 2/16/2024
2.1.181 2,035 2/16/2024
2.1.180 204 2/16/2024
2.1.179 1,016 2/16/2024
2.1.178 206 2/16/2024
2.1.177 199 2/16/2024
2.1.176 812 2/16/2024
2.1.175 191 2/16/2024
2.1.174 4,899 2/13/2024
2.1.173 2,038 2/13/2024
2.1.172 1,645 2/13/2024
2.1.171 696 2/13/2024
2.1.170 931 2/13/2024
2.1.169 2,888 2/12/2024
2.1.168 682 2/11/2024
2.1.167 2,249 2/11/2024
2.1.166 1,233 2/11/2024
2.1.165 4,168 2/10/2024
2.1.164 799 2/9/2024
2.1.163 195 2/9/2024
2.1.162 2,324 2/9/2024
2.1.161 2,422 2/9/2024
2.1.160 615 2/8/2024
2.1.159 1,802 2/8/2024
2.1.158 1,180 2/8/2024
2.1.157 2,167 2/8/2024
2.1.156 180 2/8/2024
2.1.155 2,762 2/7/2024
2.1.154 654 2/7/2024
2.1.153 867 2/7/2024
2.1.152 1,903 2/7/2024
2.1.151 515 2/6/2024
2.1.150 188 2/6/2024
2.1.149 195 2/6/2024
2.1.148 4,108 2/5/2024
2.1.147 2,288 2/4/2024
2.1.146 3,089 2/2/2024
2.1.145 2,799 1/31/2024
2.1.144 3,076 1/29/2024
2.1.143 1,951 1/29/2024
2.1.142 532 1/29/2024
2.1.141 2,066 1/28/2024
2.1.140 689 1/28/2024
2.1.139 462 1/28/2024
2.1.138 778 1/28/2024
2.1.137 2,872 1/28/2024
2.1.136 1,501 1/28/2024
2.1.135 464 1/27/2024
2.1.134 1,332 1/27/2024
2.1.133 1,844 1/27/2024
2.1.132 1,777 1/27/2024
2.1.131 219 1/27/2024
2.1.130 964 1/27/2024
2.1.129 1,598 1/26/2024
2.1.128 366 1/26/2024
2.1.127 1,271 1/26/2024
2.1.126 1,685 1/26/2024
2.1.125 2,371 1/26/2024
2.1.124 1,351 1/25/2024
2.1.123 1,463 1/25/2024
2.1.122 659 1/25/2024
2.1.121 1,338 1/25/2024
2.1.120 735 1/25/2024
2.1.119 3,838 1/19/2024
2.1.118 3,131 1/15/2024
2.1.117 713 1/15/2024
2.1.116 1,880 1/15/2024
2.1.115 200 1/15/2024
2.1.114 810 1/15/2024
2.1.113 1,967 1/15/2024
2.1.112 3,594 1/14/2024
2.1.111 2,329 1/13/2024
2.1.110 2,515 1/12/2024
2.1.109 2,911 1/11/2024
2.1.108 3,740 1/7/2024
2.1.107 2,870 1/5/2024
2.1.106 726 1/5/2024
2.1.105 220 1/5/2024
2.1.104 198 1/5/2024
2.1.103 2,086 1/5/2024
2.1.102 207 1/5/2024
2.1.101 3,938 1/1/2024
2.1.100 3,155 12/28/2023
2.1.99 1,064 12/28/2023
2.1.98 733 12/28/2023
2.1.97 192 12/28/2023
2.1.96 208 12/28/2023
2.1.95 1,042 12/27/2023
2.1.94 215 12/27/2023
2.1.93 758 12/27/2023
2.1.92 209 12/27/2023
2.1.91 215 12/27/2023
2.1.90 3,331 12/25/2023
2.1.89 536 12/25/2023
2.1.88 1,238 12/25/2023
2.1.87 218 12/25/2023
2.1.86 1,010 12/25/2023
2.1.85 209 12/25/2023
2.1.84 863 12/25/2023
2.1.83 206 12/25/2023
2.1.82 2,507 12/24/2023
2.1.81 1,632 12/23/2023
2.1.80 1,356 12/23/2023
2.1.79 443 12/23/2023
2.1.78 883 12/23/2023
2.1.77 210 12/23/2023
2.1.76 192 12/23/2023
2.1.75 1,626 12/23/2023
2.1.74 200 12/23/2023
2.1.73 2,145 12/19/2023
2.1.72 328 12/19/2023
2.1.71 4,536 12/11/2023
2.1.70 1,083 12/10/2023
2.1.69 200 12/10/2023
2.1.68 658 12/10/2023
2.1.67 2,207 12/10/2023
2.1.66 569 12/9/2023
2.1.65 579 12/9/2023
2.1.64 429 12/9/2023
2.1.63 216 12/9/2023
2.1.62 382 12/9/2023
2.1.61 322 12/9/2023
2.1.60 174 12/9/2023
2.1.59 1,626 12/9/2023
2.1.58 211 12/9/2023
2.1.57 2,355 12/6/2023
2.1.56 604 12/6/2023
2.1.55 374 12/6/2023
2.1.54 427 12/6/2023
2.1.53 1,415 12/5/2023
2.1.52 578 12/5/2023
2.1.51 526 12/5/2023
2.1.50 588 12/5/2023
2.1.49 171 12/5/2023
2.1.48 511 12/5/2023
2.1.47 411 12/5/2023
2.1.46 172 12/4/2023
2.1.45 180 12/4/2023
2.1.44 509 12/4/2023
2.1.43 204 12/4/2023
2.1.42 1,610 12/4/2023
2.1.41 149 12/4/2023
2.1.40 1,851 11/27/2023
2.1.39 838 11/26/2023
2.1.38 345 11/26/2023
2.1.37 986 11/23/2023
2.1.36 1,075 11/23/2023
2.1.35 1,036 11/23/2023
2.1.34 192 11/23/2023
2.1.33 636 11/23/2023
2.1.32 201 11/23/2023
2.1.31 1,753 11/20/2023
2.1.30 1,812 11/20/2023
2.1.29 1,323 11/19/2023
2.1.28 404 11/19/2023
2.1.27 751 11/19/2023
2.1.26 765 11/19/2023
2.1.25 788 11/19/2023
2.1.24 170 11/19/2023
2.1.23 347 11/18/2023
2.1.22 1,583 11/18/2023
2.1.21 563 11/18/2023
2.1.20 854 11/18/2023
2.1.19 196 11/18/2023
2.1.18 474 11/18/2023
2.1.17 187 11/18/2023
2.1.16 973 11/17/2023
2.1.15 842 11/17/2023
2.1.14 177 11/17/2023
2.1.13 686 11/17/2023
2.1.12 472 11/17/2023
2.1.11 791 11/17/2023
2.1.10 185 11/17/2023
2.1.9 783 11/17/2023
2.1.8 191 11/17/2023
2.1.7 238 11/17/2023
2.1.6 522 11/17/2023
2.1.5 585 11/16/2023
2.0.101 3,568 11/15/2023
2.0.100 160 11/15/2023
2.0.99 196 11/15/2023
2.0.4 183 11/16/2023
2.0.3 204 11/16/2023
2.0.2 189 11/16/2023
2.0.1 185 11/16/2023
1.0.98 989 11/14/2023
1.0.97 1,150 11/13/2023
1.0.96 160 11/13/2023
1.0.95 796 11/10/2023
1.0.94 184 11/10/2023
1.0.93 1,442 11/9/2023
1.0.92 184 11/9/2023
1.0.91 1,569 11/7/2023
1.0.90 181 11/7/2023
1.0.89 753 11/6/2023
1.0.88 193 11/6/2023
1.0.87 873 11/3/2023
1.0.86 196 11/3/2023
1.0.85 1,326 11/2/2023
1.0.84 174 11/2/2023
1.0.83 878 11/1/2023
1.0.82 2,145 10/26/2023
1.0.81 1,922 10/19/2023
1.0.80 207 10/19/2023
1.0.79 1,172 10/18/2023
1.0.78 224 10/18/2023
1.0.77 1,087 10/17/2023
1.0.76 212 10/17/2023
1.0.75 962 10/16/2023
1.0.74 216 10/16/2023
1.0.73 1,036 10/13/2023
1.0.72 484 10/12/2023
1.0.71 2,521 9/20/2023
1.0.70 1,047 9/19/2023
1.0.69 1,033 9/18/2023
1.0.68 213 9/18/2023
1.0.67 1,360 9/14/2023
1.0.66 2,141 8/31/2023
1.0.65 210 8/31/2023
1.0.64 1,229 8/30/2023
1.0.63 239 8/30/2023
1.0.62 257 8/30/2023
1.0.61 1,259 8/28/2023
1.0.60 1,042 8/25/2023
1.0.59 207 8/25/2023
1.0.58 731 8/24/2023
1.0.57 2,160 8/21/2023
1.0.56 1,247 8/18/2023
1.0.55 1,092 8/17/2023
1.0.54 237 8/17/2023
1.0.53 2,781 8/10/2023
1.0.52 817 8/9/2023
1.0.51 987 8/8/2023
1.0.50 929 8/7/2023
1.0.49 258 8/7/2023
1.0.48 3,534 7/13/2023
1.0.47 1,280 7/11/2023
1.0.46 1,035 7/10/2023
1.0.45 976 7/7/2023
1.0.44 262 7/7/2023
1.0.43 2,999 6/30/2023
1.0.42 1,490 6/29/2023
1.0.41 831 6/28/2023
1.0.40 2,154 6/26/2023
1.0.39 1,148 6/23/2023
1.0.38 1,515 6/21/2023
1.0.37 2,055 6/15/2023
1.0.36 706 6/14/2023
1.0.35 2,486 6/9/2023
1.0.34 1,121 6/8/2023
1.0.33 2,164 6/7/2023
1.0.32 259 6/7/2023
1.0.31 1,595 6/6/2023
1.0.30 1,583 6/5/2023
1.0.29 1,756 6/2/2023
1.0.28 252 6/2/2023
1.0.27 1,605 6/1/2023
1.0.26 840 5/31/2023
1.0.25 671 5/31/2023
1.0.24 261 5/31/2023
1.0.23 1,973 5/30/2023
1.0.22 2,054 5/26/2023
1.0.21 933 5/25/2023
1.0.20 240 5/25/2023
1.0.19 1,114 5/24/2023
1.0.18 242 5/24/2023
1.0.17 668 5/23/2023
1.0.13 1,991 5/22/2023
1.0.12 1,620 5/18/2023
1.0.11 841 5/17/2023
1.0.10 1,997 5/1/2023
1.0.9 1,334 4/25/2023
1.0.8 626 4/24/2023
1.0.7 1,282 4/21/2023
1.0.6 2,535 4/13/2023
1.0.5 789 4/12/2023
1.0.4 1,327 4/8/2023
1.0.3 286 4/8/2023
1.0.2 791 4/8/2023
1.0.1 292 4/8/2023