Soenneker.Utils.SingletonDictionary 3.0.1084

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.1084
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1084
                    
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.1084" />
                    
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.1084" />
                    
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.1084
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1084"
                    
#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.
#addin nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1084
                    
Install Soenneker.Utils.SingletonDictionary as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1084
                    
Install Soenneker.Utils.SingletonDictionary 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.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.1090 0 5/27/2025
3.0.1089 26 5/27/2025
3.0.1088 129 5/27/2025
3.0.1087 350 5/27/2025
3.0.1086 7,917 5/23/2025
3.0.1085 998 5/23/2025
3.0.1084 905 5/23/2025
3.0.1083 1,000 5/23/2025
3.0.1082 174 5/22/2025
3.0.1081 7,938 5/18/2025
3.0.1079 1,395 5/18/2025
3.0.1078 1,333 5/18/2025
3.0.1077 3,915 5/14/2025
3.0.1076 8,671 5/8/2025
3.0.1075 272 5/8/2025
3.0.1074 567 5/8/2025
3.0.1073 1,077 5/7/2025
3.0.1072 12,695 5/5/2025
3.0.1071 844 5/5/2025
3.0.1070 1,539 5/5/2025
3.0.1069 706 5/5/2025
3.0.1068 222 5/5/2025
3.0.1067 133 5/5/2025
3.0.1066 18,011 4/9/2025
3.0.1065 257 4/9/2025
3.0.1064 1,056 4/8/2025
3.0.1063 2,187 4/8/2025
3.0.1062 2,999 4/8/2025
3.0.1061 189 4/8/2025
3.0.1060 156 4/8/2025
3.0.1059 187 4/8/2025
3.0.1058 150 4/8/2025
3.0.1057 856 4/8/2025
3.0.1056 277 4/8/2025
3.0.1055 6,393 4/8/2025
3.0.1054 651 4/8/2025
3.0.1053 3,272 4/7/2025
3.0.1052 707 4/7/2025
3.0.1051 159 4/7/2025
3.0.1050 589 4/7/2025
3.0.1049 156 4/7/2025
3.0.1048 6,764 4/7/2025
3.0.1047 163 4/7/2025
3.0.1046 9,320 4/7/2025
3.0.1045 154 4/7/2025
3.0.1044 1,372 4/7/2025
3.0.1043 156 4/7/2025
3.0.1042 1,617 4/7/2025
3.0.1041 930 4/6/2025
3.0.1040 283 4/6/2025
3.0.1039 160 4/6/2025
3.0.1038 1,050 4/6/2025
3.0.1037 157 4/6/2025
3.0.1036 392 4/6/2025
3.0.1035 1,175 4/6/2025
3.0.1034 137 4/6/2025
3.0.1033 2,044 4/6/2025
3.0.1032 96 4/6/2025
3.0.1031 148 4/6/2025
3.0.1030 107 4/6/2025
3.0.1029 1,602 4/5/2025
3.0.1028 168 4/5/2025
3.0.1027 1,146 4/5/2025
3.0.1026 1,204 4/5/2025
3.0.1025 1,046 4/5/2025
3.0.1024 633 4/5/2025
3.0.1023 531 4/5/2025
3.0.1022 109 4/5/2025
3.0.1021 1,267 4/4/2025
3.0.1020 6,950 4/4/2025
3.0.1019 23,313 4/4/2025
3.0.1018 6,628 4/1/2025
3.0.1017 2,607 4/1/2025
3.0.1016 151 4/1/2025
3.0.1015 5,372 4/1/2025
3.0.1014 2,326 3/31/2025
3.0.1013 362 3/31/2025
3.0.1012 3,883 3/31/2025
3.0.1011 6,710 3/29/2025
3.0.1010 1,044 3/29/2025
3.0.1009 1,387 3/29/2025
3.0.1008 90 3/29/2025
3.0.1007 4,292 3/27/2025
3.0.1006 3,818 3/25/2025
3.0.1005 591 3/25/2025
3.0.1004 3,074 3/25/2025
3.0.1003 6,006 3/21/2025
3.0.1002 2,528 3/21/2025
3.0.1001 7,266 3/18/2025
3.0.1000 3,368 3/18/2025
3.0.999 6,308 3/15/2025
3.0.998 1,751 3/15/2025
3.0.997 62 3/15/2025
3.0.996 6,013 3/12/2025
3.0.995 2,138 3/12/2025
3.0.994 160 3/12/2025
3.0.993 380 3/12/2025
3.0.992 146 3/12/2025
3.0.991 2,671 3/11/2025
3.0.990 157 3/11/2025
3.0.989 1,254 3/11/2025
3.0.988 158 3/11/2025
3.0.987 2,542 3/11/2025
3.0.986 163 3/11/2025
3.0.985 2,628 3/11/2025
3.0.984 152 3/11/2025
3.0.983 1,601 3/11/2025
3.0.982 160 3/11/2025
3.0.981 8,829 3/7/2025
3.0.980 2,581 3/7/2025
3.0.979 6,129 3/2/2025
3.0.978 1,023 3/2/2025
3.0.977 634 3/2/2025
3.0.976 105 3/2/2025
3.0.975 4,289 3/2/2025
3.0.974 94 3/2/2025
3.0.973 3,150 3/1/2025
3.0.972 91 3/1/2025
3.0.971 4,256 3/1/2025
3.0.970 112 3/1/2025
3.0.969 93 3/1/2025
3.0.968 393 3/1/2025
3.0.967 91 3/1/2025
3.0.966 5,776 3/1/2025
3.0.965 4,745 2/26/2025
3.0.964 808 2/26/2025
3.0.963 2,302 2/25/2025
3.0.962 87 2/25/2025
3.0.961 833 2/25/2025
3.0.960 89 2/25/2025
3.0.959 117 2/25/2025
3.0.958 1,816 2/25/2025
3.0.957 4,806 2/24/2025
3.0.956 4,448 2/23/2025
3.0.955 1,067 2/22/2025
3.0.954 91 2/22/2025
3.0.953 7,514 2/22/2025
3.0.952 2,171 2/22/2025
3.0.951 1,034 2/22/2025
3.0.950 748 2/22/2025
3.0.949 130 2/22/2025
3.0.948 107 2/22/2025
3.0.947 91 2/22/2025
3.0.946 4,594 2/21/2025
3.0.945 95 2/21/2025
3.0.944 5,456 2/21/2025
3.0.943 4,513 2/19/2025
3.0.942 1,597 2/19/2025
3.0.941 710 2/19/2025
3.0.940 97 2/19/2025
3.0.939 390 2/18/2025
3.0.938 95 2/18/2025
3.0.937 5,422 2/18/2025
3.0.936 95 2/18/2025
3.0.935 2,783 2/18/2025
3.0.934 6,433 2/16/2025
3.0.933 1,511 2/14/2025
3.0.932 795 2/14/2025
3.0.931 693 2/13/2025
3.0.930 2,361 2/13/2025
3.0.929 265 2/13/2025
3.0.928 3,645 2/13/2025
3.0.927 3,711 2/12/2025
3.0.926 1,445 2/12/2025
3.0.925 141 2/12/2025
3.0.924 96 2/12/2025
3.0.923 1,981 2/12/2025
3.0.922 329 2/12/2025
3.0.921 106 2/12/2025
3.0.920 177 2/12/2025
3.0.919 176 2/12/2025
3.0.918 99 2/12/2025
3.0.917 158 2/11/2025
3.0.916 3,359 2/11/2025
3.0.915 3,645 2/11/2025
3.0.914 2,159 2/11/2025
3.0.913 103 2/11/2025
3.0.912 385 2/11/2025
3.0.911 1,705 2/10/2025
3.0.910 105 2/10/2025
3.0.909 769 2/10/2025
3.0.908 103 2/10/2025
3.0.907 6,285 2/10/2025
3.0.906 104 2/10/2025
3.0.905 1,143 2/9/2025
3.0.904 5,578 2/9/2025
3.0.903 98 2/9/2025
3.0.902 7,076 2/8/2025
3.0.901 106 2/8/2025
3.0.900 1,659 2/7/2025
3.0.899 92 2/7/2025
3.0.898 1,563 2/7/2025
3.0.897 101 2/7/2025
3.0.896 628 2/7/2025
3.0.895 398 2/7/2025
3.0.894 105 2/7/2025
3.0.893 314 2/7/2025
3.0.892 97 2/7/2025
3.0.891 1,021 2/7/2025
3.0.890 96 2/7/2025
3.0.889 105 2/7/2025
3.0.888 10,537 2/7/2025
3.0.887 6,146 2/5/2025
3.0.886 582 2/5/2025
3.0.885 876 2/5/2025
3.0.884 274 2/5/2025
3.0.883 969 2/5/2025
3.0.882 645 2/5/2025
3.0.881 2,893 2/5/2025
3.0.880 104 2/5/2025
3.0.879 10,714 1/28/2025
3.0.878 624 1/28/2025
3.0.877 1,722 1/28/2025
3.0.876 210 1/28/2025
3.0.875 3,629 1/28/2025
3.0.874 614 1/27/2025
3.0.873 85 1/27/2025
3.0.872 168 1/27/2025
3.0.871 253 1/27/2025
3.0.870 89 1/27/2025
3.0.869 4,678 1/27/2025
3.0.868 4,342 1/26/2025
3.0.867 907 1/26/2025
3.0.866 164 1/26/2025
3.0.865 988 1/26/2025
3.0.864 1,298 1/25/2025
3.0.863 96 1/25/2025
3.0.862 5,496 1/25/2025
3.0.861 939 1/25/2025
3.0.860 285 1/25/2025
3.0.859 90 1/25/2025
3.0.858 1,770 1/25/2025
3.0.857 1,237 1/25/2025
3.0.856 6,360 1/24/2025
3.0.855 1,453 1/24/2025
3.0.854 83 1/24/2025
3.0.853 1,894 1/24/2025
3.0.852 302 1/24/2025
3.0.851 197 1/24/2025
3.0.850 2,987 1/24/2025
3.0.849 90 1/24/2025
3.0.848 468 1/23/2025
3.0.847 87 1/23/2025
3.0.846 549 1/23/2025
3.0.845 86 1/23/2025
3.0.844 7,539 1/22/2025
3.0.843 954 1/21/2025
3.0.842 933 1/21/2025
3.0.841 547 1/21/2025
3.0.840 93 1/21/2025
3.0.839 574 1/21/2025
3.0.838 707 1/21/2025
3.0.837 5,209 1/21/2025
3.0.836 519 1/21/2025
3.0.835 976 1/21/2025
3.0.834 96 1/21/2025
3.0.833 773 1/21/2025
3.0.832 85 1/21/2025
3.0.831 2,064 1/21/2025
3.0.830 82 1/21/2025
3.0.829 371 1/20/2025
3.0.828 2,671 1/20/2025
3.0.827 218 1/20/2025
3.0.826 1,951 1/20/2025
3.0.825 92 1/20/2025
3.0.824 1,034 1/20/2025
3.0.823 93 1/20/2025
3.0.822 100 1/20/2025
3.0.821 86 1/20/2025
3.0.820 338 1/20/2025
3.0.819 91 1/20/2025
3.0.818 93 1/20/2025
3.0.817 5,368 1/19/2025
3.0.816 95 1/19/2025
3.0.815 4,967 1/19/2025
3.0.814 1,532 1/19/2025
3.0.813 107 1/19/2025
3.0.812 362 1/19/2025
3.0.811 81 1/19/2025
3.0.810 1,789 1/19/2025
3.0.809 88 1/19/2025
3.0.808 3,086 1/18/2025
3.0.807 90 1/18/2025
3.0.806 6,865 1/17/2025
3.0.805 101 1/17/2025
3.0.804 569 1/17/2025
3.0.803 885 1/17/2025
3.0.802 3,982 1/16/2025
3.0.801 1,380 1/16/2025
3.0.800 1,993 1/16/2025
3.0.799 525 1/16/2025
3.0.798 1,142 1/16/2025
3.0.797 979 1/16/2025
3.0.796 81 1/16/2025
3.0.795 4,365 1/15/2025
3.0.794 84 1/15/2025
3.0.793 2,685 1/15/2025
3.0.792 84 1/15/2025
3.0.791 128 1/15/2025
3.0.790 3,166 1/15/2025
3.0.789 76 1/15/2025
3.0.788 2,653 1/15/2025
3.0.787 61 1/15/2025
3.0.786 423 1/15/2025
3.0.785 61 1/15/2025
3.0.784 1,538 1/15/2025
3.0.783 62 1/15/2025
3.0.782 201 1/14/2025
3.0.781 70 1/14/2025
3.0.780 81 1/14/2025
3.0.779 2,930 1/14/2025
3.0.778 505 1/14/2025
3.0.777 73 1/14/2025
3.0.776 1,170 1/14/2025
3.0.775 77 1/14/2025
3.0.774 4,949 1/13/2025
3.0.773 1,521 1/13/2025
3.0.772 1,286 1/13/2025
3.0.771 81 1/13/2025
3.0.770 4,821 1/11/2025
3.0.769 1,940 1/11/2025
3.0.768 104 1/11/2025
3.0.767 2,048 1/11/2025
3.0.766 95 1/11/2025
3.0.765 1,653 1/10/2025
3.0.764 1,791 1/10/2025
3.0.763 91 1/10/2025
3.0.762 745 1/10/2025
3.0.761 94 1/10/2025
3.0.760 88 1/10/2025
3.0.759 6,235 1/3/2025
3.0.758 456 1/3/2025
3.0.757 972 1/3/2025
3.0.756 121 1/3/2025
3.0.755 1,407 1/3/2025
3.0.754 102 1/3/2025
3.0.753 1,048 1/3/2025
3.0.752 1,009 1/2/2025
3.0.751 96 1/2/2025
3.0.750 1,692 1/2/2025
3.0.749 111 1/2/2025
3.0.748 2,816 1/2/2025
3.0.747 96 1/2/2025
3.0.746 102 1/2/2025
3.0.745 4,639 1/1/2025
3.0.744 986 1/1/2025
3.0.743 262 1/1/2025
3.0.742 110 1/1/2025
3.0.741 1,453 1/1/2025
3.0.740 105 1/1/2025
3.0.739 109 1/1/2025
3.0.738 113 1/1/2025
3.0.737 311 12/31/2024
3.0.736 107 12/31/2024
3.0.735 121 12/31/2024
3.0.734 605 12/31/2024
3.0.733 122 12/31/2024
3.0.732 4,536 12/31/2024
3.0.731 116 12/31/2024
3.0.730 4,348 12/31/2024
3.0.729 96 12/31/2024
3.0.728 2,565 12/31/2024
3.0.727 326 12/31/2024
3.0.726 97 12/31/2024
3.0.725 1,313 12/31/2024
3.0.724 98 12/31/2024
3.0.723 8,843 12/28/2024
3.0.722 1,116 12/28/2024
3.0.721 1,210 12/27/2024
3.0.720 102 12/27/2024
3.0.719 2,675 12/27/2024
3.0.718 4,876 12/24/2024
3.0.717 1,237 12/24/2024
3.0.716 930 12/24/2024
3.0.715 797 12/24/2024
3.0.714 1,371 12/24/2024
3.0.713 87 12/24/2024
3.0.712 2,242 12/24/2024
3.0.711 636 12/24/2024
3.0.710 95 12/24/2024
3.0.709 451 12/24/2024
3.0.708 967 12/24/2024
3.0.707 246 12/24/2024
3.0.706 116 12/24/2024
3.0.705 1,042 12/24/2024
3.0.704 95 12/24/2024
3.0.703 1,776 12/23/2024
3.0.702 2,738 12/23/2024
3.0.701 101 12/23/2024
3.0.700 658 12/23/2024
3.0.699 95 12/23/2024
3.0.698 1,825 12/23/2024
3.0.697 99 12/23/2024
3.0.696 1,442 12/23/2024
3.0.695 104 12/23/2024
3.0.694 434 12/22/2024
3.0.693 1,386 12/22/2024
3.0.692 3,986 12/22/2024
3.0.691 104 12/22/2024
3.0.690 1,542 12/22/2024
3.0.689 153 12/22/2024
3.0.688 462 12/22/2024
3.0.687 96 12/22/2024
3.0.686 258 12/22/2024
3.0.685 96 12/22/2024
3.0.684 6,748 12/22/2024
3.0.683 95 12/22/2024
3.0.682 1,058 12/21/2024
3.0.681 259 12/21/2024
3.0.680 102 12/21/2024
3.0.679 478 12/21/2024
3.0.678 763 12/21/2024
3.0.677 94 12/21/2024
3.0.676 3,768 12/21/2024
3.0.675 380 12/21/2024
3.0.674 94 12/21/2024
3.0.673 2,525 12/21/2024
3.0.672 672 12/21/2024
3.0.671 100 12/21/2024
3.0.670 1,571 12/20/2024
3.0.669 106 12/20/2024
3.0.668 96 12/20/2024
3.0.667 3,675 12/20/2024
3.0.666 1,131 12/20/2024
3.0.665 210 12/20/2024
3.0.664 3,439 12/19/2024
3.0.663 420 12/19/2024
3.0.662 2,009 12/18/2024
3.0.661 103 12/18/2024
3.0.660 6,565 12/17/2024
3.0.659 206 12/17/2024
3.0.658 683 12/16/2024
3.0.657 106 12/16/2024
3.0.656 136 12/16/2024
3.0.655 93 12/16/2024
3.0.654 6,467 12/10/2024
3.0.653 990 12/10/2024
3.0.652 374 12/9/2024
3.0.651 100 12/9/2024
3.0.650 2,661 12/9/2024
3.0.649 1,362 12/9/2024
3.0.648 93 12/9/2024
3.0.647 3,620 12/9/2024
3.0.646 2,724 12/6/2024
3.0.645 421 12/6/2024
3.0.644 104 12/6/2024
3.0.643 682 12/6/2024
3.0.641 3,864 12/6/2024
3.0.640 2,436 12/6/2024
3.0.639 5,268 12/6/2024
3.0.637 367 12/6/2024
3.0.636 2,513 12/5/2024
3.0.635 3,562 12/5/2024
3.0.634 3,166 12/5/2024
3.0.633 99 12/5/2024
3.0.632 1,731 12/5/2024
3.0.631 1,024 12/5/2024
3.0.630 102 12/5/2024
3.0.629 372 12/5/2024
3.0.628 97 12/5/2024
3.0.627 141 12/5/2024
3.0.626 96 12/5/2024
3.0.625 3,352 12/4/2024
3.0.624 95 12/4/2024
3.0.623 106 12/4/2024
3.0.622 104 12/4/2024
3.0.621 1,709 12/4/2024
3.0.620 290 12/4/2024
3.0.619 406 12/4/2024
3.0.618 3,357 12/3/2024
3.0.617 104 12/3/2024
3.0.616 1,118 12/3/2024
3.0.615 435 12/3/2024
3.0.614 109 12/3/2024
3.0.613 106 12/3/2024
3.0.612 4,029 12/3/2024
3.0.611 100 12/3/2024
3.0.610 3,287 12/3/2024
3.0.609 93 12/3/2024
3.0.608 3,064 12/2/2024
3.0.607 2,648 12/2/2024
3.0.606 1,616 12/2/2024
3.0.605 267 12/2/2024
3.0.604 102 12/2/2024
3.0.603 394 12/2/2024
3.0.602 3,440 12/1/2024
3.0.601 105 12/1/2024
3.0.600 1,870 12/1/2024
3.0.599 190 12/1/2024
3.0.598 3,452 12/1/2024
3.0.597 110 12/1/2024
3.0.596 3,560 11/29/2024
3.0.595 1,045 11/29/2024
3.0.594 5,744 11/21/2024
3.0.593 287 11/21/2024
3.0.592 4,508 11/20/2024
3.0.591 330 11/20/2024
3.0.590 105 11/20/2024
3.0.589 108 11/20/2024
3.0.588 418 11/20/2024
3.0.587 150 11/20/2024
3.0.586 97 11/20/2024
3.0.585 2,022 11/20/2024
3.0.584 2,753 11/19/2024
3.0.583 96 11/19/2024
3.0.582 635 11/19/2024
3.0.581 97 11/19/2024
3.0.580 2,672 11/19/2024
3.0.579 94 11/19/2024
3.0.578 1,310 11/19/2024
3.0.577 100 11/19/2024
3.0.576 8,511 11/14/2024
3.0.575 132 11/14/2024
3.0.574 503 11/14/2024
3.0.573 2,366 11/14/2024
3.0.572 718 11/14/2024
3.0.571 107 11/14/2024
3.0.570 108 11/14/2024
3.0.569 4,138 11/14/2024
3.0.568 111 11/14/2024
3.0.567 106 11/14/2024
3.0.566 3,484 11/14/2024
3.0.565 107 11/14/2024
3.0.564 106 11/14/2024
3.0.563 105 11/14/2024
2.1.562 8,421 11/13/2024
2.1.561 1,369 11/13/2024
2.1.560 3,048 11/13/2024
2.1.559 106 11/13/2024
2.1.558 1,330 11/12/2024
2.1.557 397 11/12/2024
2.1.556 8,241 11/9/2024
2.1.555 358 11/9/2024
2.1.554 101 11/9/2024
2.1.553 1,731 11/9/2024
2.1.552 104 11/9/2024
2.1.551 956 11/8/2024
2.1.550 106 11/8/2024
2.1.549 105 11/8/2024
2.1.548 106 11/8/2024
2.1.547 420 11/8/2024
2.1.546 1,887 11/8/2024
2.1.545 102 11/8/2024
2.1.544 5,455 11/8/2024
2.1.543 99 11/8/2024
2.1.542 11,643 11/1/2024
2.1.541 456 11/1/2024
2.1.540 6,773 10/29/2024
2.1.539 733 10/29/2024
2.1.538 2,830 10/29/2024
2.1.537 624 10/29/2024
2.1.536 5,554 10/28/2024
2.1.535 1,852 10/28/2024
2.1.534 4,008 10/26/2024
2.1.533 700 10/26/2024
2.1.532 9,177 10/22/2024
2.1.531 251 10/22/2024
2.1.530 546 10/22/2024
2.1.529 875 10/22/2024
2.1.528 90 10/22/2024
2.1.527 491 10/22/2024
2.1.526 6,500 10/18/2024
2.1.525 1,082 10/17/2024
2.1.524 4,147 10/15/2024
2.1.523 1,593 10/15/2024
2.1.522 98 10/14/2024
2.1.521 5,123 10/12/2024
2.1.520 647 10/11/2024
2.1.519 101 10/11/2024
2.1.518 472 10/11/2024
2.1.517 2,918 10/11/2024
2.1.516 6,379 10/9/2024
2.1.515 379 10/9/2024
2.1.514 97 10/9/2024
2.1.513 1,969 10/8/2024
2.1.512 139 10/8/2024
2.1.511 2,215 10/8/2024
2.1.510 142 10/8/2024
2.1.509 94 10/8/2024
2.1.508 3,934 10/8/2024
2.1.507 6,208 10/3/2024
2.1.506 102 10/3/2024
2.1.505 1,098 10/3/2024
2.1.504 1,921 10/3/2024
2.1.503 1,411 10/3/2024
2.1.502 5,718 10/2/2024
2.1.501 100 10/2/2024
2.1.500 1,812 10/2/2024
2.1.499 996 10/2/2024
2.1.498 4,171 10/1/2024
2.1.497 698 10/1/2024
2.1.496 111 10/1/2024
2.1.495 2,619 10/1/2024
2.1.494 104 10/1/2024
2.1.493 143 10/1/2024
2.1.492 5,421 9/29/2024
2.1.491 1,374 9/29/2024
2.1.490 105 9/29/2024
2.1.489 1,217 9/29/2024
2.1.488 106 9/29/2024
2.1.487 2,511 9/29/2024
2.1.486 5,227 9/27/2024
2.1.485 773 9/27/2024
2.1.484 3,126 9/27/2024
2.1.483 111 9/27/2024
2.1.482 444 9/27/2024
2.1.481 2,154 9/27/2024
2.1.480 3,156 9/26/2024
2.1.479 3,478 9/26/2024
2.1.478 2,351 9/26/2024
2.1.477 2,163 9/26/2024
2.1.476 3,802 9/26/2024
2.1.475 105 9/26/2024
2.1.474 5,598 9/23/2024
2.1.473 1,292 9/23/2024
2.1.472 947 9/23/2024
2.1.471 1,144 9/23/2024
2.1.470 106 9/23/2024
2.1.469 1,546 9/23/2024
2.1.468 98 9/23/2024
2.1.467 4,660 9/23/2024
2.1.466 104 9/23/2024
2.1.465 712 9/23/2024
2.1.464 113 9/23/2024
2.1.463 100 9/23/2024
2.1.462 883 9/23/2024
2.1.461 9,160 9/18/2024
2.1.460 251 9/17/2024
2.1.459 1,198 9/17/2024
2.1.458 1,710 9/17/2024
2.1.457 104 9/17/2024
2.1.456 1,801 9/17/2024
2.1.455 460 9/17/2024
2.1.454 3,271 9/17/2024
2.1.453 549 9/17/2024
2.1.452 194 9/17/2024
2.1.451 2,644 9/17/2024
2.1.450 7,451 9/16/2024
2.1.449 716 9/16/2024
2.1.448 5,021 9/12/2024
2.1.447 2,914 9/12/2024
2.1.446 1,309 9/11/2024
2.1.445 1,527 9/11/2024
2.1.443 3,713 9/11/2024
2.1.442 993 9/11/2024
2.1.441 956 9/11/2024
2.1.440 2,308 9/11/2024
2.1.439 8,084 9/10/2024
2.1.438 126 9/10/2024
2.1.437 1,150 9/10/2024
2.1.436 121 9/10/2024
2.1.434 2,916 9/10/2024
2.1.433 603 9/9/2024
2.1.432 2,006 9/9/2024
2.1.430 1,547 9/9/2024
2.1.428 142 9/9/2024
2.1.427 463 9/9/2024
2.1.426 13,246 9/7/2024
2.1.425 134 9/7/2024
2.1.424 5,005 9/6/2024
2.1.423 372 9/6/2024
2.1.422 2,205 9/6/2024
2.1.421 119 9/5/2024
2.1.420 130 9/5/2024
2.1.419 2,387 9/5/2024
2.1.418 1,152 9/5/2024
2.1.417 128 9/5/2024
2.1.416 1,148 9/5/2024
2.1.415 439 9/5/2024
2.1.414 122 9/5/2024
2.1.413 5,031 9/5/2024
2.1.412 201 9/5/2024
2.1.411 127 9/5/2024
2.1.410 2,258 9/4/2024
2.1.409 8,006 9/3/2024
2.1.408 111 9/3/2024
2.1.407 105 9/3/2024
2.1.406 4,009 9/3/2024
2.1.405 155 9/3/2024
2.1.404 2,483 9/3/2024
2.1.403 5,283 8/29/2024
2.1.402 2,549 8/29/2024
2.1.401 2,887 8/26/2024
2.1.400 113 8/26/2024
2.1.399 4,937 8/21/2024
2.1.398 611 8/21/2024
2.1.397 134 8/21/2024
2.1.396 2,551 8/21/2024
2.1.395 146 8/20/2024
2.1.394 142 8/20/2024
2.1.393 472 8/20/2024
2.1.392 2,958 8/20/2024
2.1.391 421 8/20/2024
2.1.390 119 8/20/2024
2.1.389 2,647 8/20/2024
2.1.388 121 8/20/2024
2.1.387 1,208 8/20/2024
2.1.386 2,898 8/19/2024
2.1.385 4,771 8/15/2024
2.1.384 2,113 8/15/2024
2.1.383 4,809 8/14/2024
2.1.382 158 8/13/2024
2.1.381 5,693 8/7/2024
2.1.380 277 8/6/2024
2.1.379 2,688 8/6/2024
2.1.378 4,928 8/1/2024
2.1.377 337 8/1/2024
2.1.376 101 8/1/2024
2.1.374 1,135 8/1/2024
2.1.373 5,793 7/25/2024
2.1.372 97 7/25/2024
2.1.371 723 7/25/2024
2.1.370 308 7/25/2024
2.1.369 359 7/25/2024
2.1.368 184 7/25/2024
2.1.367 384 7/24/2024
2.1.366 145 7/24/2024
2.1.365 207 7/24/2024
2.1.364 317 7/24/2024
2.1.363 8,491 7/20/2024
2.1.362 1,453 7/20/2024
2.1.361 5,000 7/14/2024
2.1.360 1,545 7/14/2024
2.1.359 105 7/14/2024
2.1.358 1,499 7/14/2024
2.1.357 4,315 7/10/2024
2.1.355 797 7/10/2024
2.1.354 1,183 7/10/2024
2.1.353 123 7/10/2024
2.1.352 1,904 7/10/2024
2.1.351 126 7/10/2024
2.1.350 111 7/10/2024
2.1.349 179 7/10/2024
2.1.348 109 7/10/2024
2.1.347 2,048 7/10/2024
2.1.346 127 7/10/2024
2.1.345 812 7/10/2024
2.1.344 111 7/10/2024
2.1.343 211 7/9/2024
2.1.342 100 7/9/2024
2.1.339 1,974 7/9/2024
2.1.338 488 7/9/2024
2.1.337 4,009 7/9/2024
2.1.336 1,070 7/9/2024
2.1.335 116 7/9/2024
2.1.334 2,578 7/9/2024
2.1.333 117 7/9/2024
2.1.332 8,299 7/9/2024
2.1.331 106 7/9/2024
2.1.330 2,502 7/9/2024
2.1.329 97 7/9/2024
2.1.328 1,063 7/9/2024
2.1.327 712 7/8/2024
2.1.326 962 7/8/2024
2.1.325 126 7/8/2024
2.1.324 123 7/8/2024
2.1.323 4,841 7/8/2024
2.1.322 1,618 7/8/2024
2.1.321 128 7/8/2024
2.1.320 2,274 7/7/2024
2.1.319 122 7/7/2024
2.1.318 131 7/7/2024
2.1.317 114 7/7/2024
2.1.316 1,151 7/7/2024
2.1.315 2,160 7/7/2024
2.1.314 1,852 7/7/2024
2.1.313 219 7/7/2024
2.1.312 3,383 7/5/2024
2.1.311 3,865 7/3/2024
2.1.310 3,034 7/3/2024
2.1.309 387 7/3/2024
2.1.308 3,899 7/2/2024
2.1.307 1,853 6/30/2024
2.1.306 2,242 6/28/2024
2.1.305 5,385 6/22/2024
2.1.304 4,852 6/15/2024
2.1.303 4,081 6/14/2024
2.1.302 5,871 6/1/2024
2.1.301 1,583 6/1/2024
2.1.300 580 6/1/2024
2.1.299 5,805 5/31/2024
2.1.298 3,687 5/29/2024
2.1.297 3,022 5/28/2024
2.1.296 2,454 5/27/2024
2.1.295 4,809 5/26/2024
2.1.294 2,009 5/26/2024
2.1.293 482 5/26/2024
2.1.292 2,495 5/25/2024
2.1.291 1,373 5/25/2024
2.1.290 129 5/25/2024
2.1.289 122 5/25/2024
2.1.288 677 5/25/2024
2.1.287 123 5/25/2024
2.1.286 403 5/25/2024
2.1.285 136 5/25/2024
2.1.284 124 5/25/2024
2.1.283 7,379 5/23/2024
2.1.282 526 5/23/2024
2.1.281 268 5/22/2024
2.1.280 3,619 5/22/2024
2.1.279 117 5/22/2024
2.1.278 131 5/22/2024
2.1.277 133 5/22/2024
2.1.276 2,109 5/22/2024
2.1.275 3,408 5/18/2024
2.1.274 1,886 5/18/2024
2.1.273 1,794 5/17/2024
2.1.272 112 5/17/2024
2.1.271 2,712 5/16/2024
2.1.270 435 5/15/2024
2.1.269 2,736 5/15/2024
2.1.268 4,434 5/12/2024
2.1.267 2,730 5/3/2024
2.1.266 1,129 4/30/2024
2.1.265 1,744 4/29/2024
2.1.264 1,903 4/29/2024
2.1.263 2,635 4/28/2024
2.1.262 1,472 4/28/2024
2.1.261 1,097 4/28/2024
2.1.260 1,744 4/28/2024
2.1.259 902 4/28/2024
2.1.258 115 4/28/2024
2.1.257 4,135 4/27/2024
2.1.256 129 4/27/2024
2.1.255 4,360 4/19/2024
2.1.254 4,055 4/18/2024
2.1.253 3,421 4/12/2024
2.1.252 1,139 4/12/2024
2.1.251 724 4/12/2024
2.1.250 857 4/12/2024
2.1.249 195 4/12/2024
2.1.248 111 4/12/2024
2.1.247 983 4/12/2024
2.1.246 302 4/12/2024
2.1.245 1,643 4/11/2024
2.1.244 3,701 4/10/2024
2.1.243 1,130 4/9/2024
2.1.242 3,154 4/2/2024
2.1.241 897 4/1/2024
2.1.240 2,072 3/29/2024
2.1.239 1,828 3/25/2024
2.1.238 293 3/25/2024
2.1.237 3,291 3/20/2024
2.1.236 2,130 3/19/2024
2.1.235 524 3/19/2024
2.1.234 2,333 3/18/2024
2.1.233 1,390 3/18/2024
2.1.232 1,371 3/15/2024
2.1.231 2,340 3/13/2024
2.1.230 1,093 3/13/2024
2.1.229 658 3/13/2024
2.1.228 758 3/13/2024
2.1.227 137 3/13/2024
2.1.226 538 3/13/2024
2.1.225 142 3/13/2024
2.1.224 149 3/13/2024
2.1.223 1,656 3/12/2024
2.1.222 2,818 3/11/2024
2.1.221 2,460 3/11/2024
2.1.220 1,616 3/10/2024
2.1.219 1,866 3/8/2024
2.1.218 1,054 3/8/2024
2.1.217 1,550 3/8/2024
2.1.216 2,068 3/6/2024
2.1.215 1,992 3/4/2024
2.1.214 1,407 3/4/2024
2.1.213 2,552 3/2/2024
2.1.212 1,206 3/2/2024
2.1.211 405 3/2/2024
2.1.210 349 3/2/2024
2.1.209 470 3/2/2024
2.1.208 3,415 2/29/2024
2.1.207 637 2/29/2024
2.1.206 337 2/29/2024
2.1.205 3,290 2/26/2024
2.1.204 1,480 2/25/2024
2.1.203 2,584 2/23/2024
2.1.202 1,887 2/22/2024
2.1.201 951 2/22/2024
2.1.200 433 2/21/2024
2.1.199 1,183 2/21/2024
2.1.198 293 2/21/2024
2.1.197 766 2/21/2024
2.1.196 132 2/21/2024
2.1.195 1,239 2/21/2024
2.1.194 407 2/21/2024
2.1.193 140 2/21/2024
2.1.192 139 2/21/2024
2.1.191 593 2/21/2024
2.1.190 119 2/21/2024
2.1.189 2,625 2/20/2024
2.1.188 718 2/20/2024
2.1.187 640 2/20/2024
2.1.186 751 2/20/2024
2.1.185 2,112 2/19/2024
2.1.184 1,866 2/17/2024
2.1.183 894 2/16/2024
2.1.182 857 2/16/2024
2.1.181 1,349 2/16/2024
2.1.180 125 2/16/2024
2.1.179 637 2/16/2024
2.1.178 135 2/16/2024
2.1.177 133 2/16/2024
2.1.176 553 2/16/2024
2.1.175 120 2/16/2024
2.1.174 3,280 2/13/2024
2.1.173 1,377 2/13/2024
2.1.172 1,081 2/13/2024
2.1.171 453 2/13/2024
2.1.170 626 2/13/2024
2.1.169 1,931 2/12/2024
2.1.168 510 2/11/2024
2.1.167 1,514 2/11/2024
2.1.166 854 2/11/2024
2.1.165 2,774 2/10/2024
2.1.164 545 2/9/2024
2.1.163 146 2/9/2024
2.1.162 1,554 2/9/2024
2.1.161 1,661 2/9/2024
2.1.160 386 2/8/2024
2.1.159 1,213 2/8/2024
2.1.158 848 2/8/2024
2.1.157 1,454 2/8/2024
2.1.156 129 2/8/2024
2.1.155 1,856 2/7/2024
2.1.154 441 2/7/2024
2.1.153 603 2/7/2024
2.1.152 1,262 2/7/2024
2.1.151 381 2/6/2024
2.1.150 137 2/6/2024
2.1.149 131 2/6/2024
2.1.148 2,765 2/5/2024
2.1.147 1,522 2/4/2024
2.1.146 2,078 2/2/2024
2.1.145 1,908 1/31/2024
2.1.144 2,127 1/29/2024
2.1.143 1,353 1/29/2024
2.1.142 346 1/29/2024
2.1.141 1,480 1/28/2024
2.1.140 457 1/28/2024
2.1.139 306 1/28/2024
2.1.138 544 1/28/2024
2.1.137 1,918 1/28/2024
2.1.136 926 1/28/2024
2.1.135 287 1/27/2024
2.1.134 927 1/27/2024
2.1.133 1,160 1/27/2024
2.1.132 1,178 1/27/2024
2.1.131 156 1/27/2024
2.1.130 697 1/27/2024
2.1.129 1,049 1/26/2024
2.1.128 220 1/26/2024
2.1.127 871 1/26/2024
2.1.126 1,117 1/26/2024
2.1.125 1,625 1/26/2024
2.1.124 885 1/25/2024
2.1.123 1,098 1/25/2024
2.1.122 453 1/25/2024
2.1.121 915 1/25/2024
2.1.120 520 1/25/2024
2.1.119 2,569 1/19/2024
2.1.118 2,213 1/15/2024
2.1.117 502 1/15/2024
2.1.116 1,219 1/15/2024
2.1.115 133 1/15/2024
2.1.114 563 1/15/2024
2.1.113 1,370 1/15/2024
2.1.112 2,541 1/14/2024
2.1.111 1,612 1/13/2024
2.1.110 1,835 1/12/2024
2.1.109 2,042 1/11/2024
2.1.108 2,637 1/7/2024
2.1.107 2,085 1/5/2024
2.1.106 487 1/5/2024
2.1.105 143 1/5/2024
2.1.104 148 1/5/2024
2.1.103 1,487 1/5/2024
2.1.102 148 1/5/2024
2.1.101 2,767 1/1/2024
2.1.100 2,215 12/28/2023
2.1.99 740 12/28/2023
2.1.98 499 12/28/2023
2.1.97 139 12/28/2023
2.1.96 135 12/28/2023
2.1.95 716 12/27/2023
2.1.94 147 12/27/2023
2.1.93 474 12/27/2023
2.1.92 142 12/27/2023
2.1.91 142 12/27/2023
2.1.90 2,218 12/25/2023
2.1.89 356 12/25/2023
2.1.88 780 12/25/2023
2.1.87 144 12/25/2023
2.1.86 638 12/25/2023
2.1.85 136 12/25/2023
2.1.84 574 12/25/2023
2.1.83 142 12/25/2023
2.1.82 1,661 12/24/2023
2.1.81 1,074 12/23/2023
2.1.80 872 12/23/2023
2.1.79 318 12/23/2023
2.1.78 559 12/23/2023
2.1.77 135 12/23/2023
2.1.76 126 12/23/2023
2.1.75 1,088 12/23/2023
2.1.74 129 12/23/2023
2.1.73 1,403 12/19/2023
2.1.72 223 12/19/2023
2.1.71 3,083 12/11/2023
2.1.70 725 12/10/2023
2.1.69 124 12/10/2023
2.1.68 491 12/10/2023
2.1.67 1,418 12/10/2023
2.1.66 372 12/9/2023
2.1.65 373 12/9/2023
2.1.64 297 12/9/2023
2.1.63 138 12/9/2023
2.1.62 269 12/9/2023
2.1.61 204 12/9/2023
2.1.60 139 12/9/2023
2.1.59 1,073 12/9/2023
2.1.58 133 12/9/2023
2.1.57 1,521 12/6/2023
2.1.56 392 12/6/2023
2.1.55 244 12/6/2023
2.1.54 273 12/6/2023
2.1.53 926 12/5/2023
2.1.52 379 12/5/2023
2.1.51 343 12/5/2023
2.1.50 384 12/5/2023
2.1.49 131 12/5/2023
2.1.48 340 12/5/2023
2.1.47 277 12/5/2023
2.1.46 130 12/4/2023
2.1.45 133 12/4/2023
2.1.44 329 12/4/2023
2.1.43 144 12/4/2023
2.1.42 1,008 12/4/2023
2.1.41 114 12/4/2023
2.1.40 1,170 11/27/2023
2.1.39 521 11/26/2023
2.1.38 215 11/26/2023
2.1.37 625 11/23/2023
2.1.36 685 11/23/2023
2.1.35 640 11/23/2023
2.1.34 132 11/23/2023
2.1.33 399 11/23/2023
2.1.32 138 11/23/2023
2.1.31 1,076 11/20/2023
2.1.30 1,054 11/20/2023
2.1.29 805 11/19/2023
2.1.28 263 11/19/2023
2.1.27 458 11/19/2023
2.1.26 507 11/19/2023
2.1.25 501 11/19/2023
2.1.24 121 11/19/2023
2.1.23 220 11/18/2023
2.1.22 978 11/18/2023
2.1.21 379 11/18/2023
2.1.20 532 11/18/2023
2.1.19 132 11/18/2023
2.1.18 306 11/18/2023
2.1.17 127 11/18/2023
2.1.16 601 11/17/2023
2.1.15 517 11/17/2023
2.1.14 126 11/17/2023
2.1.13 422 11/17/2023
2.1.12 297 11/17/2023
2.1.11 495 11/17/2023
2.1.10 127 11/17/2023
2.1.9 509 11/17/2023
2.1.8 127 11/17/2023
2.1.7 144 11/17/2023
2.1.6 334 11/17/2023
2.1.5 371 11/16/2023
2.0.101 2,072 11/15/2023
2.0.100 123 11/15/2023
2.0.99 132 11/15/2023
2.0.4 130 11/16/2023
2.0.3 134 11/16/2023
2.0.2 127 11/16/2023
2.0.1 123 11/16/2023
1.0.98 611 11/14/2023
1.0.97 750 11/13/2023
1.0.96 118 11/13/2023
1.0.95 571 11/10/2023
1.0.94 122 11/10/2023
1.0.93 935 11/9/2023
1.0.92 127 11/9/2023
1.0.91 1,045 11/7/2023
1.0.90 118 11/7/2023
1.0.89 504 11/6/2023
1.0.88 127 11/6/2023
1.0.87 596 11/3/2023
1.0.86 133 11/3/2023
1.0.85 890 11/2/2023
1.0.84 124 11/2/2023
1.0.83 604 11/1/2023
1.0.82 1,447 10/26/2023
1.0.81 1,296 10/19/2023
1.0.80 140 10/19/2023
1.0.79 775 10/18/2023
1.0.78 157 10/18/2023
1.0.77 728 10/17/2023
1.0.76 145 10/17/2023
1.0.75 650 10/16/2023
1.0.74 150 10/16/2023
1.0.73 698 10/13/2023
1.0.72 335 10/12/2023
1.0.71 1,733 9/20/2023
1.0.70 672 9/19/2023
1.0.69 680 9/18/2023
1.0.68 142 9/18/2023
1.0.67 890 9/14/2023
1.0.66 1,503 8/31/2023
1.0.65 149 8/31/2023
1.0.64 804 8/30/2023
1.0.63 158 8/30/2023
1.0.62 163 8/30/2023
1.0.61 838 8/28/2023
1.0.60 692 8/25/2023
1.0.59 151 8/25/2023
1.0.58 490 8/24/2023
1.0.57 1,445 8/21/2023
1.0.56 826 8/18/2023
1.0.55 747 8/17/2023
1.0.54 155 8/17/2023
1.0.53 1,897 8/10/2023
1.0.52 563 8/9/2023
1.0.51 671 8/8/2023
1.0.50 653 8/7/2023
1.0.49 179 8/7/2023
1.0.48 2,453 7/13/2023
1.0.47 886 7/11/2023
1.0.46 721 7/10/2023
1.0.45 686 7/7/2023
1.0.44 173 7/7/2023
1.0.43 2,108 6/30/2023
1.0.42 1,055 6/29/2023
1.0.41 596 6/28/2023
1.0.40 1,534 6/26/2023
1.0.39 780 6/23/2023
1.0.38 1,088 6/21/2023
1.0.37 1,446 6/15/2023
1.0.36 479 6/14/2023
1.0.35 1,797 6/9/2023
1.0.34 826 6/8/2023
1.0.33 1,627 6/7/2023
1.0.32 177 6/7/2023
1.0.31 1,220 6/6/2023
1.0.30 1,179 6/5/2023
1.0.29 1,353 6/2/2023
1.0.28 164 6/2/2023
1.0.27 1,249 6/1/2023
1.0.26 604 5/31/2023
1.0.25 488 5/31/2023
1.0.24 171 5/31/2023
1.0.23 1,467 5/30/2023
1.0.22 1,522 5/26/2023
1.0.21 680 5/25/2023
1.0.20 157 5/25/2023
1.0.19 835 5/24/2023
1.0.18 165 5/24/2023
1.0.17 454 5/23/2023
1.0.13 1,473 5/22/2023
1.0.12 1,194 5/18/2023
1.0.11 598 5/17/2023
1.0.10 1,557 5/1/2023
1.0.9 1,030 4/25/2023
1.0.8 481 4/24/2023
1.0.7 1,004 4/21/2023
1.0.6 1,964 4/13/2023
1.0.5 602 4/12/2023
1.0.4 1,023 4/8/2023
1.0.3 196 4/8/2023
1.0.2 595 4/8/2023
1.0.1 201 4/8/2023