Soenneker.Utils.SingletonDictionary 3.0.1107

Prefix Reserved
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.1107
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1107
                    
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.1107" />
                    
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.1107" />
                    
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.1107
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1107"
                    
#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.1107
                    
#: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.1107
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1107
                    
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.1107 11,642 9/9/2025
3.0.1106 14,674 9/3/2025
3.0.1105 252 9/3/2025
3.0.1104 1,412 9/3/2025
3.0.1103 19,963 8/14/2025
3.0.1102 4,694 8/11/2025
3.0.1101 1,893 8/11/2025
3.0.1100 499 8/11/2025
3.0.1099 126 8/11/2025
3.0.1098 14,478 8/6/2025
3.0.1097 3,328 8/5/2025
3.0.1096 18,302 7/9/2025
3.0.1095 23,329 6/28/2025
3.0.1094 1,253 6/28/2025
3.0.1093 1,800 6/27/2025
3.0.1092 2,281 6/27/2025
3.0.1091 24,625 6/10/2025
3.0.1090 17,334 5/27/2025
3.0.1089 902 5/27/2025
3.0.1088 972 5/27/2025
3.0.1087 2,300 5/27/2025
3.0.1086 13,973 5/23/2025
3.0.1085 1,270 5/23/2025
3.0.1084 1,223 5/23/2025
3.0.1083 1,248 5/23/2025
3.0.1082 268 5/22/2025
3.0.1081 9,640 5/18/2025
3.0.1079 1,435 5/18/2025
3.0.1078 1,390 5/18/2025
3.0.1077 4,179 5/14/2025
3.0.1076 9,359 5/8/2025
3.0.1075 302 5/8/2025
3.0.1074 611 5/8/2025
3.0.1073 1,103 5/7/2025
3.0.1072 12,991 5/5/2025
3.0.1071 876 5/5/2025
3.0.1070 1,564 5/5/2025
3.0.1069 734 5/5/2025
3.0.1068 249 5/5/2025
3.0.1067 171 5/5/2025
3.0.1066 18,206 4/9/2025
3.0.1065 293 4/9/2025
3.0.1064 1,081 4/8/2025
3.0.1063 2,216 4/8/2025
3.0.1062 3,026 4/8/2025
3.0.1061 216 4/8/2025
3.0.1060 196 4/8/2025
3.0.1059 214 4/8/2025
3.0.1058 186 4/8/2025
3.0.1057 888 4/8/2025
3.0.1056 309 4/8/2025
3.0.1055 6,421 4/8/2025
3.0.1054 676 4/8/2025
3.0.1053 3,311 4/7/2025
3.0.1052 729 4/7/2025
3.0.1051 194 4/7/2025
3.0.1050 618 4/7/2025
3.0.1049 199 4/7/2025
3.0.1048 6,799 4/7/2025
3.0.1047 197 4/7/2025
3.0.1046 9,364 4/7/2025
3.0.1045 189 4/7/2025
3.0.1044 1,400 4/7/2025
3.0.1043 190 4/7/2025
3.0.1042 1,649 4/7/2025
3.0.1041 965 4/6/2025
3.0.1040 319 4/6/2025
3.0.1039 193 4/6/2025
3.0.1038 1,093 4/6/2025
3.0.1037 191 4/6/2025
3.0.1036 427 4/6/2025
3.0.1035 1,212 4/6/2025
3.0.1034 168 4/6/2025
3.0.1033 2,076 4/6/2025
3.0.1032 137 4/6/2025
3.0.1031 172 4/6/2025
3.0.1030 140 4/6/2025
3.0.1029 1,633 4/5/2025
3.0.1028 196 4/5/2025
3.0.1027 1,178 4/5/2025
3.0.1026 1,237 4/5/2025
3.0.1025 1,081 4/5/2025
3.0.1024 658 4/5/2025
3.0.1023 570 4/5/2025
3.0.1022 136 4/5/2025
3.0.1021 1,301 4/4/2025
3.0.1020 6,978 4/4/2025
3.0.1019 23,355 4/4/2025
3.0.1018 6,671 4/1/2025
3.0.1017 2,641 4/1/2025
3.0.1016 191 4/1/2025
3.0.1015 5,433 4/1/2025
3.0.1014 2,363 3/31/2025
3.0.1013 389 3/31/2025
3.0.1012 3,915 3/31/2025
3.0.1011 6,744 3/29/2025
3.0.1010 1,082 3/29/2025
3.0.1009 1,424 3/29/2025
3.0.1008 126 3/29/2025
3.0.1007 4,331 3/27/2025
3.0.1006 3,852 3/25/2025
3.0.1005 616 3/25/2025
3.0.1004 3,112 3/25/2025
3.0.1003 6,093 3/21/2025
3.0.1002 2,570 3/21/2025
3.0.1001 7,308 3/18/2025
3.0.1000 3,398 3/18/2025
3.0.999 6,343 3/15/2025
3.0.998 1,804 3/15/2025
3.0.997 102 3/15/2025
3.0.996 6,070 3/12/2025
3.0.995 2,167 3/12/2025
3.0.994 194 3/12/2025
3.0.993 417 3/12/2025
3.0.992 180 3/12/2025
3.0.991 2,711 3/11/2025
3.0.990 191 3/11/2025
3.0.989 1,290 3/11/2025
3.0.988 192 3/11/2025
3.0.987 2,576 3/11/2025
3.0.986 196 3/11/2025
3.0.985 2,662 3/11/2025
3.0.984 179 3/11/2025
3.0.983 1,636 3/11/2025
3.0.982 181 3/11/2025
3.0.981 8,868 3/7/2025
3.0.980 2,605 3/7/2025
3.0.979 6,165 3/2/2025
3.0.978 1,049 3/2/2025
3.0.977 665 3/2/2025
3.0.976 126 3/2/2025
3.0.975 4,333 3/2/2025
3.0.974 129 3/2/2025
3.0.973 3,186 3/1/2025
3.0.972 114 3/1/2025
3.0.971 4,279 3/1/2025
3.0.970 140 3/1/2025
3.0.969 114 3/1/2025
3.0.968 422 3/1/2025
3.0.967 120 3/1/2025
3.0.966 5,806 3/1/2025
3.0.965 4,776 2/26/2025
3.0.964 836 2/26/2025
3.0.963 2,327 2/25/2025
3.0.962 126 2/25/2025
3.0.961 862 2/25/2025
3.0.960 110 2/25/2025
3.0.959 149 2/25/2025
3.0.958 1,837 2/25/2025
3.0.957 4,837 2/24/2025
3.0.956 4,481 2/23/2025
3.0.955 1,097 2/22/2025
3.0.954 116 2/22/2025
3.0.953 7,555 2/22/2025
3.0.952 2,209 2/22/2025
3.0.951 1,064 2/22/2025
3.0.950 785 2/22/2025
3.0.949 155 2/22/2025
3.0.948 128 2/22/2025
3.0.947 129 2/22/2025
3.0.946 4,635 2/21/2025
3.0.945 124 2/21/2025
3.0.944 5,499 2/21/2025
3.0.943 4,553 2/19/2025
3.0.942 1,629 2/19/2025
3.0.941 736 2/19/2025
3.0.940 129 2/19/2025
3.0.939 414 2/18/2025
3.0.938 130 2/18/2025
3.0.937 5,455 2/18/2025
3.0.936 122 2/18/2025
3.0.935 2,815 2/18/2025
3.0.934 6,801 2/16/2025
3.0.933 1,542 2/14/2025
3.0.932 821 2/14/2025
3.0.931 727 2/13/2025
3.0.930 2,390 2/13/2025
3.0.929 300 2/13/2025
3.0.928 3,693 2/13/2025
3.0.927 3,891 2/12/2025
3.0.926 1,466 2/12/2025
3.0.925 161 2/12/2025
3.0.924 131 2/12/2025
3.0.923 2,012 2/12/2025
3.0.922 368 2/12/2025
3.0.921 146 2/12/2025
3.0.920 198 2/12/2025
3.0.919 206 2/12/2025
3.0.918 129 2/12/2025
3.0.917 181 2/11/2025
3.0.916 3,394 2/11/2025
3.0.915 3,684 2/11/2025
3.0.914 2,204 2/11/2025
3.0.913 140 2/11/2025
3.0.912 412 2/11/2025
3.0.911 1,741 2/10/2025
3.0.910 145 2/10/2025
3.0.909 799 2/10/2025
3.0.908 144 2/10/2025
3.0.907 6,328 2/10/2025
3.0.906 138 2/10/2025
3.0.905 1,178 2/9/2025
3.0.904 5,609 2/9/2025
3.0.903 133 2/9/2025
3.0.902 7,118 2/8/2025
3.0.901 138 2/8/2025
3.0.900 1,700 2/7/2025
3.0.899 129 2/7/2025
3.0.898 1,595 2/7/2025
3.0.897 130 2/7/2025
3.0.896 661 2/7/2025
3.0.895 441 2/7/2025
3.0.894 141 2/7/2025
3.0.893 353 2/7/2025
3.0.892 127 2/7/2025
3.0.891 1,050 2/7/2025
3.0.890 123 2/7/2025
3.0.889 136 2/7/2025
3.0.888 10,583 2/7/2025
3.0.887 6,179 2/5/2025
3.0.886 617 2/5/2025
3.0.885 899 2/5/2025
3.0.884 299 2/5/2025
3.0.883 995 2/5/2025
3.0.882 671 2/5/2025
3.0.881 2,928 2/5/2025
3.0.880 122 2/5/2025
3.0.879 10,754 1/28/2025
3.0.878 656 1/28/2025
3.0.877 1,749 1/28/2025
3.0.876 238 1/28/2025
3.0.875 3,665 1/28/2025
3.0.874 637 1/27/2025
3.0.873 103 1/27/2025
3.0.872 201 1/27/2025
3.0.871 279 1/27/2025
3.0.870 116 1/27/2025
3.0.869 4,718 1/27/2025
3.0.868 4,386 1/26/2025
3.0.867 947 1/26/2025
3.0.866 195 1/26/2025
3.0.865 1,025 1/26/2025
3.0.864 1,330 1/25/2025
3.0.863 120 1/25/2025
3.0.862 5,533 1/25/2025
3.0.861 969 1/25/2025
3.0.860 312 1/25/2025
3.0.859 126 1/25/2025
3.0.858 1,811 1/25/2025
3.0.857 1,272 1/25/2025
3.0.856 6,397 1/24/2025
3.0.855 1,489 1/24/2025
3.0.854 106 1/24/2025
3.0.853 1,937 1/24/2025
3.0.852 338 1/24/2025
3.0.851 227 1/24/2025
3.0.850 3,022 1/24/2025
3.0.849 117 1/24/2025
3.0.848 496 1/23/2025
3.0.847 122 1/23/2025
3.0.846 580 1/23/2025
3.0.845 113 1/23/2025
3.0.844 7,575 1/22/2025
3.0.843 978 1/21/2025
3.0.842 964 1/21/2025
3.0.841 580 1/21/2025
3.0.840 114 1/21/2025
3.0.839 603 1/21/2025
3.0.838 750 1/21/2025
3.0.837 5,231 1/21/2025
3.0.836 548 1/21/2025
3.0.835 1,009 1/21/2025
3.0.834 124 1/21/2025
3.0.833 803 1/21/2025
3.0.832 119 1/21/2025
3.0.831 2,097 1/21/2025
3.0.830 110 1/21/2025
3.0.829 399 1/20/2025
3.0.828 2,702 1/20/2025
3.0.827 253 1/20/2025
3.0.826 1,979 1/20/2025
3.0.825 122 1/20/2025
3.0.824 1,062 1/20/2025
3.0.823 128 1/20/2025
3.0.822 133 1/20/2025
3.0.821 124 1/20/2025
3.0.820 369 1/20/2025
3.0.819 126 1/20/2025
3.0.818 121 1/20/2025
3.0.817 5,408 1/19/2025
3.0.816 125 1/19/2025
3.0.815 5,002 1/19/2025
3.0.814 1,564 1/19/2025
3.0.813 139 1/19/2025
3.0.812 385 1/19/2025
3.0.811 117 1/19/2025
3.0.810 1,825 1/19/2025
3.0.809 115 1/19/2025
3.0.808 3,114 1/18/2025
3.0.807 123 1/18/2025
3.0.806 6,900 1/17/2025
3.0.805 129 1/17/2025
3.0.804 599 1/17/2025
3.0.803 923 1/17/2025
3.0.802 4,011 1/16/2025
3.0.801 1,409 1/16/2025
3.0.800 2,017 1/16/2025
3.0.799 543 1/16/2025
3.0.798 1,179 1/16/2025
3.0.797 1,002 1/16/2025
3.0.796 111 1/16/2025
3.0.795 4,401 1/15/2025
3.0.794 113 1/15/2025
3.0.793 2,716 1/15/2025
3.0.792 114 1/15/2025
3.0.791 160 1/15/2025
3.0.790 3,198 1/15/2025
3.0.789 103 1/15/2025
3.0.788 2,690 1/15/2025
3.0.787 96 1/15/2025
3.0.786 454 1/15/2025
3.0.785 93 1/15/2025
3.0.784 1,560 1/15/2025
3.0.783 93 1/15/2025
3.0.782 237 1/14/2025
3.0.781 103 1/14/2025
3.0.780 107 1/14/2025
3.0.779 2,967 1/14/2025
3.0.778 539 1/14/2025
3.0.777 109 1/14/2025
3.0.776 1,199 1/14/2025
3.0.775 100 1/14/2025
3.0.774 4,984 1/13/2025
3.0.773 1,559 1/13/2025
3.0.772 1,318 1/13/2025
3.0.771 113 1/13/2025
3.0.770 4,859 1/11/2025
3.0.769 1,963 1/11/2025
3.0.768 139 1/11/2025
3.0.767 2,080 1/11/2025
3.0.766 123 1/11/2025
3.0.765 1,684 1/10/2025
3.0.764 1,827 1/10/2025
3.0.763 119 1/10/2025
3.0.762 783 1/10/2025
3.0.761 132 1/10/2025
3.0.760 118 1/10/2025
3.0.759 6,273 1/3/2025
3.0.758 482 1/3/2025
3.0.757 999 1/3/2025
3.0.756 155 1/3/2025
3.0.755 1,440 1/3/2025
3.0.754 129 1/3/2025
3.0.753 1,075 1/3/2025
3.0.752 1,047 1/2/2025
3.0.751 127 1/2/2025
3.0.750 1,719 1/2/2025
3.0.749 131 1/2/2025
3.0.748 2,848 1/2/2025
3.0.747 121 1/2/2025
3.0.746 135 1/2/2025
3.0.745 4,670 1/1/2025
3.0.744 1,021 1/1/2025
3.0.743 295 1/1/2025
3.0.742 145 1/1/2025
3.0.741 1,491 1/1/2025
3.0.740 131 1/1/2025
3.0.739 132 1/1/2025
3.0.738 141 1/1/2025
3.0.737 334 12/31/2024
3.0.736 142 12/31/2024
3.0.735 144 12/31/2024
3.0.734 638 12/31/2024
3.0.733 148 12/31/2024
3.0.732 4,577 12/31/2024
3.0.731 141 12/31/2024
3.0.730 4,381 12/31/2024
3.0.729 115 12/31/2024
3.0.728 2,589 12/31/2024
3.0.727 348 12/31/2024
3.0.726 130 12/31/2024
3.0.725 1,332 12/31/2024
3.0.724 125 12/31/2024
3.0.723 8,883 12/28/2024
3.0.722 1,141 12/28/2024
3.0.721 1,253 12/27/2024
3.0.720 142 12/27/2024
3.0.719 2,706 12/27/2024
3.0.718 4,911 12/24/2024
3.0.717 1,272 12/24/2024
3.0.716 953 12/24/2024
3.0.715 825 12/24/2024
3.0.714 1,392 12/24/2024
3.0.713 121 12/24/2024
3.0.712 2,279 12/24/2024
3.0.711 661 12/24/2024
3.0.710 124 12/24/2024
3.0.709 476 12/24/2024
3.0.708 992 12/24/2024
3.0.707 280 12/24/2024
3.0.706 150 12/24/2024
3.0.705 1,070 12/24/2024
3.0.704 132 12/24/2024
3.0.703 1,813 12/23/2024
3.0.702 2,770 12/23/2024
3.0.701 131 12/23/2024
3.0.700 699 12/23/2024
3.0.699 125 12/23/2024
3.0.698 1,857 12/23/2024
3.0.697 128 12/23/2024
3.0.696 1,470 12/23/2024
3.0.695 133 12/23/2024
3.0.694 463 12/22/2024
3.0.693 1,414 12/22/2024
3.0.692 4,015 12/22/2024
3.0.691 136 12/22/2024
3.0.690 1,572 12/22/2024
3.0.689 175 12/22/2024
3.0.688 492 12/22/2024
3.0.687 122 12/22/2024
3.0.686 283 12/22/2024
3.0.685 129 12/22/2024
3.0.684 6,788 12/22/2024
3.0.683 121 12/22/2024
3.0.682 1,087 12/21/2024
3.0.681 292 12/21/2024
3.0.680 124 12/21/2024
3.0.679 514 12/21/2024
3.0.678 800 12/21/2024
3.0.677 122 12/21/2024
3.0.676 3,806 12/21/2024
3.0.675 416 12/21/2024
3.0.674 125 12/21/2024
3.0.673 2,557 12/21/2024
3.0.672 694 12/21/2024
3.0.671 133 12/21/2024
3.0.670 1,599 12/20/2024
3.0.669 137 12/20/2024
3.0.668 132 12/20/2024
3.0.667 3,710 12/20/2024
3.0.666 1,152 12/20/2024
3.0.665 243 12/20/2024
3.0.664 3,474 12/19/2024
3.0.663 439 12/19/2024
3.0.662 2,048 12/18/2024
3.0.661 124 12/18/2024
3.0.660 6,598 12/17/2024
3.0.659 239 12/17/2024
3.0.658 712 12/16/2024
3.0.657 132 12/16/2024
3.0.656 170 12/16/2024
3.0.655 119 12/16/2024
3.0.654 6,506 12/10/2024
3.0.653 1,016 12/10/2024
3.0.652 404 12/9/2024
3.0.651 126 12/9/2024
3.0.650 2,692 12/9/2024
3.0.649 1,391 12/9/2024
3.0.648 125 12/9/2024
3.0.647 3,654 12/9/2024
3.0.646 2,762 12/6/2024
3.0.645 450 12/6/2024
3.0.644 131 12/6/2024
3.0.643 705 12/6/2024
3.0.641 3,901 12/6/2024
3.0.640 2,470 12/6/2024
3.0.639 5,298 12/6/2024
3.0.637 393 12/6/2024
3.0.636 2,551 12/5/2024
3.0.635 3,585 12/5/2024
3.0.634 3,194 12/5/2024
3.0.633 125 12/5/2024
3.0.632 1,768 12/5/2024
3.0.631 1,052 12/5/2024
3.0.630 135 12/5/2024
3.0.629 404 12/5/2024
3.0.628 126 12/5/2024
3.0.627 172 12/5/2024
3.0.626 126 12/5/2024
3.0.625 3,384 12/4/2024
3.0.624 128 12/4/2024
3.0.623 143 12/4/2024
3.0.622 143 12/4/2024
3.0.621 1,737 12/4/2024
3.0.620 325 12/4/2024
3.0.619 428 12/4/2024
3.0.618 3,399 12/3/2024
3.0.617 133 12/3/2024
3.0.616 1,143 12/3/2024
3.0.615 465 12/3/2024
3.0.614 143 12/3/2024
3.0.613 141 12/3/2024
3.0.612 4,056 12/3/2024
3.0.611 126 12/3/2024
3.0.610 3,315 12/3/2024
3.0.609 121 12/3/2024
3.0.608 3,096 12/2/2024
3.0.607 2,683 12/2/2024
3.0.606 1,643 12/2/2024
3.0.605 302 12/2/2024
3.0.604 134 12/2/2024
3.0.603 422 12/2/2024
3.0.602 3,481 12/1/2024
3.0.601 133 12/1/2024
3.0.600 1,916 12/1/2024
3.0.599 226 12/1/2024
3.0.598 3,477 12/1/2024
3.0.597 136 12/1/2024
3.0.596 3,579 11/29/2024
3.0.595 1,067 11/29/2024
3.0.594 6,063 11/21/2024
3.0.593 323 11/21/2024
3.0.592 4,551 11/20/2024
3.0.591 369 11/20/2024
3.0.590 138 11/20/2024
3.0.589 129 11/20/2024
3.0.588 451 11/20/2024
3.0.587 190 11/20/2024
3.0.586 124 11/20/2024
3.0.585 2,055 11/20/2024
3.0.584 2,783 11/19/2024
3.0.583 130 11/19/2024
3.0.582 660 11/19/2024
3.0.581 118 11/19/2024
3.0.580 2,692 11/19/2024
3.0.579 113 11/19/2024
3.0.578 1,337 11/19/2024
3.0.577 136 11/19/2024
3.0.576 8,552 11/14/2024
3.0.575 166 11/14/2024
3.0.574 541 11/14/2024
3.0.573 2,401 11/14/2024
3.0.572 753 11/14/2024
3.0.571 143 11/14/2024
3.0.570 138 11/14/2024
3.0.569 4,185 11/14/2024
3.0.568 134 11/14/2024
3.0.567 136 11/14/2024
3.0.566 3,501 11/14/2024
3.0.565 133 11/14/2024
3.0.564 136 11/14/2024
3.0.563 131 11/14/2024
2.1.562 8,673 11/13/2024
2.1.561 1,452 11/13/2024
2.1.560 3,085 11/13/2024
2.1.559 145 11/13/2024
2.1.558 1,355 11/12/2024
2.1.557 417 11/12/2024
2.1.556 8,278 11/9/2024
2.1.555 391 11/9/2024
2.1.554 140 11/9/2024
2.1.553 1,759 11/9/2024
2.1.552 128 11/9/2024
2.1.551 990 11/8/2024
2.1.550 135 11/8/2024
2.1.549 140 11/8/2024
2.1.548 135 11/8/2024
2.1.547 449 11/8/2024
2.1.546 1,927 11/8/2024
2.1.545 125 11/8/2024
2.1.544 5,494 11/8/2024
2.1.543 119 11/8/2024
2.1.542 11,698 11/1/2024
2.1.541 491 11/1/2024
2.1.540 6,813 10/29/2024
2.1.539 771 10/29/2024
2.1.538 2,857 10/29/2024
2.1.537 655 10/29/2024
2.1.536 5,581 10/28/2024
2.1.535 1,879 10/28/2024
2.1.534 4,037 10/26/2024
2.1.533 724 10/26/2024
2.1.532 9,372 10/22/2024
2.1.531 280 10/22/2024
2.1.530 574 10/22/2024
2.1.529 907 10/22/2024
2.1.528 130 10/22/2024
2.1.527 520 10/22/2024
2.1.526 6,529 10/18/2024
2.1.525 1,111 10/17/2024
2.1.524 4,172 10/15/2024
2.1.523 1,625 10/15/2024
2.1.522 126 10/14/2024
2.1.521 5,170 10/12/2024
2.1.520 675 10/11/2024
2.1.519 125 10/11/2024
2.1.518 500 10/11/2024
2.1.517 2,967 10/11/2024
2.1.516 6,491 10/9/2024
2.1.515 406 10/9/2024
2.1.514 118 10/9/2024
2.1.513 1,999 10/8/2024
2.1.512 175 10/8/2024
2.1.511 2,250 10/8/2024
2.1.510 164 10/8/2024
2.1.509 120 10/8/2024
2.1.508 3,963 10/8/2024
2.1.507 6,260 10/3/2024
2.1.506 132 10/3/2024
2.1.505 1,127 10/3/2024
2.1.504 1,954 10/3/2024
2.1.503 1,450 10/3/2024
2.1.502 5,758 10/2/2024
2.1.501 127 10/2/2024
2.1.500 1,840 10/2/2024
2.1.499 1,032 10/2/2024
2.1.498 4,207 10/1/2024
2.1.497 733 10/1/2024
2.1.496 141 10/1/2024
2.1.495 2,651 10/1/2024
2.1.494 133 10/1/2024
2.1.493 172 10/1/2024
2.1.492 5,484 9/29/2024
2.1.491 1,406 9/29/2024
2.1.490 130 9/29/2024
2.1.489 1,249 9/29/2024
2.1.488 141 9/29/2024
2.1.487 2,543 9/29/2024
2.1.486 5,264 9/27/2024
2.1.485 796 9/27/2024
2.1.484 3,156 9/27/2024
2.1.483 145 9/27/2024
2.1.482 480 9/27/2024
2.1.481 2,177 9/27/2024
2.1.480 3,193 9/26/2024
2.1.479 3,499 9/26/2024
2.1.478 2,375 9/26/2024
2.1.477 2,190 9/26/2024
2.1.476 3,841 9/26/2024
2.1.475 130 9/26/2024
2.1.474 5,641 9/23/2024
2.1.473 1,324 9/23/2024
2.1.472 991 9/23/2024
2.1.471 1,179 9/23/2024
2.1.470 143 9/23/2024
2.1.469 1,572 9/23/2024
2.1.468 117 9/23/2024
2.1.467 4,696 9/23/2024
2.1.466 135 9/23/2024
2.1.465 752 9/23/2024
2.1.464 152 9/23/2024
2.1.463 122 9/23/2024
2.1.462 904 9/23/2024
2.1.461 9,446 9/18/2024
2.1.460 275 9/17/2024
2.1.459 1,239 9/17/2024
2.1.458 1,740 9/17/2024
2.1.457 143 9/17/2024
2.1.456 1,835 9/17/2024
2.1.455 499 9/17/2024
2.1.454 3,316 9/17/2024
2.1.453 585 9/17/2024
2.1.452 226 9/17/2024
2.1.451 2,684 9/17/2024
2.1.450 7,474 9/16/2024
2.1.449 740 9/16/2024
2.1.448 5,123 9/12/2024
2.1.447 2,941 9/12/2024
2.1.446 1,348 9/11/2024
2.1.445 1,560 9/11/2024
2.1.443 3,746 9/11/2024
2.1.442 1,027 9/11/2024
2.1.441 990 9/11/2024
2.1.440 2,346 9/11/2024
2.1.439 8,112 9/10/2024
2.1.438 153 9/10/2024
2.1.437 1,178 9/10/2024
2.1.436 148 9/10/2024
2.1.434 2,952 9/10/2024
2.1.433 633 9/9/2024
2.1.432 2,029 9/9/2024
2.1.430 1,575 9/9/2024
2.1.428 161 9/9/2024
2.1.427 495 9/9/2024
2.1.426 13,283 9/7/2024
2.1.425 171 9/7/2024
2.1.424 5,044 9/6/2024
2.1.423 394 9/6/2024
2.1.422 2,248 9/6/2024
2.1.421 150 9/5/2024
2.1.420 158 9/5/2024
2.1.419 2,420 9/5/2024
2.1.418 1,180 9/5/2024
2.1.417 149 9/5/2024
2.1.416 1,181 9/5/2024
2.1.415 469 9/5/2024
2.1.414 146 9/5/2024
2.1.413 5,081 9/5/2024
2.1.412 224 9/5/2024
2.1.411 156 9/5/2024
2.1.410 2,297 9/4/2024
2.1.409 8,045 9/3/2024
2.1.408 136 9/3/2024
2.1.407 138 9/3/2024
2.1.406 4,044 9/3/2024
2.1.405 174 9/3/2024
2.1.404 2,522 9/3/2024
2.1.403 5,322 8/29/2024
2.1.402 2,585 8/29/2024
2.1.401 2,906 8/26/2024
2.1.400 132 8/26/2024
2.1.399 4,975 8/21/2024
2.1.398 640 8/21/2024
2.1.397 171 8/21/2024
2.1.396 2,580 8/21/2024
2.1.395 177 8/20/2024
2.1.394 173 8/20/2024
2.1.393 514 8/20/2024
2.1.392 2,989 8/20/2024
2.1.391 451 8/20/2024
2.1.390 150 8/20/2024
2.1.389 2,677 8/20/2024
2.1.388 155 8/20/2024
2.1.387 1,234 8/20/2024
2.1.386 2,921 8/19/2024
2.1.385 4,805 8/15/2024
2.1.384 2,145 8/15/2024
2.1.383 4,840 8/14/2024
2.1.382 175 8/13/2024
2.1.381 5,723 8/7/2024
2.1.380 306 8/6/2024
2.1.379 2,723 8/6/2024
2.1.378 4,949 8/1/2024
2.1.377 364 8/1/2024
2.1.376 127 8/1/2024
2.1.374 1,171 8/1/2024
2.1.373 5,836 7/25/2024
2.1.372 120 7/25/2024
2.1.371 755 7/25/2024
2.1.370 336 7/25/2024
2.1.369 389 7/25/2024
2.1.368 206 7/25/2024
2.1.367 413 7/24/2024
2.1.366 184 7/24/2024
2.1.365 234 7/24/2024
2.1.364 344 7/24/2024
2.1.363 8,639 7/20/2024
2.1.362 1,485 7/20/2024
2.1.361 5,049 7/14/2024
2.1.360 1,584 7/14/2024
2.1.359 136 7/14/2024
2.1.358 1,526 7/14/2024
2.1.357 4,351 7/10/2024
2.1.355 819 7/10/2024
2.1.354 1,216 7/10/2024
2.1.353 147 7/10/2024
2.1.352 1,927 7/10/2024
2.1.351 155 7/10/2024
2.1.350 133 7/10/2024
2.1.349 197 7/10/2024
2.1.348 139 7/10/2024
2.1.347 2,073 7/10/2024
2.1.346 155 7/10/2024
2.1.345 838 7/10/2024
2.1.344 135 7/10/2024
2.1.343 240 7/9/2024
2.1.342 120 7/9/2024
2.1.339 2,001 7/9/2024
2.1.338 507 7/9/2024
2.1.337 4,042 7/9/2024
2.1.336 1,088 7/9/2024
2.1.335 150 7/9/2024
2.1.334 2,603 7/9/2024
2.1.333 134 7/9/2024
2.1.332 10,365 7/9/2024
2.1.331 142 7/9/2024
2.1.330 2,530 7/9/2024
2.1.329 127 7/9/2024
2.1.328 1,096 7/9/2024
2.1.327 730 7/8/2024
2.1.326 994 7/8/2024
2.1.325 148 7/8/2024
2.1.324 152 7/8/2024
2.1.323 4,878 7/8/2024
2.1.322 1,653 7/8/2024
2.1.321 145 7/8/2024
2.1.320 2,311 7/7/2024
2.1.319 151 7/7/2024
2.1.318 167 7/7/2024
2.1.317 151 7/7/2024
2.1.316 1,175 7/7/2024
2.1.315 2,196 7/7/2024
2.1.314 1,891 7/7/2024
2.1.313 250 7/7/2024
2.1.312 3,420 7/5/2024
2.1.311 3,901 7/3/2024
2.1.310 3,063 7/3/2024
2.1.309 417 7/3/2024
2.1.308 3,931 7/2/2024
2.1.307 1,884 6/30/2024
2.1.306 2,266 6/28/2024
2.1.305 5,422 6/22/2024
2.1.304 4,896 6/15/2024
2.1.303 4,113 6/14/2024
2.1.302 5,902 6/1/2024
2.1.301 1,622 6/1/2024
2.1.300 611 6/1/2024
2.1.299 5,840 5/31/2024
2.1.298 3,724 5/29/2024
2.1.297 3,048 5/28/2024
2.1.296 2,485 5/27/2024
2.1.295 4,847 5/26/2024
2.1.294 2,046 5/26/2024
2.1.293 509 5/26/2024
2.1.292 2,519 5/25/2024
2.1.291 1,407 5/25/2024
2.1.290 162 5/25/2024
2.1.289 158 5/25/2024
2.1.288 717 5/25/2024
2.1.287 150 5/25/2024
2.1.286 434 5/25/2024
2.1.285 156 5/25/2024
2.1.284 148 5/25/2024
2.1.283 7,432 5/23/2024
2.1.282 550 5/23/2024
2.1.281 302 5/22/2024
2.1.280 3,658 5/22/2024
2.1.279 154 5/22/2024
2.1.278 162 5/22/2024
2.1.277 156 5/22/2024
2.1.276 2,148 5/22/2024
2.1.275 3,436 5/18/2024
2.1.274 1,910 5/18/2024
2.1.273 1,830 5/17/2024
2.1.272 144 5/17/2024
2.1.271 2,732 5/16/2024
2.1.270 468 5/15/2024
2.1.269 2,757 5/15/2024
2.1.268 4,458 5/12/2024
2.1.267 2,764 5/3/2024
2.1.266 1,163 4/30/2024
2.1.265 1,788 4/29/2024
2.1.264 1,940 4/29/2024
2.1.263 2,673 4/28/2024
2.1.262 1,504 4/28/2024
2.1.261 1,124 4/28/2024
2.1.260 1,763 4/28/2024
2.1.259 937 4/28/2024
2.1.258 141 4/28/2024
2.1.257 4,168 4/27/2024
2.1.256 160 4/27/2024
2.1.255 4,386 4/19/2024
2.1.254 4,096 4/18/2024
2.1.253 3,448 4/12/2024
2.1.252 1,174 4/12/2024
2.1.251 758 4/12/2024
2.1.250 890 4/12/2024
2.1.249 238 4/12/2024
2.1.248 137 4/12/2024
2.1.247 1,016 4/12/2024
2.1.246 333 4/12/2024
2.1.245 1,673 4/11/2024
2.1.244 3,747 4/10/2024
2.1.243 1,172 4/9/2024
2.1.242 3,185 4/2/2024
2.1.241 933 4/1/2024
2.1.240 2,108 3/29/2024
2.1.239 1,865 3/25/2024
2.1.238 323 3/25/2024
2.1.237 3,335 3/20/2024
2.1.236 2,162 3/19/2024
2.1.235 542 3/19/2024
2.1.234 2,372 3/18/2024
2.1.233 1,430 3/18/2024
2.1.232 1,406 3/15/2024
2.1.231 2,365 3/13/2024
2.1.230 1,129 3/13/2024
2.1.229 689 3/13/2024
2.1.228 794 3/13/2024
2.1.227 166 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,688 3/12/2024
2.1.222 2,850 3/11/2024
2.1.221 2,503 3/11/2024
2.1.220 1,656 3/10/2024
2.1.219 1,910 3/8/2024
2.1.218 1,090 3/8/2024
2.1.217 1,588 3/8/2024
2.1.216 2,097 3/6/2024
2.1.215 2,029 3/4/2024
2.1.214 1,435 3/4/2024
2.1.213 2,580 3/2/2024
2.1.212 1,242 3/2/2024
2.1.211 439 3/2/2024
2.1.210 379 3/2/2024
2.1.209 508 3/2/2024
2.1.208 3,447 2/29/2024
2.1.207 663 2/29/2024
2.1.206 365 2/29/2024
2.1.205 3,336 2/26/2024
2.1.204 1,511 2/25/2024
2.1.203 2,622 2/23/2024
2.1.202 1,923 2/22/2024
2.1.201 988 2/22/2024
2.1.200 461 2/21/2024
2.1.199 1,209 2/21/2024
2.1.198 329 2/21/2024
2.1.197 791 2/21/2024
2.1.196 153 2/21/2024
2.1.195 1,274 2/21/2024
2.1.194 440 2/21/2024
2.1.193 161 2/21/2024
2.1.192 168 2/21/2024
2.1.191 618 2/21/2024
2.1.190 144 2/21/2024
2.1.189 2,663 2/20/2024
2.1.188 742 2/20/2024
2.1.187 669 2/20/2024
2.1.186 795 2/20/2024
2.1.185 2,144 2/19/2024
2.1.184 1,896 2/17/2024
2.1.183 924 2/16/2024
2.1.182 887 2/16/2024
2.1.181 1,376 2/16/2024
2.1.180 157 2/16/2024
2.1.179 670 2/16/2024
2.1.178 165 2/16/2024
2.1.177 159 2/16/2024
2.1.176 586 2/16/2024
2.1.175 145 2/16/2024
2.1.174 3,314 2/13/2024
2.1.173 1,397 2/13/2024
2.1.172 1,117 2/13/2024
2.1.171 480 2/13/2024
2.1.170 649 2/13/2024
2.1.169 1,959 2/12/2024
2.1.168 540 2/11/2024
2.1.167 1,555 2/11/2024
2.1.166 887 2/11/2024
2.1.165 2,830 2/10/2024
2.1.164 566 2/9/2024
2.1.163 162 2/9/2024
2.1.162 1,588 2/9/2024
2.1.161 1,690 2/9/2024
2.1.160 420 2/8/2024
2.1.159 1,251 2/8/2024
2.1.158 883 2/8/2024
2.1.157 1,497 2/8/2024
2.1.156 148 2/8/2024
2.1.155 1,893 2/7/2024
2.1.154 461 2/7/2024
2.1.153 628 2/7/2024
2.1.152 1,294 2/7/2024
2.1.151 402 2/6/2024
2.1.150 157 2/6/2024
2.1.149 157 2/6/2024
2.1.148 2,793 2/5/2024
2.1.147 1,553 2/4/2024
2.1.146 2,108 2/2/2024
2.1.145 1,935 1/31/2024
2.1.144 2,168 1/29/2024
2.1.143 1,392 1/29/2024
2.1.142 376 1/29/2024
2.1.141 1,516 1/28/2024
2.1.140 497 1/28/2024
2.1.139 336 1/28/2024
2.1.138 578 1/28/2024
2.1.137 1,952 1/28/2024
2.1.136 955 1/28/2024
2.1.135 321 1/27/2024
2.1.134 954 1/27/2024
2.1.133 1,189 1/27/2024
2.1.132 1,210 1/27/2024
2.1.131 173 1/27/2024
2.1.130 728 1/27/2024
2.1.129 1,091 1/26/2024
2.1.128 254 1/26/2024
2.1.127 895 1/26/2024
2.1.126 1,151 1/26/2024
2.1.125 1,659 1/26/2024
2.1.124 903 1/25/2024
2.1.123 1,138 1/25/2024
2.1.122 480 1/25/2024
2.1.121 947 1/25/2024
2.1.120 546 1/25/2024
2.1.119 2,614 1/19/2024
2.1.118 2,245 1/15/2024
2.1.117 532 1/15/2024
2.1.116 1,265 1/15/2024
2.1.115 156 1/15/2024
2.1.114 593 1/15/2024
2.1.113 1,390 1/15/2024
2.1.112 2,568 1/14/2024
2.1.111 1,642 1/13/2024
2.1.110 1,862 1/12/2024
2.1.109 2,065 1/11/2024
2.1.108 2,674 1/7/2024
2.1.107 2,112 1/5/2024
2.1.106 519 1/5/2024
2.1.105 169 1/5/2024
2.1.104 165 1/5/2024
2.1.103 1,513 1/5/2024
2.1.102 169 1/5/2024
2.1.101 2,813 1/1/2024
2.1.100 2,244 12/28/2023
2.1.99 767 12/28/2023
2.1.98 533 12/28/2023
2.1.97 159 12/28/2023
2.1.96 159 12/28/2023
2.1.95 740 12/27/2023
2.1.94 175 12/27/2023
2.1.93 503 12/27/2023
2.1.92 166 12/27/2023
2.1.91 171 12/27/2023
2.1.90 2,254 12/25/2023
2.1.89 384 12/25/2023
2.1.88 813 12/25/2023
2.1.87 177 12/25/2023
2.1.86 689 12/25/2023
2.1.85 168 12/25/2023
2.1.84 606 12/25/2023
2.1.83 166 12/25/2023
2.1.82 1,699 12/24/2023
2.1.81 1,106 12/23/2023
2.1.80 903 12/23/2023
2.1.79 333 12/23/2023
2.1.78 592 12/23/2023
2.1.77 165 12/23/2023
2.1.76 152 12/23/2023
2.1.75 1,116 12/23/2023
2.1.74 154 12/23/2023
2.1.73 1,437 12/19/2023
2.1.72 242 12/19/2023
2.1.71 3,117 12/11/2023
2.1.70 750 12/10/2023
2.1.69 151 12/10/2023
2.1.68 522 12/10/2023
2.1.67 1,451 12/10/2023
2.1.66 407 12/9/2023
2.1.65 400 12/9/2023
2.1.64 317 12/9/2023
2.1.63 173 12/9/2023
2.1.62 293 12/9/2023
2.1.61 233 12/9/2023
2.1.60 154 12/9/2023
2.1.59 1,092 12/9/2023
2.1.58 164 12/9/2023
2.1.57 1,557 12/6/2023
2.1.56 424 12/6/2023
2.1.55 268 12/6/2023
2.1.54 295 12/6/2023
2.1.53 950 12/5/2023
2.1.52 400 12/5/2023
2.1.51 356 12/5/2023
2.1.50 397 12/5/2023
2.1.49 142 12/5/2023
2.1.48 365 12/5/2023
2.1.47 294 12/5/2023
2.1.46 145 12/4/2023
2.1.45 154 12/4/2023
2.1.44 358 12/4/2023
2.1.43 169 12/4/2023
2.1.42 1,040 12/4/2023
2.1.41 125 12/4/2023
2.1.40 1,190 11/27/2023
2.1.39 549 11/26/2023
2.1.38 245 11/26/2023
2.1.37 650 11/23/2023
2.1.36 709 11/23/2023
2.1.35 665 11/23/2023
2.1.34 153 11/23/2023
2.1.33 430 11/23/2023
2.1.32 160 11/23/2023
2.1.31 1,099 11/20/2023
2.1.30 1,081 11/20/2023
2.1.29 826 11/19/2023
2.1.28 286 11/19/2023
2.1.27 473 11/19/2023
2.1.26 524 11/19/2023
2.1.25 523 11/19/2023
2.1.24 140 11/19/2023
2.1.23 232 11/18/2023
2.1.22 1,004 11/18/2023
2.1.21 392 11/18/2023
2.1.20 556 11/18/2023
2.1.19 157 11/18/2023
2.1.18 328 11/18/2023
2.1.17 152 11/18/2023
2.1.16 628 11/17/2023
2.1.15 545 11/17/2023
2.1.14 150 11/17/2023
2.1.13 442 11/17/2023
2.1.12 327 11/17/2023
2.1.11 510 11/17/2023
2.1.10 148 11/17/2023
2.1.9 526 11/17/2023
2.1.8 156 11/17/2023
2.1.7 174 11/17/2023
2.1.6 365 11/17/2023
2.1.5 402 11/16/2023
2.0.101 2,097 11/15/2023
2.0.100 148 11/15/2023
2.0.99 156 11/15/2023
2.0.4 147 11/16/2023
2.0.3 160 11/16/2023
2.0.2 153 11/16/2023
2.0.1 148 11/16/2023
1.0.98 634 11/14/2023
1.0.97 766 11/13/2023
1.0.96 136 11/13/2023
1.0.95 592 11/10/2023
1.0.94 147 11/10/2023
1.0.93 962 11/9/2023
1.0.92 150 11/9/2023
1.0.91 1,058 11/7/2023
1.0.90 145 11/7/2023
1.0.89 523 11/6/2023
1.0.88 159 11/6/2023
1.0.87 621 11/3/2023
1.0.86 162 11/3/2023
1.0.85 909 11/2/2023
1.0.84 145 11/2/2023
1.0.83 626 11/1/2023
1.0.82 1,490 10/26/2023
1.0.81 1,331 10/19/2023
1.0.80 173 10/19/2023
1.0.79 812 10/18/2023
1.0.78 190 10/18/2023
1.0.77 761 10/17/2023
1.0.76 176 10/17/2023
1.0.75 695 10/16/2023
1.0.74 178 10/16/2023
1.0.73 724 10/13/2023
1.0.72 369 10/12/2023
1.0.71 1,769 9/20/2023
1.0.70 711 9/19/2023
1.0.69 709 9/18/2023
1.0.68 174 9/18/2023
1.0.67 923 9/14/2023
1.0.66 1,532 8/31/2023
1.0.65 181 8/31/2023
1.0.64 856 8/30/2023
1.0.63 202 8/30/2023
1.0.62 217 8/30/2023
1.0.61 880 8/28/2023
1.0.60 731 8/25/2023
1.0.59 183 8/25/2023
1.0.58 534 8/24/2023
1.0.57 1,495 8/21/2023
1.0.56 868 8/18/2023
1.0.55 787 8/17/2023
1.0.54 195 8/17/2023
1.0.53 1,935 8/10/2023
1.0.52 607 8/9/2023
1.0.51 716 8/8/2023
1.0.50 699 8/7/2023
1.0.49 224 8/7/2023
1.0.48 2,518 7/13/2023
1.0.47 934 7/11/2023
1.0.46 769 7/10/2023
1.0.45 740 7/7/2023
1.0.44 221 7/7/2023
1.0.43 2,155 6/30/2023
1.0.42 1,113 6/29/2023
1.0.41 647 6/28/2023
1.0.40 1,589 6/26/2023
1.0.39 839 6/23/2023
1.0.38 1,134 6/21/2023
1.0.37 1,504 6/15/2023
1.0.36 531 6/14/2023
1.0.35 1,848 6/9/2023
1.0.34 878 6/8/2023
1.0.33 1,670 6/7/2023
1.0.32 217 6/7/2023
1.0.31 1,270 6/6/2023
1.0.30 1,228 6/5/2023
1.0.29 1,420 6/2/2023
1.0.28 207 6/2/2023
1.0.27 1,296 6/1/2023
1.0.26 645 5/31/2023
1.0.25 538 5/31/2023
1.0.24 214 5/31/2023
1.0.23 1,518 5/30/2023
1.0.22 1,581 5/26/2023
1.0.21 741 5/25/2023
1.0.20 199 5/25/2023
1.0.19 885 5/24/2023
1.0.18 210 5/24/2023
1.0.17 505 5/23/2023
1.0.13 1,515 5/22/2023
1.0.12 1,244 5/18/2023
1.0.11 653 5/17/2023
1.0.10 1,602 5/1/2023
1.0.9 1,078 4/25/2023
1.0.8 538 4/24/2023
1.0.7 1,051 4/21/2023
1.0.6 2,009 4/13/2023
1.0.5 656 4/12/2023
1.0.4 1,076 4/8/2023
1.0.3 246 4/8/2023
1.0.2 648 4/8/2023
1.0.1 249 4/8/2023