Soenneker.Utils.SingletonDictionary 3.0.1108

Prefix Reserved
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.1108
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1108
                    
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.1108" />
                    
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.1108" />
                    
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.1108
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1108"
                    
#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.1108
                    
#: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.1108
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1108
                    
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 6,654 9/30/2025
3.0.1107 42,465 9/9/2025
3.0.1106 26,687 9/3/2025
3.0.1105 403 9/3/2025
3.0.1104 2,613 9/3/2025
3.0.1103 35,128 8/14/2025
3.0.1102 8,955 8/11/2025
3.0.1101 3,599 8/11/2025
3.0.1100 894 8/11/2025
3.0.1099 149 8/11/2025
3.0.1098 26,745 8/6/2025
3.0.1097 5,741 8/5/2025
3.0.1096 33,873 7/9/2025
3.0.1095 34,697 6/28/2025
3.0.1094 2,023 6/28/2025
3.0.1093 2,827 6/27/2025
3.0.1092 3,598 6/27/2025
3.0.1091 38,129 6/10/2025
3.0.1090 26,368 5/27/2025
3.0.1089 1,429 5/27/2025
3.0.1088 1,473 5/27/2025
3.0.1087 3,625 5/27/2025
3.0.1086 22,078 5/23/2025
3.0.1085 1,944 5/23/2025
3.0.1084 1,925 5/23/2025
3.0.1083 1,838 5/23/2025
3.0.1082 347 5/22/2025
3.0.1081 15,195 5/18/2025
3.0.1079 2,313 5/18/2025
3.0.1078 2,250 5/18/2025
3.0.1077 6,473 5/14/2025
3.0.1076 14,036 5/8/2025
3.0.1075 413 5/8/2025
3.0.1074 884 5/8/2025
3.0.1073 1,662 5/7/2025
3.0.1072 19,575 5/5/2025
3.0.1071 1,304 5/5/2025
3.0.1070 2,430 5/5/2025
3.0.1069 1,119 5/5/2025
3.0.1068 297 5/5/2025
3.0.1067 193 5/5/2025
3.0.1066 27,604 4/9/2025
3.0.1065 368 4/9/2025
3.0.1064 1,623 4/8/2025
3.0.1063 3,452 4/8/2025
3.0.1062 4,675 4/8/2025
3.0.1061 254 4/8/2025
3.0.1060 215 4/8/2025
3.0.1059 245 4/8/2025
3.0.1058 196 4/8/2025
3.0.1057 1,377 4/8/2025
3.0.1056 395 4/8/2025
3.0.1055 10,520 4/8/2025
3.0.1054 1,034 4/8/2025
3.0.1053 5,215 4/7/2025
3.0.1052 1,104 4/7/2025
3.0.1051 204 4/7/2025
3.0.1050 896 4/7/2025
3.0.1049 205 4/7/2025
3.0.1048 11,035 4/7/2025
3.0.1047 207 4/7/2025
3.0.1046 15,444 4/7/2025
3.0.1045 208 4/7/2025
3.0.1044 2,094 4/7/2025
3.0.1043 209 4/7/2025
3.0.1042 2,534 4/7/2025
3.0.1041 1,463 4/6/2025
3.0.1040 388 4/6/2025
3.0.1039 212 4/6/2025
3.0.1038 1,764 4/6/2025
3.0.1037 213 4/6/2025
3.0.1036 578 4/6/2025
3.0.1035 1,851 4/6/2025
3.0.1034 179 4/6/2025
3.0.1033 3,273 4/6/2025
3.0.1032 155 4/6/2025
3.0.1031 207 4/6/2025
3.0.1030 162 4/6/2025
3.0.1029 2,575 4/5/2025
3.0.1028 251 4/5/2025
3.0.1027 1,887 4/5/2025
3.0.1026 1,590 4/5/2025
3.0.1025 1,675 4/5/2025
3.0.1024 955 4/5/2025
3.0.1023 828 4/5/2025
3.0.1022 153 4/5/2025
3.0.1021 2,067 4/4/2025
3.0.1020 11,017 4/4/2025
3.0.1019 37,150 4/4/2025
3.0.1018 11,142 4/1/2025
3.0.1017 4,308 4/1/2025
3.0.1016 210 4/1/2025
3.0.1015 9,046 4/1/2025
3.0.1014 3,897 3/31/2025
3.0.1013 512 3/31/2025
3.0.1012 6,327 3/31/2025
3.0.1011 11,431 3/29/2025
3.0.1010 1,751 3/29/2025
3.0.1009 2,356 3/29/2025
3.0.1008 147 3/29/2025
3.0.1007 7,299 3/27/2025
3.0.1006 6,166 3/25/2025
3.0.1005 723 3/25/2025
3.0.1004 4,969 3/25/2025
3.0.1003 10,146 3/21/2025
3.0.1002 4,265 3/21/2025
3.0.1001 10,974 3/18/2025
3.0.1000 5,674 3/18/2025
3.0.999 10,666 3/15/2025
3.0.998 3,062 3/15/2025
3.0.997 122 3/15/2025
3.0.996 10,067 3/12/2025
3.0.995 3,560 3/12/2025
3.0.994 214 3/12/2025
3.0.993 552 3/12/2025
3.0.992 200 3/12/2025
3.0.991 4,464 3/11/2025
3.0.990 210 3/11/2025
3.0.989 2,034 3/11/2025
3.0.988 212 3/11/2025
3.0.987 4,069 3/11/2025
3.0.986 218 3/11/2025
3.0.985 4,166 3/11/2025
3.0.984 204 3/11/2025
3.0.983 2,608 3/11/2025
3.0.982 195 3/11/2025
3.0.981 14,649 3/7/2025
3.0.980 4,256 3/7/2025
3.0.979 9,679 3/2/2025
3.0.978 1,672 3/2/2025
3.0.977 1,056 3/2/2025
3.0.976 140 3/2/2025
3.0.975 7,063 3/2/2025
3.0.974 148 3/2/2025
3.0.973 5,352 3/1/2025
3.0.972 131 3/1/2025
3.0.971 7,224 3/1/2025
3.0.970 166 3/1/2025
3.0.969 128 3/1/2025
3.0.968 653 3/1/2025
3.0.967 142 3/1/2025
3.0.966 9,819 3/1/2025
3.0.965 7,602 2/26/2025
3.0.964 1,321 2/26/2025
3.0.963 3,911 2/25/2025
3.0.962 143 2/25/2025
3.0.961 1,356 2/25/2025
3.0.960 124 2/25/2025
3.0.959 174 2/25/2025
3.0.958 3,025 2/25/2025
3.0.957 7,955 2/24/2025
3.0.956 7,412 2/23/2025
3.0.955 1,756 2/22/2025
3.0.954 131 2/22/2025
3.0.953 12,558 2/22/2025
3.0.952 3,634 2/22/2025
3.0.951 1,755 2/22/2025
3.0.950 1,230 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,672 2/21/2025
3.0.945 141 2/21/2025
3.0.944 9,287 2/21/2025
3.0.943 7,375 2/19/2025
3.0.942 2,562 2/19/2025
3.0.941 1,036 2/19/2025
3.0.940 149 2/19/2025
3.0.939 605 2/18/2025
3.0.938 149 2/18/2025
3.0.937 8,835 2/18/2025
3.0.936 141 2/18/2025
3.0.935 4,478 2/18/2025
3.0.934 10,709 2/16/2025
3.0.933 2,422 2/14/2025
3.0.932 1,256 2/14/2025
3.0.931 1,134 2/13/2025
3.0.930 3,907 2/13/2025
3.0.929 411 2/13/2025
3.0.928 6,016 2/13/2025
3.0.927 5,949 2/12/2025
3.0.926 2,330 2/12/2025
3.0.925 174 2/12/2025
3.0.924 148 2/12/2025
3.0.923 3,279 2/12/2025
3.0.922 487 2/12/2025
3.0.921 153 2/12/2025
3.0.920 243 2/12/2025
3.0.919 240 2/12/2025
3.0.918 147 2/12/2025
3.0.917 220 2/11/2025
3.0.916 5,580 2/11/2025
3.0.915 6,096 2/11/2025
3.0.914 3,637 2/11/2025
3.0.913 157 2/11/2025
3.0.912 584 2/11/2025
3.0.911 2,792 2/10/2025
3.0.910 165 2/10/2025
3.0.909 1,187 2/10/2025
3.0.908 164 2/10/2025
3.0.907 10,269 2/10/2025
3.0.906 157 2/10/2025
3.0.905 1,879 2/9/2025
3.0.904 9,301 2/9/2025
3.0.903 141 2/9/2025
3.0.902 11,879 2/8/2025
3.0.901 156 2/8/2025
3.0.900 2,729 2/7/2025
3.0.899 149 2/7/2025
3.0.898 2,591 2/7/2025
3.0.897 150 2/7/2025
3.0.896 972 2/7/2025
3.0.895 647 2/7/2025
3.0.894 162 2/7/2025
3.0.893 527 2/7/2025
3.0.892 146 2/7/2025
3.0.891 1,668 2/7/2025
3.0.890 140 2/7/2025
3.0.889 157 2/7/2025
3.0.888 17,321 2/7/2025
3.0.887 10,249 2/5/2025
3.0.886 939 2/5/2025
3.0.885 1,483 2/5/2025
3.0.884 428 2/5/2025
3.0.883 1,628 2/5/2025
3.0.882 1,033 2/5/2025
3.0.881 5,062 2/5/2025
3.0.880 136 2/5/2025
3.0.879 16,867 1/28/2025
3.0.878 1,078 1/28/2025
3.0.877 3,125 1/28/2025
3.0.876 340 1/28/2025
3.0.875 6,723 1/28/2025
3.0.874 1,054 1/27/2025
3.0.873 117 1/27/2025
3.0.872 263 1/27/2025
3.0.871 420 1/27/2025
3.0.870 133 1/27/2025
3.0.869 8,404 1/27/2025
3.0.868 7,630 1/26/2025
3.0.867 1,566 1/26/2025
3.0.866 259 1/26/2025
3.0.865 1,698 1/26/2025
3.0.864 2,212 1/25/2025
3.0.863 137 1/25/2025
3.0.862 9,561 1/25/2025
3.0.861 1,729 1/25/2025
3.0.860 474 1/25/2025
3.0.859 145 1/25/2025
3.0.858 3,231 1/25/2025
3.0.857 2,147 1/25/2025
3.0.856 10,775 1/24/2025
3.0.855 2,650 1/24/2025
3.0.854 122 1/24/2025
3.0.853 3,480 1/24/2025
3.0.852 503 1/24/2025
3.0.851 334 1/24/2025
3.0.850 5,370 1/24/2025
3.0.849 139 1/24/2025
3.0.848 813 1/23/2025
3.0.847 142 1/23/2025
3.0.846 954 1/23/2025
3.0.845 136 1/23/2025
3.0.844 13,032 1/22/2025
3.0.843 1,631 1/21/2025
3.0.842 1,572 1/21/2025
3.0.841 886 1/21/2025
3.0.840 128 1/21/2025
3.0.839 901 1/21/2025
3.0.838 1,139 1/21/2025
3.0.837 8,970 1/21/2025
3.0.836 908 1/21/2025
3.0.835 1,623 1/21/2025
3.0.834 143 1/21/2025
3.0.833 1,331 1/21/2025
3.0.832 136 1/21/2025
3.0.831 3,739 1/21/2025
3.0.830 126 1/21/2025
3.0.829 632 1/20/2025
3.0.828 4,669 1/20/2025
3.0.827 365 1/20/2025
3.0.826 3,416 1/20/2025
3.0.825 137 1/20/2025
3.0.824 1,781 1/20/2025
3.0.823 146 1/20/2025
3.0.822 152 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 140 1/20/2025
3.0.817 9,461 1/19/2025
3.0.816 144 1/19/2025
3.0.815 8,758 1/19/2025
3.0.814 2,694 1/19/2025
3.0.813 175 1/19/2025
3.0.812 613 1/19/2025
3.0.811 135 1/19/2025
3.0.810 3,192 1/19/2025
3.0.809 135 1/19/2025
3.0.808 5,489 1/18/2025
3.0.807 143 1/18/2025
3.0.806 11,680 1/17/2025
3.0.805 153 1/17/2025
3.0.804 1,042 1/17/2025
3.0.803 1,563 1/17/2025
3.0.802 7,029 1/16/2025
3.0.801 2,385 1/16/2025
3.0.800 3,556 1/16/2025
3.0.799 883 1/16/2025
3.0.798 1,995 1/16/2025
3.0.797 1,673 1/16/2025
3.0.796 128 1/16/2025
3.0.795 7,751 1/15/2025
3.0.794 134 1/15/2025
3.0.793 4,641 1/15/2025
3.0.792 130 1/15/2025
3.0.791 209 1/15/2025
3.0.790 5,566 1/15/2025
3.0.789 117 1/15/2025
3.0.788 4,857 1/15/2025
3.0.787 114 1/15/2025
3.0.786 848 1/15/2025
3.0.785 110 1/15/2025
3.0.784 2,792 1/15/2025
3.0.783 114 1/15/2025
3.0.782 411 1/14/2025
3.0.781 127 1/14/2025
3.0.780 126 1/14/2025
3.0.779 6,109 1/14/2025
3.0.778 1,006 1/14/2025
3.0.777 129 1/14/2025
3.0.776 1,828 1/14/2025
3.0.775 114 1/14/2025
3.0.774 9,551 1/13/2025
3.0.773 2,758 1/13/2025
3.0.772 2,355 1/13/2025
3.0.771 133 1/13/2025
3.0.770 9,070 1/11/2025
3.0.769 3,690 1/11/2025
3.0.768 158 1/11/2025
3.0.767 3,246 1/11/2025
3.0.766 143 1/11/2025
3.0.765 3,112 1/10/2025
3.0.764 3,436 1/10/2025
3.0.763 136 1/10/2025
3.0.762 1,406 1/10/2025
3.0.761 150 1/10/2025
3.0.760 138 1/10/2025
3.0.759 10,936 1/3/2025
3.0.758 718 1/3/2025
3.0.757 1,603 1/3/2025
3.0.756 173 1/3/2025
3.0.755 2,426 1/3/2025
3.0.754 147 1/3/2025
3.0.753 1,865 1/3/2025
3.0.752 1,759 1/2/2025
3.0.751 143 1/2/2025
3.0.750 2,987 1/2/2025
3.0.749 145 1/2/2025
3.0.748 4,993 1/2/2025
3.0.747 135 1/2/2025
3.0.746 155 1/2/2025
3.0.745 8,236 1/1/2025
3.0.744 1,719 1/1/2025
3.0.743 423 1/1/2025
3.0.742 165 1/1/2025
3.0.741 2,621 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 524 12/31/2024
3.0.736 159 12/31/2024
3.0.735 173 12/31/2024
3.0.734 1,040 12/31/2024
3.0.733 170 12/31/2024
3.0.732 8,037 12/31/2024
3.0.731 159 12/31/2024
3.0.730 7,647 12/31/2024
3.0.729 129 12/31/2024
3.0.728 4,291 12/31/2024
3.0.727 537 12/31/2024
3.0.726 150 12/31/2024
3.0.725 2,309 12/31/2024
3.0.724 147 12/31/2024
3.0.723 15,248 12/28/2024
3.0.722 1,950 12/28/2024
3.0.721 2,175 12/27/2024
3.0.720 160 12/27/2024
3.0.719 4,591 12/27/2024
3.0.718 8,582 12/24/2024
3.0.717 2,100 12/24/2024
3.0.716 1,549 12/24/2024
3.0.715 1,300 12/24/2024
3.0.714 2,295 12/24/2024
3.0.713 142 12/24/2024
3.0.712 3,791 12/24/2024
3.0.711 1,016 12/24/2024
3.0.710 142 12/24/2024
3.0.709 690 12/24/2024
3.0.708 1,626 12/24/2024
3.0.707 365 12/24/2024
3.0.706 181 12/24/2024
3.0.705 1,739 12/24/2024
3.0.704 150 12/24/2024
3.0.703 3,017 12/23/2024
3.0.702 4,806 12/23/2024
3.0.701 150 12/23/2024
3.0.700 1,150 12/23/2024
3.0.699 147 12/23/2024
3.0.698 3,296 12/23/2024
3.0.697 146 12/23/2024
3.0.696 2,524 12/23/2024
3.0.695 153 12/23/2024
3.0.694 739 12/22/2024
3.0.693 2,363 12/22/2024
3.0.692 6,872 12/22/2024
3.0.691 157 12/22/2024
3.0.690 2,759 12/22/2024
3.0.689 234 12/22/2024
3.0.688 766 12/22/2024
3.0.687 143 12/22/2024
3.0.686 420 12/22/2024
3.0.685 149 12/22/2024
3.0.684 11,622 12/22/2024
3.0.683 138 12/22/2024
3.0.682 1,864 12/21/2024
3.0.681 451 12/21/2024
3.0.680 144 12/21/2024
3.0.679 842 12/21/2024
3.0.678 1,349 12/21/2024
3.0.677 140 12/21/2024
3.0.676 6,631 12/21/2024
3.0.675 639 12/21/2024
3.0.674 144 12/21/2024
3.0.673 4,407 12/21/2024
3.0.672 1,102 12/21/2024
3.0.671 154 12/21/2024
3.0.670 2,622 12/20/2024
3.0.669 154 12/20/2024
3.0.668 151 12/20/2024
3.0.667 6,422 12/20/2024
3.0.666 1,951 12/20/2024
3.0.665 351 12/20/2024
3.0.664 6,049 12/19/2024
3.0.663 718 12/19/2024
3.0.662 3,481 12/18/2024
3.0.661 143 12/18/2024
3.0.660 11,167 12/17/2024
3.0.659 308 12/17/2024
3.0.658 1,104 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,884 12/10/2024
3.0.653 1,704 12/10/2024
3.0.652 635 12/9/2024
3.0.651 149 12/9/2024
3.0.650 4,555 12/9/2024
3.0.649 2,375 12/9/2024
3.0.648 143 12/9/2024
3.0.647 6,499 12/9/2024
3.0.646 4,843 12/6/2024
3.0.645 696 12/6/2024
3.0.644 149 12/6/2024
3.0.643 1,148 12/6/2024
3.0.641 6,643 12/6/2024
3.0.640 4,143 12/6/2024
3.0.639 9,208 12/6/2024
3.0.637 560 12/6/2024
3.0.636 4,252 12/5/2024
3.0.635 5,965 12/5/2024
3.0.634 4,874 12/5/2024
3.0.633 141 12/5/2024
3.0.632 3,308 12/5/2024
3.0.631 1,688 12/5/2024
3.0.630 151 12/5/2024
3.0.629 618 12/5/2024
3.0.628 146 12/5/2024
3.0.627 208 12/5/2024
3.0.626 146 12/5/2024
3.0.625 5,751 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,876 12/4/2024
3.0.620 506 12/4/2024
3.0.619 666 12/4/2024
3.0.618 5,832 12/3/2024
3.0.617 152 12/3/2024
3.0.616 1,877 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,963 12/3/2024
3.0.611 143 12/3/2024
3.0.610 5,742 12/3/2024
3.0.609 136 12/3/2024
3.0.608 5,283 12/2/2024
3.0.607 4,726 12/2/2024
3.0.606 2,784 12/2/2024
3.0.605 435 12/2/2024
3.0.604 154 12/2/2024
3.0.603 674 12/2/2024
3.0.602 5,912 12/1/2024
3.0.601 157 12/1/2024
3.0.600 3,226 12/1/2024
3.0.599 298 12/1/2024
3.0.598 5,939 12/1/2024
3.0.597 155 12/1/2024
3.0.596 6,114 11/29/2024
3.0.595 1,820 11/29/2024
3.0.594 9,179 11/21/2024
3.0.593 487 11/21/2024
3.0.592 7,754 11/20/2024
3.0.591 521 11/20/2024
3.0.590 159 11/20/2024
3.0.589 143 11/20/2024
3.0.588 671 11/20/2024
3.0.587 241 11/20/2024
3.0.586 143 11/20/2024
3.0.585 3,253 11/20/2024
3.0.584 4,638 11/19/2024
3.0.583 150 11/19/2024
3.0.582 1,028 11/19/2024
3.0.581 133 11/19/2024
3.0.580 4,105 11/19/2024
3.0.579 128 11/19/2024
3.0.578 2,179 11/19/2024
3.0.577 153 11/19/2024
3.0.576 14,240 11/14/2024
3.0.575 214 11/14/2024
3.0.574 880 11/14/2024
3.0.573 3,933 11/14/2024
3.0.572 1,220 11/14/2024
3.0.571 163 11/14/2024
3.0.570 155 11/14/2024
3.0.569 6,893 11/14/2024
3.0.568 155 11/14/2024
3.0.567 154 11/14/2024
3.0.566 5,944 11/14/2024
3.0.565 149 11/14/2024
3.0.564 153 11/14/2024
3.0.563 150 11/14/2024
2.1.562 13,610 11/13/2024
2.1.561 2,266 11/13/2024
2.1.560 5,048 11/13/2024
2.1.559 165 11/13/2024
2.1.558 2,157 11/12/2024
2.1.557 613 11/12/2024
2.1.556 13,332 11/9/2024
2.1.555 570 11/9/2024
2.1.554 162 11/9/2024
2.1.553 2,843 11/9/2024
2.1.552 147 11/9/2024
2.1.551 1,457 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 651 11/8/2024
2.1.546 3,140 11/8/2024
2.1.545 139 11/8/2024
2.1.544 8,869 11/8/2024
2.1.543 133 11/8/2024
2.1.542 19,446 11/1/2024
2.1.541 725 11/1/2024
2.1.540 11,348 10/29/2024
2.1.539 1,220 10/29/2024
2.1.538 4,557 10/29/2024
2.1.537 967 10/29/2024
2.1.536 9,055 10/28/2024
2.1.535 3,075 10/28/2024
2.1.534 6,348 10/26/2024
2.1.533 1,131 10/26/2024
2.1.532 13,444 10/22/2024
2.1.531 404 10/22/2024
2.1.530 855 10/22/2024
2.1.529 1,482 10/22/2024
2.1.528 148 10/22/2024
2.1.527 748 10/22/2024
2.1.526 10,875 10/18/2024
2.1.525 1,766 10/17/2024
2.1.524 6,943 10/15/2024
2.1.523 2,653 10/15/2024
2.1.522 149 10/14/2024
2.1.521 8,569 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,866 10/11/2024
2.1.516 10,703 10/9/2024
2.1.515 596 10/9/2024
2.1.514 132 10/9/2024
2.1.513 3,264 10/8/2024
2.1.512 211 10/8/2024
2.1.511 3,567 10/8/2024
2.1.510 205 10/8/2024
2.1.509 138 10/8/2024
2.1.508 6,499 10/8/2024
2.1.507 10,187 10/3/2024
2.1.506 151 10/3/2024
2.1.505 1,887 10/3/2024
2.1.504 3,217 10/3/2024
2.1.503 2,345 10/3/2024
2.1.502 9,719 10/2/2024
2.1.501 146 10/2/2024
2.1.500 3,032 10/2/2024
2.1.499 1,669 10/2/2024
2.1.498 6,794 10/1/2024
2.1.497 1,073 10/1/2024
2.1.496 160 10/1/2024
2.1.495 4,303 10/1/2024
2.1.494 152 10/1/2024
2.1.493 203 10/1/2024
2.1.492 8,942 9/29/2024
2.1.491 2,209 9/29/2024
2.1.490 151 9/29/2024
2.1.489 1,997 9/29/2024
2.1.488 160 9/29/2024
2.1.487 4,250 9/29/2024
2.1.486 8,402 9/27/2024
2.1.485 1,270 9/27/2024
2.1.484 5,005 9/27/2024
2.1.483 163 9/27/2024
2.1.482 688 9/27/2024
2.1.481 3,553 9/27/2024
2.1.480 5,269 9/26/2024
2.1.479 5,681 9/26/2024
2.1.478 3,884 9/26/2024
2.1.477 3,535 9/26/2024
2.1.476 6,121 9/26/2024
2.1.475 148 9/26/2024
2.1.474 9,137 9/23/2024
2.1.473 2,060 9/23/2024
2.1.472 1,517 9/23/2024
2.1.471 1,807 9/23/2024
2.1.470 160 9/23/2024
2.1.469 2,479 9/23/2024
2.1.468 132 9/23/2024
2.1.467 7,657 9/23/2024
2.1.466 156 9/23/2024
2.1.465 1,155 9/23/2024
2.1.464 168 9/23/2024
2.1.463 141 9/23/2024
2.1.462 1,470 9/23/2024
2.1.461 14,967 9/18/2024
2.1.460 377 9/17/2024
2.1.459 1,955 9/17/2024
2.1.458 2,657 9/17/2024
2.1.457 159 9/17/2024
2.1.456 2,902 9/17/2024
2.1.455 744 9/17/2024
2.1.454 5,087 9/17/2024
2.1.453 857 9/17/2024
2.1.452 294 9/17/2024
2.1.451 4,150 9/17/2024
2.1.450 11,981 9/16/2024
2.1.449 1,102 9/16/2024
2.1.448 7,752 9/12/2024
2.1.447 4,571 9/12/2024
2.1.446 2,032 9/11/2024
2.1.445 2,473 9/11/2024
2.1.443 5,640 9/11/2024
2.1.442 1,492 9/11/2024
2.1.441 1,412 9/11/2024
2.1.440 3,485 9/11/2024
2.1.439 12,350 9/10/2024
2.1.438 173 9/10/2024
2.1.437 1,786 9/10/2024
2.1.436 168 9/10/2024
2.1.434 4,478 9/10/2024
2.1.433 882 9/9/2024
2.1.432 2,788 9/9/2024
2.1.430 2,374 9/9/2024
2.1.428 175 9/9/2024
2.1.427 664 9/9/2024
2.1.426 20,289 9/7/2024
2.1.425 191 9/7/2024
2.1.424 7,753 9/6/2024
2.1.423 519 9/6/2024
2.1.422 3,421 9/6/2024
2.1.421 166 9/5/2024
2.1.420 175 9/5/2024
2.1.419 3,705 9/5/2024
2.1.418 1,745 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,773 9/5/2024
2.1.412 279 9/5/2024
2.1.411 171 9/5/2024
2.1.410 3,426 9/4/2024
2.1.409 12,516 9/3/2024
2.1.408 154 9/3/2024
2.1.407 156 9/3/2024
2.1.406 6,330 9/3/2024
2.1.405 211 9/3/2024
2.1.404 3,908 9/3/2024
2.1.403 8,367 8/29/2024
2.1.402 4,084 8/29/2024
2.1.401 4,461 8/26/2024
2.1.400 146 8/26/2024
2.1.399 7,878 8/21/2024
2.1.398 927 8/21/2024
2.1.397 189 8/21/2024
2.1.396 4,118 8/21/2024
2.1.395 202 8/20/2024
2.1.394 192 8/20/2024
2.1.393 714 8/20/2024
2.1.392 4,753 8/20/2024
2.1.391 668 8/20/2024
2.1.390 169 8/20/2024
2.1.389 4,185 8/20/2024
2.1.388 172 8/20/2024
2.1.387 1,905 8/20/2024
2.1.386 4,588 8/19/2024
2.1.385 7,606 8/15/2024
2.1.384 3,277 8/15/2024
2.1.383 7,461 8/14/2024
2.1.382 195 8/13/2024
2.1.381 8,899 8/7/2024
2.1.380 463 8/6/2024
2.1.379 4,324 8/6/2024
2.1.378 8,127 8/1/2024
2.1.377 540 8/1/2024
2.1.376 146 8/1/2024
2.1.374 1,977 8/1/2024
2.1.373 9,600 7/25/2024
2.1.372 144 7/25/2024
2.1.371 1,268 7/25/2024
2.1.370 479 7/25/2024
2.1.369 577 7/25/2024
2.1.368 293 7/25/2024
2.1.367 635 7/24/2024
2.1.366 219 7/24/2024
2.1.365 337 7/24/2024
2.1.364 523 7/24/2024
2.1.363 13,689 7/20/2024
2.1.362 2,458 7/20/2024
2.1.361 8,271 7/14/2024
2.1.360 2,514 7/14/2024
2.1.359 154 7/14/2024
2.1.358 2,369 7/14/2024
2.1.357 7,004 7/10/2024
2.1.355 1,126 7/10/2024
2.1.354 1,897 7/10/2024
2.1.353 162 7/10/2024
2.1.352 2,747 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,231 7/10/2024
2.1.346 173 7/10/2024
2.1.345 1,329 7/10/2024
2.1.344 154 7/10/2024
2.1.343 309 7/9/2024
2.1.342 141 7/9/2024
2.1.339 3,058 7/9/2024
2.1.338 702 7/9/2024
2.1.337 6,572 7/9/2024
2.1.336 1,715 7/9/2024
2.1.335 166 7/9/2024
2.1.334 4,179 7/9/2024
2.1.333 148 7/9/2024
2.1.332 11,691 7/9/2024
2.1.331 161 7/9/2024
2.1.330 4,055 7/9/2024
2.1.329 150 7/9/2024
2.1.328 1,703 7/9/2024
2.1.327 1,087 7/8/2024
2.1.326 1,586 7/8/2024
2.1.325 162 7/8/2024
2.1.324 176 7/8/2024
2.1.323 7,854 7/8/2024
2.1.322 2,667 7/8/2024
2.1.321 159 7/8/2024
2.1.320 3,827 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,838 7/7/2024
2.1.315 3,541 7/7/2024
2.1.314 2,937 7/7/2024
2.1.313 330 7/7/2024
2.1.312 5,559 7/5/2024
2.1.311 6,581 7/3/2024
2.1.310 5,065 7/3/2024
2.1.309 618 7/3/2024
2.1.308 6,613 7/2/2024
2.1.307 3,025 6/30/2024
2.1.306 3,681 6/28/2024
2.1.305 8,672 6/22/2024
2.1.304 7,888 6/15/2024
2.1.303 6,420 6/14/2024
2.1.302 9,394 6/1/2024
2.1.301 2,550 6/1/2024
2.1.300 925 6/1/2024
2.1.299 9,462 5/31/2024
2.1.298 5,896 5/29/2024
2.1.297 4,890 5/28/2024
2.1.296 3,900 5/27/2024
2.1.295 7,735 5/26/2024
2.1.294 3,221 5/26/2024
2.1.293 721 5/26/2024
2.1.292 4,009 5/25/2024
2.1.291 2,140 5/25/2024
2.1.290 182 5/25/2024
2.1.289 174 5/25/2024
2.1.288 1,085 5/25/2024
2.1.287 173 5/25/2024
2.1.286 589 5/25/2024
2.1.285 170 5/25/2024
2.1.284 168 5/25/2024
2.1.283 11,789 5/23/2024
2.1.282 843 5/23/2024
2.1.281 385 5/22/2024
2.1.280 5,786 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,484 5/22/2024
2.1.275 5,397 5/18/2024
2.1.274 2,987 5/18/2024
2.1.273 2,813 5/17/2024
2.1.272 166 5/17/2024
2.1.271 4,309 5/16/2024
2.1.270 653 5/15/2024
2.1.269 4,330 5/15/2024
2.1.268 7,211 5/12/2024
2.1.267 4,349 5/3/2024
2.1.266 1,841 4/30/2024
2.1.265 2,791 4/29/2024
2.1.264 2,996 4/29/2024
2.1.263 4,221 4/28/2024
2.1.262 2,374 4/28/2024
2.1.261 1,698 4/28/2024
2.1.260 2,698 4/28/2024
2.1.259 1,443 4/28/2024
2.1.258 160 4/28/2024
2.1.257 6,604 4/27/2024
2.1.256 180 4/27/2024
2.1.255 6,741 4/19/2024
2.1.254 6,451 4/18/2024
2.1.253 5,301 4/12/2024
2.1.252 1,744 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 155 4/12/2024
2.1.247 1,500 4/12/2024
2.1.246 451 4/12/2024
2.1.245 2,492 4/11/2024
2.1.244 5,930 4/10/2024
2.1.243 1,712 4/9/2024
2.1.242 4,912 4/2/2024
2.1.241 1,383 4/1/2024
2.1.240 3,238 3/29/2024
2.1.239 2,798 3/25/2024
2.1.238 424 3/25/2024
2.1.237 5,169 3/20/2024
2.1.236 3,191 3/19/2024
2.1.235 709 3/19/2024
2.1.234 3,720 3/18/2024
2.1.233 2,038 3/18/2024
2.1.232 2,025 3/15/2024
2.1.231 3,568 3/13/2024
2.1.230 1,587 3/13/2024
2.1.229 1,015 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,512 3/12/2024
2.1.222 4,255 3/11/2024
2.1.221 3,679 3/11/2024
2.1.220 2,449 3/10/2024
2.1.219 2,821 3/8/2024
2.1.218 1,547 3/8/2024
2.1.217 2,321 3/8/2024
2.1.216 3,124 3/6/2024
2.1.215 2,950 3/4/2024
2.1.214 2,109 3/4/2024
2.1.213 3,875 3/2/2024
2.1.212 1,768 3/2/2024
2.1.211 573 3/2/2024
2.1.210 492 3/2/2024
2.1.209 729 3/2/2024
2.1.208 5,058 2/29/2024
2.1.207 908 2/29/2024
2.1.206 495 2/29/2024
2.1.205 4,902 2/26/2024
2.1.204 2,190 2/25/2024
2.1.203 3,837 2/23/2024
2.1.202 2,719 2/22/2024
2.1.201 1,325 2/22/2024
2.1.200 630 2/21/2024
2.1.199 1,684 2/21/2024
2.1.198 405 2/21/2024
2.1.197 960 2/21/2024
2.1.196 170 2/21/2024
2.1.195 1,914 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 777 2/21/2024
2.1.190 166 2/21/2024
2.1.189 3,920 2/20/2024
2.1.188 935 2/20/2024
2.1.187 894 2/20/2024
2.1.186 1,183 2/20/2024
2.1.185 3,042 2/19/2024
2.1.184 2,729 2/17/2024
2.1.183 1,286 2/16/2024
2.1.182 1,173 2/16/2024
2.1.181 1,961 2/16/2024
2.1.180 181 2/16/2024
2.1.179 939 2/16/2024
2.1.178 182 2/16/2024
2.1.177 177 2/16/2024
2.1.176 770 2/16/2024
2.1.175 167 2/16/2024
2.1.174 4,802 2/13/2024
2.1.173 1,961 2/13/2024
2.1.172 1,571 2/13/2024
2.1.171 647 2/13/2024
2.1.170 891 2/13/2024
2.1.169 2,785 2/12/2024
2.1.168 652 2/11/2024
2.1.167 2,212 2/11/2024
2.1.166 1,176 2/11/2024
2.1.165 4,046 2/10/2024
2.1.164 728 2/9/2024
2.1.163 176 2/9/2024
2.1.162 2,255 2/9/2024
2.1.161 2,364 2/9/2024
2.1.160 559 2/8/2024
2.1.159 1,737 2/8/2024
2.1.158 1,120 2/8/2024
2.1.157 2,094 2/8/2024
2.1.156 162 2/8/2024
2.1.155 2,690 2/7/2024
2.1.154 608 2/7/2024
2.1.153 804 2/7/2024
2.1.152 1,837 2/7/2024
2.1.151 470 2/6/2024
2.1.150 171 2/6/2024
2.1.149 174 2/6/2024
2.1.148 3,963 2/5/2024
2.1.147 2,231 2/4/2024
2.1.146 3,003 2/2/2024
2.1.145 2,707 1/31/2024
2.1.144 2,991 1/29/2024
2.1.143 1,899 1/29/2024
2.1.142 501 1/29/2024
2.1.141 1,989 1/28/2024
2.1.140 653 1/28/2024
2.1.139 418 1/28/2024
2.1.138 710 1/28/2024
2.1.137 2,786 1/28/2024
2.1.136 1,384 1/28/2024
2.1.135 422 1/27/2024
2.1.134 1,279 1/27/2024
2.1.133 1,787 1/27/2024
2.1.132 1,733 1/27/2024
2.1.131 196 1/27/2024
2.1.130 933 1/27/2024
2.1.129 1,554 1/26/2024
2.1.128 312 1/26/2024
2.1.127 1,210 1/26/2024
2.1.126 1,615 1/26/2024
2.1.125 2,305 1/26/2024
2.1.124 1,282 1/25/2024
2.1.123 1,422 1/25/2024
2.1.122 623 1/25/2024
2.1.121 1,283 1/25/2024
2.1.120 678 1/25/2024
2.1.119 3,754 1/19/2024
2.1.118 3,072 1/15/2024
2.1.117 668 1/15/2024
2.1.116 1,816 1/15/2024
2.1.115 173 1/15/2024
2.1.114 776 1/15/2024
2.1.113 1,929 1/15/2024
2.1.112 3,503 1/14/2024
2.1.111 2,260 1/13/2024
2.1.110 2,440 1/12/2024
2.1.109 2,860 1/11/2024
2.1.108 3,626 1/7/2024
2.1.107 2,779 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 2,015 1/5/2024
2.1.102 186 1/5/2024
2.1.101 3,868 1/1/2024
2.1.100 3,070 12/28/2023
2.1.99 1,017 12/28/2023
2.1.98 705 12/28/2023
2.1.97 173 12/28/2023
2.1.96 180 12/28/2023
2.1.95 986 12/27/2023
2.1.94 193 12/27/2023
2.1.93 706 12/27/2023
2.1.92 187 12/27/2023
2.1.91 191 12/27/2023
2.1.90 3,228 12/25/2023
2.1.89 489 12/25/2023
2.1.88 1,191 12/25/2023
2.1.87 196 12/25/2023
2.1.86 965 12/25/2023
2.1.85 185 12/25/2023
2.1.84 837 12/25/2023
2.1.83 183 12/25/2023
2.1.82 2,434 12/24/2023
2.1.81 1,586 12/23/2023
2.1.80 1,307 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,571 12/23/2023
2.1.74 176 12/23/2023
2.1.73 2,048 12/19/2023
2.1.72 286 12/19/2023
2.1.71 4,412 12/11/2023
2.1.70 1,042 12/10/2023
2.1.69 175 12/10/2023
2.1.68 631 12/10/2023
2.1.67 2,096 12/10/2023
2.1.66 533 12/9/2023
2.1.65 528 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 282 12/9/2023
2.1.60 168 12/9/2023
2.1.59 1,563 12/9/2023
2.1.58 186 12/9/2023
2.1.57 2,254 12/6/2023
2.1.56 572 12/6/2023
2.1.55 347 12/6/2023
2.1.54 391 12/6/2023
2.1.53 1,342 12/5/2023
2.1.52 542 12/5/2023
2.1.51 489 12/5/2023
2.1.50 556 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 172 12/4/2023
2.1.44 463 12/4/2023
2.1.43 185 12/4/2023
2.1.42 1,554 12/4/2023
2.1.41 135 12/4/2023
2.1.40 1,766 11/27/2023
2.1.39 780 11/26/2023
2.1.38 318 11/26/2023
2.1.37 946 11/23/2023
2.1.36 1,035 11/23/2023
2.1.35 972 11/23/2023
2.1.34 165 11/23/2023
2.1.33 601 11/23/2023
2.1.32 176 11/23/2023
2.1.31 1,664 11/20/2023
2.1.30 1,725 11/20/2023
2.1.29 1,264 11/19/2023
2.1.28 375 11/19/2023
2.1.27 700 11/19/2023
2.1.26 724 11/19/2023
2.1.25 736 11/19/2023
2.1.24 153 11/19/2023
2.1.23 293 11/18/2023
2.1.22 1,546 11/18/2023
2.1.21 539 11/18/2023
2.1.20 815 11/18/2023
2.1.19 176 11/18/2023
2.1.18 453 11/18/2023
2.1.17 166 11/18/2023
2.1.16 914 11/17/2023
2.1.15 816 11/17/2023
2.1.14 166 11/17/2023
2.1.13 636 11/17/2023
2.1.12 428 11/17/2023
2.1.11 735 11/17/2023
2.1.10 161 11/17/2023
2.1.9 749 11/17/2023
2.1.8 168 11/17/2023
2.1.7 212 11/17/2023
2.1.6 477 11/17/2023
2.1.5 550 11/16/2023
2.0.101 3,458 11/15/2023
2.0.100 151 11/15/2023
2.0.99 170 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 918 11/14/2023
1.0.97 1,103 11/13/2023
1.0.96 146 11/13/2023
1.0.95 759 11/10/2023
1.0.94 161 11/10/2023
1.0.93 1,369 11/9/2023
1.0.92 163 11/9/2023
1.0.91 1,487 11/7/2023
1.0.90 162 11/7/2023
1.0.89 721 11/6/2023
1.0.88 172 11/6/2023
1.0.87 820 11/3/2023
1.0.86 176 11/3/2023
1.0.85 1,262 11/2/2023
1.0.84 156 11/2/2023
1.0.83 833 11/1/2023
1.0.82 2,081 10/26/2023
1.0.81 1,857 10/19/2023
1.0.80 179 10/19/2023
1.0.79 1,112 10/18/2023
1.0.78 202 10/18/2023
1.0.77 1,043 10/17/2023
1.0.76 191 10/17/2023
1.0.75 925 10/16/2023
1.0.74 193 10/16/2023
1.0.73 996 10/13/2023
1.0.72 463 10/12/2023
1.0.71 2,433 9/20/2023
1.0.70 1,004 9/19/2023
1.0.69 974 9/18/2023
1.0.68 192 9/18/2023
1.0.67 1,300 9/14/2023
1.0.66 2,074 8/31/2023
1.0.65 191 8/31/2023
1.0.64 1,178 8/30/2023
1.0.63 218 8/30/2023
1.0.62 234 8/30/2023
1.0.61 1,191 8/28/2023
1.0.60 979 8/25/2023
1.0.59 193 8/25/2023
1.0.58 681 8/24/2023
1.0.57 2,091 8/21/2023
1.0.56 1,197 8/18/2023
1.0.55 1,050 8/17/2023
1.0.54 216 8/17/2023
1.0.53 2,710 8/10/2023
1.0.52 777 8/9/2023
1.0.51 932 8/8/2023
1.0.50 872 8/7/2023
1.0.49 238 8/7/2023
1.0.48 3,445 7/13/2023
1.0.47 1,216 7/11/2023
1.0.46 985 7/10/2023
1.0.45 924 7/7/2023
1.0.44 238 7/7/2023
1.0.43 2,923 6/30/2023
1.0.42 1,442 6/29/2023
1.0.41 801 6/28/2023
1.0.40 2,070 6/26/2023
1.0.39 1,083 6/23/2023
1.0.38 1,473 6/21/2023
1.0.37 1,985 6/15/2023
1.0.36 659 6/14/2023
1.0.35 2,412 6/9/2023
1.0.34 1,076 6/8/2023
1.0.33 2,078 6/7/2023
1.0.32 235 6/7/2023
1.0.31 1,542 6/6/2023
1.0.30 1,507 6/5/2023
1.0.29 1,713 6/2/2023
1.0.28 227 6/2/2023
1.0.27 1,566 6/1/2023
1.0.26 781 5/31/2023
1.0.25 650 5/31/2023
1.0.24 232 5/31/2023
1.0.23 1,918 5/30/2023
1.0.22 1,978 5/26/2023
1.0.21 912 5/25/2023
1.0.20 207 5/25/2023
1.0.19 1,075 5/24/2023
1.0.18 221 5/24/2023
1.0.17 594 5/23/2023
1.0.13 1,920 5/22/2023
1.0.12 1,559 5/18/2023
1.0.11 803 5/17/2023
1.0.10 1,927 5/1/2023
1.0.9 1,278 4/25/2023
1.0.8 589 4/24/2023
1.0.7 1,232 4/21/2023
1.0.6 2,439 4/13/2023
1.0.5 766 4/12/2023
1.0.4 1,300 4/8/2023
1.0.3 260 4/8/2023
1.0.2 762 4/8/2023
1.0.1 266 4/8/2023