Soenneker.Utils.AsyncSingleton 2.1.414

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.AsyncSingleton --version 2.1.414
                    
NuGet\Install-Package Soenneker.Utils.AsyncSingleton -Version 2.1.414
                    
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.AsyncSingleton" Version="2.1.414" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.AsyncSingleton" Version="2.1.414" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Utils.AsyncSingleton" />
                    
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.AsyncSingleton --version 2.1.414
                    
#r "nuget: Soenneker.Utils.AsyncSingleton, 2.1.414"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soenneker.Utils.AsyncSingleton@2.1.414
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Utils.AsyncSingleton&version=2.1.414
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=2.1.414
                    
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.AsyncSingleton

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

Installation

dotnet add package Soenneker.Utils.AsyncSingleton

Example

The example below is a long-living HttpClient implementation using AsyncSingleton. It avoids the additional overhead of IHttpClientFactory, and doesn't rely on short-lived clients.

public class HttpRequester : IDisposable, IAsyncDisposable
{
    private readonly AsyncSingleton<HttpClient> _client;

    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.
        _client = new AsyncSingleton<HttpClient>(() =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

            return new HttpClient(socketsHandler);
        });
    }

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

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

        return _client.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(this);
        
        _client.Dispose();
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (32)

Showing the top 5 NuGet packages that depend on Soenneker.Utils.AsyncSingleton:

Package Downloads
Soenneker.Utils.MemoryStream

An easy modern MemoryStream utility

Soenneker.Utils.Runtime

A collection of helpful runtime-based operations

Soenneker.Redis.Client

A utility library for Redis client accessibility

Soenneker.GitHub.Client

An async thread-safe singleton for Octokit's GitHubClient

Soenneker.Blazor.Utils.JsVariable

A Blazor interop library that checks (and waits) for the existence of a JS variable

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.716 50,261 9/3/2025
3.0.715 165 9/3/2025
3.0.714 43,774 8/11/2025
3.0.713 155 8/11/2025
3.0.712 78,804 7/1/2025
3.0.711 9,303 6/27/2025
3.0.710 1,188 6/27/2025
3.0.709 49,233 5/27/2025
3.0.708 844 5/27/2025
3.0.707 18,979 5/22/2025
3.0.705 29,848 5/7/2025
3.0.704 500 5/7/2025
3.0.703 17,934 5/5/2025
3.0.702 540 5/5/2025
3.0.701 191 5/5/2025
3.0.700 22,806 4/8/2025
3.0.699 5,576 4/8/2025
3.0.698 2,912 4/8/2025
3.0.697 3,849 4/8/2025
3.0.696 10,080 4/7/2025
3.0.695 3,585 4/7/2025
3.0.694 9,583 4/7/2025
3.0.693 8,617 4/7/2025
3.0.692 2,624 4/7/2025
3.0.691 2,505 4/6/2025
3.0.690 1,453 4/6/2025
3.0.689 293 4/6/2025
3.0.688 214 4/6/2025
3.0.687 3,683 4/6/2025
3.0.686 2,178 4/6/2025
3.0.685 163 4/6/2025
3.0.684 9,066 4/5/2025
3.0.683 1,519 4/5/2025
3.0.682 474 4/5/2025
3.0.681 170 4/5/2025
3.0.680 796 4/4/2025
3.0.679 295 4/4/2025
3.0.678 46,628 4/1/2025
3.0.677 12,137 3/31/2025
3.0.676 9,110 3/29/2025
3.0.675 11,916 3/25/2025
3.0.674 9,369 3/21/2025
3.0.673 16,954 3/15/2025
3.0.672 9,551 3/12/2025
3.0.671 913 3/12/2025
3.0.670 4,848 3/11/2025
3.0.669 294 3/11/2025
3.0.668 6,525 3/11/2025
3.0.667 6,062 3/11/2025
3.0.666 20,072 3/2/2025
3.0.665 2,205 3/2/2025
3.0.664 2,349 3/1/2025
3.0.663 3,704 3/1/2025
3.0.662 3,415 3/1/2025
3.0.661 2,454 3/1/2025
3.0.660 147 3/1/2025
3.0.659 3,635 3/1/2025
3.0.658 14,255 2/25/2025
3.0.657 3,304 2/25/2025
3.0.656 2,917 2/25/2025
3.0.655 3,585 2/24/2025
3.0.654 8,403 2/22/2025
3.0.653 13,485 2/22/2025
3.0.652 423 2/22/2025
3.0.651 3,862 2/21/2025
3.0.650 8,202 2/21/2025
3.0.649 10,874 2/19/2025
3.0.648 633 2/18/2025
3.0.647 2,098 2/18/2025
3.0.646 2,384 2/18/2025
3.0.645 6,155 2/18/2025
3.0.644 10,983 2/13/2025
3.0.643 12,330 2/12/2025
3.0.642 1,249 2/12/2025
3.0.641 2,161 2/12/2025
3.0.640 2,382 2/11/2025
3.0.639 2,421 2/11/2025
3.0.638 2,938 2/11/2025
3.0.637 4,389 2/11/2025
3.0.636 5,615 2/11/2025
3.0.635 7,430 2/10/2025
3.0.634 165 2/10/2025
3.0.633 9,383 2/9/2025
3.0.632 6,969 2/8/2025
3.0.631 1,422 2/8/2025
3.0.630 2,781 2/7/2025
3.0.629 3,377 2/7/2025
3.0.628 3,759 2/7/2025
3.0.627 372 2/7/2025
3.0.626 3,490 2/7/2025
3.0.625 156 2/7/2025
3.0.624 836 2/7/2025
3.0.623 18,626 2/5/2025
3.0.622 1,587 2/5/2025
3.0.621 2,793 2/5/2025
3.0.620 2,177 2/5/2025
3.0.619 21,846 1/28/2025
3.0.618 5,776 1/28/2025
3.0.617 368 1/27/2025
3.0.616 21,055 1/26/2025
3.0.615 1,944 1/26/2025
3.0.614 4,711 1/25/2025
3.0.613 6,469 1/25/2025
3.0.612 4,070 1/25/2025
3.0.611 2,216 1/24/2025
3.0.610 16,108 1/24/2025
3.0.609 5,343 1/24/2025
3.0.608 5,118 1/24/2025
3.0.607 4,235 1/23/2025
3.0.606 3,970 1/23/2025
3.0.605 12,348 1/21/2025
3.0.604 2,642 1/21/2025
3.0.603 6,318 1/21/2025
3.0.602 4,239 1/21/2025
3.0.601 5,847 1/21/2025
3.0.600 5,874 1/20/2025
3.0.599 456 1/20/2025
3.0.598 809 1/20/2025
3.0.597 5,931 1/20/2025
3.0.596 7,413 1/20/2025
3.0.595 878 1/20/2025
3.0.594 163 1/20/2025
3.0.593 865 1/20/2025
3.0.592 145 1/20/2025
3.0.591 18,376 1/19/2025
3.0.590 2,949 1/19/2025
3.0.589 2,960 1/18/2025
3.0.588 4,720 1/18/2025
3.0.587 1,897 1/18/2025
3.0.586 7,647 1/17/2025
3.0.585 1,482 1/17/2025
3.0.584 3,980 1/17/2025
3.0.583 3,488 1/16/2025
3.0.582 20,461 1/16/2025
3.0.581 1,860 1/16/2025
3.0.580 3,746 1/16/2025
3.0.579 4,684 1/15/2025
3.0.578 2,788 1/15/2025
3.0.577 5,040 1/15/2025
3.0.576 8,325 1/15/2025
3.0.575 1,470 1/15/2025
3.0.574 4,149 1/15/2025
3.0.573 435 1/15/2025
3.0.572 3,882 1/14/2025
3.0.571 1,852 1/14/2025
3.0.570 4,183 1/14/2025
3.0.569 17,026 1/13/2025
3.0.568 6,035 1/12/2025
3.0.567 9,094 1/11/2025
3.0.566 2,535 1/11/2025
3.0.565 1,212 1/11/2025
3.0.564 1,035 1/10/2025
3.0.563 5,365 1/10/2025
3.0.562 532 1/10/2025
3.0.561 1,020 1/10/2025
3.0.560 145 1/10/2025
3.0.559 139 1/10/2025
3.0.558 11,146 1/8/2025
3.0.557 345 1/8/2025
3.0.556 4,723 1/3/2025
3.0.555 3,699 1/3/2025
3.0.554 5,095 1/2/2025
3.0.553 913 1/2/2025
3.0.552 186 1/2/2025
3.0.551 2,857 1/2/2025
3.0.550 6,308 1/1/2025
3.0.549 902 1/1/2025
3.0.548 1,476 1/1/2025
3.0.547 1,668 1/1/2025
3.0.546 163 1/1/2025
3.0.545 791 12/31/2024
3.0.544 156 12/31/2024
3.0.543 317 12/31/2024
3.0.542 9,012 12/31/2024
3.0.541 9,526 12/31/2024
3.0.540 3,881 12/31/2024
3.0.539 4,770 12/31/2024
3.0.538 3,440 12/31/2024
3.0.537 1,555 12/31/2024
3.0.536 159 12/31/2024
3.0.535 5,814 12/31/2024
3.0.534 18,121 12/27/2024
3.0.533 3,402 12/27/2024
3.0.532 12,324 12/24/2024
3.0.531 826 12/24/2024
3.0.530 1,737 12/24/2024
3.0.529 345 12/24/2024
3.0.528 401 12/24/2024
3.0.527 2,096 12/23/2024
3.0.526 4,377 12/23/2024
3.0.525 2,136 12/23/2024
3.0.524 1,992 12/23/2024
3.0.523 2,774 12/23/2024
3.0.522 1,487 12/23/2024
3.0.521 3,552 12/22/2024
3.0.520 167 12/22/2024
3.0.519 14,875 12/22/2024
3.0.518 180 12/22/2024
3.0.517 11,465 12/22/2024
3.0.516 152 12/22/2024
3.0.515 5,466 12/22/2024
3.0.514 170 12/22/2024
3.0.513 1,124 12/21/2024
3.0.512 378 12/21/2024
3.0.511 145 12/21/2024
3.0.510 9,687 12/21/2024
3.0.509 1,029 12/21/2024
3.0.508 142 12/21/2024
3.0.507 1,713 12/21/2024
3.0.506 161 12/21/2024
3.0.505 5,760 12/21/2024
3.0.504 1,797 12/21/2024
3.0.503 4,498 12/21/2024
3.0.502 158 12/21/2024
3.0.501 2,795 12/20/2024
3.0.500 2,779 12/20/2024
3.0.499 5,454 12/20/2024
3.0.498 1,657 12/20/2024
3.0.497 794 12/20/2024
3.0.496 8,567 12/19/2024
3.0.495 763 12/19/2024
3.0.494 1,256 12/18/2024
3.0.493 689 12/18/2024
3.0.492 13,068 12/17/2024
3.0.491 456 12/17/2024
3.0.490 978 12/17/2024
3.0.489 1,261 12/17/2024
3.0.488 1,364 12/16/2024
3.0.487 434 12/16/2024
3.0.486 136 12/16/2024
3.0.485 11,666 12/9/2024
3.0.484 2,850 12/9/2024
3.0.483 6,105 12/9/2024
3.0.482 1,198 12/9/2024
3.0.480 12,359 12/6/2024
3.0.479 6,715 12/6/2024
3.0.478 2,210 12/6/2024
3.0.477 1,208 12/6/2024
3.0.476 866 12/6/2024
3.0.475 2,619 12/6/2024
3.0.474 8,084 12/6/2024
3.0.473 10,593 12/5/2024
3.0.472 1,229 12/5/2024
3.0.471 6,013 12/5/2024
3.0.470 2,640 12/5/2024
3.0.469 873 12/5/2024
3.0.468 5,683 12/4/2024
3.0.467 3,097 12/4/2024
3.0.466 3,272 12/4/2024
3.0.465 8,592 12/3/2024
3.0.464 365 12/3/2024
3.0.463 2,033 12/3/2024
3.0.462 7,119 12/3/2024
3.0.461 1,389 12/3/2024
3.0.460 4,391 12/3/2024
3.0.459 148 12/3/2024
3.0.458 984 12/3/2024
3.0.457 9,967 12/2/2024
3.0.456 4,328 12/2/2024
3.0.455 1,382 12/2/2024
3.0.454 1,168 12/1/2024
3.0.453 5,772 12/1/2024
3.0.452 6,301 12/1/2024
3.0.451 6,509 11/29/2024
3.0.450 10,767 11/20/2024
3.0.449 6,903 11/20/2024
3.0.448 565 11/20/2024
3.0.447 2,390 11/20/2024
3.0.445 3,019 11/19/2024
3.0.444 2,629 11/19/2024
3.0.443 7,070 11/19/2024
3.0.442 5,133 11/19/2024
3.0.441 146 11/19/2024
3.0.439 13,981 11/14/2024
3.0.438 5,520 11/14/2024
3.0.437 2,357 11/14/2024
3.0.436 4,286 11/14/2024
3.0.435 442 11/14/2024
3.0.434 170 11/14/2024
3.0.433 1,524 11/14/2024
3.0.432 149 11/14/2024
2.1.431 20,452 11/13/2024
2.1.430 3,957 11/13/2024
2.1.429 3,102 11/12/2024
2.1.428 14,308 11/9/2024
2.1.427 3,053 11/9/2024
2.1.426 3,336 11/8/2024
2.1.425 1,508 11/8/2024
2.1.424 1,626 11/8/2024
2.1.423 1,927 11/8/2024
2.1.422 2,212 11/8/2024
2.1.421 5,936 11/8/2024
2.1.420 22,254 11/1/2024
2.1.419 10,302 10/29/2024
2.1.418 4,117 10/29/2024
2.1.417 5,471 10/29/2024
2.1.416 10,078 10/28/2024
2.1.415 10,178 10/26/2024
2.1.414 12,210 10/22/2024
2.1.413 3,724 10/22/2024
2.1.412 2,121 10/22/2024
2.1.411 11,269 10/17/2024
2.1.410 9,982 10/15/2024
2.1.409 1,956 10/14/2024
2.1.408 10,265 10/11/2024
2.1.407 2,868 10/11/2024
2.1.406 1,977 10/11/2024
2.1.404 15,505 10/8/2024
2.1.403 6,378 10/8/2024
2.1.402 19,266 10/3/2024
2.1.401 1,449 10/3/2024
2.1.400 3,277 10/3/2024
2.1.399 12,457 10/2/2024
2.1.398 4,117 10/2/2024
2.1.397 12,839 10/1/2024
2.1.396 1,202 10/1/2024
2.1.395 6,275 9/30/2024
2.1.394 9,974 9/29/2024
2.1.393 3,245 9/29/2024
2.1.392 3,142 9/29/2024
2.1.391 8,758 9/27/2024
2.1.390 6,077 9/27/2024
2.1.389 229 9/27/2024
2.1.388 907 9/27/2024
2.1.387 2,322 9/27/2024
2.1.386 167 9/27/2024
2.1.385 13,068 9/26/2024
2.1.384 11,511 9/26/2024
2.1.383 5,100 9/26/2024
2.1.382 14,428 9/23/2024
2.1.381 3,683 9/23/2024
2.1.380 6,260 9/23/2024
2.1.379 6,212 9/23/2024
2.1.378 4,699 9/23/2024
2.1.377 954 9/23/2024
2.1.376 2,377 9/23/2024
2.1.375 151 9/23/2024
2.1.374 17,446 9/17/2024
2.1.373 840 9/17/2024
2.1.372 3,380 9/17/2024
2.1.371 3,490 9/17/2024
2.1.370 3,863 9/17/2024
2.1.369 5,125 9/17/2024
2.1.368 5,822 9/17/2024
2.1.367 19,233 9/16/2024
2.1.366 9,943 9/12/2024
2.1.365 3,753 9/11/2024
2.1.363 10,656 9/11/2024
2.1.362 20,804 9/10/2024
2.1.361 936 9/10/2024
2.1.360 1,251 9/10/2024
2.1.359 1,163 9/10/2024
2.1.358 4,439 9/9/2024
2.1.357 1,879 9/9/2024
2.1.356 7,422 9/9/2024
2.1.355 2,145 9/9/2024
2.1.354 8,387 9/9/2024
2.1.353 16,257 9/7/2024
2.1.352 12,168 9/6/2024
2.1.351 6,320 9/5/2024
2.1.350 6,441 9/5/2024
2.1.349 659 9/5/2024
2.1.348 196 9/5/2024
2.1.347 11,088 9/5/2024
2.1.346 1,303 9/4/2024
2.1.345 16,710 9/3/2024
2.1.344 7,687 9/3/2024
2.1.343 5,583 9/3/2024
2.1.342 10,915 8/29/2024
2.1.341 9,027 8/26/2024
2.1.340 9,529 8/21/2024
2.1.339 3,584 8/21/2024
2.1.338 2,064 8/20/2024
2.1.337 7,370 8/20/2024
2.1.336 184 8/20/2024
2.1.335 175 8/20/2024
2.1.334 12,068 8/19/2024
2.1.333 11,730 8/15/2024
2.1.332 11,646 8/13/2024
2.1.331 9,763 8/6/2024
2.1.330 5,502 8/6/2024
2.1.329 8,405 8/1/2024
2.1.328 1,727 8/1/2024
2.1.327 824 8/1/2024
2.1.326 12,021 7/25/2024
2.1.325 2,515 7/25/2024
2.1.324 2,215 7/25/2024
2.1.323 362 7/24/2024
2.1.322 953 7/24/2024
2.1.321 493 7/24/2024
2.1.320 12,346 7/20/2024
2.1.319 15,268 7/14/2024
2.1.318 5,630 7/14/2024
2.1.317 8,527 7/10/2024
2.1.316 3,750 7/10/2024
2.1.315 3,315 7/10/2024
2.1.314 1,962 7/10/2024
2.1.313 1,340 7/10/2024
2.1.312 428 7/10/2024
2.1.311 3,323 7/10/2024
2.1.310 1,676 7/9/2024
2.1.308 3,393 7/9/2024
2.1.307 161 7/9/2024
2.1.306 3,698 7/9/2024
2.1.305 8,597 7/9/2024
2.1.304 6,908 7/9/2024
2.1.303 3,438 7/9/2024
2.1.302 161 7/9/2024
2.1.301 11,407 7/9/2024
2.1.300 7,742 7/8/2024
2.1.299 498 7/8/2024
2.1.298 157 7/8/2024
2.1.297 170 7/8/2024
2.1.296 10,434 7/8/2024
2.1.295 2,077 7/7/2024
2.1.294 6,354 7/7/2024
2.1.293 179 7/7/2024
2.1.292 1,840 7/7/2024
2.1.291 3,836 7/7/2024
2.1.290 12,846 7/3/2024
2.1.289 4,138 7/3/2024
2.1.288 3,762 7/3/2024
2.1.287 1,114 7/3/2024
2.1.286 7,235 7/2/2024
2.1.283 4,434 6/30/2024
2.1.282 2,957 6/28/2024
2.1.281 334 6/28/2024
2.1.279 9,579 6/22/2024
2.1.278 11,086 6/15/2024
2.1.277 1,446 6/15/2024
2.1.276 8,377 6/14/2024
2.1.275 13,450 6/1/2024
2.1.274 2,190 6/1/2024
2.1.273 1,416 6/1/2024
2.1.272 11,904 5/31/2024
2.1.271 7,374 5/29/2024
2.1.270 8,396 5/28/2024
2.1.269 4,757 5/27/2024
2.1.268 8,714 5/26/2024
2.1.267 8,702 5/26/2024
2.1.266 434 5/26/2024
2.1.265 3,197 5/25/2024
2.1.264 2,251 5/25/2024
2.1.263 2,239 5/25/2024
2.1.262 167 5/25/2024
2.1.261 1,753 5/25/2024
2.1.260 172 5/25/2024
2.1.259 6,093 5/25/2024
2.1.258 164 5/25/2024
2.1.257 10,913 5/23/2024
2.1.256 4,400 5/23/2024
2.1.255 3,142 5/22/2024
2.1.254 2,410 5/22/2024
2.1.253 1,008 5/22/2024
2.1.252 167 5/22/2024
2.1.251 165 5/22/2024
2.1.250 4,559 5/22/2024
2.1.249 11,526 5/18/2024
2.1.248 2,428 5/17/2024
2.1.247 4,289 5/17/2024
2.1.246 6,520 5/16/2024
2.1.245 1,735 5/15/2024
2.1.244 4,896 5/15/2024
2.1.243 9,887 5/12/2024
2.1.242 5,444 5/3/2024
2.1.241 5,982 4/29/2024
2.1.240 3,425 4/29/2024
2.1.239 6,551 4/28/2024
2.1.238 1,110 4/28/2024
2.1.237 1,282 4/28/2024
2.1.236 5,010 4/28/2024
2.1.235 747 4/28/2024
2.1.234 6,483 4/28/2024
2.1.233 1,437 4/28/2024
2.1.232 6,093 4/27/2024
2.1.231 176 4/27/2024
2.1.230 12,386 4/19/2024
2.1.229 7,619 4/18/2024
2.1.228 7,900 4/12/2024
2.1.227 1,293 4/12/2024
2.1.226 2,044 4/12/2024
2.1.225 1,733 4/12/2024
2.1.224 1,149 4/12/2024
2.1.223 1,767 4/12/2024
2.1.222 714 4/12/2024
2.1.221 182 4/12/2024
2.1.220 4,359 4/10/2024
2.1.219 19,445 4/10/2024
2.1.218 850 4/10/2024
2.1.217 9,424 4/2/2024
2.1.216 1,703 4/1/2024
2.1.215 9,094 3/29/2024
2.1.214 6,654 3/25/2024
2.1.213 780 3/25/2024
2.1.212 9,165 3/20/2024
2.1.211 6,340 3/19/2024
2.1.210 3,823 3/19/2024
2.1.209 4,156 3/18/2024
2.1.208 9,142 3/15/2024
2.1.207 6,217 3/13/2024
2.1.206 2,407 3/13/2024
2.1.205 3,206 3/13/2024
2.1.204 232 3/13/2024
2.1.203 221 3/13/2024
2.1.202 2,005 3/13/2024
2.1.201 215 3/13/2024
2.1.200 4,499 3/12/2024
2.1.199 5,834 3/12/2024
2.1.198 7,446 3/11/2024
2.1.197 5,294 3/11/2024
2.1.196 5,635 3/10/2024
2.1.195 7,296 3/8/2024
2.1.194 675 3/8/2024
2.1.193 5,196 3/8/2024
2.1.192 6,664 3/6/2024
2.1.191 6,651 3/4/2024
2.1.190 3,736 3/4/2024
2.1.189 7,435 3/2/2024
2.1.188 1,943 3/2/2024
2.1.187 2,458 3/2/2024
2.1.186 1,363 3/2/2024
2.1.185 964 3/2/2024
2.1.184 5,112 2/29/2024
2.1.183 1,682 2/29/2024
2.1.182 2,520 2/29/2024
2.1.181 4,789 2/26/2024
2.1.180 18,606 2/25/2024
2.1.179 2,260 2/25/2024
2.1.178 7,439 2/23/2024
2.1.177 7,119 2/22/2024
2.1.176 2,047 2/22/2024
2.1.175 2,445 2/21/2024
2.1.174 3,926 2/21/2024
2.1.173 3,456 2/21/2024
2.1.172 4,417 2/21/2024
2.1.171 1,815 2/21/2024
2.1.170 418 2/21/2024
2.1.169 3,950 2/21/2024
2.1.168 1,348 2/20/2024
2.1.167 274 2/20/2024
2.1.166 274 2/20/2024
2.1.165 5,335 2/20/2024
2.1.164 4,065 2/20/2024
2.1.163 3,911 2/20/2024
2.1.162 8,195 2/19/2024
2.1.161 6,382 2/17/2024
2.1.160 2,678 2/17/2024
2.1.159 1,990 2/16/2024
2.1.158 1,401 2/16/2024
2.1.157 2,383 2/16/2024
2.1.156 3,641 2/16/2024
2.1.155 4,239 2/16/2024
2.1.154 325 2/16/2024
2.1.153 2,104 2/16/2024
2.1.152 309 2/16/2024
2.1.151 304 2/16/2024
2.1.150 7,179 2/14/2024
2.1.149 3,008 2/13/2024
2.1.148 3,615 2/13/2024
2.1.147 4,474 2/13/2024
2.1.146 4,301 2/13/2024
2.1.145 5,874 2/12/2024
2.1.144 956 2/11/2024
2.1.143 6,367 2/11/2024
2.1.142 3,576 2/11/2024
2.1.141 7,503 2/10/2024
2.1.140 964 2/9/2024
2.1.139 6,772 2/9/2024
2.1.138 4,376 2/9/2024
2.1.137 1,192 2/8/2024
2.1.136 5,491 2/8/2024
2.1.135 2,232 2/8/2024
2.1.134 13,605 2/8/2024
2.1.133 381 2/8/2024
2.1.132 316 2/8/2024
2.1.131 6,173 2/7/2024
2.1.130 2,538 2/7/2024
2.1.129 4,261 2/7/2024
2.1.128 1,366 2/7/2024
2.1.127 1,244 2/6/2024
2.1.126 3,479 2/6/2024
2.1.125 349 2/6/2024
2.1.124 8,994 2/5/2024
2.1.123 5,833 2/4/2024
2.1.122 6,214 2/2/2024
2.1.121 7,299 1/31/2024
2.1.120 7,150 1/29/2024
2.1.119 4,435 1/29/2024
2.1.118 2,944 1/29/2024
2.1.117 4,653 1/28/2024
2.1.116 6,190 1/28/2024
2.1.115 3,528 1/28/2024
2.1.114 2,136 1/28/2024
2.1.113 2,718 1/27/2024
2.1.112 2,509 1/27/2024
2.1.111 6,506 1/27/2024
2.1.110 3,314 1/27/2024
2.1.109 7,638 1/27/2024
2.1.108 2,123 1/26/2024
2.1.107 2,583 1/26/2024
2.1.106 3,162 1/26/2024
2.1.105 6,023 1/26/2024
2.1.104 2,874 1/26/2024
2.1.103 1,645 1/26/2024
2.1.102 5,339 1/25/2024
2.1.101 4,278 1/25/2024
2.1.100 2,105 1/25/2024
2.1.99 6,754 1/25/2024
2.1.98 6,739 1/19/2024
2.1.97 6,704 1/15/2024
2.1.96 3,053 1/15/2024
2.1.95 2,448 1/15/2024
2.1.94 6,079 1/15/2024
2.1.93 6,331 1/15/2024
2.1.92 6,044 1/14/2024
2.1.91 7,389 1/13/2024
2.1.90 6,158 1/12/2024
2.1.89 6,069 1/11/2024
2.1.88 8,378 1/7/2024
2.1.87 6,709 1/5/2024
2.1.86 2,927 1/5/2024
2.1.85 3,957 1/5/2024
2.1.84 7,193 1/3/2024
2.1.83 4,381 1/1/2024
2.1.82 5,988 12/28/2023
2.1.81 2,368 12/28/2023
2.1.80 2,523 12/28/2023
2.1.79 5,299 12/27/2023
2.1.78 2,532 12/27/2023
2.1.77 372 12/27/2023
2.1.76 10,217 12/25/2023
2.1.75 5,599 12/25/2023
2.1.74 2,936 12/25/2023
2.1.73 885 12/25/2023
2.1.72 392 12/25/2023
2.1.71 8,138 12/24/2023
2.1.70 6,333 12/23/2023
2.1.69 3,404 12/23/2023
2.1.68 2,079 12/23/2023
2.1.67 4,419 12/23/2023
2.1.66 361 12/23/2023
2.1.65 9,659 12/19/2023
2.1.64 2,609 12/19/2023
2.1.63 6,459 12/12/2023
2.1.62 573 12/12/2023
2.1.61 3,165 12/11/2023
2.1.60 2,574 12/11/2023
2.1.59 1,411 12/11/2023
2.1.58 1,977 12/11/2023
2.1.57 1,031 12/10/2023
2.1.56 1,015 12/10/2023
2.1.55 2,099 12/10/2023
2.1.54 1,324 12/10/2023
2.1.53 9,409 12/10/2023
2.1.52 2,181 12/9/2023
2.1.51 1,257 12/9/2023
2.1.50 1,880 12/9/2023
2.1.49 2,875 12/9/2023
2.1.48 330 12/9/2023
2.1.47 1,528 12/9/2023
2.1.46 399 12/9/2023
2.1.45 3,259 12/9/2023
2.1.44 362 12/9/2023
2.1.43 5,303 12/9/2023
2.1.42 7,840 12/6/2023
2.1.41 1,399 12/6/2023
2.1.40 2,051 12/6/2023
2.1.39 4,617 12/5/2023
2.1.38 2,341 12/5/2023
2.1.37 1,309 12/5/2023
2.1.36 3,331 12/5/2023
2.1.35 337 12/5/2023
2.1.34 2,844 12/5/2023
2.1.33 341 12/5/2023
2.1.32 1,925 12/4/2023
2.1.31 1,751 12/4/2023
2.1.30 371 12/4/2023
2.1.29 10,132 12/4/2023
2.1.28 3,528 11/27/2023
2.1.27 1,604 11/26/2023
2.1.26 3,951 11/23/2023
2.1.25 3,379 11/23/2023
2.1.24 4,252 11/23/2023
2.1.23 345 11/23/2023
2.1.22 8,180 11/20/2023
2.1.21 3,973 11/20/2023
2.1.20 6,529 11/19/2023
2.1.19 3,454 11/19/2023
2.1.18 4,775 11/19/2023
2.1.17 1,263 11/18/2023
2.1.16 6,363 11/18/2023
2.1.15 1,426 11/18/2023
2.1.14 3,964 11/18/2023
2.1.13 810 11/18/2023
2.1.12 4,100 11/17/2023
2.1.11 3,480 11/17/2023
2.1.10 2,589 11/17/2023
2.1.9 500 11/17/2023
2.1.8 3,868 11/17/2023
2.1.7 2,412 11/17/2023
2.1.6 2,958 11/17/2023
2.1.5 2,204 11/17/2023
2.1.4 730 11/17/2023
2.1.3 3,902 11/16/2023
2.0.78 1,277 11/15/2023
2.0.77 370 11/15/2023
2.0.76 3,574 11/15/2023
2.0.2 355 11/16/2023
2.0.1 333 11/16/2023
1.0.75 4,972 11/13/2023
1.0.74 7,117 11/10/2023
1.0.73 5,349 11/9/2023
1.0.72 3,773 11/8/2023
1.0.71 5,599 11/7/2023
1.0.70 2,904 11/6/2023
1.0.69 3,530 11/3/2023
1.0.68 6,197 11/2/2023
1.0.67 4,131 11/1/2023
1.0.66 12,380 10/26/2023
1.0.65 7,581 10/19/2023
1.0.64 3,268 10/18/2023
1.0.63 3,279 10/17/2023
1.0.62 3,945 10/16/2023
1.0.61 6,779 10/13/2023
1.0.60 4,121 10/12/2023
1.0.59 12,989 9/18/2023
1.0.58 358 9/18/2023
1.0.57 8,689 9/14/2023
1.0.56 8,181 8/31/2023
1.0.55 4,069 8/30/2023
1.0.54 3,629 8/29/2023
1.0.53 3,537 8/28/2023
1.0.52 6,431 8/25/2023
1.0.51 3,794 8/24/2023
1.0.50 8,925 8/21/2023
1.0.49 3,728 8/18/2023
1.0.48 3,479 8/17/2023
1.0.47 5,986 8/16/2023
1.0.46 10,064 8/10/2023
1.0.45 3,553 8/9/2023
1.0.44 5,727 8/8/2023
1.0.43 4,980 8/7/2023
1.0.42 5,217 8/4/2023
1.0.41 9,669 7/13/2023
1.0.40 6,313 7/11/2023
1.0.39 4,048 7/10/2023
1.0.38 4,863 7/7/2023
1.0.37 448 7/7/2023
1.0.36 13,245 6/30/2023
1.0.35 6,894 6/28/2023
1.0.34 6,912 6/27/2023
1.0.33 7,966 6/26/2023
1.0.32 4,873 6/23/2023
1.0.31 9,794 6/21/2023
1.0.30 10,195 6/15/2023
1.0.29 4,166 6/14/2023
1.0.28 10,950 6/9/2023
1.0.27 4,677 6/8/2023
1.0.26 5,702 6/7/2023
1.0.25 6,447 6/6/2023
1.0.24 464 6/6/2023
1.0.23 5,525 6/5/2023
1.0.22 18,754 5/30/2023
1.0.21 21,428 5/29/2023
1.0.20 7,485 5/26/2023
1.0.19 8,610 5/25/2023
1.0.18 9,106 5/24/2023
1.0.17 6,267 5/24/2023
1.0.16 1,853 5/23/2023
1.0.15 1,786 5/23/2023
1.0.12 3,493 5/22/2023
1.0.11 20,777 5/16/2023
1.0.10 17,160 4/20/2023
1.0.9 16,553 4/3/2023
1.0.8 1,378 4/3/2023
1.0.7 2,682 3/23/2023
1.0.5 890 3/13/2023
1.0.4 622 3/11/2023
1.0.3 526 3/11/2023
1.0.2 523 3/11/2023
1.0.1 589 3/11/2023