Soenneker.Utils.SingletonDictionary 3.0.1002

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.1002
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1002
                    
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.1002" />
                    
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.1002" />
                    
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.1002
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1002"
                    
#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.1002
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1002
                    
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

An externally initializing singleton dictionary that uses double-check asynchronous locking, with optional async and sync disposal

Installation

dotnet add package Soenneker.Utils.SingletonDictionary

Example

Below is a long-living HttpClient implementation using SingletonDictionary with different settings. It guarantees only one instance of a particular key is instantiated due to the locking.

public class HttpRequester : IDisposable, IAsyncDisposable
{
    private readonly SingletonDictionary<HttpClient> _clients;

    public HttpRequester()
    {
        // This func will lazily execute once it's retrieved the first time.
        // Other threads calling this at the same moment will asynchronously wait,
        // and then utilize the HttpClient that was created from the first caller.
        _clients = new SingletonDictionary<HttpClient>((args) =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

            HttpClient client = new HttpClient(socketsHandler);
            client.Timeout = TimeSpan.FromSeconds((int)args[0]);

            return client;
        });
    }

    public async ValueTask Get()
    {
        // retrieve the singleton async, thus not blocking the calling thread
        await (await _client.Get("100", 100)).GetAsync("https://google.com");
    }

    // Disposal is not necessary for AsyncSingleton unless the type used is IDisposable/IAsyncDisposable
    public ValueTask DisposeAsync()
    {
        GC.SuppressFinalize(false);

        return _client.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(false);
        
        _client.Dispose();
    }
}
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.1095 12 6/28/2025
3.0.1094 10 6/28/2025
3.0.1093 21 6/27/2025
3.0.1092 27 6/27/2025
3.0.1091 14,758 6/10/2025
3.0.1090 17,118 5/27/2025
3.0.1089 882 5/27/2025
3.0.1088 956 5/27/2025
3.0.1087 2,278 5/27/2025
3.0.1086 13,786 5/23/2025
3.0.1085 1,247 5/23/2025
3.0.1084 1,203 5/23/2025
3.0.1083 1,225 5/23/2025
3.0.1082 247 5/22/2025
3.0.1081 9,413 5/18/2025
3.0.1079 1,413 5/18/2025
3.0.1078 1,364 5/18/2025
3.0.1077 3,978 5/14/2025
3.0.1076 9,005 5/8/2025
3.0.1075 282 5/8/2025
3.0.1074 585 5/8/2025
3.0.1073 1,090 5/7/2025
3.0.1072 12,968 5/5/2025
3.0.1071 858 5/5/2025
3.0.1070 1,552 5/5/2025
3.0.1069 721 5/5/2025
3.0.1068 231 5/5/2025
3.0.1067 145 5/5/2025
3.0.1066 18,063 4/9/2025
3.0.1065 269 4/9/2025
3.0.1064 1,065 4/8/2025
3.0.1063 2,199 4/8/2025
3.0.1062 3,013 4/8/2025
3.0.1061 199 4/8/2025
3.0.1060 172 4/8/2025
3.0.1059 196 4/8/2025
3.0.1058 160 4/8/2025
3.0.1057 866 4/8/2025
3.0.1056 292 4/8/2025
3.0.1055 6,403 4/8/2025
3.0.1054 660 4/8/2025
3.0.1053 3,284 4/7/2025
3.0.1052 717 4/7/2025
3.0.1051 171 4/7/2025
3.0.1050 599 4/7/2025
3.0.1049 171 4/7/2025
3.0.1048 6,778 4/7/2025
3.0.1047 178 4/7/2025
3.0.1046 9,335 4/7/2025
3.0.1045 165 4/7/2025
3.0.1044 1,384 4/7/2025
3.0.1043 169 4/7/2025
3.0.1042 1,629 4/7/2025
3.0.1041 939 4/6/2025
3.0.1040 298 4/6/2025
3.0.1039 169 4/6/2025
3.0.1038 1,066 4/6/2025
3.0.1037 169 4/6/2025
3.0.1036 407 4/6/2025
3.0.1035 1,191 4/6/2025
3.0.1034 150 4/6/2025
3.0.1033 2,056 4/6/2025
3.0.1032 112 4/6/2025
3.0.1031 159 4/6/2025
3.0.1030 121 4/6/2025
3.0.1029 1,612 4/5/2025
3.0.1028 183 4/5/2025
3.0.1027 1,157 4/5/2025
3.0.1026 1,214 4/5/2025
3.0.1025 1,058 4/5/2025
3.0.1024 646 4/5/2025
3.0.1023 549 4/5/2025
3.0.1022 118 4/5/2025
3.0.1021 1,279 4/4/2025
3.0.1020 6,961 4/4/2025
3.0.1019 23,326 4/4/2025
3.0.1018 6,640 4/1/2025
3.0.1017 2,618 4/1/2025
3.0.1016 169 4/1/2025
3.0.1015 5,392 4/1/2025
3.0.1014 2,340 3/31/2025
3.0.1013 370 3/31/2025
3.0.1012 3,897 3/31/2025
3.0.1011 6,718 3/29/2025
3.0.1010 1,060 3/29/2025
3.0.1009 1,398 3/29/2025
3.0.1008 105 3/29/2025
3.0.1007 4,307 3/27/2025
3.0.1006 3,826 3/25/2025
3.0.1005 600 3/25/2025
3.0.1004 3,082 3/25/2025
3.0.1003 6,023 3/21/2025
3.0.1002 2,535 3/21/2025
3.0.1001 7,279 3/18/2025
3.0.1000 3,377 3/18/2025
3.0.999 6,320 3/15/2025
3.0.998 1,775 3/15/2025
3.0.997 79 3/15/2025
3.0.996 6,031 3/12/2025
3.0.995 2,152 3/12/2025
3.0.994 172 3/12/2025
3.0.993 397 3/12/2025
3.0.992 158 3/12/2025
3.0.991 2,687 3/11/2025
3.0.990 165 3/11/2025
3.0.989 1,268 3/11/2025
3.0.988 175 3/11/2025
3.0.987 2,557 3/11/2025
3.0.986 175 3/11/2025
3.0.985 2,641 3/11/2025
3.0.984 161 3/11/2025
3.0.983 1,616 3/11/2025
3.0.982 169 3/11/2025
3.0.981 8,845 3/7/2025
3.0.980 2,590 3/7/2025
3.0.979 6,141 3/2/2025
3.0.978 1,037 3/2/2025
3.0.977 643 3/2/2025
3.0.976 113 3/2/2025
3.0.975 4,303 3/2/2025
3.0.974 108 3/2/2025
3.0.973 3,165 3/1/2025
3.0.972 98 3/1/2025
3.0.971 4,264 3/1/2025
3.0.970 122 3/1/2025
3.0.969 101 3/1/2025
3.0.968 403 3/1/2025
3.0.967 103 3/1/2025
3.0.966 5,784 3/1/2025
3.0.965 4,753 2/26/2025
3.0.964 818 2/26/2025
3.0.963 2,315 2/25/2025
3.0.962 99 2/25/2025
3.0.961 843 2/25/2025
3.0.960 98 2/25/2025
3.0.959 127 2/25/2025
3.0.958 1,825 2/25/2025
3.0.957 4,814 2/24/2025
3.0.956 4,464 2/23/2025
3.0.955 1,077 2/22/2025
3.0.954 104 2/22/2025
3.0.953 7,530 2/22/2025
3.0.952 2,188 2/22/2025
3.0.951 1,046 2/22/2025
3.0.950 762 2/22/2025
3.0.949 141 2/22/2025
3.0.948 115 2/22/2025
3.0.947 105 2/22/2025
3.0.946 4,606 2/21/2025
3.0.945 103 2/21/2025
3.0.944 5,474 2/21/2025
3.0.943 4,530 2/19/2025
3.0.942 1,607 2/19/2025
3.0.941 717 2/19/2025
3.0.940 107 2/19/2025
3.0.939 399 2/18/2025
3.0.938 108 2/18/2025
3.0.937 5,434 2/18/2025
3.0.936 107 2/18/2025
3.0.935 2,799 2/18/2025
3.0.934 6,639 2/16/2025
3.0.933 1,523 2/14/2025
3.0.932 806 2/14/2025
3.0.931 705 2/13/2025
3.0.930 2,371 2/13/2025
3.0.929 277 2/13/2025
3.0.928 3,667 2/13/2025
3.0.927 3,791 2/12/2025
3.0.926 1,452 2/12/2025
3.0.925 148 2/12/2025
3.0.924 108 2/12/2025
3.0.923 1,998 2/12/2025
3.0.922 347 2/12/2025
3.0.921 118 2/12/2025
3.0.920 184 2/12/2025
3.0.919 187 2/12/2025
3.0.918 112 2/12/2025
3.0.917 165 2/11/2025
3.0.916 3,376 2/11/2025
3.0.915 3,654 2/11/2025
3.0.914 2,174 2/11/2025
3.0.913 121 2/11/2025
3.0.912 394 2/11/2025
3.0.911 1,721 2/10/2025
3.0.910 117 2/10/2025
3.0.909 779 2/10/2025
3.0.908 117 2/10/2025
3.0.907 6,298 2/10/2025
3.0.906 116 2/10/2025
3.0.905 1,157 2/9/2025
3.0.904 5,588 2/9/2025
3.0.903 108 2/9/2025
3.0.902 7,099 2/8/2025
3.0.901 115 2/8/2025
3.0.900 1,676 2/7/2025
3.0.899 108 2/7/2025
3.0.898 1,576 2/7/2025
3.0.897 114 2/7/2025
3.0.896 641 2/7/2025
3.0.895 416 2/7/2025
3.0.894 122 2/7/2025
3.0.893 331 2/7/2025
3.0.892 105 2/7/2025
3.0.891 1,028 2/7/2025
3.0.890 103 2/7/2025
3.0.889 116 2/7/2025
3.0.888 10,557 2/7/2025
3.0.887 6,162 2/5/2025
3.0.886 600 2/5/2025
3.0.885 888 2/5/2025
3.0.884 286 2/5/2025
3.0.883 980 2/5/2025
3.0.882 652 2/5/2025
3.0.881 2,906 2/5/2025
3.0.880 112 2/5/2025
3.0.879 10,726 1/28/2025
3.0.878 636 1/28/2025
3.0.877 1,732 1/28/2025
3.0.876 221 1/28/2025
3.0.875 3,640 1/28/2025
3.0.874 623 1/27/2025
3.0.873 93 1/27/2025
3.0.872 187 1/27/2025
3.0.871 267 1/27/2025
3.0.870 98 1/27/2025
3.0.869 4,693 1/27/2025
3.0.868 4,356 1/26/2025
3.0.867 924 1/26/2025
3.0.866 179 1/26/2025
3.0.865 1,003 1/26/2025
3.0.864 1,308 1/25/2025
3.0.863 104 1/25/2025
3.0.862 5,508 1/25/2025
3.0.861 951 1/25/2025
3.0.860 294 1/25/2025
3.0.859 104 1/25/2025
3.0.858 1,788 1/25/2025
3.0.857 1,254 1/25/2025
3.0.856 6,375 1/24/2025
3.0.855 1,466 1/24/2025
3.0.854 92 1/24/2025
3.0.853 1,909 1/24/2025
3.0.852 314 1/24/2025
3.0.851 208 1/24/2025
3.0.850 3,001 1/24/2025
3.0.849 101 1/24/2025
3.0.848 478 1/23/2025
3.0.847 102 1/23/2025
3.0.846 558 1/23/2025
3.0.845 98 1/23/2025
3.0.844 7,552 1/22/2025
3.0.843 965 1/21/2025
3.0.842 943 1/21/2025
3.0.841 558 1/21/2025
3.0.840 102 1/21/2025
3.0.839 583 1/21/2025
3.0.838 727 1/21/2025
3.0.837 5,217 1/21/2025
3.0.836 527 1/21/2025
3.0.835 987 1/21/2025
3.0.834 110 1/21/2025
3.0.833 785 1/21/2025
3.0.832 101 1/21/2025
3.0.831 2,074 1/21/2025
3.0.830 91 1/21/2025
3.0.829 380 1/20/2025
3.0.828 2,685 1/20/2025
3.0.827 232 1/20/2025
3.0.826 1,964 1/20/2025
3.0.825 100 1/20/2025
3.0.824 1,045 1/20/2025
3.0.823 100 1/20/2025
3.0.822 116 1/20/2025
3.0.821 100 1/20/2025
3.0.820 348 1/20/2025
3.0.819 103 1/20/2025
3.0.818 103 1/20/2025
3.0.817 5,381 1/19/2025
3.0.816 108 1/19/2025
3.0.815 4,982 1/19/2025
3.0.814 1,548 1/19/2025
3.0.813 118 1/19/2025
3.0.812 370 1/19/2025
3.0.811 99 1/19/2025
3.0.810 1,807 1/19/2025
3.0.809 95 1/19/2025
3.0.808 3,095 1/18/2025
3.0.807 102 1/18/2025
3.0.806 6,876 1/17/2025
3.0.805 110 1/17/2025
3.0.804 579 1/17/2025
3.0.803 899 1/17/2025
3.0.802 3,992 1/16/2025
3.0.801 1,390 1/16/2025
3.0.800 2,002 1/16/2025
3.0.799 532 1/16/2025
3.0.798 1,156 1/16/2025
3.0.797 989 1/16/2025
3.0.796 93 1/16/2025
3.0.795 4,381 1/15/2025
3.0.794 92 1/15/2025
3.0.793 2,697 1/15/2025
3.0.792 96 1/15/2025
3.0.791 139 1/15/2025
3.0.790 3,177 1/15/2025
3.0.789 88 1/15/2025
3.0.788 2,669 1/15/2025
3.0.787 74 1/15/2025
3.0.786 434 1/15/2025
3.0.785 69 1/15/2025
3.0.784 1,549 1/15/2025
3.0.783 72 1/15/2025
3.0.782 214 1/14/2025
3.0.781 85 1/14/2025
3.0.780 91 1/14/2025
3.0.779 2,945 1/14/2025
3.0.778 516 1/14/2025
3.0.777 90 1/14/2025
3.0.776 1,180 1/14/2025
3.0.775 90 1/14/2025
3.0.774 4,963 1/13/2025
3.0.773 1,537 1/13/2025
3.0.772 1,297 1/13/2025
3.0.771 92 1/13/2025
3.0.770 4,834 1/11/2025
3.0.769 1,948 1/11/2025
3.0.768 123 1/11/2025
3.0.767 2,062 1/11/2025
3.0.766 103 1/11/2025
3.0.765 1,664 1/10/2025
3.0.764 1,802 1/10/2025
3.0.763 105 1/10/2025
3.0.762 760 1/10/2025
3.0.761 105 1/10/2025
3.0.760 99 1/10/2025
3.0.759 6,248 1/3/2025
3.0.758 466 1/3/2025
3.0.757 981 1/3/2025
3.0.756 128 1/3/2025
3.0.755 1,417 1/3/2025
3.0.754 111 1/3/2025
3.0.753 1,057 1/3/2025
3.0.752 1,022 1/2/2025
3.0.751 110 1/2/2025
3.0.750 1,704 1/2/2025
3.0.749 122 1/2/2025
3.0.748 2,831 1/2/2025
3.0.747 110 1/2/2025
3.0.746 112 1/2/2025
3.0.745 4,653 1/1/2025
3.0.744 1,003 1/1/2025
3.0.743 275 1/1/2025
3.0.742 123 1/1/2025
3.0.741 1,465 1/1/2025
3.0.740 115 1/1/2025
3.0.739 121 1/1/2025
3.0.738 122 1/1/2025
3.0.737 321 12/31/2024
3.0.736 124 12/31/2024
3.0.735 129 12/31/2024
3.0.734 616 12/31/2024
3.0.733 132 12/31/2024
3.0.732 4,554 12/31/2024
3.0.731 124 12/31/2024
3.0.730 4,355 12/31/2024
3.0.729 103 12/31/2024
3.0.728 2,575 12/31/2024
3.0.727 336 12/31/2024
3.0.726 110 12/31/2024
3.0.725 1,322 12/31/2024
3.0.724 111 12/31/2024
3.0.723 8,860 12/28/2024
3.0.722 1,126 12/28/2024
3.0.721 1,226 12/27/2024
3.0.720 120 12/27/2024
3.0.719 2,685 12/27/2024
3.0.718 4,888 12/24/2024
3.0.717 1,247 12/24/2024
3.0.716 942 12/24/2024
3.0.715 806 12/24/2024
3.0.714 1,378 12/24/2024
3.0.713 99 12/24/2024
3.0.712 2,255 12/24/2024
3.0.711 646 12/24/2024
3.0.710 106 12/24/2024
3.0.709 461 12/24/2024
3.0.708 974 12/24/2024
3.0.707 258 12/24/2024
3.0.706 132 12/24/2024
3.0.705 1,053 12/24/2024
3.0.704 107 12/24/2024
3.0.703 1,790 12/23/2024
3.0.702 2,752 12/23/2024
3.0.701 112 12/23/2024
3.0.700 674 12/23/2024
3.0.699 107 12/23/2024
3.0.698 1,835 12/23/2024
3.0.697 107 12/23/2024
3.0.696 1,451 12/23/2024
3.0.695 117 12/23/2024
3.0.694 445 12/22/2024
3.0.693 1,394 12/22/2024
3.0.692 3,995 12/22/2024
3.0.691 115 12/22/2024
3.0.690 1,554 12/22/2024
3.0.689 163 12/22/2024
3.0.688 472 12/22/2024
3.0.687 103 12/22/2024
3.0.686 266 12/22/2024
3.0.685 111 12/22/2024
3.0.684 6,766 12/22/2024
3.0.683 106 12/22/2024
3.0.682 1,069 12/21/2024
3.0.681 272 12/21/2024
3.0.680 109 12/21/2024
3.0.679 495 12/21/2024
3.0.678 777 12/21/2024
3.0.677 105 12/21/2024
3.0.676 3,781 12/21/2024
3.0.675 389 12/21/2024
3.0.674 106 12/21/2024
3.0.673 2,534 12/21/2024
3.0.672 683 12/21/2024
3.0.671 113 12/21/2024
3.0.670 1,584 12/20/2024
3.0.669 120 12/20/2024
3.0.668 111 12/20/2024
3.0.667 3,695 12/20/2024
3.0.666 1,141 12/20/2024
3.0.665 225 12/20/2024
3.0.664 3,452 12/19/2024
3.0.663 427 12/19/2024
3.0.662 2,021 12/18/2024
3.0.661 110 12/18/2024
3.0.660 6,580 12/17/2024
3.0.659 216 12/17/2024
3.0.658 693 12/16/2024
3.0.657 118 12/16/2024
3.0.656 144 12/16/2024
3.0.655 103 12/16/2024
3.0.654 6,477 12/10/2024
3.0.653 1,001 12/10/2024
3.0.652 386 12/9/2024
3.0.651 109 12/9/2024
3.0.650 2,672 12/9/2024
3.0.649 1,373 12/9/2024
3.0.648 104 12/9/2024
3.0.647 3,629 12/9/2024
3.0.646 2,739 12/6/2024
3.0.645 430 12/6/2024
3.0.644 113 12/6/2024
3.0.643 691 12/6/2024
3.0.641 3,880 12/6/2024
3.0.640 2,451 12/6/2024
3.0.639 5,279 12/6/2024
3.0.637 378 12/6/2024
3.0.636 2,528 12/5/2024
3.0.635 3,568 12/5/2024
3.0.634 3,173 12/5/2024
3.0.633 109 12/5/2024
3.0.632 1,747 12/5/2024
3.0.631 1,034 12/5/2024
3.0.630 114 12/5/2024
3.0.629 382 12/5/2024
3.0.628 107 12/5/2024
3.0.627 153 12/5/2024
3.0.626 109 12/5/2024
3.0.625 3,361 12/4/2024
3.0.624 107 12/4/2024
3.0.623 120 12/4/2024
3.0.622 117 12/4/2024
3.0.621 1,720 12/4/2024
3.0.620 304 12/4/2024
3.0.619 415 12/4/2024
3.0.618 3,375 12/3/2024
3.0.617 115 12/3/2024
3.0.616 1,126 12/3/2024
3.0.615 446 12/3/2024
3.0.614 124 12/3/2024
3.0.613 124 12/3/2024
3.0.612 4,037 12/3/2024
3.0.611 107 12/3/2024
3.0.610 3,294 12/3/2024
3.0.609 100 12/3/2024
3.0.608 3,074 12/2/2024
3.0.607 2,659 12/2/2024
3.0.606 1,626 12/2/2024
3.0.605 283 12/2/2024
3.0.604 114 12/2/2024
3.0.603 404 12/2/2024
3.0.602 3,455 12/1/2024
3.0.601 114 12/1/2024
3.0.600 1,890 12/1/2024
3.0.599 204 12/1/2024
3.0.598 3,460 12/1/2024
3.0.597 119 12/1/2024
3.0.596 3,567 11/29/2024
3.0.595 1,054 11/29/2024
3.0.594 5,781 11/21/2024
3.0.593 304 11/21/2024
3.0.592 4,528 11/20/2024
3.0.591 349 11/20/2024
3.0.590 119 11/20/2024
3.0.589 116 11/20/2024
3.0.588 430 11/20/2024
3.0.587 162 11/20/2024
3.0.586 107 11/20/2024
3.0.585 2,033 11/20/2024
3.0.584 2,761 11/19/2024
3.0.583 108 11/19/2024
3.0.582 642 11/19/2024
3.0.581 107 11/19/2024
3.0.580 2,679 11/19/2024
3.0.579 103 11/19/2024
3.0.578 1,321 11/19/2024
3.0.577 117 11/19/2024
3.0.576 8,523 11/14/2024
3.0.575 144 11/14/2024
3.0.574 517 11/14/2024
3.0.573 2,382 11/14/2024
3.0.572 729 11/14/2024
3.0.571 121 11/14/2024
3.0.570 119 11/14/2024
3.0.569 4,156 11/14/2024
3.0.568 120 11/14/2024
3.0.567 114 11/14/2024
3.0.566 3,491 11/14/2024
3.0.565 115 11/14/2024
3.0.564 113 11/14/2024
3.0.563 114 11/14/2024
2.1.562 8,488 11/13/2024
2.1.561 1,385 11/13/2024
2.1.560 3,063 11/13/2024
2.1.559 121 11/13/2024
2.1.558 1,339 11/12/2024
2.1.557 404 11/12/2024
2.1.556 8,254 11/9/2024
2.1.555 369 11/9/2024
2.1.554 118 11/9/2024
2.1.553 1,740 11/9/2024
2.1.552 112 11/9/2024
2.1.551 969 11/8/2024
2.1.550 116 11/8/2024
2.1.549 115 11/8/2024
2.1.548 116 11/8/2024
2.1.547 428 11/8/2024
2.1.546 1,903 11/8/2024
2.1.545 110 11/8/2024
2.1.544 5,470 11/8/2024
2.1.543 110 11/8/2024
2.1.542 11,662 11/1/2024
2.1.541 467 11/1/2024
2.1.540 6,785 10/29/2024
2.1.539 749 10/29/2024
2.1.538 2,840 10/29/2024
2.1.537 634 10/29/2024
2.1.536 5,568 10/28/2024
2.1.535 1,860 10/28/2024
2.1.534 4,017 10/26/2024
2.1.533 708 10/26/2024
2.1.532 9,312 10/22/2024
2.1.531 258 10/22/2024
2.1.530 555 10/22/2024
2.1.529 886 10/22/2024
2.1.528 104 10/22/2024
2.1.527 500 10/22/2024
2.1.526 6,507 10/18/2024
2.1.525 1,094 10/17/2024
2.1.524 4,160 10/15/2024
2.1.523 1,604 10/15/2024
2.1.522 106 10/14/2024
2.1.521 5,133 10/12/2024
2.1.520 656 10/11/2024
2.1.519 108 10/11/2024
2.1.518 483 10/11/2024
2.1.517 2,943 10/11/2024
2.1.516 6,420 10/9/2024
2.1.515 388 10/9/2024
2.1.514 107 10/9/2024
2.1.513 1,984 10/8/2024
2.1.512 156 10/8/2024
2.1.511 2,229 10/8/2024
2.1.510 153 10/8/2024
2.1.509 107 10/8/2024
2.1.508 3,945 10/8/2024
2.1.507 6,234 10/3/2024
2.1.506 113 10/3/2024
2.1.505 1,108 10/3/2024
2.1.504 1,934 10/3/2024
2.1.503 1,425 10/3/2024
2.1.502 5,735 10/2/2024
2.1.501 110 10/2/2024
2.1.500 1,823 10/2/2024
2.1.499 1,011 10/2/2024
2.1.498 4,182 10/1/2024
2.1.497 714 10/1/2024
2.1.496 122 10/1/2024
2.1.495 2,629 10/1/2024
2.1.494 114 10/1/2024
2.1.493 156 10/1/2024
2.1.492 5,437 9/29/2024
2.1.491 1,390 9/29/2024
2.1.490 113 9/29/2024
2.1.489 1,230 9/29/2024
2.1.488 120 9/29/2024
2.1.487 2,521 9/29/2024
2.1.486 5,238 9/27/2024
2.1.485 784 9/27/2024
2.1.484 3,139 9/27/2024
2.1.483 124 9/27/2024
2.1.482 455 9/27/2024
2.1.481 2,163 9/27/2024
2.1.480 3,172 9/26/2024
2.1.479 3,489 9/26/2024
2.1.478 2,360 9/26/2024
2.1.477 2,170 9/26/2024
2.1.476 3,813 9/26/2024
2.1.475 113 9/26/2024
2.1.474 5,614 9/23/2024
2.1.473 1,300 9/23/2024
2.1.472 961 9/23/2024
2.1.471 1,153 9/23/2024
2.1.470 116 9/23/2024
2.1.469 1,554 9/23/2024
2.1.468 108 9/23/2024
2.1.467 4,671 9/23/2024
2.1.466 116 9/23/2024
2.1.465 732 9/23/2024
2.1.464 127 9/23/2024
2.1.463 108 9/23/2024
2.1.462 895 9/23/2024
2.1.461 9,268 9/18/2024
2.1.460 262 9/17/2024
2.1.459 1,212 9/17/2024
2.1.458 1,721 9/17/2024
2.1.457 120 9/17/2024
2.1.456 1,811 9/17/2024
2.1.455 471 9/17/2024
2.1.454 3,291 9/17/2024
2.1.453 566 9/17/2024
2.1.452 209 9/17/2024
2.1.451 2,665 9/17/2024
2.1.450 7,462 9/16/2024
2.1.449 726 9/16/2024
2.1.448 5,041 9/12/2024
2.1.447 2,927 9/12/2024
2.1.446 1,325 9/11/2024
2.1.445 1,540 9/11/2024
2.1.443 3,727 9/11/2024
2.1.442 1,011 9/11/2024
2.1.441 967 9/11/2024
2.1.440 2,318 9/11/2024
2.1.439 8,093 9/10/2024
2.1.438 136 9/10/2024
2.1.437 1,159 9/10/2024
2.1.436 131 9/10/2024
2.1.434 2,927 9/10/2024
2.1.433 612 9/9/2024
2.1.432 2,018 9/9/2024
2.1.430 1,558 9/9/2024
2.1.428 151 9/9/2024
2.1.427 478 9/9/2024
2.1.426 13,255 9/7/2024
2.1.425 146 9/7/2024
2.1.424 5,017 9/6/2024
2.1.423 383 9/6/2024
2.1.422 2,218 9/6/2024
2.1.421 133 9/5/2024
2.1.420 139 9/5/2024
2.1.419 2,399 9/5/2024
2.1.418 1,165 9/5/2024
2.1.417 140 9/5/2024
2.1.416 1,157 9/5/2024
2.1.415 449 9/5/2024
2.1.414 135 9/5/2024
2.1.413 5,050 9/5/2024
2.1.412 210 9/5/2024
2.1.411 137 9/5/2024
2.1.410 2,275 9/4/2024
2.1.409 8,019 9/3/2024
2.1.408 121 9/3/2024
2.1.407 117 9/3/2024
2.1.406 4,019 9/3/2024
2.1.405 163 9/3/2024
2.1.404 2,491 9/3/2024
2.1.403 5,294 8/29/2024
2.1.402 2,555 8/29/2024
2.1.401 2,895 8/26/2024
2.1.400 121 8/26/2024
2.1.399 4,949 8/21/2024
2.1.398 620 8/21/2024
2.1.397 149 8/21/2024
2.1.396 2,562 8/21/2024
2.1.395 158 8/20/2024
2.1.394 153 8/20/2024
2.1.393 491 8/20/2024
2.1.392 2,968 8/20/2024
2.1.391 431 8/20/2024
2.1.390 129 8/20/2024
2.1.389 2,661 8/20/2024
2.1.388 134 8/20/2024
2.1.387 1,215 8/20/2024
2.1.386 2,905 8/19/2024
2.1.385 4,785 8/15/2024
2.1.384 2,123 8/15/2024
2.1.383 4,820 8/14/2024
2.1.382 165 8/13/2024
2.1.381 5,706 8/7/2024
2.1.380 286 8/6/2024
2.1.379 2,695 8/6/2024
2.1.378 4,936 8/1/2024
2.1.377 346 8/1/2024
2.1.376 112 8/1/2024
2.1.374 1,149 8/1/2024
2.1.373 5,806 7/25/2024
2.1.372 107 7/25/2024
2.1.371 737 7/25/2024
2.1.370 321 7/25/2024
2.1.369 369 7/25/2024
2.1.368 192 7/25/2024
2.1.367 396 7/24/2024
2.1.366 164 7/24/2024
2.1.365 217 7/24/2024
2.1.364 326 7/24/2024
2.1.363 8,541 7/20/2024
2.1.362 1,465 7/20/2024
2.1.361 5,024 7/14/2024
2.1.360 1,561 7/14/2024
2.1.359 114 7/14/2024
2.1.358 1,508 7/14/2024
2.1.357 4,332 7/10/2024
2.1.355 806 7/10/2024
2.1.354 1,195 7/10/2024
2.1.353 130 7/10/2024
2.1.352 1,913 7/10/2024
2.1.351 138 7/10/2024
2.1.350 120 7/10/2024
2.1.349 186 7/10/2024
2.1.348 121 7/10/2024
2.1.347 2,059 7/10/2024
2.1.346 135 7/10/2024
2.1.345 819 7/10/2024
2.1.344 121 7/10/2024
2.1.343 223 7/9/2024
2.1.342 107 7/9/2024
2.1.339 1,983 7/9/2024
2.1.338 498 7/9/2024
2.1.337 4,018 7/9/2024
2.1.336 1,079 7/9/2024
2.1.335 130 7/9/2024
2.1.334 2,592 7/9/2024
2.1.333 124 7/9/2024
2.1.332 8,878 7/9/2024
2.1.331 119 7/9/2024
2.1.330 2,509 7/9/2024
2.1.329 111 7/9/2024
2.1.328 1,075 7/9/2024
2.1.327 720 7/8/2024
2.1.326 972 7/8/2024
2.1.325 136 7/8/2024
2.1.324 135 7/8/2024
2.1.323 4,853 7/8/2024
2.1.322 1,633 7/8/2024
2.1.321 135 7/8/2024
2.1.320 2,290 7/7/2024
2.1.319 137 7/7/2024
2.1.318 147 7/7/2024
2.1.317 130 7/7/2024
2.1.316 1,158 7/7/2024
2.1.315 2,176 7/7/2024
2.1.314 1,872 7/7/2024
2.1.313 231 7/7/2024
2.1.312 3,397 7/5/2024
2.1.311 3,881 7/3/2024
2.1.310 3,045 7/3/2024
2.1.309 402 7/3/2024
2.1.308 3,911 7/2/2024
2.1.307 1,867 6/30/2024
2.1.306 2,255 6/28/2024
2.1.305 5,396 6/22/2024
2.1.304 4,866 6/15/2024
2.1.303 4,092 6/14/2024
2.1.302 5,880 6/1/2024
2.1.301 1,598 6/1/2024
2.1.300 590 6/1/2024
2.1.299 5,817 5/31/2024
2.1.298 3,699 5/29/2024
2.1.297 3,029 5/28/2024
2.1.296 2,464 5/27/2024
2.1.295 4,821 5/26/2024
2.1.294 2,017 5/26/2024
2.1.293 490 5/26/2024
2.1.292 2,502 5/25/2024
2.1.291 1,384 5/25/2024
2.1.290 144 5/25/2024
2.1.289 136 5/25/2024
2.1.288 693 5/25/2024
2.1.287 134 5/25/2024
2.1.286 413 5/25/2024
2.1.285 144 5/25/2024
2.1.284 132 5/25/2024
2.1.283 7,398 5/23/2024
2.1.282 535 5/23/2024
2.1.281 283 5/22/2024
2.1.280 3,634 5/22/2024
2.1.279 129 5/22/2024
2.1.278 143 5/22/2024
2.1.277 146 5/22/2024
2.1.276 2,123 5/22/2024
2.1.275 3,420 5/18/2024
2.1.274 1,896 5/18/2024
2.1.273 1,810 5/17/2024
2.1.272 126 5/17/2024
2.1.271 2,723 5/16/2024
2.1.270 443 5/15/2024
2.1.269 2,744 5/15/2024
2.1.268 4,448 5/12/2024
2.1.267 2,746 5/3/2024
2.1.266 1,150 4/30/2024
2.1.265 1,761 4/29/2024
2.1.264 1,915 4/29/2024
2.1.263 2,648 4/28/2024
2.1.262 1,485 4/28/2024
2.1.261 1,107 4/28/2024
2.1.260 1,754 4/28/2024
2.1.259 917 4/28/2024
2.1.258 127 4/28/2024
2.1.257 4,147 4/27/2024
2.1.256 143 4/27/2024
2.1.255 4,374 4/19/2024
2.1.254 4,074 4/18/2024
2.1.253 3,428 4/12/2024
2.1.252 1,152 4/12/2024
2.1.251 731 4/12/2024
2.1.250 869 4/12/2024
2.1.249 212 4/12/2024
2.1.248 119 4/12/2024
2.1.247 992 4/12/2024
2.1.246 319 4/12/2024
2.1.245 1,655 4/11/2024
2.1.244 3,720 4/10/2024
2.1.243 1,143 4/9/2024
2.1.242 3,161 4/2/2024
2.1.241 913 4/1/2024
2.1.240 2,084 3/29/2024
2.1.239 1,848 3/25/2024
2.1.238 309 3/25/2024
2.1.237 3,312 3/20/2024
2.1.236 2,138 3/19/2024
2.1.235 531 3/19/2024
2.1.234 2,348 3/18/2024
2.1.233 1,407 3/18/2024
2.1.232 1,385 3/15/2024
2.1.231 2,347 3/13/2024
2.1.230 1,108 3/13/2024
2.1.229 667 3/13/2024
2.1.228 774 3/13/2024
2.1.227 147 3/13/2024
2.1.226 545 3/13/2024
2.1.225 154 3/13/2024
2.1.224 158 3/13/2024
2.1.223 1,664 3/12/2024
2.1.222 2,832 3/11/2024
2.1.221 2,481 3/11/2024
2.1.220 1,634 3/10/2024
2.1.219 1,887 3/8/2024
2.1.218 1,069 3/8/2024
2.1.217 1,563 3/8/2024
2.1.216 2,083 3/6/2024
2.1.215 2,001 3/4/2024
2.1.214 1,418 3/4/2024
2.1.213 2,561 3/2/2024
2.1.212 1,224 3/2/2024
2.1.211 416 3/2/2024
2.1.210 363 3/2/2024
2.1.209 482 3/2/2024
2.1.208 3,428 2/29/2024
2.1.207 646 2/29/2024
2.1.206 350 2/29/2024
2.1.205 3,302 2/26/2024
2.1.204 1,490 2/25/2024
2.1.203 2,597 2/23/2024
2.1.202 1,903 2/22/2024
2.1.201 967 2/22/2024
2.1.200 443 2/21/2024
2.1.199 1,193 2/21/2024
2.1.198 306 2/21/2024
2.1.197 774 2/21/2024
2.1.196 139 2/21/2024
2.1.195 1,252 2/21/2024
2.1.194 420 2/21/2024
2.1.193 151 2/21/2024
2.1.192 148 2/21/2024
2.1.191 599 2/21/2024
2.1.190 129 2/21/2024
2.1.189 2,633 2/20/2024
2.1.188 728 2/20/2024
2.1.187 652 2/20/2024
2.1.186 765 2/20/2024
2.1.185 2,120 2/19/2024
2.1.184 1,881 2/17/2024
2.1.183 908 2/16/2024
2.1.182 867 2/16/2024
2.1.181 1,360 2/16/2024
2.1.180 141 2/16/2024
2.1.179 649 2/16/2024
2.1.178 150 2/16/2024
2.1.177 141 2/16/2024
2.1.176 562 2/16/2024
2.1.175 129 2/16/2024
2.1.174 3,295 2/13/2024
2.1.173 1,388 2/13/2024
2.1.172 1,098 2/13/2024
2.1.171 465 2/13/2024
2.1.170 635 2/13/2024
2.1.169 1,943 2/12/2024
2.1.168 518 2/11/2024
2.1.167 1,532 2/11/2024
2.1.166 867 2/11/2024
2.1.165 2,794 2/10/2024
2.1.164 552 2/9/2024
2.1.163 154 2/9/2024
2.1.162 1,567 2/9/2024
2.1.161 1,673 2/9/2024
2.1.160 405 2/8/2024
2.1.159 1,233 2/8/2024
2.1.158 868 2/8/2024
2.1.157 1,475 2/8/2024
2.1.156 138 2/8/2024
2.1.155 1,872 2/7/2024
2.1.154 449 2/7/2024
2.1.153 613 2/7/2024
2.1.152 1,272 2/7/2024
2.1.151 391 2/6/2024
2.1.150 147 2/6/2024
2.1.149 141 2/6/2024
2.1.148 2,777 2/5/2024
2.1.147 1,533 2/4/2024
2.1.146 2,090 2/2/2024
2.1.145 1,916 1/31/2024
2.1.144 2,150 1/29/2024
2.1.143 1,365 1/29/2024
2.1.142 355 1/29/2024
2.1.141 1,494 1/28/2024
2.1.140 467 1/28/2024
2.1.139 317 1/28/2024
2.1.138 557 1/28/2024
2.1.137 1,929 1/28/2024
2.1.136 933 1/28/2024
2.1.135 299 1/27/2024
2.1.134 936 1/27/2024
2.1.133 1,172 1/27/2024
2.1.132 1,185 1/27/2024
2.1.131 163 1/27/2024
2.1.130 705 1/27/2024
2.1.129 1,064 1/26/2024
2.1.128 234 1/26/2024
2.1.127 882 1/26/2024
2.1.126 1,128 1/26/2024
2.1.125 1,635 1/26/2024
2.1.124 894 1/25/2024
2.1.123 1,112 1/25/2024
2.1.122 465 1/25/2024
2.1.121 924 1/25/2024
2.1.120 532 1/25/2024
2.1.119 2,587 1/19/2024
2.1.118 2,224 1/15/2024
2.1.117 512 1/15/2024
2.1.116 1,239 1/15/2024
2.1.115 140 1/15/2024
2.1.114 576 1/15/2024
2.1.113 1,379 1/15/2024
2.1.112 2,551 1/14/2024
2.1.111 1,625 1/13/2024
2.1.110 1,847 1/12/2024
2.1.109 2,050 1/11/2024
2.1.108 2,647 1/7/2024
2.1.107 2,095 1/5/2024
2.1.106 506 1/5/2024
2.1.105 156 1/5/2024
2.1.104 156 1/5/2024
2.1.103 1,496 1/5/2024
2.1.102 157 1/5/2024
2.1.101 2,783 1/1/2024
2.1.100 2,227 12/28/2023
2.1.99 750 12/28/2023
2.1.98 510 12/28/2023
2.1.97 150 12/28/2023
2.1.96 144 12/28/2023
2.1.95 723 12/27/2023
2.1.94 158 12/27/2023
2.1.93 486 12/27/2023
2.1.92 155 12/27/2023
2.1.91 161 12/27/2023
2.1.90 2,232 12/25/2023
2.1.89 364 12/25/2023
2.1.88 792 12/25/2023
2.1.87 156 12/25/2023
2.1.86 651 12/25/2023
2.1.85 152 12/25/2023
2.1.84 587 12/25/2023
2.1.83 149 12/25/2023
2.1.82 1,675 12/24/2023
2.1.81 1,087 12/23/2023
2.1.80 883 12/23/2023
2.1.79 325 12/23/2023
2.1.78 571 12/23/2023
2.1.77 148 12/23/2023
2.1.76 135 12/23/2023
2.1.75 1,097 12/23/2023
2.1.74 136 12/23/2023
2.1.73 1,419 12/19/2023
2.1.72 233 12/19/2023
2.1.71 3,096 12/11/2023
2.1.70 737 12/10/2023
2.1.69 135 12/10/2023
2.1.68 505 12/10/2023
2.1.67 1,428 12/10/2023
2.1.66 387 12/9/2023
2.1.65 384 12/9/2023
2.1.64 304 12/9/2023
2.1.63 152 12/9/2023
2.1.62 280 12/9/2023
2.1.61 215 12/9/2023
2.1.60 146 12/9/2023
2.1.59 1,081 12/9/2023
2.1.58 144 12/9/2023
2.1.57 1,538 12/6/2023
2.1.56 406 12/6/2023
2.1.55 250 12/6/2023
2.1.54 280 12/6/2023
2.1.53 935 12/5/2023
2.1.52 386 12/5/2023
2.1.51 348 12/5/2023
2.1.50 389 12/5/2023
2.1.49 136 12/5/2023
2.1.48 346 12/5/2023
2.1.47 283 12/5/2023
2.1.46 139 12/4/2023
2.1.45 140 12/4/2023
2.1.44 343 12/4/2023
2.1.43 151 12/4/2023
2.1.42 1,027 12/4/2023
2.1.41 120 12/4/2023
2.1.40 1,176 11/27/2023
2.1.39 530 11/26/2023
2.1.38 230 11/26/2023
2.1.37 635 11/23/2023
2.1.36 693 11/23/2023
2.1.35 649 11/23/2023
2.1.34 138 11/23/2023
2.1.33 409 11/23/2023
2.1.32 144 11/23/2023
2.1.31 1,088 11/20/2023
2.1.30 1,064 11/20/2023
2.1.29 813 11/19/2023
2.1.28 269 11/19/2023
2.1.27 463 11/19/2023
2.1.26 512 11/19/2023
2.1.25 509 11/19/2023
2.1.24 129 11/19/2023
2.1.23 226 11/18/2023
2.1.22 992 11/18/2023
2.1.21 384 11/18/2023
2.1.20 539 11/18/2023
2.1.19 142 11/18/2023
2.1.18 312 11/18/2023
2.1.17 134 11/18/2023
2.1.16 609 11/17/2023
2.1.15 525 11/17/2023
2.1.14 136 11/17/2023
2.1.13 428 11/17/2023
2.1.12 309 11/17/2023
2.1.11 504 11/17/2023
2.1.10 134 11/17/2023
2.1.9 514 11/17/2023
2.1.8 139 11/17/2023
2.1.7 157 11/17/2023
2.1.6 344 11/17/2023
2.1.5 380 11/16/2023
2.0.101 2,083 11/15/2023
2.0.100 130 11/15/2023
2.0.99 143 11/15/2023
2.0.4 135 11/16/2023
2.0.3 142 11/16/2023
2.0.2 136 11/16/2023
2.0.1 135 11/16/2023
1.0.98 621 11/14/2023
1.0.97 755 11/13/2023
1.0.96 123 11/13/2023
1.0.95 578 11/10/2023
1.0.94 132 11/10/2023
1.0.93 947 11/9/2023
1.0.92 132 11/9/2023
1.0.91 1,050 11/7/2023
1.0.90 127 11/7/2023
1.0.89 516 11/6/2023
1.0.88 141 11/6/2023
1.0.87 603 11/3/2023
1.0.86 141 11/3/2023
1.0.85 895 11/2/2023
1.0.84 129 11/2/2023
1.0.83 609 11/1/2023
1.0.82 1,464 10/26/2023
1.0.81 1,306 10/19/2023
1.0.80 149 10/19/2023
1.0.79 787 10/18/2023
1.0.78 167 10/18/2023
1.0.77 738 10/17/2023
1.0.76 155 10/17/2023
1.0.75 668 10/16/2023
1.0.74 160 10/16/2023
1.0.73 708 10/13/2023
1.0.72 345 10/12/2023
1.0.71 1,745 9/20/2023
1.0.70 687 9/19/2023
1.0.69 687 9/18/2023
1.0.68 151 9/18/2023
1.0.67 901 9/14/2023
1.0.66 1,509 8/31/2023
1.0.65 157 8/31/2023
1.0.64 816 8/30/2023
1.0.63 163 8/30/2023
1.0.62 174 8/30/2023
1.0.61 844 8/28/2023
1.0.60 699 8/25/2023
1.0.59 157 8/25/2023
1.0.58 501 8/24/2023
1.0.57 1,460 8/21/2023
1.0.56 834 8/18/2023
1.0.55 756 8/17/2023
1.0.54 166 8/17/2023
1.0.53 1,903 8/10/2023
1.0.52 571 8/9/2023
1.0.51 683 8/8/2023
1.0.50 666 8/7/2023
1.0.49 188 8/7/2023
1.0.48 2,471 7/13/2023
1.0.47 898 7/11/2023
1.0.46 730 7/10/2023
1.0.45 702 7/7/2023
1.0.44 181 7/7/2023
1.0.43 2,116 6/30/2023
1.0.42 1,070 6/29/2023
1.0.41 607 6/28/2023
1.0.40 1,547 6/26/2023
1.0.39 796 6/23/2023
1.0.38 1,094 6/21/2023
1.0.37 1,457 6/15/2023
1.0.36 491 6/14/2023
1.0.35 1,811 6/9/2023
1.0.34 836 6/8/2023
1.0.33 1,634 6/7/2023
1.0.32 185 6/7/2023
1.0.31 1,229 6/6/2023
1.0.30 1,190 6/5/2023
1.0.29 1,374 6/2/2023
1.0.28 173 6/2/2023
1.0.27 1,257 6/1/2023
1.0.26 616 5/31/2023
1.0.25 498 5/31/2023
1.0.24 181 5/31/2023
1.0.23 1,478 5/30/2023
1.0.22 1,538 5/26/2023
1.0.21 693 5/25/2023
1.0.20 165 5/25/2023
1.0.19 848 5/24/2023
1.0.18 176 5/24/2023
1.0.17 466 5/23/2023
1.0.13 1,482 5/22/2023
1.0.12 1,204 5/18/2023
1.0.11 609 5/17/2023
1.0.10 1,568 5/1/2023
1.0.9 1,039 4/25/2023
1.0.8 497 4/24/2023
1.0.7 1,013 4/21/2023
1.0.6 1,971 4/13/2023
1.0.5 616 4/12/2023
1.0.4 1,036 4/8/2023
1.0.3 208 4/8/2023
1.0.2 608 4/8/2023
1.0.1 209 4/8/2023