Soenneker.Utils.SingletonDictionary 3.0.1103

Prefix Reserved
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.1103
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1103
                    
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.1103" />
                    
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.1103" />
                    
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.1103
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1103"
                    
#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.1103
                    
#: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.1103
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1103
                    
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.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

Soenneker.SignalR.Web.Clients

Providing async thread-safe resilient and dependable SignalR web client singletons

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1103 7,353 8/14/2025
3.0.1102 4,514 8/11/2025
3.0.1101 1,889 8/11/2025
3.0.1100 493 8/11/2025
3.0.1099 121 8/11/2025
3.0.1098 14,462 8/6/2025
3.0.1097 3,127 8/5/2025
3.0.1096 14,528 7/9/2025
3.0.1095 23,036 6/28/2025
3.0.1094 1,250 6/28/2025
3.0.1093 1,797 6/27/2025
3.0.1092 2,278 6/27/2025
3.0.1091 24,402 6/10/2025
3.0.1090 17,331 5/27/2025
3.0.1089 897 5/27/2025
3.0.1088 968 5/27/2025
3.0.1087 2,292 5/27/2025
3.0.1086 13,872 5/23/2025
3.0.1085 1,262 5/23/2025
3.0.1084 1,220 5/23/2025
3.0.1083 1,241 5/23/2025
3.0.1082 262 5/22/2025
3.0.1081 9,489 5/18/2025
3.0.1079 1,429 5/18/2025
3.0.1078 1,378 5/18/2025
3.0.1077 4,150 5/14/2025
3.0.1076 9,254 5/8/2025
3.0.1075 297 5/8/2025
3.0.1074 603 5/8/2025
3.0.1073 1,101 5/7/2025
3.0.1072 12,988 5/5/2025
3.0.1071 871 5/5/2025
3.0.1070 1,562 5/5/2025
3.0.1069 732 5/5/2025
3.0.1068 246 5/5/2025
3.0.1067 161 5/5/2025
3.0.1066 18,155 4/9/2025
3.0.1065 287 4/9/2025
3.0.1064 1,079 4/8/2025
3.0.1063 2,214 4/8/2025
3.0.1062 3,024 4/8/2025
3.0.1061 210 4/8/2025
3.0.1060 186 4/8/2025
3.0.1059 209 4/8/2025
3.0.1058 176 4/8/2025
3.0.1057 882 4/8/2025
3.0.1056 306 4/8/2025
3.0.1055 6,417 4/8/2025
3.0.1054 674 4/8/2025
3.0.1053 3,301 4/7/2025
3.0.1052 727 4/7/2025
3.0.1051 185 4/7/2025
3.0.1050 613 4/7/2025
3.0.1049 188 4/7/2025
3.0.1048 6,794 4/7/2025
3.0.1047 191 4/7/2025
3.0.1046 9,358 4/7/2025
3.0.1045 181 4/7/2025
3.0.1044 1,398 4/7/2025
3.0.1043 186 4/7/2025
3.0.1042 1,643 4/7/2025
3.0.1041 956 4/6/2025
3.0.1040 311 4/6/2025
3.0.1039 186 4/6/2025
3.0.1038 1,084 4/6/2025
3.0.1037 184 4/6/2025
3.0.1036 422 4/6/2025
3.0.1035 1,205 4/6/2025
3.0.1034 165 4/6/2025
3.0.1033 2,072 4/6/2025
3.0.1032 129 4/6/2025
3.0.1031 169 4/6/2025
3.0.1030 135 4/6/2025
3.0.1029 1,627 4/5/2025
3.0.1028 194 4/5/2025
3.0.1027 1,172 4/5/2025
3.0.1026 1,231 4/5/2025
3.0.1025 1,073 4/5/2025
3.0.1024 656 4/5/2025
3.0.1023 564 4/5/2025
3.0.1022 132 4/5/2025
3.0.1021 1,295 4/4/2025
3.0.1020 6,974 4/4/2025
3.0.1019 23,348 4/4/2025
3.0.1018 6,656 4/1/2025
3.0.1017 2,633 4/1/2025
3.0.1016 185 4/1/2025
3.0.1015 5,413 4/1/2025
3.0.1014 2,356 3/31/2025
3.0.1013 384 3/31/2025
3.0.1012 3,913 3/31/2025
3.0.1011 6,738 3/29/2025
3.0.1010 1,076 3/29/2025
3.0.1009 1,414 3/29/2025
3.0.1008 121 3/29/2025
3.0.1007 4,321 3/27/2025
3.0.1006 3,844 3/25/2025
3.0.1005 614 3/25/2025
3.0.1004 3,105 3/25/2025
3.0.1003 6,072 3/21/2025
3.0.1002 2,557 3/21/2025
3.0.1001 7,298 3/18/2025
3.0.1000 3,390 3/18/2025
3.0.999 6,339 3/15/2025
3.0.998 1,793 3/15/2025
3.0.997 95 3/15/2025
3.0.996 6,047 3/12/2025
3.0.995 2,165 3/12/2025
3.0.994 186 3/12/2025
3.0.993 412 3/12/2025
3.0.992 176 3/12/2025
3.0.991 2,705 3/11/2025
3.0.990 179 3/11/2025
3.0.989 1,286 3/11/2025
3.0.988 190 3/11/2025
3.0.987 2,571 3/11/2025
3.0.986 189 3/11/2025
3.0.985 2,654 3/11/2025
3.0.984 173 3/11/2025
3.0.983 1,632 3/11/2025
3.0.982 179 3/11/2025
3.0.981 8,867 3/7/2025
3.0.980 2,604 3/7/2025
3.0.979 6,160 3/2/2025
3.0.978 1,048 3/2/2025
3.0.977 657 3/2/2025
3.0.976 125 3/2/2025
3.0.975 4,329 3/2/2025
3.0.974 122 3/2/2025
3.0.973 3,182 3/1/2025
3.0.972 113 3/1/2025
3.0.971 4,276 3/1/2025
3.0.970 137 3/1/2025
3.0.969 113 3/1/2025
3.0.968 418 3/1/2025
3.0.967 116 3/1/2025
3.0.966 5,798 3/1/2025
3.0.965 4,769 2/26/2025
3.0.964 833 2/26/2025
3.0.963 2,326 2/25/2025
3.0.962 118 2/25/2025
3.0.961 857 2/25/2025
3.0.960 109 2/25/2025
3.0.959 143 2/25/2025
3.0.958 1,835 2/25/2025
3.0.957 4,833 2/24/2025
3.0.956 4,476 2/23/2025
3.0.955 1,092 2/22/2025
3.0.954 115 2/22/2025
3.0.953 7,549 2/22/2025
3.0.952 2,204 2/22/2025
3.0.951 1,061 2/22/2025
3.0.950 776 2/22/2025
3.0.949 152 2/22/2025
3.0.948 127 2/22/2025
3.0.947 121 2/22/2025
3.0.946 4,625 2/21/2025
3.0.945 117 2/21/2025
3.0.944 5,494 2/21/2025
3.0.943 4,550 2/19/2025
3.0.942 1,620 2/19/2025
3.0.941 732 2/19/2025
3.0.940 126 2/19/2025
3.0.939 413 2/18/2025
3.0.938 126 2/18/2025
3.0.937 5,450 2/18/2025
3.0.936 119 2/18/2025
3.0.935 2,814 2/18/2025
3.0.934 6,797 2/16/2025
3.0.933 1,535 2/14/2025
3.0.932 820 2/14/2025
3.0.931 721 2/13/2025
3.0.930 2,387 2/13/2025
3.0.929 294 2/13/2025
3.0.928 3,687 2/13/2025
3.0.927 3,862 2/12/2025
3.0.926 1,461 2/12/2025
3.0.925 160 2/12/2025
3.0.924 125 2/12/2025
3.0.923 2,009 2/12/2025
3.0.922 363 2/12/2025
3.0.921 137 2/12/2025
3.0.920 197 2/12/2025
3.0.919 203 2/12/2025
3.0.918 125 2/12/2025
3.0.917 178 2/11/2025
3.0.916 3,390 2/11/2025
3.0.915 3,681 2/11/2025
3.0.914 2,198 2/11/2025
3.0.913 135 2/11/2025
3.0.912 407 2/11/2025
3.0.911 1,736 2/10/2025
3.0.910 138 2/10/2025
3.0.909 796 2/10/2025
3.0.908 134 2/10/2025
3.0.907 6,319 2/10/2025
3.0.906 132 2/10/2025
3.0.905 1,175 2/9/2025
3.0.904 5,601 2/9/2025
3.0.903 124 2/9/2025
3.0.902 7,113 2/8/2025
3.0.901 131 2/8/2025
3.0.900 1,696 2/7/2025
3.0.899 121 2/7/2025
3.0.898 1,593 2/7/2025
3.0.897 126 2/7/2025
3.0.896 658 2/7/2025
3.0.895 433 2/7/2025
3.0.894 135 2/7/2025
3.0.893 346 2/7/2025
3.0.892 121 2/7/2025
3.0.891 1,046 2/7/2025
3.0.890 117 2/7/2025
3.0.889 133 2/7/2025
3.0.888 10,577 2/7/2025
3.0.887 6,176 2/5/2025
3.0.886 613 2/5/2025
3.0.885 899 2/5/2025
3.0.884 299 2/5/2025
3.0.883 994 2/5/2025
3.0.882 665 2/5/2025
3.0.881 2,921 2/5/2025
3.0.880 122 2/5/2025
3.0.879 10,749 1/28/2025
3.0.878 650 1/28/2025
3.0.877 1,745 1/28/2025
3.0.876 237 1/28/2025
3.0.875 3,660 1/28/2025
3.0.874 636 1/27/2025
3.0.873 103 1/27/2025
3.0.872 199 1/27/2025
3.0.871 278 1/27/2025
3.0.870 110 1/27/2025
3.0.869 4,712 1/27/2025
3.0.868 4,378 1/26/2025
3.0.867 941 1/26/2025
3.0.866 191 1/26/2025
3.0.865 1,020 1/26/2025
3.0.864 1,325 1/25/2025
3.0.863 117 1/25/2025
3.0.862 5,527 1/25/2025
3.0.861 966 1/25/2025
3.0.860 308 1/25/2025
3.0.859 121 1/25/2025
3.0.858 1,806 1/25/2025
3.0.857 1,269 1/25/2025
3.0.856 6,393 1/24/2025
3.0.855 1,482 1/24/2025
3.0.854 105 1/24/2025
3.0.853 1,930 1/24/2025
3.0.852 332 1/24/2025
3.0.851 224 1/24/2025
3.0.850 3,018 1/24/2025
3.0.849 114 1/24/2025
3.0.848 492 1/23/2025
3.0.847 118 1/23/2025
3.0.846 579 1/23/2025
3.0.845 110 1/23/2025
3.0.844 7,572 1/22/2025
3.0.843 978 1/21/2025
3.0.842 959 1/21/2025
3.0.841 575 1/21/2025
3.0.840 113 1/21/2025
3.0.839 599 1/21/2025
3.0.838 746 1/21/2025
3.0.837 5,231 1/21/2025
3.0.836 541 1/21/2025
3.0.835 1,003 1/21/2025
3.0.834 123 1/21/2025
3.0.833 800 1/21/2025
3.0.832 117 1/21/2025
3.0.831 2,094 1/21/2025
3.0.830 107 1/21/2025
3.0.829 396 1/20/2025
3.0.828 2,699 1/20/2025
3.0.827 249 1/20/2025
3.0.826 1,976 1/20/2025
3.0.825 117 1/20/2025
3.0.824 1,058 1/20/2025
3.0.823 119 1/20/2025
3.0.822 131 1/20/2025
3.0.821 117 1/20/2025
3.0.820 364 1/20/2025
3.0.819 124 1/20/2025
3.0.818 120 1/20/2025
3.0.817 5,402 1/19/2025
3.0.816 121 1/19/2025
3.0.815 4,997 1/19/2025
3.0.814 1,562 1/19/2025
3.0.813 131 1/19/2025
3.0.812 385 1/19/2025
3.0.811 113 1/19/2025
3.0.810 1,822 1/19/2025
3.0.809 110 1/19/2025
3.0.808 3,112 1/18/2025
3.0.807 117 1/18/2025
3.0.806 6,895 1/17/2025
3.0.805 125 1/17/2025
3.0.804 596 1/17/2025
3.0.803 915 1/17/2025
3.0.802 4,008 1/16/2025
3.0.801 1,407 1/16/2025
3.0.800 2,016 1/16/2025
3.0.799 543 1/16/2025
3.0.798 1,174 1/16/2025
3.0.797 1,002 1/16/2025
3.0.796 106 1/16/2025
3.0.795 4,396 1/15/2025
3.0.794 109 1/15/2025
3.0.793 2,712 1/15/2025
3.0.792 110 1/15/2025
3.0.791 156 1/15/2025
3.0.790 3,192 1/15/2025
3.0.789 103 1/15/2025
3.0.788 2,685 1/15/2025
3.0.787 90 1/15/2025
3.0.786 449 1/15/2025
3.0.785 85 1/15/2025
3.0.784 1,560 1/15/2025
3.0.783 87 1/15/2025
3.0.782 230 1/14/2025
3.0.781 100 1/14/2025
3.0.780 105 1/14/2025
3.0.779 2,963 1/14/2025
3.0.778 534 1/14/2025
3.0.777 103 1/14/2025
3.0.776 1,195 1/14/2025
3.0.775 100 1/14/2025
3.0.774 4,982 1/13/2025
3.0.773 1,553 1/13/2025
3.0.772 1,314 1/13/2025
3.0.771 107 1/13/2025
3.0.770 4,852 1/11/2025
3.0.769 1,962 1/11/2025
3.0.768 135 1/11/2025
3.0.767 2,079 1/11/2025
3.0.766 119 1/11/2025
3.0.765 1,677 1/10/2025
3.0.764 1,822 1/10/2025
3.0.763 118 1/10/2025
3.0.762 775 1/10/2025
3.0.761 124 1/10/2025
3.0.760 114 1/10/2025
3.0.759 6,268 1/3/2025
3.0.758 479 1/3/2025
3.0.757 997 1/3/2025
3.0.756 148 1/3/2025
3.0.755 1,434 1/3/2025
3.0.754 123 1/3/2025
3.0.753 1,073 1/3/2025
3.0.752 1,038 1/2/2025
3.0.751 124 1/2/2025
3.0.750 1,718 1/2/2025
3.0.749 131 1/2/2025
3.0.748 2,843 1/2/2025
3.0.747 121 1/2/2025
3.0.746 131 1/2/2025
3.0.745 4,666 1/1/2025
3.0.744 1,018 1/1/2025
3.0.743 292 1/1/2025
3.0.742 138 1/1/2025
3.0.741 1,484 1/1/2025
3.0.740 129 1/1/2025
3.0.739 132 1/1/2025
3.0.738 137 1/1/2025
3.0.737 334 12/31/2024
3.0.736 139 12/31/2024
3.0.735 141 12/31/2024
3.0.734 632 12/31/2024
3.0.733 148 12/31/2024
3.0.732 4,572 12/31/2024
3.0.731 138 12/31/2024
3.0.730 4,379 12/31/2024
3.0.729 115 12/31/2024
3.0.728 2,587 12/31/2024
3.0.727 348 12/31/2024
3.0.726 127 12/31/2024
3.0.725 1,332 12/31/2024
3.0.724 123 12/31/2024
3.0.723 8,880 12/28/2024
3.0.722 1,140 12/28/2024
3.0.721 1,246 12/27/2024
3.0.720 136 12/27/2024
3.0.719 2,702 12/27/2024
3.0.718 4,906 12/24/2024
3.0.717 1,267 12/24/2024
3.0.716 953 12/24/2024
3.0.715 820 12/24/2024
3.0.714 1,392 12/24/2024
3.0.713 118 12/24/2024
3.0.712 2,276 12/24/2024
3.0.711 659 12/24/2024
3.0.710 118 12/24/2024
3.0.709 475 12/24/2024
3.0.708 987 12/24/2024
3.0.707 277 12/24/2024
3.0.706 146 12/24/2024
3.0.705 1,066 12/24/2024
3.0.704 124 12/24/2024
3.0.703 1,810 12/23/2024
3.0.702 2,765 12/23/2024
3.0.701 128 12/23/2024
3.0.700 692 12/23/2024
3.0.699 123 12/23/2024
3.0.698 1,854 12/23/2024
3.0.697 122 12/23/2024
3.0.696 1,464 12/23/2024
3.0.695 132 12/23/2024
3.0.694 460 12/22/2024
3.0.693 1,411 12/22/2024
3.0.692 4,011 12/22/2024
3.0.691 130 12/22/2024
3.0.690 1,569 12/22/2024
3.0.689 175 12/22/2024
3.0.688 489 12/22/2024
3.0.687 118 12/22/2024
3.0.686 282 12/22/2024
3.0.685 126 12/22/2024
3.0.684 6,783 12/22/2024
3.0.683 118 12/22/2024
3.0.682 1,083 12/21/2024
3.0.681 288 12/21/2024
3.0.680 123 12/21/2024
3.0.679 512 12/21/2024
3.0.678 795 12/21/2024
3.0.677 120 12/21/2024
3.0.676 3,802 12/21/2024
3.0.675 407 12/21/2024
3.0.674 122 12/21/2024
3.0.673 2,550 12/21/2024
3.0.672 694 12/21/2024
3.0.671 130 12/21/2024
3.0.670 1,597 12/20/2024
3.0.669 133 12/20/2024
3.0.668 127 12/20/2024
3.0.667 3,707 12/20/2024
3.0.666 1,152 12/20/2024
3.0.665 240 12/20/2024
3.0.664 3,472 12/19/2024
3.0.663 438 12/19/2024
3.0.662 2,040 12/18/2024
3.0.661 123 12/18/2024
3.0.660 6,594 12/17/2024
3.0.659 235 12/17/2024
3.0.658 707 12/16/2024
3.0.657 130 12/16/2024
3.0.656 164 12/16/2024
3.0.655 118 12/16/2024
3.0.654 6,502 12/10/2024
3.0.653 1,014 12/10/2024
3.0.652 400 12/9/2024
3.0.651 123 12/9/2024
3.0.650 2,689 12/9/2024
3.0.649 1,390 12/9/2024
3.0.648 120 12/9/2024
3.0.647 3,646 12/9/2024
3.0.646 2,759 12/6/2024
3.0.645 443 12/6/2024
3.0.644 125 12/6/2024
3.0.643 703 12/6/2024
3.0.641 3,899 12/6/2024
3.0.640 2,465 12/6/2024
3.0.639 5,292 12/6/2024
3.0.637 392 12/6/2024
3.0.636 2,545 12/5/2024
3.0.635 3,582 12/5/2024
3.0.634 3,188 12/5/2024
3.0.633 123 12/5/2024
3.0.632 1,763 12/5/2024
3.0.631 1,049 12/5/2024
3.0.630 131 12/5/2024
3.0.629 400 12/5/2024
3.0.628 122 12/5/2024
3.0.627 164 12/5/2024
3.0.626 124 12/5/2024
3.0.625 3,379 12/4/2024
3.0.624 121 12/4/2024
3.0.623 139 12/4/2024
3.0.622 136 12/4/2024
3.0.621 1,734 12/4/2024
3.0.620 322 12/4/2024
3.0.619 428 12/4/2024
3.0.618 3,394 12/3/2024
3.0.617 131 12/3/2024
3.0.616 1,141 12/3/2024
3.0.615 460 12/3/2024
3.0.614 138 12/3/2024
3.0.613 139 12/3/2024
3.0.612 4,052 12/3/2024
3.0.611 121 12/3/2024
3.0.610 3,311 12/3/2024
3.0.609 117 12/3/2024
3.0.608 3,092 12/2/2024
3.0.607 2,677 12/2/2024
3.0.606 1,640 12/2/2024
3.0.605 299 12/2/2024
3.0.604 130 12/2/2024
3.0.603 419 12/2/2024
3.0.602 3,474 12/1/2024
3.0.601 127 12/1/2024
3.0.600 1,909 12/1/2024
3.0.599 221 12/1/2024
3.0.598 3,476 12/1/2024
3.0.597 131 12/1/2024
3.0.596 3,579 11/29/2024
3.0.595 1,066 11/29/2024
3.0.594 5,961 11/21/2024
3.0.593 320 11/21/2024
3.0.592 4,544 11/20/2024
3.0.591 365 11/20/2024
3.0.590 135 11/20/2024
3.0.589 128 11/20/2024
3.0.588 447 11/20/2024
3.0.587 180 11/20/2024
3.0.586 120 11/20/2024
3.0.585 2,049 11/20/2024
3.0.584 2,775 11/19/2024
3.0.583 127 11/19/2024
3.0.582 658 11/19/2024
3.0.581 118 11/19/2024
3.0.580 2,691 11/19/2024
3.0.579 113 11/19/2024
3.0.578 1,337 11/19/2024
3.0.577 134 11/19/2024
3.0.576 8,542 11/14/2024
3.0.575 164 11/14/2024
3.0.574 533 11/14/2024
3.0.573 2,395 11/14/2024
3.0.572 746 11/14/2024
3.0.571 139 11/14/2024
3.0.570 136 11/14/2024
3.0.569 4,169 11/14/2024
3.0.568 131 11/14/2024
3.0.567 130 11/14/2024
3.0.566 3,501 11/14/2024
3.0.565 130 11/14/2024
3.0.564 129 11/14/2024
3.0.563 129 11/14/2024
2.1.562 8,606 11/13/2024
2.1.561 1,426 11/13/2024
2.1.560 3,082 11/13/2024
2.1.559 141 11/13/2024
2.1.558 1,352 11/12/2024
2.1.557 416 11/12/2024
2.1.556 8,272 11/9/2024
2.1.555 386 11/9/2024
2.1.554 134 11/9/2024
2.1.553 1,757 11/9/2024
2.1.552 126 11/9/2024
2.1.551 988 11/8/2024
2.1.550 130 11/8/2024
2.1.549 134 11/8/2024
2.1.548 132 11/8/2024
2.1.547 447 11/8/2024
2.1.546 1,917 11/8/2024
2.1.545 124 11/8/2024
2.1.544 5,492 11/8/2024
2.1.543 119 11/8/2024
2.1.542 11,690 11/1/2024
2.1.541 487 11/1/2024
2.1.540 6,802 10/29/2024
2.1.539 767 10/29/2024
2.1.538 2,852 10/29/2024
2.1.537 649 10/29/2024
2.1.536 5,581 10/28/2024
2.1.535 1,873 10/28/2024
2.1.534 4,031 10/26/2024
2.1.533 721 10/26/2024
2.1.532 9,367 10/22/2024
2.1.531 276 10/22/2024
2.1.530 571 10/22/2024
2.1.529 904 10/22/2024
2.1.528 125 10/22/2024
2.1.527 517 10/22/2024
2.1.526 6,526 10/18/2024
2.1.525 1,107 10/17/2024
2.1.524 4,172 10/15/2024
2.1.523 1,618 10/15/2024
2.1.522 122 10/14/2024
2.1.521 5,159 10/12/2024
2.1.520 672 10/11/2024
2.1.519 121 10/11/2024
2.1.518 498 10/11/2024
2.1.517 2,964 10/11/2024
2.1.516 6,487 10/9/2024
2.1.515 402 10/9/2024
2.1.514 117 10/9/2024
2.1.513 1,998 10/8/2024
2.1.512 170 10/8/2024
2.1.511 2,247 10/8/2024
2.1.510 164 10/8/2024
2.1.509 117 10/8/2024
2.1.508 3,963 10/8/2024
2.1.507 6,254 10/3/2024
2.1.506 127 10/3/2024
2.1.505 1,124 10/3/2024
2.1.504 1,951 10/3/2024
2.1.503 1,443 10/3/2024
2.1.502 5,753 10/2/2024
2.1.501 124 10/2/2024
2.1.500 1,838 10/2/2024
2.1.499 1,030 10/2/2024
2.1.498 4,202 10/1/2024
2.1.497 726 10/1/2024
2.1.496 138 10/1/2024
2.1.495 2,648 10/1/2024
2.1.494 129 10/1/2024
2.1.493 169 10/1/2024
2.1.492 5,469 9/29/2024
2.1.491 1,405 9/29/2024
2.1.490 127 9/29/2024
2.1.489 1,246 9/29/2024
2.1.488 135 9/29/2024
2.1.487 2,536 9/29/2024
2.1.486 5,256 9/27/2024
2.1.485 795 9/27/2024
2.1.484 3,152 9/27/2024
2.1.483 140 9/27/2024
2.1.482 472 9/27/2024
2.1.481 2,177 9/27/2024
2.1.480 3,189 9/26/2024
2.1.479 3,499 9/26/2024
2.1.478 2,374 9/26/2024
2.1.477 2,187 9/26/2024
2.1.476 3,839 9/26/2024
2.1.475 126 9/26/2024
2.1.474 5,634 9/23/2024
2.1.473 1,319 9/23/2024
2.1.472 980 9/23/2024
2.1.471 1,171 9/23/2024
2.1.470 135 9/23/2024
2.1.469 1,568 9/23/2024
2.1.468 117 9/23/2024
2.1.467 4,690 9/23/2024
2.1.466 131 9/23/2024
2.1.465 746 9/23/2024
2.1.464 146 9/23/2024
2.1.463 118 9/23/2024
2.1.462 904 9/23/2024
2.1.461 9,387 9/18/2024
2.1.460 273 9/17/2024
2.1.459 1,232 9/17/2024
2.1.458 1,734 9/17/2024
2.1.457 135 9/17/2024
2.1.456 1,830 9/17/2024
2.1.455 492 9/17/2024
2.1.454 3,307 9/17/2024
2.1.453 582 9/17/2024
2.1.452 220 9/17/2024
2.1.451 2,679 9/17/2024
2.1.450 7,473 9/16/2024
2.1.449 738 9/16/2024
2.1.448 5,080 9/12/2024
2.1.447 2,940 9/12/2024
2.1.446 1,344 9/11/2024
2.1.445 1,557 9/11/2024
2.1.443 3,742 9/11/2024
2.1.442 1,023 9/11/2024
2.1.441 985 9/11/2024
2.1.440 2,336 9/11/2024
2.1.439 8,108 9/10/2024
2.1.438 151 9/10/2024
2.1.437 1,174 9/10/2024
2.1.436 145 9/10/2024
2.1.434 2,946 9/10/2024
2.1.433 626 9/9/2024
2.1.432 2,029 9/9/2024
2.1.430 1,573 9/9/2024
2.1.428 161 9/9/2024
2.1.427 492 9/9/2024
2.1.426 13,277 9/7/2024
2.1.425 165 9/7/2024
2.1.424 5,036 9/6/2024
2.1.423 394 9/6/2024
2.1.422 2,235 9/6/2024
2.1.421 147 9/5/2024
2.1.420 155 9/5/2024
2.1.419 2,414 9/5/2024
2.1.418 1,178 9/5/2024
2.1.417 149 9/5/2024
2.1.416 1,171 9/5/2024
2.1.415 463 9/5/2024
2.1.414 145 9/5/2024
2.1.413 5,072 9/5/2024
2.1.412 223 9/5/2024
2.1.411 153 9/5/2024
2.1.410 2,292 9/4/2024
2.1.409 8,039 9/3/2024
2.1.408 134 9/3/2024
2.1.407 134 9/3/2024
2.1.406 4,040 9/3/2024
2.1.405 174 9/3/2024
2.1.404 2,514 9/3/2024
2.1.403 5,317 8/29/2024
2.1.402 2,578 8/29/2024
2.1.401 2,906 8/26/2024
2.1.400 132 8/26/2024
2.1.399 4,966 8/21/2024
2.1.398 636 8/21/2024
2.1.397 167 8/21/2024
2.1.396 2,576 8/21/2024
2.1.395 174 8/20/2024
2.1.394 170 8/20/2024
2.1.393 507 8/20/2024
2.1.392 2,987 8/20/2024
2.1.391 447 8/20/2024
2.1.390 144 8/20/2024
2.1.389 2,675 8/20/2024
2.1.388 149 8/20/2024
2.1.387 1,233 8/20/2024
2.1.386 2,918 8/19/2024
2.1.385 4,804 8/15/2024
2.1.384 2,143 8/15/2024
2.1.383 4,836 8/14/2024
2.1.382 175 8/13/2024
2.1.381 5,720 8/7/2024
2.1.380 303 8/6/2024
2.1.379 2,717 8/6/2024
2.1.378 4,949 8/1/2024
2.1.377 360 8/1/2024
2.1.376 122 8/1/2024
2.1.374 1,166 8/1/2024
2.1.373 5,827 7/25/2024
2.1.372 118 7/25/2024
2.1.371 753 7/25/2024
2.1.370 333 7/25/2024
2.1.369 385 7/25/2024
2.1.368 204 7/25/2024
2.1.367 410 7/24/2024
2.1.366 179 7/24/2024
2.1.365 228 7/24/2024
2.1.364 339 7/24/2024
2.1.363 8,612 7/20/2024
2.1.362 1,481 7/20/2024
2.1.361 5,041 7/14/2024
2.1.360 1,576 7/14/2024
2.1.359 128 7/14/2024
2.1.358 1,521 7/14/2024
2.1.357 4,346 7/10/2024
2.1.355 819 7/10/2024
2.1.354 1,211 7/10/2024
2.1.353 144 7/10/2024
2.1.352 1,924 7/10/2024
2.1.351 153 7/10/2024
2.1.350 130 7/10/2024
2.1.349 197 7/10/2024
2.1.348 137 7/10/2024
2.1.347 2,073 7/10/2024
2.1.346 152 7/10/2024
2.1.345 833 7/10/2024
2.1.344 133 7/10/2024
2.1.343 238 7/9/2024
2.1.342 119 7/9/2024
2.1.339 2,000 7/9/2024
2.1.338 507 7/9/2024
2.1.337 4,040 7/9/2024
2.1.336 1,087 7/9/2024
2.1.335 145 7/9/2024
2.1.334 2,603 7/9/2024
2.1.333 134 7/9/2024
2.1.332 9,658 7/9/2024
2.1.331 136 7/9/2024
2.1.330 2,528 7/9/2024
2.1.329 124 7/9/2024
2.1.328 1,090 7/9/2024
2.1.327 730 7/8/2024
2.1.326 988 7/8/2024
2.1.325 147 7/8/2024
2.1.324 149 7/8/2024
2.1.323 4,876 7/8/2024
2.1.322 1,649 7/8/2024
2.1.321 145 7/8/2024
2.1.320 2,303 7/7/2024
2.1.319 149 7/7/2024
2.1.318 163 7/7/2024
2.1.317 146 7/7/2024
2.1.316 1,173 7/7/2024
2.1.315 2,193 7/7/2024
2.1.314 1,889 7/7/2024
2.1.313 245 7/7/2024
2.1.312 3,417 7/5/2024
2.1.311 3,898 7/3/2024
2.1.310 3,059 7/3/2024
2.1.309 415 7/3/2024
2.1.308 3,925 7/2/2024
2.1.307 1,881 6/30/2024
2.1.306 2,266 6/28/2024
2.1.305 5,412 6/22/2024
2.1.304 4,886 6/15/2024
2.1.303 4,111 6/14/2024
2.1.302 5,892 6/1/2024
2.1.301 1,616 6/1/2024
2.1.300 607 6/1/2024
2.1.299 5,833 5/31/2024
2.1.298 3,718 5/29/2024
2.1.297 3,045 5/28/2024
2.1.296 2,481 5/27/2024
2.1.295 4,842 5/26/2024
2.1.294 2,038 5/26/2024
2.1.293 503 5/26/2024
2.1.292 2,517 5/25/2024
2.1.291 1,402 5/25/2024
2.1.290 158 5/25/2024
2.1.289 154 5/25/2024
2.1.288 714 5/25/2024
2.1.287 149 5/25/2024
2.1.286 432 5/25/2024
2.1.285 155 5/25/2024
2.1.284 145 5/25/2024
2.1.283 7,428 5/23/2024
2.1.282 548 5/23/2024
2.1.281 300 5/22/2024
2.1.280 3,652 5/22/2024
2.1.279 145 5/22/2024
2.1.278 159 5/22/2024
2.1.277 155 5/22/2024
2.1.276 2,142 5/22/2024
2.1.275 3,435 5/18/2024
2.1.274 1,909 5/18/2024
2.1.273 1,827 5/17/2024
2.1.272 139 5/17/2024
2.1.271 2,732 5/16/2024
2.1.270 460 5/15/2024
2.1.269 2,757 5/15/2024
2.1.268 4,458 5/12/2024
2.1.267 2,760 5/3/2024
2.1.266 1,161 4/30/2024
2.1.265 1,783 4/29/2024
2.1.264 1,937 4/29/2024
2.1.263 2,668 4/28/2024
2.1.262 1,503 4/28/2024
2.1.261 1,119 4/28/2024
2.1.260 1,763 4/28/2024
2.1.259 931 4/28/2024
2.1.258 139 4/28/2024
2.1.257 4,161 4/27/2024
2.1.256 156 4/27/2024
2.1.255 4,386 4/19/2024
2.1.254 4,092 4/18/2024
2.1.253 3,446 4/12/2024
2.1.252 1,169 4/12/2024
2.1.251 748 4/12/2024
2.1.250 885 4/12/2024
2.1.249 234 4/12/2024
2.1.248 132 4/12/2024
2.1.247 1,008 4/12/2024
2.1.246 331 4/12/2024
2.1.245 1,670 4/11/2024
2.1.244 3,744 4/10/2024
2.1.243 1,165 4/9/2024
2.1.242 3,180 4/2/2024
2.1.241 929 4/1/2024
2.1.240 2,104 3/29/2024
2.1.239 1,860 3/25/2024
2.1.238 320 3/25/2024
2.1.237 3,328 3/20/2024
2.1.236 2,156 3/19/2024
2.1.235 542 3/19/2024
2.1.234 2,362 3/18/2024
2.1.233 1,423 3/18/2024
2.1.232 1,399 3/15/2024
2.1.231 2,364 3/13/2024
2.1.230 1,123 3/13/2024
2.1.229 682 3/13/2024
2.1.228 788 3/13/2024
2.1.227 163 3/13/2024
2.1.226 558 3/13/2024
2.1.225 164 3/13/2024
2.1.224 168 3/13/2024
2.1.223 1,677 3/12/2024
2.1.222 2,846 3/11/2024
2.1.221 2,495 3/11/2024
2.1.220 1,649 3/10/2024
2.1.219 1,906 3/8/2024
2.1.218 1,082 3/8/2024
2.1.217 1,580 3/8/2024
2.1.216 2,095 3/6/2024
2.1.215 2,017 3/4/2024
2.1.214 1,429 3/4/2024
2.1.213 2,574 3/2/2024
2.1.212 1,237 3/2/2024
2.1.211 433 3/2/2024
2.1.210 373 3/2/2024
2.1.209 499 3/2/2024
2.1.208 3,444 2/29/2024
2.1.207 660 2/29/2024
2.1.206 364 2/29/2024
2.1.205 3,332 2/26/2024
2.1.204 1,504 2/25/2024
2.1.203 2,614 2/23/2024
2.1.202 1,915 2/22/2024
2.1.201 981 2/22/2024
2.1.200 458 2/21/2024
2.1.199 1,206 2/21/2024
2.1.198 325 2/21/2024
2.1.197 787 2/21/2024
2.1.196 152 2/21/2024
2.1.195 1,269 2/21/2024
2.1.194 435 2/21/2024
2.1.193 161 2/21/2024
2.1.192 165 2/21/2024
2.1.191 614 2/21/2024
2.1.190 142 2/21/2024
2.1.189 2,655 2/20/2024
2.1.188 739 2/20/2024
2.1.187 666 2/20/2024
2.1.186 785 2/20/2024
2.1.185 2,135 2/19/2024
2.1.184 1,896 2/17/2024
2.1.183 921 2/16/2024
2.1.182 881 2/16/2024
2.1.181 1,371 2/16/2024
2.1.180 153 2/16/2024
2.1.179 661 2/16/2024
2.1.178 162 2/16/2024
2.1.177 155 2/16/2024
2.1.176 577 2/16/2024
2.1.175 142 2/16/2024
2.1.174 3,312 2/13/2024
2.1.173 1,396 2/13/2024
2.1.172 1,111 2/13/2024
2.1.171 477 2/13/2024
2.1.170 645 2/13/2024
2.1.169 1,956 2/12/2024
2.1.168 533 2/11/2024
2.1.167 1,549 2/11/2024
2.1.166 882 2/11/2024
2.1.165 2,817 2/10/2024
2.1.164 563 2/9/2024
2.1.163 162 2/9/2024
2.1.162 1,582 2/9/2024
2.1.161 1,688 2/9/2024
2.1.160 418 2/8/2024
2.1.159 1,248 2/8/2024
2.1.158 882 2/8/2024
2.1.157 1,492 2/8/2024
2.1.156 147 2/8/2024
2.1.155 1,889 2/7/2024
2.1.154 458 2/7/2024
2.1.153 626 2/7/2024
2.1.152 1,286 2/7/2024
2.1.151 399 2/6/2024
2.1.150 157 2/6/2024
2.1.149 151 2/6/2024
2.1.148 2,787 2/5/2024
2.1.147 1,549 2/4/2024
2.1.146 2,106 2/2/2024
2.1.145 1,930 1/31/2024
2.1.144 2,164 1/29/2024
2.1.143 1,388 1/29/2024
2.1.142 367 1/29/2024
2.1.141 1,510 1/28/2024
2.1.140 492 1/28/2024
2.1.139 331 1/28/2024
2.1.138 574 1/28/2024
2.1.137 1,946 1/28/2024
2.1.136 951 1/28/2024
2.1.135 314 1/27/2024
2.1.134 947 1/27/2024
2.1.133 1,183 1/27/2024
2.1.132 1,202 1/27/2024
2.1.131 173 1/27/2024
2.1.130 723 1/27/2024
2.1.129 1,082 1/26/2024
2.1.128 248 1/26/2024
2.1.127 895 1/26/2024
2.1.126 1,146 1/26/2024
2.1.125 1,654 1/26/2024
2.1.124 902 1/25/2024
2.1.123 1,133 1/25/2024
2.1.122 478 1/25/2024
2.1.121 942 1/25/2024
2.1.120 543 1/25/2024
2.1.119 2,599 1/19/2024
2.1.118 2,233 1/15/2024
2.1.117 524 1/15/2024
2.1.116 1,260 1/15/2024
2.1.115 151 1/15/2024
2.1.114 590 1/15/2024
2.1.113 1,390 1/15/2024
2.1.112 2,565 1/14/2024
2.1.111 1,637 1/13/2024
2.1.110 1,862 1/12/2024
2.1.109 2,062 1/11/2024
2.1.108 2,667 1/7/2024
2.1.107 2,110 1/5/2024
2.1.106 516 1/5/2024
2.1.105 165 1/5/2024
2.1.104 165 1/5/2024
2.1.103 1,511 1/5/2024
2.1.102 165 1/5/2024
2.1.101 2,808 1/1/2024
2.1.100 2,242 12/28/2023
2.1.99 762 12/28/2023
2.1.98 525 12/28/2023
2.1.97 158 12/28/2023
2.1.96 157 12/28/2023
2.1.95 734 12/27/2023
2.1.94 169 12/27/2023
2.1.93 500 12/27/2023
2.1.92 165 12/27/2023
2.1.91 169 12/27/2023
2.1.90 2,246 12/25/2023
2.1.89 376 12/25/2023
2.1.88 805 12/25/2023
2.1.87 172 12/25/2023
2.1.86 686 12/25/2023
2.1.85 162 12/25/2023
2.1.84 600 12/25/2023
2.1.83 162 12/25/2023
2.1.82 1,688 12/24/2023
2.1.81 1,105 12/23/2023
2.1.80 897 12/23/2023
2.1.79 333 12/23/2023
2.1.78 586 12/23/2023
2.1.77 161 12/23/2023
2.1.76 146 12/23/2023
2.1.75 1,111 12/23/2023
2.1.74 149 12/23/2023
2.1.73 1,434 12/19/2023
2.1.72 241 12/19/2023
2.1.71 3,116 12/11/2023
2.1.70 748 12/10/2023
2.1.69 148 12/10/2023
2.1.68 518 12/10/2023
2.1.67 1,443 12/10/2023
2.1.66 403 12/9/2023
2.1.65 398 12/9/2023
2.1.64 315 12/9/2023
2.1.63 170 12/9/2023
2.1.62 292 12/9/2023
2.1.61 227 12/9/2023
2.1.60 154 12/9/2023
2.1.59 1,092 12/9/2023
2.1.58 159 12/9/2023
2.1.57 1,551 12/6/2023
2.1.56 422 12/6/2023
2.1.55 263 12/6/2023
2.1.54 292 12/6/2023
2.1.53 946 12/5/2023
2.1.52 396 12/5/2023
2.1.51 356 12/5/2023
2.1.50 394 12/5/2023
2.1.49 142 12/5/2023
2.1.48 358 12/5/2023
2.1.47 291 12/5/2023
2.1.46 145 12/4/2023
2.1.45 151 12/4/2023
2.1.44 354 12/4/2023
2.1.43 163 12/4/2023
2.1.42 1,035 12/4/2023
2.1.41 125 12/4/2023
2.1.40 1,184 11/27/2023
2.1.39 543 11/26/2023
2.1.38 244 11/26/2023
2.1.37 647 11/23/2023
2.1.36 706 11/23/2023
2.1.35 662 11/23/2023
2.1.34 150 11/23/2023
2.1.33 424 11/23/2023
2.1.32 154 11/23/2023
2.1.31 1,096 11/20/2023
2.1.30 1,078 11/20/2023
2.1.29 824 11/19/2023
2.1.28 280 11/19/2023
2.1.27 471 11/19/2023
2.1.26 520 11/19/2023
2.1.25 520 11/19/2023
2.1.24 139 11/19/2023
2.1.23 232 11/18/2023
2.1.22 1,002 11/18/2023
2.1.21 392 11/18/2023
2.1.20 551 11/18/2023
2.1.19 153 11/18/2023
2.1.18 322 11/18/2023
2.1.17 146 11/18/2023
2.1.16 625 11/17/2023
2.1.15 540 11/17/2023
2.1.14 146 11/17/2023
2.1.13 440 11/17/2023
2.1.12 321 11/17/2023
2.1.11 510 11/17/2023
2.1.10 145 11/17/2023
2.1.9 526 11/17/2023
2.1.8 153 11/17/2023
2.1.7 168 11/17/2023
2.1.6 357 11/17/2023
2.1.5 397 11/16/2023
2.0.101 2,092 11/15/2023
2.0.100 141 11/15/2023
2.0.99 152 11/15/2023
2.0.4 145 11/16/2023
2.0.3 154 11/16/2023
2.0.2 151 11/16/2023
2.0.1 145 11/16/2023
1.0.98 631 11/14/2023
1.0.97 764 11/13/2023
1.0.96 136 11/13/2023
1.0.95 589 11/10/2023
1.0.94 141 11/10/2023
1.0.93 958 11/9/2023
1.0.92 145 11/9/2023
1.0.91 1,057 11/7/2023
1.0.90 140 11/7/2023
1.0.89 523 11/6/2023
1.0.88 155 11/6/2023
1.0.87 616 11/3/2023
1.0.86 161 11/3/2023
1.0.85 905 11/2/2023
1.0.84 141 11/2/2023
1.0.83 621 11/1/2023
1.0.82 1,487 10/26/2023
1.0.81 1,326 10/19/2023
1.0.80 169 10/19/2023
1.0.79 810 10/18/2023
1.0.78 185 10/18/2023
1.0.77 757 10/17/2023
1.0.76 171 10/17/2023
1.0.75 685 10/16/2023
1.0.74 176 10/16/2023
1.0.73 722 10/13/2023
1.0.72 361 10/12/2023
1.0.71 1,765 9/20/2023
1.0.70 706 9/19/2023
1.0.69 703 9/18/2023
1.0.68 168 9/18/2023
1.0.67 915 9/14/2023
1.0.66 1,528 8/31/2023
1.0.65 177 8/31/2023
1.0.64 840 8/30/2023
1.0.63 189 8/30/2023
1.0.62 205 8/30/2023
1.0.61 873 8/28/2023
1.0.60 724 8/25/2023
1.0.59 178 8/25/2023
1.0.58 528 8/24/2023
1.0.57 1,488 8/21/2023
1.0.56 858 8/18/2023
1.0.55 778 8/17/2023
1.0.54 188 8/17/2023
1.0.53 1,927 8/10/2023
1.0.52 597 8/9/2023
1.0.51 708 8/8/2023
1.0.50 691 8/7/2023
1.0.49 212 8/7/2023
1.0.48 2,507 7/13/2023
1.0.47 925 7/11/2023
1.0.46 756 7/10/2023
1.0.45 727 7/7/2023
1.0.44 209 7/7/2023
1.0.43 2,144 6/30/2023
1.0.42 1,101 6/29/2023
1.0.41 632 6/28/2023
1.0.40 1,580 6/26/2023
1.0.39 828 6/23/2023
1.0.38 1,121 6/21/2023
1.0.37 1,488 6/15/2023
1.0.36 519 6/14/2023
1.0.35 1,840 6/9/2023
1.0.34 866 6/8/2023
1.0.33 1,659 6/7/2023
1.0.32 209 6/7/2023
1.0.31 1,257 6/6/2023
1.0.30 1,215 6/5/2023
1.0.29 1,405 6/2/2023
1.0.28 195 6/2/2023
1.0.27 1,285 6/1/2023
1.0.26 639 5/31/2023
1.0.25 524 5/31/2023
1.0.24 208 5/31/2023
1.0.23 1,505 5/30/2023
1.0.22 1,567 5/26/2023
1.0.21 728 5/25/2023
1.0.20 190 5/25/2023
1.0.19 874 5/24/2023
1.0.18 201 5/24/2023
1.0.17 494 5/23/2023
1.0.13 1,507 5/22/2023
1.0.12 1,231 5/18/2023
1.0.11 636 5/17/2023
1.0.10 1,592 5/1/2023
1.0.9 1,064 4/25/2023
1.0.8 525 4/24/2023
1.0.7 1,042 4/21/2023
1.0.6 1,996 4/13/2023
1.0.5 641 4/12/2023
1.0.4 1,063 4/8/2023
1.0.3 234 4/8/2023
1.0.2 637 4/8/2023
1.0.1 238 4/8/2023