Soenneker.Utils.SingletonDictionary 3.0.1091

Prefix Reserved
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.1091
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1091
                    
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.1091" />
                    
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.1091" />
                    
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.1091
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1091"
                    
#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.1091
                    
Install Soenneker.Utils.SingletonDictionary as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1091
                    
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.1091 10,120 6/10/2025
3.0.1090 17,044 5/27/2025
3.0.1089 878 5/27/2025
3.0.1088 949 5/27/2025
3.0.1087 2,275 5/27/2025
3.0.1086 13,770 5/23/2025
3.0.1085 1,242 5/23/2025
3.0.1084 1,200 5/23/2025
3.0.1083 1,217 5/23/2025
3.0.1082 241 5/22/2025
3.0.1081 9,409 5/18/2025
3.0.1079 1,409 5/18/2025
3.0.1078 1,361 5/18/2025
3.0.1077 3,966 5/14/2025
3.0.1076 8,969 5/8/2025
3.0.1075 278 5/8/2025
3.0.1074 575 5/8/2025
3.0.1073 1,085 5/7/2025
3.0.1072 12,962 5/5/2025
3.0.1071 853 5/5/2025
3.0.1070 1,547 5/5/2025
3.0.1069 714 5/5/2025
3.0.1068 228 5/5/2025
3.0.1067 140 5/5/2025
3.0.1066 18,051 4/9/2025
3.0.1065 264 4/9/2025
3.0.1064 1,061 4/8/2025
3.0.1063 2,195 4/8/2025
3.0.1062 3,009 4/8/2025
3.0.1061 194 4/8/2025
3.0.1060 165 4/8/2025
3.0.1059 192 4/8/2025
3.0.1058 156 4/8/2025
3.0.1057 861 4/8/2025
3.0.1056 286 4/8/2025
3.0.1055 6,398 4/8/2025
3.0.1054 656 4/8/2025
3.0.1053 3,279 4/7/2025
3.0.1052 713 4/7/2025
3.0.1051 165 4/7/2025
3.0.1050 595 4/7/2025
3.0.1049 166 4/7/2025
3.0.1048 6,773 4/7/2025
3.0.1047 169 4/7/2025
3.0.1046 9,329 4/7/2025
3.0.1045 161 4/7/2025
3.0.1044 1,378 4/7/2025
3.0.1043 162 4/7/2025
3.0.1042 1,623 4/7/2025
3.0.1041 935 4/6/2025
3.0.1040 291 4/6/2025
3.0.1039 165 4/6/2025
3.0.1038 1,059 4/6/2025
3.0.1037 163 4/6/2025
3.0.1036 402 4/6/2025
3.0.1035 1,184 4/6/2025
3.0.1034 142 4/6/2025
3.0.1033 2,052 4/6/2025
3.0.1032 102 4/6/2025
3.0.1031 154 4/6/2025
3.0.1030 116 4/6/2025
3.0.1029 1,607 4/5/2025
3.0.1028 175 4/5/2025
3.0.1027 1,151 4/5/2025
3.0.1026 1,209 4/5/2025
3.0.1025 1,051 4/5/2025
3.0.1024 638 4/5/2025
3.0.1023 541 4/5/2025
3.0.1022 114 4/5/2025
3.0.1021 1,274 4/4/2025
3.0.1020 6,957 4/4/2025
3.0.1019 23,319 4/4/2025
3.0.1018 6,635 4/1/2025
3.0.1017 2,614 4/1/2025
3.0.1016 160 4/1/2025
3.0.1015 5,383 4/1/2025
3.0.1014 2,332 3/31/2025
3.0.1013 367 3/31/2025
3.0.1012 3,892 3/31/2025
3.0.1011 6,716 3/29/2025
3.0.1010 1,052 3/29/2025
3.0.1009 1,395 3/29/2025
3.0.1008 99 3/29/2025
3.0.1007 4,300 3/27/2025
3.0.1006 3,822 3/25/2025
3.0.1005 595 3/25/2025
3.0.1004 3,078 3/25/2025
3.0.1003 6,017 3/21/2025
3.0.1002 2,532 3/21/2025
3.0.1001 7,273 3/18/2025
3.0.1000 3,374 3/18/2025
3.0.999 6,315 3/15/2025
3.0.998 1,763 3/15/2025
3.0.997 70 3/15/2025
3.0.996 6,022 3/12/2025
3.0.995 2,144 3/12/2025
3.0.994 166 3/12/2025
3.0.993 385 3/12/2025
3.0.992 151 3/12/2025
3.0.991 2,679 3/11/2025
3.0.990 161 3/11/2025
3.0.989 1,263 3/11/2025
3.0.988 167 3/11/2025
3.0.987 2,547 3/11/2025
3.0.986 168 3/11/2025
3.0.985 2,633 3/11/2025
3.0.984 156 3/11/2025
3.0.983 1,608 3/11/2025
3.0.982 166 3/11/2025
3.0.981 8,841 3/7/2025
3.0.980 2,587 3/7/2025
3.0.979 6,137 3/2/2025
3.0.978 1,029 3/2/2025
3.0.977 639 3/2/2025
3.0.976 109 3/2/2025
3.0.975 4,294 3/2/2025
3.0.974 101 3/2/2025
3.0.973 3,159 3/1/2025
3.0.972 95 3/1/2025
3.0.971 4,261 3/1/2025
3.0.970 117 3/1/2025
3.0.969 98 3/1/2025
3.0.968 398 3/1/2025
3.0.967 97 3/1/2025
3.0.966 5,780 3/1/2025
3.0.965 4,749 2/26/2025
3.0.964 813 2/26/2025
3.0.963 2,308 2/25/2025
3.0.962 92 2/25/2025
3.0.961 837 2/25/2025
3.0.960 93 2/25/2025
3.0.959 121 2/25/2025
3.0.958 1,820 2/25/2025
3.0.957 4,810 2/24/2025
3.0.956 4,456 2/23/2025
3.0.955 1,072 2/22/2025
3.0.954 96 2/22/2025
3.0.953 7,525 2/22/2025
3.0.952 2,180 2/22/2025
3.0.951 1,040 2/22/2025
3.0.950 753 2/22/2025
3.0.949 134 2/22/2025
3.0.948 111 2/22/2025
3.0.947 97 2/22/2025
3.0.946 4,602 2/21/2025
3.0.945 99 2/21/2025
3.0.944 5,467 2/21/2025
3.0.943 4,522 2/19/2025
3.0.942 1,602 2/19/2025
3.0.941 714 2/19/2025
3.0.940 101 2/19/2025
3.0.939 395 2/18/2025
3.0.938 101 2/18/2025
3.0.937 5,430 2/18/2025
3.0.936 101 2/18/2025
3.0.935 2,791 2/18/2025
3.0.934 6,601 2/16/2025
3.0.933 1,516 2/14/2025
3.0.932 801 2/14/2025
3.0.931 699 2/13/2025
3.0.930 2,366 2/13/2025
3.0.929 273 2/13/2025
3.0.928 3,660 2/13/2025
3.0.927 3,777 2/12/2025
3.0.926 1,449 2/12/2025
3.0.925 145 2/12/2025
3.0.924 100 2/12/2025
3.0.923 1,990 2/12/2025
3.0.922 335 2/12/2025
3.0.921 111 2/12/2025
3.0.920 181 2/12/2025
3.0.919 184 2/12/2025
3.0.918 106 2/12/2025
3.0.917 162 2/11/2025
3.0.916 3,370 2/11/2025
3.0.915 3,649 2/11/2025
3.0.914 2,166 2/11/2025
3.0.913 112 2/11/2025
3.0.912 390 2/11/2025
3.0.911 1,712 2/10/2025
3.0.910 110 2/10/2025
3.0.909 774 2/10/2025
3.0.908 110 2/10/2025
3.0.907 6,293 2/10/2025
3.0.906 108 2/10/2025
3.0.905 1,152 2/9/2025
3.0.904 5,586 2/9/2025
3.0.903 103 2/9/2025
3.0.902 7,087 2/8/2025
3.0.901 111 2/8/2025
3.0.900 1,667 2/7/2025
3.0.899 99 2/7/2025
3.0.898 1,569 2/7/2025
3.0.897 106 2/7/2025
3.0.896 632 2/7/2025
3.0.895 408 2/7/2025
3.0.894 114 2/7/2025
3.0.893 321 2/7/2025
3.0.892 101 2/7/2025
3.0.891 1,025 2/7/2025
3.0.890 101 2/7/2025
3.0.889 110 2/7/2025
3.0.888 10,549 2/7/2025
3.0.887 6,151 2/5/2025
3.0.886 593 2/5/2025
3.0.885 885 2/5/2025
3.0.884 281 2/5/2025
3.0.883 975 2/5/2025
3.0.882 649 2/5/2025
3.0.881 2,900 2/5/2025
3.0.880 108 2/5/2025
3.0.879 10,719 1/28/2025
3.0.878 631 1/28/2025
3.0.877 1,726 1/28/2025
3.0.876 218 1/28/2025
3.0.875 3,637 1/28/2025
3.0.874 619 1/27/2025
3.0.873 90 1/27/2025
3.0.872 178 1/27/2025
3.0.871 259 1/27/2025
3.0.870 93 1/27/2025
3.0.869 4,689 1/27/2025
3.0.868 4,351 1/26/2025
3.0.867 914 1/26/2025
3.0.866 172 1/26/2025
3.0.865 997 1/26/2025
3.0.864 1,302 1/25/2025
3.0.863 100 1/25/2025
3.0.862 5,503 1/25/2025
3.0.861 945 1/25/2025
3.0.860 289 1/25/2025
3.0.859 97 1/25/2025
3.0.858 1,778 1/25/2025
3.0.857 1,244 1/25/2025
3.0.856 6,370 1/24/2025
3.0.855 1,460 1/24/2025
3.0.854 88 1/24/2025
3.0.853 1,902 1/24/2025
3.0.852 308 1/24/2025
3.0.851 201 1/24/2025
3.0.850 2,997 1/24/2025
3.0.849 96 1/24/2025
3.0.848 474 1/23/2025
3.0.847 95 1/23/2025
3.0.846 554 1/23/2025
3.0.845 91 1/23/2025
3.0.844 7,545 1/22/2025
3.0.843 959 1/21/2025
3.0.842 937 1/21/2025
3.0.841 553 1/21/2025
3.0.840 97 1/21/2025
3.0.839 579 1/21/2025
3.0.838 717 1/21/2025
3.0.837 5,213 1/21/2025
3.0.836 524 1/21/2025
3.0.835 983 1/21/2025
3.0.834 103 1/21/2025
3.0.833 780 1/21/2025
3.0.832 94 1/21/2025
3.0.831 2,069 1/21/2025
3.0.830 87 1/21/2025
3.0.829 376 1/20/2025
3.0.828 2,678 1/20/2025
3.0.827 227 1/20/2025
3.0.826 1,956 1/20/2025
3.0.825 97 1/20/2025
3.0.824 1,039 1/20/2025
3.0.823 97 1/20/2025
3.0.822 108 1/20/2025
3.0.821 95 1/20/2025
3.0.820 343 1/20/2025
3.0.819 98 1/20/2025
3.0.818 97 1/20/2025
3.0.817 5,374 1/19/2025
3.0.816 101 1/19/2025
3.0.815 4,973 1/19/2025
3.0.814 1,542 1/19/2025
3.0.813 113 1/19/2025
3.0.812 367 1/19/2025
3.0.811 90 1/19/2025
3.0.810 1,795 1/19/2025
3.0.809 92 1/19/2025
3.0.808 3,092 1/18/2025
3.0.807 97 1/18/2025
3.0.806 6,873 1/17/2025
3.0.805 107 1/17/2025
3.0.804 574 1/17/2025
3.0.803 891 1/17/2025
3.0.802 3,988 1/16/2025
3.0.801 1,385 1/16/2025
3.0.800 1,999 1/16/2025
3.0.799 529 1/16/2025
3.0.798 1,149 1/16/2025
3.0.797 985 1/16/2025
3.0.796 86 1/16/2025
3.0.795 4,374 1/15/2025
3.0.794 89 1/15/2025
3.0.793 2,692 1/15/2025
3.0.792 92 1/15/2025
3.0.791 134 1/15/2025
3.0.790 3,172 1/15/2025
3.0.789 82 1/15/2025
3.0.788 2,661 1/15/2025
3.0.787 66 1/15/2025
3.0.786 427 1/15/2025
3.0.785 65 1/15/2025
3.0.784 1,542 1/15/2025
3.0.783 67 1/15/2025
3.0.782 208 1/14/2025
3.0.781 79 1/14/2025
3.0.780 86 1/14/2025
3.0.779 2,942 1/14/2025
3.0.778 511 1/14/2025
3.0.777 80 1/14/2025
3.0.776 1,175 1/14/2025
3.0.775 82 1/14/2025
3.0.774 4,958 1/13/2025
3.0.773 1,526 1/13/2025
3.0.772 1,292 1/13/2025
3.0.771 85 1/13/2025
3.0.770 4,830 1/11/2025
3.0.769 1,944 1/11/2025
3.0.768 114 1/11/2025
3.0.767 2,054 1/11/2025
3.0.766 99 1/11/2025
3.0.765 1,659 1/10/2025
3.0.764 1,798 1/10/2025
3.0.763 99 1/10/2025
3.0.762 754 1/10/2025
3.0.761 99 1/10/2025
3.0.760 95 1/10/2025
3.0.759 6,241 1/3/2025
3.0.758 460 1/3/2025
3.0.757 977 1/3/2025
3.0.756 125 1/3/2025
3.0.755 1,411 1/3/2025
3.0.754 106 1/3/2025
3.0.753 1,052 1/3/2025
3.0.752 1,015 1/2/2025
3.0.751 104 1/2/2025
3.0.750 1,699 1/2/2025
3.0.749 119 1/2/2025
3.0.748 2,824 1/2/2025
3.0.747 102 1/2/2025
3.0.746 109 1/2/2025
3.0.745 4,646 1/1/2025
3.0.744 994 1/1/2025
3.0.743 269 1/1/2025
3.0.742 117 1/1/2025
3.0.741 1,460 1/1/2025
3.0.740 110 1/1/2025
3.0.739 115 1/1/2025
3.0.738 118 1/1/2025
3.0.737 315 12/31/2024
3.0.736 117 12/31/2024
3.0.735 125 12/31/2024
3.0.734 612 12/31/2024
3.0.733 126 12/31/2024
3.0.732 4,546 12/31/2024
3.0.731 120 12/31/2024
3.0.730 4,352 12/31/2024
3.0.729 100 12/31/2024
3.0.728 2,570 12/31/2024
3.0.727 330 12/31/2024
3.0.726 106 12/31/2024
3.0.725 1,318 12/31/2024
3.0.724 105 12/31/2024
3.0.723 8,853 12/28/2024
3.0.722 1,121 12/28/2024
3.0.721 1,219 12/27/2024
3.0.720 112 12/27/2024
3.0.719 2,679 12/27/2024
3.0.718 4,883 12/24/2024
3.0.717 1,241 12/24/2024
3.0.716 936 12/24/2024
3.0.715 803 12/24/2024
3.0.714 1,375 12/24/2024
3.0.713 91 12/24/2024
3.0.712 2,249 12/24/2024
3.0.711 642 12/24/2024
3.0.710 101 12/24/2024
3.0.709 456 12/24/2024
3.0.708 971 12/24/2024
3.0.707 252 12/24/2024
3.0.706 123 12/24/2024
3.0.705 1,048 12/24/2024
3.0.704 101 12/24/2024
3.0.703 1,784 12/23/2024
3.0.702 2,746 12/23/2024
3.0.701 107 12/23/2024
3.0.700 666 12/23/2024
3.0.699 102 12/23/2024
3.0.698 1,830 12/23/2024
3.0.697 103 12/23/2024
3.0.696 1,446 12/23/2024
3.0.695 112 12/23/2024
3.0.694 440 12/22/2024
3.0.693 1,390 12/22/2024
3.0.692 3,991 12/22/2024
3.0.691 108 12/22/2024
3.0.690 1,549 12/22/2024
3.0.689 157 12/22/2024
3.0.688 467 12/22/2024
3.0.687 100 12/22/2024
3.0.686 262 12/22/2024
3.0.685 104 12/22/2024
3.0.684 6,756 12/22/2024
3.0.683 99 12/22/2024
3.0.682 1,065 12/21/2024
3.0.681 264 12/21/2024
3.0.680 106 12/21/2024
3.0.679 485 12/21/2024
3.0.678 770 12/21/2024
3.0.677 99 12/21/2024
3.0.676 3,773 12/21/2024
3.0.675 384 12/21/2024
3.0.674 100 12/21/2024
3.0.673 2,529 12/21/2024
3.0.672 679 12/21/2024
3.0.671 106 12/21/2024
3.0.670 1,576 12/20/2024
3.0.669 111 12/20/2024
3.0.668 102 12/20/2024
3.0.667 3,684 12/20/2024
3.0.666 1,135 12/20/2024
3.0.665 215 12/20/2024
3.0.664 3,444 12/19/2024
3.0.663 424 12/19/2024
3.0.662 2,014 12/18/2024
3.0.661 107 12/18/2024
3.0.660 6,576 12/17/2024
3.0.659 210 12/17/2024
3.0.658 689 12/16/2024
3.0.657 112 12/16/2024
3.0.656 140 12/16/2024
3.0.655 99 12/16/2024
3.0.654 6,473 12/10/2024
3.0.653 996 12/10/2024
3.0.652 381 12/9/2024
3.0.651 104 12/9/2024
3.0.650 2,668 12/9/2024
3.0.649 1,368 12/9/2024
3.0.648 100 12/9/2024
3.0.647 3,624 12/9/2024
3.0.646 2,730 12/6/2024
3.0.645 425 12/6/2024
3.0.644 109 12/6/2024
3.0.643 688 12/6/2024
3.0.641 3,874 12/6/2024
3.0.640 2,442 12/6/2024
3.0.639 5,273 12/6/2024
3.0.637 373 12/6/2024
3.0.636 2,520 12/5/2024
3.0.635 3,566 12/5/2024
3.0.634 3,170 12/5/2024
3.0.633 103 12/5/2024
3.0.632 1,738 12/5/2024
3.0.631 1,030 12/5/2024
3.0.630 108 12/5/2024
3.0.629 378 12/5/2024
3.0.628 102 12/5/2024
3.0.627 148 12/5/2024
3.0.626 102 12/5/2024
3.0.625 3,358 12/4/2024
3.0.624 101 12/4/2024
3.0.623 113 12/4/2024
3.0.622 109 12/4/2024
3.0.621 1,714 12/4/2024
3.0.620 298 12/4/2024
3.0.619 411 12/4/2024
3.0.618 3,365 12/3/2024
3.0.617 110 12/3/2024
3.0.616 1,123 12/3/2024
3.0.615 441 12/3/2024
3.0.614 115 12/3/2024
3.0.613 117 12/3/2024
3.0.612 4,033 12/3/2024
3.0.611 105 12/3/2024
3.0.610 3,291 12/3/2024
3.0.609 97 12/3/2024
3.0.608 3,069 12/2/2024
3.0.607 2,653 12/2/2024
3.0.606 1,622 12/2/2024
3.0.605 274 12/2/2024
3.0.604 109 12/2/2024
3.0.603 398 12/2/2024
3.0.602 3,448 12/1/2024
3.0.601 109 12/1/2024
3.0.600 1,880 12/1/2024
3.0.599 195 12/1/2024
3.0.598 3,456 12/1/2024
3.0.597 114 12/1/2024
3.0.596 3,564 11/29/2024
3.0.595 1,049 11/29/2024
3.0.594 5,760 11/21/2024
3.0.593 296 11/21/2024
3.0.592 4,519 11/20/2024
3.0.591 338 11/20/2024
3.0.590 111 11/20/2024
3.0.589 112 11/20/2024
3.0.588 423 11/20/2024
3.0.587 154 11/20/2024
3.0.586 101 11/20/2024
3.0.585 2,028 11/20/2024
3.0.584 2,757 11/19/2024
3.0.583 100 11/19/2024
3.0.582 639 11/19/2024
3.0.581 101 11/19/2024
3.0.580 2,676 11/19/2024
3.0.579 98 11/19/2024
3.0.578 1,314 11/19/2024
3.0.577 108 11/19/2024
3.0.576 8,518 11/14/2024
3.0.575 137 11/14/2024
3.0.574 508 11/14/2024
3.0.573 2,377 11/14/2024
3.0.572 722 11/14/2024
3.0.571 116 11/14/2024
3.0.570 113 11/14/2024
3.0.569 4,149 11/14/2024
3.0.568 115 11/14/2024
3.0.567 111 11/14/2024
3.0.566 3,488 11/14/2024
3.0.565 111 11/14/2024
3.0.564 110 11/14/2024
3.0.563 109 11/14/2024
2.1.562 8,463 11/13/2024
2.1.561 1,377 11/13/2024
2.1.560 3,058 11/13/2024
2.1.559 116 11/13/2024
2.1.558 1,335 11/12/2024
2.1.557 401 11/12/2024
2.1.556 8,249 11/9/2024
2.1.555 364 11/9/2024
2.1.554 108 11/9/2024
2.1.553 1,735 11/9/2024
2.1.552 108 11/9/2024
2.1.551 962 11/8/2024
2.1.550 111 11/8/2024
2.1.549 109 11/8/2024
2.1.548 112 11/8/2024
2.1.547 425 11/8/2024
2.1.546 1,897 11/8/2024
2.1.545 106 11/8/2024
2.1.544 5,465 11/8/2024
2.1.543 104 11/8/2024
2.1.542 11,655 11/1/2024
2.1.541 460 11/1/2024
2.1.540 6,779 10/29/2024
2.1.539 740 10/29/2024
2.1.538 2,837 10/29/2024
2.1.537 629 10/29/2024
2.1.536 5,559 10/28/2024
2.1.535 1,856 10/28/2024
2.1.534 4,012 10/26/2024
2.1.533 705 10/26/2024
2.1.532 9,296 10/22/2024
2.1.531 255 10/22/2024
2.1.530 550 10/22/2024
2.1.529 882 10/22/2024
2.1.528 98 10/22/2024
2.1.527 495 10/22/2024
2.1.526 6,504 10/18/2024
2.1.525 1,090 10/17/2024
2.1.524 4,154 10/15/2024
2.1.523 1,598 10/15/2024
2.1.522 102 10/14/2024
2.1.521 5,130 10/12/2024
2.1.520 652 10/11/2024
2.1.519 105 10/11/2024
2.1.518 477 10/11/2024
2.1.517 2,935 10/11/2024
2.1.516 6,403 10/9/2024
2.1.515 383 10/9/2024
2.1.514 102 10/9/2024
2.1.513 1,977 10/8/2024
2.1.512 150 10/8/2024
2.1.511 2,223 10/8/2024
2.1.510 147 10/8/2024
2.1.509 99 10/8/2024
2.1.508 3,941 10/8/2024
2.1.507 6,226 10/3/2024
2.1.506 107 10/3/2024
2.1.505 1,104 10/3/2024
2.1.504 1,928 10/3/2024
2.1.503 1,420 10/3/2024
2.1.502 5,728 10/2/2024
2.1.501 105 10/2/2024
2.1.500 1,818 10/2/2024
2.1.499 1,006 10/2/2024
2.1.498 4,176 10/1/2024
2.1.497 708 10/1/2024
2.1.496 117 10/1/2024
2.1.495 2,623 10/1/2024
2.1.494 109 10/1/2024
2.1.493 149 10/1/2024
2.1.492 5,430 9/29/2024
2.1.491 1,381 9/29/2024
2.1.490 109 9/29/2024
2.1.489 1,224 9/29/2024
2.1.488 114 9/29/2024
2.1.487 2,515 9/29/2024
2.1.486 5,232 9/27/2024
2.1.485 779 9/27/2024
2.1.484 3,132 9/27/2024
2.1.483 118 9/27/2024
2.1.482 448 9/27/2024
2.1.481 2,158 9/27/2024
2.1.480 3,165 9/26/2024
2.1.479 3,483 9/26/2024
2.1.478 2,355 9/26/2024
2.1.477 2,167 9/26/2024
2.1.476 3,806 9/26/2024
2.1.475 109 9/26/2024
2.1.474 5,606 9/23/2024
2.1.473 1,296 9/23/2024
2.1.472 952 9/23/2024
2.1.471 1,148 9/23/2024
2.1.470 110 9/23/2024
2.1.469 1,550 9/23/2024
2.1.468 104 9/23/2024
2.1.467 4,667 9/23/2024
2.1.466 110 9/23/2024
2.1.465 722 9/23/2024
2.1.464 120 9/23/2024
2.1.463 104 9/23/2024
2.1.462 891 9/23/2024
2.1.461 9,244 9/18/2024
2.1.460 256 9/17/2024
2.1.459 1,205 9/17/2024
2.1.458 1,715 9/17/2024
2.1.457 109 9/17/2024
2.1.456 1,805 9/17/2024
2.1.455 465 9/17/2024
2.1.454 3,283 9/17/2024
2.1.453 558 9/17/2024
2.1.452 202 9/17/2024
2.1.451 2,655 9/17/2024
2.1.450 7,455 9/16/2024
2.1.449 720 9/16/2024
2.1.448 5,032 9/12/2024
2.1.447 2,922 9/12/2024
2.1.446 1,318 9/11/2024
2.1.445 1,537 9/11/2024
2.1.443 3,720 9/11/2024
2.1.442 1,001 9/11/2024
2.1.441 964 9/11/2024
2.1.440 2,315 9/11/2024
2.1.439 8,091 9/10/2024
2.1.438 132 9/10/2024
2.1.437 1,155 9/10/2024
2.1.436 125 9/10/2024
2.1.434 2,924 9/10/2024
2.1.433 608 9/9/2024
2.1.432 2,013 9/9/2024
2.1.430 1,553 9/9/2024
2.1.428 146 9/9/2024
2.1.427 470 9/9/2024
2.1.426 13,251 9/7/2024
2.1.425 138 9/7/2024
2.1.424 5,014 9/6/2024
2.1.423 377 9/6/2024
2.1.422 2,211 9/6/2024
2.1.421 123 9/5/2024
2.1.420 134 9/5/2024
2.1.419 2,394 9/5/2024
2.1.418 1,158 9/5/2024
2.1.417 133 9/5/2024
2.1.416 1,152 9/5/2024
2.1.415 443 9/5/2024
2.1.414 128 9/5/2024
2.1.413 5,044 9/5/2024
2.1.412 206 9/5/2024
2.1.411 132 9/5/2024
2.1.410 2,268 9/4/2024
2.1.409 8,014 9/3/2024
2.1.408 116 9/3/2024
2.1.407 111 9/3/2024
2.1.406 4,013 9/3/2024
2.1.405 160 9/3/2024
2.1.404 2,487 9/3/2024
2.1.403 5,288 8/29/2024
2.1.402 2,553 8/29/2024
2.1.401 2,892 8/26/2024
2.1.400 117 8/26/2024
2.1.399 4,945 8/21/2024
2.1.398 616 8/21/2024
2.1.397 139 8/21/2024
2.1.396 2,557 8/21/2024
2.1.395 154 8/20/2024
2.1.394 148 8/20/2024
2.1.393 484 8/20/2024
2.1.392 2,965 8/20/2024
2.1.391 425 8/20/2024
2.1.390 124 8/20/2024
2.1.389 2,655 8/20/2024
2.1.388 128 8/20/2024
2.1.387 1,212 8/20/2024
2.1.386 2,903 8/19/2024
2.1.385 4,778 8/15/2024
2.1.384 2,119 8/15/2024
2.1.383 4,814 8/14/2024
2.1.382 162 8/13/2024
2.1.381 5,699 8/7/2024
2.1.380 282 8/6/2024
2.1.379 2,692 8/6/2024
2.1.378 4,933 8/1/2024
2.1.377 341 8/1/2024
2.1.376 108 8/1/2024
2.1.374 1,143 8/1/2024
2.1.373 5,801 7/25/2024
2.1.372 103 7/25/2024
2.1.371 732 7/25/2024
2.1.370 314 7/25/2024
2.1.369 365 7/25/2024
2.1.368 189 7/25/2024
2.1.367 392 7/24/2024
2.1.366 150 7/24/2024
2.1.365 212 7/24/2024
2.1.364 321 7/24/2024
2.1.363 8,524 7/20/2024
2.1.362 1,458 7/20/2024
2.1.361 5,013 7/14/2024
2.1.360 1,554 7/14/2024
2.1.359 110 7/14/2024
2.1.358 1,504 7/14/2024
2.1.357 4,323 7/10/2024
2.1.355 802 7/10/2024
2.1.354 1,187 7/10/2024
2.1.353 127 7/10/2024
2.1.352 1,909 7/10/2024
2.1.351 131 7/10/2024
2.1.350 117 7/10/2024
2.1.349 184 7/10/2024
2.1.348 117 7/10/2024
2.1.347 2,052 7/10/2024
2.1.346 132 7/10/2024
2.1.345 816 7/10/2024
2.1.344 117 7/10/2024
2.1.343 217 7/9/2024
2.1.342 104 7/9/2024
2.1.339 1,979 7/9/2024
2.1.338 495 7/9/2024
2.1.337 4,013 7/9/2024
2.1.336 1,075 7/9/2024
2.1.335 125 7/9/2024
2.1.334 2,586 7/9/2024
2.1.333 121 7/9/2024
2.1.332 8,782 7/9/2024
2.1.331 110 7/9/2024
2.1.330 2,506 7/9/2024
2.1.329 106 7/9/2024
2.1.328 1,070 7/9/2024
2.1.327 717 7/8/2024
2.1.326 967 7/8/2024
2.1.325 131 7/8/2024
2.1.324 128 7/8/2024
2.1.323 4,849 7/8/2024
2.1.322 1,629 7/8/2024
2.1.321 132 7/8/2024
2.1.320 2,281 7/7/2024
2.1.319 133 7/7/2024
2.1.318 138 7/7/2024
2.1.317 122 7/7/2024
2.1.316 1,155 7/7/2024
2.1.315 2,171 7/7/2024
2.1.314 1,866 7/7/2024
2.1.313 224 7/7/2024
2.1.312 3,391 7/5/2024
2.1.311 3,872 7/3/2024
2.1.310 3,038 7/3/2024
2.1.309 394 7/3/2024
2.1.308 3,905 7/2/2024
2.1.307 1,861 6/30/2024
2.1.306 2,249 6/28/2024
2.1.305 5,390 6/22/2024
2.1.304 4,860 6/15/2024
2.1.303 4,085 6/14/2024
2.1.302 5,876 6/1/2024
2.1.301 1,587 6/1/2024
2.1.300 585 6/1/2024
2.1.299 5,809 5/31/2024
2.1.298 3,694 5/29/2024
2.1.297 3,026 5/28/2024
2.1.296 2,461 5/27/2024
2.1.295 4,814 5/26/2024
2.1.294 2,013 5/26/2024
2.1.293 486 5/26/2024
2.1.292 2,499 5/25/2024
2.1.291 1,377 5/25/2024
2.1.290 138 5/25/2024
2.1.289 130 5/25/2024
2.1.288 686 5/25/2024
2.1.287 127 5/25/2024
2.1.286 407 5/25/2024
2.1.285 140 5/25/2024
2.1.284 128 5/25/2024
2.1.283 7,391 5/23/2024
2.1.282 531 5/23/2024
2.1.281 274 5/22/2024
2.1.280 3,630 5/22/2024
2.1.279 121 5/22/2024
2.1.278 135 5/22/2024
2.1.277 139 5/22/2024
2.1.276 2,117 5/22/2024
2.1.275 3,414 5/18/2024
2.1.274 1,890 5/18/2024
2.1.273 1,803 5/17/2024
2.1.272 119 5/17/2024
2.1.271 2,719 5/16/2024
2.1.270 439 5/15/2024
2.1.269 2,740 5/15/2024
2.1.268 4,441 5/12/2024
2.1.267 2,737 5/3/2024
2.1.266 1,141 4/30/2024
2.1.265 1,752 4/29/2024
2.1.264 1,909 4/29/2024
2.1.263 2,645 4/28/2024
2.1.262 1,479 4/28/2024
2.1.261 1,102 4/28/2024
2.1.260 1,748 4/28/2024
2.1.259 907 4/28/2024
2.1.258 121 4/28/2024
2.1.257 4,139 4/27/2024
2.1.256 135 4/27/2024
2.1.255 4,364 4/19/2024
2.1.254 4,062 4/18/2024
2.1.253 3,425 4/12/2024
2.1.252 1,146 4/12/2024
2.1.251 728 4/12/2024
2.1.250 865 4/12/2024
2.1.249 203 4/12/2024
2.1.248 115 4/12/2024
2.1.247 987 4/12/2024
2.1.246 311 4/12/2024
2.1.245 1,647 4/11/2024
2.1.244 3,710 4/10/2024
2.1.243 1,138 4/9/2024
2.1.242 3,158 4/2/2024
2.1.241 905 4/1/2024
2.1.240 2,079 3/29/2024
2.1.239 1,837 3/25/2024
2.1.238 304 3/25/2024
2.1.237 3,302 3/20/2024
2.1.236 2,134 3/19/2024
2.1.235 528 3/19/2024
2.1.234 2,341 3/18/2024
2.1.233 1,399 3/18/2024
2.1.232 1,381 3/15/2024
2.1.231 2,344 3/13/2024
2.1.230 1,103 3/13/2024
2.1.229 662 3/13/2024
2.1.228 764 3/13/2024
2.1.227 141 3/13/2024
2.1.226 542 3/13/2024
2.1.225 148 3/13/2024
2.1.224 154 3/13/2024
2.1.223 1,660 3/12/2024
2.1.222 2,828 3/11/2024
2.1.221 2,467 3/11/2024
2.1.220 1,628 3/10/2024
2.1.219 1,878 3/8/2024
2.1.218 1,060 3/8/2024
2.1.217 1,556 3/8/2024
2.1.216 2,079 3/6/2024
2.1.215 1,998 3/4/2024
2.1.214 1,414 3/4/2024
2.1.213 2,558 3/2/2024
2.1.212 1,215 3/2/2024
2.1.211 413 3/2/2024
2.1.210 355 3/2/2024
2.1.209 479 3/2/2024
2.1.208 3,425 2/29/2024
2.1.207 643 2/29/2024
2.1.206 343 2/29/2024
2.1.205 3,297 2/26/2024
2.1.204 1,487 2/25/2024
2.1.203 2,588 2/23/2024
2.1.202 1,895 2/22/2024
2.1.201 958 2/22/2024
2.1.200 439 2/21/2024
2.1.199 1,189 2/21/2024
2.1.198 298 2/21/2024
2.1.197 770 2/21/2024
2.1.196 136 2/21/2024
2.1.195 1,248 2/21/2024
2.1.194 412 2/21/2024
2.1.193 145 2/21/2024
2.1.192 145 2/21/2024
2.1.191 597 2/21/2024
2.1.190 124 2/21/2024
2.1.189 2,629 2/20/2024
2.1.188 723 2/20/2024
2.1.187 646 2/20/2024
2.1.186 757 2/20/2024
2.1.185 2,117 2/19/2024
2.1.184 1,874 2/17/2024
2.1.183 900 2/16/2024
2.1.182 861 2/16/2024
2.1.181 1,356 2/16/2024
2.1.180 134 2/16/2024
2.1.179 644 2/16/2024
2.1.178 142 2/16/2024
2.1.177 138 2/16/2024
2.1.176 559 2/16/2024
2.1.175 124 2/16/2024
2.1.174 3,288 2/13/2024
2.1.173 1,382 2/13/2024
2.1.172 1,092 2/13/2024
2.1.171 459 2/13/2024
2.1.170 630 2/13/2024
2.1.169 1,938 2/12/2024
2.1.168 514 2/11/2024
2.1.167 1,522 2/11/2024
2.1.166 863 2/11/2024
2.1.165 2,781 2/10/2024
2.1.164 549 2/9/2024
2.1.163 150 2/9/2024
2.1.162 1,561 2/9/2024
2.1.161 1,665 2/9/2024
2.1.160 397 2/8/2024
2.1.159 1,223 2/8/2024
2.1.158 855 2/8/2024
2.1.157 1,466 2/8/2024
2.1.156 133 2/8/2024
2.1.155 1,867 2/7/2024
2.1.154 446 2/7/2024
2.1.153 607 2/7/2024
2.1.152 1,266 2/7/2024
2.1.151 386 2/6/2024
2.1.150 141 2/6/2024
2.1.149 136 2/6/2024
2.1.148 2,769 2/5/2024
2.1.147 1,528 2/4/2024
2.1.146 2,085 2/2/2024
2.1.145 1,913 1/31/2024
2.1.144 2,144 1/29/2024
2.1.143 1,361 1/29/2024
2.1.142 351 1/29/2024
2.1.141 1,488 1/28/2024
2.1.140 461 1/28/2024
2.1.139 312 1/28/2024
2.1.138 553 1/28/2024
2.1.137 1,924 1/28/2024
2.1.136 930 1/28/2024
2.1.135 293 1/27/2024
2.1.134 931 1/27/2024
2.1.133 1,165 1/27/2024
2.1.132 1,182 1/27/2024
2.1.131 160 1/27/2024
2.1.130 701 1/27/2024
2.1.129 1,059 1/26/2024
2.1.128 228 1/26/2024
2.1.127 876 1/26/2024
2.1.126 1,125 1/26/2024
2.1.125 1,629 1/26/2024
2.1.124 889 1/25/2024
2.1.123 1,107 1/25/2024
2.1.122 462 1/25/2024
2.1.121 919 1/25/2024
2.1.120 527 1/25/2024
2.1.119 2,578 1/19/2024
2.1.118 2,217 1/15/2024
2.1.117 508 1/15/2024
2.1.116 1,233 1/15/2024
2.1.115 137 1/15/2024
2.1.114 572 1/15/2024
2.1.113 1,375 1/15/2024
2.1.112 2,546 1/14/2024
2.1.111 1,621 1/13/2024
2.1.110 1,839 1/12/2024
2.1.109 2,047 1/11/2024
2.1.108 2,644 1/7/2024
2.1.107 2,089 1/5/2024
2.1.106 493 1/5/2024
2.1.105 151 1/5/2024
2.1.104 152 1/5/2024
2.1.103 1,491 1/5/2024
2.1.102 153 1/5/2024
2.1.101 2,774 1/1/2024
2.1.100 2,222 12/28/2023
2.1.99 747 12/28/2023
2.1.98 507 12/28/2023
2.1.97 144 12/28/2023
2.1.96 139 12/28/2023
2.1.95 720 12/27/2023
2.1.94 153 12/27/2023
2.1.93 481 12/27/2023
2.1.92 148 12/27/2023
2.1.91 154 12/27/2023
2.1.90 2,228 12/25/2023
2.1.89 360 12/25/2023
2.1.88 787 12/25/2023
2.1.87 152 12/25/2023
2.1.86 645 12/25/2023
2.1.85 144 12/25/2023
2.1.84 579 12/25/2023
2.1.83 146 12/25/2023
2.1.82 1,668 12/24/2023
2.1.81 1,080 12/23/2023
2.1.80 878 12/23/2023
2.1.79 322 12/23/2023
2.1.78 563 12/23/2023
2.1.77 140 12/23/2023
2.1.76 131 12/23/2023
2.1.75 1,094 12/23/2023
2.1.74 133 12/23/2023
2.1.73 1,416 12/19/2023
2.1.72 228 12/19/2023
2.1.71 3,091 12/11/2023
2.1.70 731 12/10/2023
2.1.69 130 12/10/2023
2.1.68 499 12/10/2023
2.1.67 1,423 12/10/2023
2.1.66 379 12/9/2023
2.1.65 378 12/9/2023
2.1.64 301 12/9/2023
2.1.63 146 12/9/2023
2.1.62 274 12/9/2023
2.1.61 211 12/9/2023
2.1.60 143 12/9/2023
2.1.59 1,077 12/9/2023
2.1.58 138 12/9/2023
2.1.57 1,531 12/6/2023
2.1.56 401 12/6/2023
2.1.55 246 12/6/2023
2.1.54 276 12/6/2023
2.1.53 931 12/5/2023
2.1.52 381 12/5/2023
2.1.51 345 12/5/2023
2.1.50 386 12/5/2023
2.1.49 133 12/5/2023
2.1.48 343 12/5/2023
2.1.47 279 12/5/2023
2.1.46 133 12/4/2023
2.1.45 137 12/4/2023
2.1.44 336 12/4/2023
2.1.43 147 12/4/2023
2.1.42 1,014 12/4/2023
2.1.41 116 12/4/2023
2.1.40 1,173 11/27/2023
2.1.39 526 11/26/2023
2.1.38 222 11/26/2023
2.1.37 630 11/23/2023
2.1.36 690 11/23/2023
2.1.35 645 11/23/2023
2.1.34 135 11/23/2023
2.1.33 404 11/23/2023
2.1.32 141 11/23/2023
2.1.31 1,084 11/20/2023
2.1.30 1,057 11/20/2023
2.1.29 810 11/19/2023
2.1.28 265 11/19/2023
2.1.27 460 11/19/2023
2.1.26 509 11/19/2023
2.1.25 503 11/19/2023
2.1.24 126 11/19/2023
2.1.23 222 11/18/2023
2.1.22 983 11/18/2023
2.1.21 381 11/18/2023
2.1.20 534 11/18/2023
2.1.19 136 11/18/2023
2.1.18 308 11/18/2023
2.1.17 130 11/18/2023
2.1.16 603 11/17/2023
2.1.15 520 11/17/2023
2.1.14 130 11/17/2023
2.1.13 424 11/17/2023
2.1.12 302 11/17/2023
2.1.11 500 11/17/2023
2.1.10 130 11/17/2023
2.1.9 511 11/17/2023
2.1.8 133 11/17/2023
2.1.7 150 11/17/2023
2.1.6 340 11/17/2023
2.1.5 376 11/16/2023
2.0.101 2,077 11/15/2023
2.0.100 125 11/15/2023
2.0.99 135 11/15/2023
2.0.4 132 11/16/2023
2.0.3 138 11/16/2023
2.0.2 132 11/16/2023
2.0.1 127 11/16/2023
1.0.98 613 11/14/2023
1.0.97 752 11/13/2023
1.0.96 120 11/13/2023
1.0.95 573 11/10/2023
1.0.94 125 11/10/2023
1.0.93 939 11/9/2023
1.0.92 129 11/9/2023
1.0.91 1,047 11/7/2023
1.0.90 122 11/7/2023
1.0.89 510 11/6/2023
1.0.88 134 11/6/2023
1.0.87 600 11/3/2023
1.0.86 135 11/3/2023
1.0.85 892 11/2/2023
1.0.84 126 11/2/2023
1.0.83 606 11/1/2023
1.0.82 1,457 10/26/2023
1.0.81 1,300 10/19/2023
1.0.80 145 10/19/2023
1.0.79 782 10/18/2023
1.0.78 163 10/18/2023
1.0.77 733 10/17/2023
1.0.76 151 10/17/2023
1.0.75 658 10/16/2023
1.0.74 153 10/16/2023
1.0.73 702 10/13/2023
1.0.72 339 10/12/2023
1.0.71 1,737 9/20/2023
1.0.70 680 9/19/2023
1.0.69 683 9/18/2023
1.0.68 145 9/18/2023
1.0.67 898 9/14/2023
1.0.66 1,505 8/31/2023
1.0.65 152 8/31/2023
1.0.64 810 8/30/2023
1.0.63 160 8/30/2023
1.0.62 166 8/30/2023
1.0.61 840 8/28/2023
1.0.60 695 8/25/2023
1.0.59 153 8/25/2023
1.0.58 492 8/24/2023
1.0.57 1,456 8/21/2023
1.0.56 829 8/18/2023
1.0.55 751 8/17/2023
1.0.54 159 8/17/2023
1.0.53 1,899 8/10/2023
1.0.52 565 8/9/2023
1.0.51 675 8/8/2023
1.0.50 658 8/7/2023
1.0.49 182 8/7/2023
1.0.48 2,461 7/13/2023
1.0.47 891 7/11/2023
1.0.46 724 7/10/2023
1.0.45 696 7/7/2023
1.0.44 176 7/7/2023
1.0.43 2,111 6/30/2023
1.0.42 1,062 6/29/2023
1.0.41 600 6/28/2023
1.0.40 1,537 6/26/2023
1.0.39 787 6/23/2023
1.0.38 1,090 6/21/2023
1.0.37 1,449 6/15/2023
1.0.36 483 6/14/2023
1.0.35 1,802 6/9/2023
1.0.34 830 6/8/2023
1.0.33 1,629 6/7/2023
1.0.32 180 6/7/2023
1.0.31 1,222 6/6/2023
1.0.30 1,181 6/5/2023
1.0.29 1,366 6/2/2023
1.0.28 167 6/2/2023
1.0.27 1,251 6/1/2023
1.0.26 608 5/31/2023
1.0.25 492 5/31/2023
1.0.24 175 5/31/2023
1.0.23 1,470 5/30/2023
1.0.22 1,526 5/26/2023
1.0.21 683 5/25/2023
1.0.20 159 5/25/2023
1.0.19 840 5/24/2023
1.0.18 169 5/24/2023
1.0.17 460 5/23/2023
1.0.13 1,477 5/22/2023
1.0.12 1,198 5/18/2023
1.0.11 603 5/17/2023
1.0.10 1,560 5/1/2023
1.0.9 1,033 4/25/2023
1.0.8 488 4/24/2023
1.0.7 1,006 4/21/2023
1.0.6 1,966 4/13/2023
1.0.5 607 4/12/2023
1.0.4 1,030 4/8/2023
1.0.3 200 4/8/2023
1.0.2 601 4/8/2023
1.0.1 204 4/8/2023