Soenneker.Utils.SingletonDictionary 3.0.1033

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

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.1091 4,124 6/10/2025
3.0.1090 15,473 5/27/2025
3.0.1089 875 5/27/2025
3.0.1088 946 5/27/2025
3.0.1087 2,272 5/27/2025
3.0.1086 13,756 5/23/2025
3.0.1085 1,240 5/23/2025
3.0.1084 1,197 5/23/2025
3.0.1083 1,211 5/23/2025
3.0.1082 239 5/22/2025
3.0.1081 9,405 5/18/2025
3.0.1079 1,408 5/18/2025
3.0.1078 1,360 5/18/2025
3.0.1077 3,961 5/14/2025
3.0.1076 8,943 5/8/2025
3.0.1075 277 5/8/2025
3.0.1074 574 5/8/2025
3.0.1073 1,084 5/7/2025
3.0.1072 12,959 5/5/2025
3.0.1071 850 5/5/2025
3.0.1070 1,545 5/5/2025
3.0.1069 712 5/5/2025
3.0.1068 227 5/5/2025
3.0.1067 139 5/5/2025
3.0.1066 18,038 4/9/2025
3.0.1065 261 4/9/2025
3.0.1064 1,060 4/8/2025
3.0.1063 2,194 4/8/2025
3.0.1062 3,006 4/8/2025
3.0.1061 193 4/8/2025
3.0.1060 161 4/8/2025
3.0.1059 191 4/8/2025
3.0.1058 154 4/8/2025
3.0.1057 860 4/8/2025
3.0.1056 282 4/8/2025
3.0.1055 6,397 4/8/2025
3.0.1054 655 4/8/2025
3.0.1053 3,276 4/7/2025
3.0.1052 712 4/7/2025
3.0.1051 163 4/7/2025
3.0.1050 593 4/7/2025
3.0.1049 162 4/7/2025
3.0.1048 6,770 4/7/2025
3.0.1047 167 4/7/2025
3.0.1046 9,326 4/7/2025
3.0.1045 158 4/7/2025
3.0.1044 1,376 4/7/2025
3.0.1043 160 4/7/2025
3.0.1042 1,622 4/7/2025
3.0.1041 934 4/6/2025
3.0.1040 288 4/6/2025
3.0.1039 164 4/6/2025
3.0.1038 1,058 4/6/2025
3.0.1037 162 4/6/2025
3.0.1036 397 4/6/2025
3.0.1035 1,181 4/6/2025
3.0.1034 141 4/6/2025
3.0.1033 2,051 4/6/2025
3.0.1032 100 4/6/2025
3.0.1031 152 4/6/2025
3.0.1030 114 4/6/2025
3.0.1029 1,606 4/5/2025
3.0.1028 174 4/5/2025
3.0.1027 1,150 4/5/2025
3.0.1026 1,208 4/5/2025
3.0.1025 1,050 4/5/2025
3.0.1024 637 4/5/2025
3.0.1023 536 4/5/2025
3.0.1022 113 4/5/2025
3.0.1021 1,273 4/4/2025
3.0.1020 6,956 4/4/2025
3.0.1019 23,317 4/4/2025
3.0.1018 6,632 4/1/2025
3.0.1017 2,611 4/1/2025
3.0.1016 157 4/1/2025
3.0.1015 5,382 4/1/2025
3.0.1014 2,330 3/31/2025
3.0.1013 366 3/31/2025
3.0.1012 3,888 3/31/2025
3.0.1011 6,715 3/29/2025
3.0.1010 1,050 3/29/2025
3.0.1009 1,393 3/29/2025
3.0.1008 97 3/29/2025
3.0.1007 4,298 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,016 3/21/2025
3.0.1002 2,532 3/21/2025
3.0.1001 7,273 3/18/2025
3.0.1000 3,372 3/18/2025
3.0.999 6,315 3/15/2025
3.0.998 1,756 3/15/2025
3.0.997 67 3/15/2025
3.0.996 6,020 3/12/2025
3.0.995 2,144 3/12/2025
3.0.994 165 3/12/2025
3.0.993 384 3/12/2025
3.0.992 150 3/12/2025
3.0.991 2,677 3/11/2025
3.0.990 161 3/11/2025
3.0.989 1,262 3/11/2025
3.0.988 165 3/11/2025
3.0.987 2,546 3/11/2025
3.0.986 167 3/11/2025
3.0.985 2,633 3/11/2025
3.0.984 156 3/11/2025
3.0.983 1,606 3/11/2025
3.0.982 165 3/11/2025
3.0.981 8,839 3/7/2025
3.0.980 2,587 3/7/2025
3.0.979 6,135 3/2/2025
3.0.978 1,028 3/2/2025
3.0.977 638 3/2/2025
3.0.976 109 3/2/2025
3.0.975 4,293 3/2/2025
3.0.974 98 3/2/2025
3.0.973 3,155 3/1/2025
3.0.972 95 3/1/2025
3.0.971 4,260 3/1/2025
3.0.970 116 3/1/2025
3.0.969 98 3/1/2025
3.0.968 397 3/1/2025
3.0.967 95 3/1/2025
3.0.966 5,780 3/1/2025
3.0.965 4,749 2/26/2025
3.0.964 812 2/26/2025
3.0.963 2,306 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,453 2/23/2025
3.0.955 1,071 2/22/2025
3.0.954 95 2/22/2025
3.0.953 7,521 2/22/2025
3.0.952 2,178 2/22/2025
3.0.951 1,039 2/22/2025
3.0.950 752 2/22/2025
3.0.949 134 2/22/2025
3.0.948 111 2/22/2025
3.0.947 96 2/22/2025
3.0.946 4,598 2/21/2025
3.0.945 99 2/21/2025
3.0.944 5,463 2/21/2025
3.0.943 4,519 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 394 2/18/2025
3.0.938 101 2/18/2025
3.0.937 5,428 2/18/2025
3.0.936 100 2/18/2025
3.0.935 2,790 2/18/2025
3.0.934 6,487 2/16/2025
3.0.933 1,515 2/14/2025
3.0.932 799 2/14/2025
3.0.931 698 2/13/2025
3.0.930 2,366 2/13/2025
3.0.929 271 2/13/2025
3.0.928 3,659 2/13/2025
3.0.927 3,760 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,985 2/12/2025
3.0.922 334 2/12/2025
3.0.921 110 2/12/2025
3.0.920 181 2/12/2025
3.0.919 182 2/12/2025
3.0.918 103 2/12/2025
3.0.917 162 2/11/2025
3.0.916 3,366 2/11/2025
3.0.915 3,649 2/11/2025
3.0.914 2,165 2/11/2025
3.0.913 110 2/11/2025
3.0.912 389 2/11/2025
3.0.911 1,712 2/10/2025
3.0.910 109 2/10/2025
3.0.909 773 2/10/2025
3.0.908 107 2/10/2025
3.0.907 6,292 2/10/2025
3.0.906 108 2/10/2025
3.0.905 1,150 2/9/2025
3.0.904 5,585 2/9/2025
3.0.903 102 2/9/2025
3.0.902 7,083 2/8/2025
3.0.901 110 2/8/2025
3.0.900 1,666 2/7/2025
3.0.899 98 2/7/2025
3.0.898 1,567 2/7/2025
3.0.897 105 2/7/2025
3.0.896 632 2/7/2025
3.0.895 405 2/7/2025
3.0.894 113 2/7/2025
3.0.893 318 2/7/2025
3.0.892 101 2/7/2025
3.0.891 1,025 2/7/2025
3.0.890 100 2/7/2025
3.0.889 109 2/7/2025
3.0.888 10,547 2/7/2025
3.0.887 6,150 2/5/2025
3.0.886 587 2/5/2025
3.0.885 881 2/5/2025
3.0.884 279 2/5/2025
3.0.883 973 2/5/2025
3.0.882 649 2/5/2025
3.0.881 2,899 2/5/2025
3.0.880 108 2/5/2025
3.0.879 10,718 1/28/2025
3.0.878 628 1/28/2025
3.0.877 1,726 1/28/2025
3.0.876 216 1/28/2025
3.0.875 3,636 1/28/2025
3.0.874 618 1/27/2025
3.0.873 89 1/27/2025
3.0.872 175 1/27/2025
3.0.871 257 1/27/2025
3.0.870 93 1/27/2025
3.0.869 4,684 1/27/2025
3.0.868 4,348 1/26/2025
3.0.867 912 1/26/2025
3.0.866 171 1/26/2025
3.0.865 993 1/26/2025
3.0.864 1,302 1/25/2025
3.0.863 100 1/25/2025
3.0.862 5,501 1/25/2025
3.0.861 943 1/25/2025
3.0.860 289 1/25/2025
3.0.859 94 1/25/2025
3.0.858 1,775 1/25/2025
3.0.857 1,243 1/25/2025
3.0.856 6,366 1/24/2025
3.0.855 1,459 1/24/2025
3.0.854 88 1/24/2025
3.0.853 1,899 1/24/2025
3.0.852 307 1/24/2025
3.0.851 201 1/24/2025
3.0.850 2,995 1/24/2025
3.0.849 95 1/24/2025
3.0.848 473 1/23/2025
3.0.847 93 1/23/2025
3.0.846 553 1/23/2025
3.0.845 90 1/23/2025
3.0.844 7,544 1/22/2025
3.0.843 958 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 716 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 101 1/21/2025
3.0.833 778 1/21/2025
3.0.832 91 1/21/2025
3.0.831 2,069 1/21/2025
3.0.830 87 1/21/2025
3.0.829 375 1/20/2025
3.0.828 2,677 1/20/2025
3.0.827 225 1/20/2025
3.0.826 1,955 1/20/2025
3.0.825 96 1/20/2025
3.0.824 1,038 1/20/2025
3.0.823 97 1/20/2025
3.0.822 105 1/20/2025
3.0.821 93 1/20/2025
3.0.820 342 1/20/2025
3.0.819 96 1/20/2025
3.0.818 97 1/20/2025
3.0.817 5,374 1/19/2025
3.0.816 99 1/19/2025
3.0.815 4,973 1/19/2025
3.0.814 1,539 1/19/2025
3.0.813 112 1/19/2025
3.0.812 366 1/19/2025
3.0.811 86 1/19/2025
3.0.810 1,794 1/19/2025
3.0.809 92 1/19/2025
3.0.808 3,090 1/18/2025
3.0.807 94 1/18/2025
3.0.806 6,873 1/17/2025
3.0.805 106 1/17/2025
3.0.804 573 1/17/2025
3.0.803 889 1/17/2025
3.0.802 3,988 1/16/2025
3.0.801 1,384 1/16/2025
3.0.800 1,997 1/16/2025
3.0.799 529 1/16/2025
3.0.798 1,146 1/16/2025
3.0.797 985 1/16/2025
3.0.796 86 1/16/2025
3.0.795 4,371 1/15/2025
3.0.794 88 1/15/2025
3.0.793 2,691 1/15/2025
3.0.792 89 1/15/2025
3.0.791 133 1/15/2025
3.0.790 3,170 1/15/2025
3.0.789 82 1/15/2025
3.0.788 2,657 1/15/2025
3.0.787 65 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 66 1/15/2025
3.0.782 207 1/14/2025
3.0.781 77 1/14/2025
3.0.780 85 1/14/2025
3.0.779 2,938 1/14/2025
3.0.778 509 1/14/2025
3.0.777 77 1/14/2025
3.0.776 1,174 1/14/2025
3.0.775 81 1/14/2025
3.0.774 4,956 1/13/2025
3.0.773 1,525 1/13/2025
3.0.772 1,291 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 111 1/11/2025
3.0.767 2,053 1/11/2025
3.0.766 99 1/11/2025
3.0.765 1,658 1/10/2025
3.0.764 1,796 1/10/2025
3.0.763 96 1/10/2025
3.0.762 750 1/10/2025
3.0.761 98 1/10/2025
3.0.760 93 1/10/2025
3.0.759 6,239 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,013 1/2/2025
3.0.751 102 1/2/2025
3.0.750 1,697 1/2/2025
3.0.749 119 1/2/2025
3.0.748 2,821 1/2/2025
3.0.747 101 1/2/2025
3.0.746 108 1/2/2025
3.0.745 4,643 1/1/2025
3.0.744 991 1/1/2025
3.0.743 267 1/1/2025
3.0.742 115 1/1/2025
3.0.741 1,459 1/1/2025
3.0.740 109 1/1/2025
3.0.739 114 1/1/2025
3.0.738 117 1/1/2025
3.0.737 315 12/31/2024
3.0.736 113 12/31/2024
3.0.735 125 12/31/2024
3.0.734 610 12/31/2024
3.0.733 126 12/31/2024
3.0.732 4,543 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 104 12/31/2024
3.0.725 1,317 12/31/2024
3.0.724 102 12/31/2024
3.0.723 8,850 12/28/2024
3.0.722 1,120 12/28/2024
3.0.721 1,217 12/27/2024
3.0.720 109 12/27/2024
3.0.719 2,679 12/27/2024
3.0.718 4,881 12/24/2024
3.0.717 1,241 12/24/2024
3.0.716 936 12/24/2024
3.0.715 802 12/24/2024
3.0.714 1,375 12/24/2024
3.0.713 91 12/24/2024
3.0.712 2,246 12/24/2024
3.0.711 640 12/24/2024
3.0.710 99 12/24/2024
3.0.709 455 12/24/2024
3.0.708 971 12/24/2024
3.0.707 251 12/24/2024
3.0.706 120 12/24/2024
3.0.705 1,048 12/24/2024
3.0.704 100 12/24/2024
3.0.703 1,782 12/23/2024
3.0.702 2,744 12/23/2024
3.0.701 107 12/23/2024
3.0.700 662 12/23/2024
3.0.699 101 12/23/2024
3.0.698 1,829 12/23/2024
3.0.697 103 12/23/2024
3.0.696 1,446 12/23/2024
3.0.695 108 12/23/2024
3.0.694 438 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,547 12/22/2024
3.0.689 157 12/22/2024
3.0.688 466 12/22/2024
3.0.687 100 12/22/2024
3.0.686 262 12/22/2024
3.0.685 101 12/22/2024
3.0.684 6,753 12/22/2024
3.0.683 99 12/22/2024
3.0.682 1,063 12/21/2024
3.0.681 264 12/21/2024
3.0.680 106 12/21/2024
3.0.679 482 12/21/2024
3.0.678 768 12/21/2024
3.0.677 99 12/21/2024
3.0.676 3,772 12/21/2024
3.0.675 384 12/21/2024
3.0.674 98 12/21/2024
3.0.673 2,529 12/21/2024
3.0.672 676 12/21/2024
3.0.671 104 12/21/2024
3.0.670 1,575 12/20/2024
3.0.669 110 12/20/2024
3.0.668 102 12/20/2024
3.0.667 3,681 12/20/2024
3.0.666 1,135 12/20/2024
3.0.665 214 12/20/2024
3.0.664 3,443 12/19/2024
3.0.663 424 12/19/2024
3.0.662 2,013 12/18/2024
3.0.661 107 12/18/2024
3.0.660 6,573 12/17/2024
3.0.659 210 12/17/2024
3.0.658 687 12/16/2024
3.0.657 110 12/16/2024
3.0.656 140 12/16/2024
3.0.655 98 12/16/2024
3.0.654 6,471 12/10/2024
3.0.653 994 12/10/2024
3.0.652 378 12/9/2024
3.0.651 104 12/9/2024
3.0.650 2,666 12/9/2024
3.0.649 1,366 12/9/2024
3.0.648 99 12/9/2024
3.0.647 3,624 12/9/2024
3.0.646 2,728 12/6/2024
3.0.645 425 12/6/2024
3.0.644 108 12/6/2024
3.0.643 688 12/6/2024
3.0.641 3,872 12/6/2024
3.0.640 2,440 12/6/2024
3.0.639 5,273 12/6/2024
3.0.637 371 12/6/2024
3.0.636 2,517 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,735 12/5/2024
3.0.631 1,029 12/5/2024
3.0.630 107 12/5/2024
3.0.629 377 12/5/2024
3.0.628 101 12/5/2024
3.0.627 145 12/5/2024
3.0.626 101 12/5/2024
3.0.625 3,358 12/4/2024
3.0.624 101 12/4/2024
3.0.623 111 12/4/2024
3.0.622 108 12/4/2024
3.0.621 1,713 12/4/2024
3.0.620 297 12/4/2024
3.0.619 410 12/4/2024
3.0.618 3,364 12/3/2024
3.0.617 108 12/3/2024
3.0.616 1,123 12/3/2024
3.0.615 439 12/3/2024
3.0.614 113 12/3/2024
3.0.613 112 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,068 12/2/2024
3.0.607 2,653 12/2/2024
3.0.606 1,620 12/2/2024
3.0.605 271 12/2/2024
3.0.604 106 12/2/2024
3.0.603 398 12/2/2024
3.0.602 3,445 12/1/2024
3.0.601 109 12/1/2024
3.0.600 1,876 12/1/2024
3.0.599 194 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,754 11/21/2024
3.0.593 295 11/21/2024
3.0.592 4,517 11/20/2024
3.0.591 335 11/20/2024
3.0.590 111 11/20/2024
3.0.589 112 11/20/2024
3.0.588 422 11/20/2024
3.0.587 154 11/20/2024
3.0.586 101 11/20/2024
3.0.585 2,026 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 106 11/19/2024
3.0.576 8,516 11/14/2024
3.0.575 136 11/14/2024
3.0.574 507 11/14/2024
3.0.573 2,372 11/14/2024
3.0.572 722 11/14/2024
3.0.571 113 11/14/2024
3.0.570 113 11/14/2024
3.0.569 4,145 11/14/2024
3.0.568 115 11/14/2024
3.0.567 110 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,449 11/13/2024
2.1.561 1,375 11/13/2024
2.1.560 3,057 11/13/2024
2.1.559 111 11/13/2024
2.1.558 1,334 11/12/2024
2.1.557 401 11/12/2024
2.1.556 8,248 11/9/2024
2.1.555 362 11/9/2024
2.1.554 106 11/9/2024
2.1.553 1,735 11/9/2024
2.1.552 108 11/9/2024
2.1.551 961 11/8/2024
2.1.550 110 11/8/2024
2.1.549 109 11/8/2024
2.1.548 111 11/8/2024
2.1.547 424 11/8/2024
2.1.546 1,896 11/8/2024
2.1.545 106 11/8/2024
2.1.544 5,465 11/8/2024
2.1.543 103 11/8/2024
2.1.542 11,654 11/1/2024
2.1.541 460 11/1/2024
2.1.540 6,778 10/29/2024
2.1.539 738 10/29/2024
2.1.538 2,837 10/29/2024
2.1.537 628 10/29/2024
2.1.536 5,558 10/28/2024
2.1.535 1,856 10/28/2024
2.1.534 4,012 10/26/2024
2.1.533 704 10/26/2024
2.1.532 9,286 10/22/2024
2.1.531 255 10/22/2024
2.1.530 550 10/22/2024
2.1.529 880 10/22/2024
2.1.528 95 10/22/2024
2.1.527 495 10/22/2024
2.1.526 6,504 10/18/2024
2.1.525 1,087 10/17/2024
2.1.524 4,151 10/15/2024
2.1.523 1,598 10/15/2024
2.1.522 102 10/14/2024
2.1.521 5,128 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,927 10/11/2024
2.1.516 6,389 10/9/2024
2.1.515 383 10/9/2024
2.1.514 101 10/9/2024
2.1.513 1,977 10/8/2024
2.1.512 148 10/8/2024
2.1.511 2,220 10/8/2024
2.1.510 146 10/8/2024
2.1.509 98 10/8/2024
2.1.508 3,938 10/8/2024
2.1.507 6,224 10/3/2024
2.1.506 106 10/3/2024
2.1.505 1,102 10/3/2024
2.1.504 1,925 10/3/2024
2.1.503 1,418 10/3/2024
2.1.502 5,727 10/2/2024
2.1.501 104 10/2/2024
2.1.500 1,816 10/2/2024
2.1.499 1,002 10/2/2024
2.1.498 4,175 10/1/2024
2.1.497 702 10/1/2024
2.1.496 116 10/1/2024
2.1.495 2,623 10/1/2024
2.1.494 108 10/1/2024
2.1.493 147 10/1/2024
2.1.492 5,428 9/29/2024
2.1.491 1,378 9/29/2024
2.1.490 109 9/29/2024
2.1.489 1,222 9/29/2024
2.1.488 112 9/29/2024
2.1.487 2,515 9/29/2024
2.1.486 5,231 9/27/2024
2.1.485 777 9/27/2024
2.1.484 3,131 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,164 9/26/2024
2.1.479 3,482 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,602 9/23/2024
2.1.473 1,296 9/23/2024
2.1.472 951 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 102 9/23/2024
2.1.467 4,664 9/23/2024
2.1.466 108 9/23/2024
2.1.465 717 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,206 9/18/2024
2.1.460 255 9/17/2024
2.1.459 1,204 9/17/2024
2.1.458 1,714 9/17/2024
2.1.457 108 9/17/2024
2.1.456 1,805 9/17/2024
2.1.455 464 9/17/2024
2.1.454 3,283 9/17/2024
2.1.453 555 9/17/2024
2.1.452 200 9/17/2024
2.1.451 2,654 9/17/2024
2.1.450 7,455 9/16/2024
2.1.449 720 9/16/2024
2.1.448 5,029 9/12/2024
2.1.447 2,922 9/12/2024
2.1.446 1,316 9/11/2024
2.1.445 1,535 9/11/2024
2.1.443 3,719 9/11/2024
2.1.442 998 9/11/2024
2.1.441 963 9/11/2024
2.1.440 2,315 9/11/2024
2.1.439 8,088 9/10/2024
2.1.438 131 9/10/2024
2.1.437 1,155 9/10/2024
2.1.436 125 9/10/2024
2.1.434 2,920 9/10/2024
2.1.433 607 9/9/2024
2.1.432 2,011 9/9/2024
2.1.430 1,551 9/9/2024
2.1.428 146 9/9/2024
2.1.427 468 9/9/2024
2.1.426 13,250 9/7/2024
2.1.425 138 9/7/2024
2.1.424 5,014 9/6/2024
2.1.423 376 9/6/2024
2.1.422 2,209 9/6/2024
2.1.421 123 9/5/2024
2.1.420 134 9/5/2024
2.1.419 2,391 9/5/2024
2.1.418 1,156 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 126 9/5/2024
2.1.413 5,044 9/5/2024
2.1.412 205 9/5/2024
2.1.411 131 9/5/2024
2.1.410 2,264 9/4/2024
2.1.409 8,013 9/3/2024
2.1.408 115 9/3/2024
2.1.407 110 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,287 8/29/2024
2.1.402 2,553 8/29/2024
2.1.401 2,891 8/26/2024
2.1.400 117 8/26/2024
2.1.399 4,944 8/21/2024
2.1.398 615 8/21/2024
2.1.397 138 8/21/2024
2.1.396 2,557 8/21/2024
2.1.395 152 8/20/2024
2.1.394 146 8/20/2024
2.1.393 480 8/20/2024
2.1.392 2,964 8/20/2024
2.1.391 425 8/20/2024
2.1.390 123 8/20/2024
2.1.389 2,651 8/20/2024
2.1.388 125 8/20/2024
2.1.387 1,212 8/20/2024
2.1.386 2,902 8/19/2024
2.1.385 4,778 8/15/2024
2.1.384 2,118 8/15/2024
2.1.383 4,813 8/14/2024
2.1.382 162 8/13/2024
2.1.381 5,698 8/7/2024
2.1.380 282 8/6/2024
2.1.379 2,692 8/6/2024
2.1.378 4,932 8/1/2024
2.1.377 341 8/1/2024
2.1.376 106 8/1/2024
2.1.374 1,141 8/1/2024
2.1.373 5,800 7/25/2024
2.1.372 102 7/25/2024
2.1.371 730 7/25/2024
2.1.370 313 7/25/2024
2.1.369 363 7/25/2024
2.1.368 189 7/25/2024
2.1.367 391 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,518 7/20/2024
2.1.362 1,457 7/20/2024
2.1.361 5,011 7/14/2024
2.1.360 1,552 7/14/2024
2.1.359 110 7/14/2024
2.1.358 1,504 7/14/2024
2.1.357 4,321 7/10/2024
2.1.355 801 7/10/2024
2.1.354 1,187 7/10/2024
2.1.353 127 7/10/2024
2.1.352 1,908 7/10/2024
2.1.351 130 7/10/2024
2.1.350 116 7/10/2024
2.1.349 184 7/10/2024
2.1.348 114 7/10/2024
2.1.347 2,052 7/10/2024
2.1.346 131 7/10/2024
2.1.345 816 7/10/2024
2.1.344 116 7/10/2024
2.1.343 215 7/9/2024
2.1.342 104 7/9/2024
2.1.339 1,978 7/9/2024
2.1.338 492 7/9/2024
2.1.337 4,013 7/9/2024
2.1.336 1,075 7/9/2024
2.1.335 122 7/9/2024
2.1.334 2,585 7/9/2024
2.1.333 121 7/9/2024
2.1.332 8,624 7/9/2024
2.1.331 110 7/9/2024
2.1.330 2,506 7/9/2024
2.1.329 102 7/9/2024
2.1.328 1,070 7/9/2024
2.1.327 716 7/8/2024
2.1.326 966 7/8/2024
2.1.325 130 7/8/2024
2.1.324 127 7/8/2024
2.1.323 4,848 7/8/2024
2.1.322 1,628 7/8/2024
2.1.321 132 7/8/2024
2.1.320 2,281 7/7/2024
2.1.319 130 7/7/2024
2.1.318 137 7/7/2024
2.1.317 121 7/7/2024
2.1.316 1,155 7/7/2024
2.1.315 2,169 7/7/2024
2.1.314 1,862 7/7/2024
2.1.313 223 7/7/2024
2.1.312 3,390 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,859 6/30/2024
2.1.306 2,246 6/28/2024
2.1.305 5,389 6/22/2024
2.1.304 4,859 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 584 6/1/2024
2.1.299 5,809 5/31/2024
2.1.298 3,691 5/29/2024
2.1.297 3,026 5/28/2024
2.1.296 2,458 5/27/2024
2.1.295 4,813 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 133 5/25/2024
2.1.289 126 5/25/2024
2.1.288 685 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,386 5/23/2024
2.1.282 531 5/23/2024
2.1.281 272 5/22/2024
2.1.280 3,626 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,114 5/22/2024
2.1.275 3,412 5/18/2024
2.1.274 1,890 5/18/2024
2.1.273 1,800 5/17/2024
2.1.272 118 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,735 5/3/2024
2.1.266 1,138 4/30/2024
2.1.265 1,751 4/29/2024
2.1.264 1,907 4/29/2024
2.1.263 2,643 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 119 4/28/2024
2.1.257 4,139 4/27/2024
2.1.256 133 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,143 4/12/2024
2.1.251 728 4/12/2024
2.1.250 865 4/12/2024
2.1.249 200 4/12/2024
2.1.248 115 4/12/2024
2.1.247 987 4/12/2024
2.1.246 307 4/12/2024
2.1.245 1,647 4/11/2024
2.1.244 3,705 4/10/2024
2.1.243 1,137 4/9/2024
2.1.242 3,158 4/2/2024
2.1.241 901 4/1/2024
2.1.240 2,079 3/29/2024
2.1.239 1,834 3/25/2024
2.1.238 303 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,338 3/18/2024
2.1.233 1,394 3/18/2024
2.1.232 1,381 3/15/2024
2.1.231 2,344 3/13/2024
2.1.230 1,101 3/13/2024
2.1.229 662 3/13/2024
2.1.228 762 3/13/2024
2.1.227 141 3/13/2024
2.1.226 542 3/13/2024
2.1.225 146 3/13/2024
2.1.224 153 3/13/2024
2.1.223 1,660 3/12/2024
2.1.222 2,828 3/11/2024
2.1.221 2,464 3/11/2024
2.1.220 1,625 3/10/2024
2.1.219 1,873 3/8/2024
2.1.218 1,058 3/8/2024
2.1.217 1,556 3/8/2024
2.1.216 2,079 3/6/2024
2.1.215 1,997 3/4/2024
2.1.214 1,412 3/4/2024
2.1.213 2,557 3/2/2024
2.1.212 1,214 3/2/2024
2.1.211 410 3/2/2024
2.1.210 354 3/2/2024
2.1.209 476 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,295 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 957 2/22/2024
2.1.200 439 2/21/2024
2.1.199 1,187 2/21/2024
2.1.198 297 2/21/2024
2.1.197 770 2/21/2024
2.1.196 136 2/21/2024
2.1.195 1,245 2/21/2024
2.1.194 411 2/21/2024
2.1.193 144 2/21/2024
2.1.192 143 2/21/2024
2.1.191 597 2/21/2024
2.1.190 123 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 755 2/20/2024
2.1.185 2,117 2/19/2024
2.1.184 1,873 2/17/2024
2.1.183 898 2/16/2024
2.1.182 861 2/16/2024
2.1.181 1,356 2/16/2024
2.1.180 132 2/16/2024
2.1.179 643 2/16/2024
2.1.178 139 2/16/2024
2.1.177 138 2/16/2024
2.1.176 558 2/16/2024
2.1.175 124 2/16/2024
2.1.174 3,285 2/13/2024
2.1.173 1,381 2/13/2024
2.1.172 1,090 2/13/2024
2.1.171 457 2/13/2024
2.1.170 630 2/13/2024
2.1.169 1,935 2/12/2024
2.1.168 514 2/11/2024
2.1.167 1,518 2/11/2024
2.1.166 861 2/11/2024
2.1.165 2,778 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 394 2/8/2024
2.1.159 1,220 2/8/2024
2.1.158 855 2/8/2024
2.1.157 1,461 2/8/2024
2.1.156 133 2/8/2024
2.1.155 1,866 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 385 2/6/2024
2.1.150 141 2/6/2024
2.1.149 135 2/6/2024
2.1.148 2,769 2/5/2024
2.1.147 1,527 2/4/2024
2.1.146 2,085 2/2/2024
2.1.145 1,912 1/31/2024
2.1.144 2,136 1/29/2024
2.1.143 1,357 1/29/2024
2.1.142 350 1/29/2024
2.1.141 1,487 1/28/2024
2.1.140 461 1/28/2024
2.1.139 310 1/28/2024
2.1.138 553 1/28/2024
2.1.137 1,922 1/28/2024
2.1.136 930 1/28/2024
2.1.135 291 1/27/2024
2.1.134 931 1/27/2024
2.1.133 1,164 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,058 1/26/2024
2.1.128 225 1/26/2024
2.1.127 875 1/26/2024
2.1.126 1,121 1/26/2024
2.1.125 1,629 1/26/2024
2.1.124 889 1/25/2024
2.1.123 1,105 1/25/2024
2.1.122 457 1/25/2024
2.1.121 919 1/25/2024
2.1.120 524 1/25/2024
2.1.119 2,573 1/19/2024
2.1.118 2,217 1/15/2024
2.1.117 506 1/15/2024
2.1.116 1,227 1/15/2024
2.1.115 137 1/15/2024
2.1.114 569 1/15/2024
2.1.113 1,374 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,046 1/11/2024
2.1.108 2,644 1/7/2024
2.1.107 2,089 1/5/2024
2.1.106 491 1/5/2024
2.1.105 150 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,771 1/1/2024
2.1.100 2,220 12/28/2023
2.1.99 747 12/28/2023
2.1.98 503 12/28/2023
2.1.97 143 12/28/2023
2.1.96 139 12/28/2023
2.1.95 720 12/27/2023
2.1.94 151 12/27/2023
2.1.93 480 12/27/2023
2.1.92 146 12/27/2023
2.1.91 150 12/27/2023
2.1.90 2,223 12/25/2023
2.1.89 360 12/25/2023
2.1.88 786 12/25/2023
2.1.87 150 12/25/2023
2.1.86 642 12/25/2023
2.1.85 141 12/25/2023
2.1.84 578 12/25/2023
2.1.83 146 12/25/2023
2.1.82 1,665 12/24/2023
2.1.81 1,079 12/23/2023
2.1.80 877 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,093 12/23/2023
2.1.74 133 12/23/2023
2.1.73 1,413 12/19/2023
2.1.72 227 12/19/2023
2.1.71 3,090 12/11/2023
2.1.70 729 12/10/2023
2.1.69 129 12/10/2023
2.1.68 498 12/10/2023
2.1.67 1,422 12/10/2023
2.1.66 376 12/9/2023
2.1.65 378 12/9/2023
2.1.64 301 12/9/2023
2.1.63 143 12/9/2023
2.1.62 273 12/9/2023
2.1.61 208 12/9/2023
2.1.60 143 12/9/2023
2.1.59 1,077 12/9/2023
2.1.58 137 12/9/2023
2.1.57 1,527 12/6/2023
2.1.56 398 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 342 12/5/2023
2.1.47 279 12/5/2023
2.1.46 132 12/4/2023
2.1.45 136 12/4/2023
2.1.44 333 12/4/2023
2.1.43 146 12/4/2023
2.1.42 1,010 12/4/2023
2.1.41 116 12/4/2023
2.1.40 1,173 11/27/2023
2.1.39 523 11/26/2023
2.1.38 221 11/26/2023
2.1.37 630 11/23/2023
2.1.36 687 11/23/2023
2.1.35 643 11/23/2023
2.1.34 134 11/23/2023
2.1.33 401 11/23/2023
2.1.32 141 11/23/2023
2.1.31 1,081 11/20/2023
2.1.30 1,056 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 124 11/19/2023
2.1.23 222 11/18/2023
2.1.22 981 11/18/2023
2.1.21 381 11/18/2023
2.1.20 534 11/18/2023
2.1.19 134 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 519 11/17/2023
2.1.14 129 11/17/2023
2.1.13 424 11/17/2023
2.1.12 300 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 129 11/17/2023
2.1.7 147 11/17/2023
2.1.6 339 11/17/2023
2.1.5 375 11/16/2023
2.0.101 2,074 11/15/2023
2.0.100 125 11/15/2023
2.0.99 134 11/15/2023
2.0.4 132 11/16/2023
2.0.3 137 11/16/2023
2.0.2 130 11/16/2023
2.0.1 126 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 124 11/10/2023
1.0.93 938 11/9/2023
1.0.92 129 11/9/2023
1.0.91 1,047 11/7/2023
1.0.90 121 11/7/2023
1.0.89 510 11/6/2023
1.0.88 132 11/6/2023
1.0.87 599 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,449 10/26/2023
1.0.81 1,298 10/19/2023
1.0.80 142 10/19/2023
1.0.79 777 10/18/2023
1.0.78 159 10/18/2023
1.0.77 731 10/17/2023
1.0.76 149 10/17/2023
1.0.75 657 10/16/2023
1.0.74 152 10/16/2023
1.0.73 700 10/13/2023
1.0.72 337 10/12/2023
1.0.71 1,736 9/20/2023
1.0.70 678 9/19/2023
1.0.69 682 9/18/2023
1.0.68 144 9/18/2023
1.0.67 897 9/14/2023
1.0.66 1,504 8/31/2023
1.0.65 150 8/31/2023
1.0.64 807 8/30/2023
1.0.63 159 8/30/2023
1.0.62 164 8/30/2023
1.0.61 839 8/28/2023
1.0.60 693 8/25/2023
1.0.59 152 8/25/2023
1.0.58 491 8/24/2023
1.0.57 1,455 8/21/2023
1.0.56 827 8/18/2023
1.0.55 750 8/17/2023
1.0.54 157 8/17/2023
1.0.53 1,898 8/10/2023
1.0.52 564 8/9/2023
1.0.51 674 8/8/2023
1.0.50 655 8/7/2023
1.0.49 180 8/7/2023
1.0.48 2,459 7/13/2023
1.0.47 888 7/11/2023
1.0.46 723 7/10/2023
1.0.45 691 7/7/2023
1.0.44 175 7/7/2023
1.0.43 2,110 6/30/2023
1.0.42 1,061 6/29/2023
1.0.41 599 6/28/2023
1.0.40 1,536 6/26/2023
1.0.39 783 6/23/2023
1.0.38 1,089 6/21/2023
1.0.37 1,447 6/15/2023
1.0.36 482 6/14/2023
1.0.35 1,800 6/9/2023
1.0.34 827 6/8/2023
1.0.33 1,628 6/7/2023
1.0.32 178 6/7/2023
1.0.31 1,221 6/6/2023
1.0.30 1,180 6/5/2023
1.0.29 1,358 6/2/2023
1.0.28 166 6/2/2023
1.0.27 1,250 6/1/2023
1.0.26 606 5/31/2023
1.0.25 491 5/31/2023
1.0.24 172 5/31/2023
1.0.23 1,468 5/30/2023
1.0.22 1,523 5/26/2023
1.0.21 682 5/25/2023
1.0.20 158 5/25/2023
1.0.19 837 5/24/2023
1.0.18 166 5/24/2023
1.0.17 458 5/23/2023
1.0.13 1,475 5/22/2023
1.0.12 1,195 5/18/2023
1.0.11 601 5/17/2023
1.0.10 1,559 5/1/2023
1.0.9 1,031 4/25/2023
1.0.8 484 4/24/2023
1.0.7 1,005 4/21/2023
1.0.6 1,965 4/13/2023
1.0.5 606 4/12/2023
1.0.4 1,028 4/8/2023
1.0.3 198 4/8/2023
1.0.2 597 4/8/2023
1.0.1 203 4/8/2023