Soenneker.Utils.AsyncSingleton 2.1.385

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.385
                    
NuGet\Install-Package Soenneker.Utils.AsyncSingleton -Version 2.1.385
                    
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.385" />
                    
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.385" />
                    
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.385
                    
#r "nuget: Soenneker.Utils.AsyncSingleton, 2.1.385"
                    
#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.385
                    
#: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.385
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=2.1.385
                    
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 55,097 9/3/2025
3.0.715 167 9/3/2025
3.0.714 46,142 8/11/2025
3.0.713 155 8/11/2025
3.0.712 82,970 7/1/2025
3.0.711 9,590 6/27/2025
3.0.710 1,215 6/27/2025
3.0.709 50,853 5/27/2025
3.0.708 866 5/27/2025
3.0.707 19,493 5/22/2025
3.0.705 30,656 5/7/2025
3.0.704 515 5/7/2025
3.0.703 18,448 5/5/2025
3.0.702 558 5/5/2025
3.0.701 192 5/5/2025
3.0.700 23,465 4/8/2025
3.0.699 5,726 4/8/2025
3.0.698 2,949 4/8/2025
3.0.697 3,984 4/8/2025
3.0.696 10,478 4/7/2025
3.0.695 3,699 4/7/2025
3.0.694 9,850 4/7/2025
3.0.693 8,925 4/7/2025
3.0.692 2,678 4/7/2025
3.0.691 2,579 4/6/2025
3.0.690 1,482 4/6/2025
3.0.689 295 4/6/2025
3.0.688 214 4/6/2025
3.0.687 3,776 4/6/2025
3.0.686 2,246 4/6/2025
3.0.685 164 4/6/2025
3.0.684 9,392 4/5/2025
3.0.683 1,553 4/5/2025
3.0.682 495 4/5/2025
3.0.681 170 4/5/2025
3.0.680 799 4/4/2025
3.0.679 302 4/4/2025
3.0.678 48,021 4/1/2025
3.0.677 12,559 3/31/2025
3.0.676 9,358 3/29/2025
3.0.675 12,344 3/25/2025
3.0.674 9,662 3/21/2025
3.0.673 17,496 3/15/2025
3.0.672 9,849 3/12/2025
3.0.671 940 3/12/2025
3.0.670 4,938 3/11/2025
3.0.669 294 3/11/2025
3.0.668 6,729 3/11/2025
3.0.667 6,262 3/11/2025
3.0.666 20,692 3/2/2025
3.0.665 2,252 3/2/2025
3.0.664 2,434 3/1/2025
3.0.663 3,822 3/1/2025
3.0.662 3,485 3/1/2025
3.0.661 2,550 3/1/2025
3.0.660 147 3/1/2025
3.0.659 3,741 3/1/2025
3.0.658 14,651 2/25/2025
3.0.657 3,392 2/25/2025
3.0.656 2,999 2/25/2025
3.0.655 3,668 2/24/2025
3.0.654 8,658 2/22/2025
3.0.653 13,938 2/22/2025
3.0.652 432 2/22/2025
3.0.651 3,945 2/21/2025
3.0.650 8,443 2/21/2025
3.0.649 11,169 2/19/2025
3.0.648 644 2/18/2025
3.0.647 2,160 2/18/2025
3.0.646 2,490 2/18/2025
3.0.645 6,294 2/18/2025
3.0.644 11,333 2/13/2025
3.0.643 12,672 2/12/2025
3.0.642 1,280 2/12/2025
3.0.641 2,208 2/12/2025
3.0.640 2,442 2/11/2025
3.0.639 2,495 2/11/2025
3.0.638 3,055 2/11/2025
3.0.637 4,581 2/11/2025
3.0.636 5,763 2/11/2025
3.0.635 7,657 2/10/2025
3.0.634 166 2/10/2025
3.0.633 9,623 2/9/2025
3.0.632 7,196 2/8/2025
3.0.631 1,461 2/8/2025
3.0.630 2,880 2/7/2025
3.0.629 3,502 2/7/2025
3.0.628 3,930 2/7/2025
3.0.627 372 2/7/2025
3.0.626 3,552 2/7/2025
3.0.625 156 2/7/2025
3.0.624 858 2/7/2025
3.0.623 19,283 2/5/2025
3.0.622 1,639 2/5/2025
3.0.621 2,884 2/5/2025
3.0.620 2,235 2/5/2025
3.0.619 22,714 1/28/2025
3.0.618 6,042 1/28/2025
3.0.617 374 1/27/2025
3.0.616 21,986 1/26/2025
3.0.615 2,015 1/26/2025
3.0.614 4,906 1/25/2025
3.0.613 6,697 1/25/2025
3.0.612 4,179 1/25/2025
3.0.611 2,277 1/24/2025
3.0.610 16,799 1/24/2025
3.0.609 5,563 1/24/2025
3.0.608 5,360 1/24/2025
3.0.607 4,353 1/23/2025
3.0.606 4,216 1/23/2025
3.0.605 12,832 1/21/2025
3.0.604 2,774 1/21/2025
3.0.603 6,587 1/21/2025
3.0.602 4,380 1/21/2025
3.0.601 6,174 1/21/2025
3.0.600 6,192 1/20/2025
3.0.599 480 1/20/2025
3.0.598 836 1/20/2025
3.0.597 6,143 1/20/2025
3.0.596 7,641 1/20/2025
3.0.595 923 1/20/2025
3.0.594 163 1/20/2025
3.0.593 882 1/20/2025
3.0.592 146 1/20/2025
3.0.591 19,059 1/19/2025
3.0.590 3,016 1/19/2025
3.0.589 3,082 1/18/2025
3.0.588 4,908 1/18/2025
3.0.587 1,954 1/18/2025
3.0.586 8,021 1/17/2025
3.0.585 1,513 1/17/2025
3.0.584 4,101 1/17/2025
3.0.583 3,593 1/16/2025
3.0.582 21,499 1/16/2025
3.0.581 1,918 1/16/2025
3.0.580 3,901 1/16/2025
3.0.579 4,870 1/15/2025
3.0.578 2,913 1/15/2025
3.0.577 5,330 1/15/2025
3.0.576 8,680 1/15/2025
3.0.575 1,512 1/15/2025
3.0.574 4,355 1/15/2025
3.0.573 439 1/15/2025
3.0.572 4,007 1/14/2025
3.0.571 1,964 1/14/2025
3.0.570 4,473 1/14/2025
3.0.569 17,765 1/13/2025
3.0.568 6,348 1/12/2025
3.0.567 9,532 1/11/2025
3.0.566 2,625 1/11/2025
3.0.565 1,271 1/11/2025
3.0.564 1,058 1/10/2025
3.0.563 5,542 1/10/2025
3.0.562 536 1/10/2025
3.0.561 1,086 1/10/2025
3.0.560 145 1/10/2025
3.0.559 140 1/10/2025
3.0.558 11,658 1/8/2025
3.0.557 352 1/8/2025
3.0.556 4,900 1/3/2025
3.0.555 3,882 1/3/2025
3.0.554 5,323 1/2/2025
3.0.553 921 1/2/2025
3.0.552 186 1/2/2025
3.0.551 3,006 1/2/2025
3.0.550 6,586 1/1/2025
3.0.549 932 1/1/2025
3.0.548 1,520 1/1/2025
3.0.547 1,710 1/1/2025
3.0.546 165 1/1/2025
3.0.545 805 12/31/2024
3.0.544 157 12/31/2024
3.0.543 319 12/31/2024
3.0.542 9,358 12/31/2024
3.0.541 9,928 12/31/2024
3.0.540 3,976 12/31/2024
3.0.539 5,070 12/31/2024
3.0.538 3,666 12/31/2024
3.0.537 1,580 12/31/2024
3.0.536 160 12/31/2024
3.0.535 6,088 12/31/2024
3.0.534 18,865 12/27/2024
3.0.533 3,545 12/27/2024
3.0.532 12,933 12/24/2024
3.0.531 861 12/24/2024
3.0.530 1,805 12/24/2024
3.0.529 366 12/24/2024
3.0.528 410 12/24/2024
3.0.527 2,203 12/23/2024
3.0.526 4,531 12/23/2024
3.0.525 2,236 12/23/2024
3.0.524 2,072 12/23/2024
3.0.523 2,843 12/23/2024
3.0.522 1,513 12/23/2024
3.0.521 3,655 12/22/2024
3.0.520 169 12/22/2024
3.0.519 15,582 12/22/2024
3.0.518 180 12/22/2024
3.0.517 11,892 12/22/2024
3.0.516 152 12/22/2024
3.0.515 5,656 12/22/2024
3.0.514 170 12/22/2024
3.0.513 1,131 12/21/2024
3.0.512 378 12/21/2024
3.0.511 145 12/21/2024
3.0.510 10,155 12/21/2024
3.0.509 1,063 12/21/2024
3.0.508 142 12/21/2024
3.0.507 1,772 12/21/2024
3.0.506 162 12/21/2024
3.0.505 5,927 12/21/2024
3.0.504 1,859 12/21/2024
3.0.503 4,691 12/21/2024
3.0.502 158 12/21/2024
3.0.501 2,886 12/20/2024
3.0.500 2,872 12/20/2024
3.0.499 5,634 12/20/2024
3.0.498 1,710 12/20/2024
3.0.497 817 12/20/2024
3.0.496 9,079 12/19/2024
3.0.495 782 12/19/2024
3.0.494 1,286 12/18/2024
3.0.493 709 12/18/2024
3.0.492 13,540 12/17/2024
3.0.491 465 12/17/2024
3.0.490 1,001 12/17/2024
3.0.489 1,297 12/17/2024
3.0.488 1,414 12/16/2024
3.0.487 440 12/16/2024
3.0.486 136 12/16/2024
3.0.485 12,152 12/9/2024
3.0.484 2,960 12/9/2024
3.0.483 6,401 12/9/2024
3.0.482 1,241 12/9/2024
3.0.480 12,904 12/6/2024
3.0.479 6,989 12/6/2024
3.0.478 2,302 12/6/2024
3.0.477 1,257 12/6/2024
3.0.476 875 12/6/2024
3.0.475 2,739 12/6/2024
3.0.474 8,411 12/6/2024
3.0.473 11,021 12/5/2024
3.0.472 1,291 12/5/2024
3.0.471 6,405 12/5/2024
3.0.470 2,840 12/5/2024
3.0.469 879 12/5/2024
3.0.468 5,893 12/4/2024
3.0.467 3,316 12/4/2024
3.0.466 3,519 12/4/2024
3.0.465 9,002 12/3/2024
3.0.464 381 12/3/2024
3.0.463 2,131 12/3/2024
3.0.462 7,506 12/3/2024
3.0.461 1,468 12/3/2024
3.0.460 4,562 12/3/2024
3.0.459 148 12/3/2024
3.0.458 1,010 12/3/2024
3.0.457 10,441 12/2/2024
3.0.456 4,583 12/2/2024
3.0.455 1,414 12/2/2024
3.0.454 1,218 12/1/2024
3.0.453 6,149 12/1/2024
3.0.452 6,617 12/1/2024
3.0.451 6,850 11/29/2024
3.0.450 11,208 11/20/2024
3.0.449 7,223 11/20/2024
3.0.448 565 11/20/2024
3.0.447 2,511 11/20/2024
3.0.445 3,141 11/19/2024
3.0.444 2,687 11/19/2024
3.0.443 7,410 11/19/2024
3.0.442 5,294 11/19/2024
3.0.441 147 11/19/2024
3.0.439 14,552 11/14/2024
3.0.438 5,717 11/14/2024
3.0.437 2,427 11/14/2024
3.0.436 4,459 11/14/2024
3.0.435 460 11/14/2024
3.0.434 171 11/14/2024
3.0.433 1,576 11/14/2024
3.0.432 150 11/14/2024
2.1.431 21,289 11/13/2024
2.1.430 4,100 11/13/2024
2.1.429 3,219 11/12/2024
2.1.428 14,884 11/9/2024
2.1.427 3,147 11/9/2024
2.1.426 3,418 11/8/2024
2.1.425 1,532 11/8/2024
2.1.424 1,718 11/8/2024
2.1.423 1,998 11/8/2024
2.1.422 2,266 11/8/2024
2.1.421 6,100 11/8/2024
2.1.420 23,353 11/1/2024
2.1.419 10,728 10/29/2024
2.1.418 4,183 10/29/2024
2.1.417 5,699 10/29/2024
2.1.416 10,521 10/28/2024
2.1.415 10,583 10/26/2024
2.1.414 12,595 10/22/2024
2.1.413 3,918 10/22/2024
2.1.412 2,196 10/22/2024
2.1.411 11,750 10/17/2024
2.1.410 10,396 10/15/2024
2.1.409 2,007 10/14/2024
2.1.408 10,688 10/11/2024
2.1.407 3,006 10/11/2024
2.1.406 2,007 10/11/2024
2.1.404 16,112 10/8/2024
2.1.403 6,565 10/8/2024
2.1.402 20,006 10/3/2024
2.1.401 1,459 10/3/2024
2.1.400 3,393 10/3/2024
2.1.399 12,903 10/2/2024
2.1.398 4,284 10/2/2024
2.1.397 13,312 10/1/2024
2.1.396 1,220 10/1/2024
2.1.395 6,548 9/30/2024
2.1.394 10,361 9/29/2024
2.1.393 3,365 9/29/2024
2.1.392 3,274 9/29/2024
2.1.391 9,039 9/27/2024
2.1.390 6,235 9/27/2024
2.1.389 229 9/27/2024
2.1.388 974 9/27/2024
2.1.387 2,387 9/27/2024
2.1.386 167 9/27/2024
2.1.385 13,576 9/26/2024
2.1.384 11,953 9/26/2024
2.1.383 5,217 9/26/2024
2.1.382 14,991 9/23/2024
2.1.381 3,768 9/23/2024
2.1.380 6,507 9/23/2024
2.1.379 6,435 9/23/2024
2.1.378 4,935 9/23/2024
2.1.377 1,012 9/23/2024
2.1.376 2,443 9/23/2024
2.1.375 152 9/23/2024
2.1.374 18,031 9/17/2024
2.1.373 852 9/17/2024
2.1.372 3,484 9/17/2024
2.1.371 3,573 9/17/2024
2.1.370 3,970 9/17/2024
2.1.369 5,369 9/17/2024
2.1.368 6,069 9/17/2024
2.1.367 19,845 9/16/2024
2.1.366 10,245 9/12/2024
2.1.365 3,901 9/11/2024
2.1.363 11,063 9/11/2024
2.1.362 21,449 9/10/2024
2.1.361 940 9/10/2024
2.1.360 1,308 9/10/2024
2.1.359 1,194 9/10/2024
2.1.358 4,585 9/9/2024
2.1.357 1,926 9/9/2024
2.1.356 7,762 9/9/2024
2.1.355 2,197 9/9/2024
2.1.354 8,737 9/9/2024
2.1.353 16,774 9/7/2024
2.1.352 12,570 9/6/2024
2.1.351 6,547 9/5/2024
2.1.350 6,652 9/5/2024
2.1.349 686 9/5/2024
2.1.348 196 9/5/2024
2.1.347 11,448 9/5/2024
2.1.346 1,320 9/4/2024
2.1.345 17,294 9/3/2024
2.1.344 7,889 9/3/2024
2.1.343 5,830 9/3/2024
2.1.342 11,282 8/29/2024
2.1.341 9,347 8/26/2024
2.1.340 9,897 8/21/2024
2.1.339 3,710 8/21/2024
2.1.338 2,171 8/20/2024
2.1.337 7,610 8/20/2024
2.1.336 186 8/20/2024
2.1.335 176 8/20/2024
2.1.334 12,552 8/19/2024
2.1.333 12,189 8/15/2024
2.1.332 12,142 8/13/2024
2.1.331 10,136 8/6/2024
2.1.330 5,743 8/6/2024
2.1.329 8,720 8/1/2024
2.1.328 1,799 8/1/2024
2.1.327 863 8/1/2024
2.1.326 12,550 7/25/2024
2.1.325 2,648 7/25/2024
2.1.324 2,291 7/25/2024
2.1.323 378 7/24/2024
2.1.322 993 7/24/2024
2.1.321 501 7/24/2024
2.1.320 12,794 7/20/2024
2.1.319 15,931 7/14/2024
2.1.318 5,868 7/14/2024
2.1.317 8,874 7/10/2024
2.1.316 3,848 7/10/2024
2.1.315 3,457 7/10/2024
2.1.314 2,014 7/10/2024
2.1.313 1,369 7/10/2024
2.1.312 452 7/10/2024
2.1.311 3,429 7/10/2024
2.1.310 1,716 7/9/2024
2.1.308 3,527 7/9/2024
2.1.307 162 7/9/2024
2.1.306 3,823 7/9/2024
2.1.305 8,958 7/9/2024
2.1.304 7,297 7/9/2024
2.1.303 3,591 7/9/2024
2.1.302 162 7/9/2024
2.1.301 11,449 7/9/2024
2.1.300 8,046 7/8/2024
2.1.299 498 7/8/2024
2.1.298 157 7/8/2024
2.1.297 171 7/8/2024
2.1.296 10,859 7/8/2024
2.1.295 2,149 7/7/2024
2.1.294 6,708 7/7/2024
2.1.293 180 7/7/2024
2.1.292 1,907 7/7/2024
2.1.291 3,995 7/7/2024
2.1.290 13,524 7/3/2024
2.1.289 4,301 7/3/2024
2.1.288 3,896 7/3/2024
2.1.287 1,165 7/3/2024
2.1.286 7,577 7/2/2024
2.1.283 4,658 6/30/2024
2.1.282 3,098 6/28/2024
2.1.281 347 6/28/2024
2.1.279 9,952 6/22/2024
2.1.278 11,490 6/15/2024
2.1.277 1,501 6/15/2024
2.1.276 8,730 6/14/2024
2.1.275 13,958 6/1/2024
2.1.274 2,286 6/1/2024
2.1.273 1,420 6/1/2024
2.1.272 12,263 5/31/2024
2.1.271 7,652 5/29/2024
2.1.270 8,687 5/28/2024
2.1.269 4,928 5/27/2024
2.1.268 8,968 5/26/2024
2.1.267 8,977 5/26/2024
2.1.266 450 5/26/2024
2.1.265 3,321 5/25/2024
2.1.264 2,348 5/25/2024
2.1.263 2,266 5/25/2024
2.1.262 167 5/25/2024
2.1.261 1,777 5/25/2024
2.1.260 172 5/25/2024
2.1.259 6,389 5/25/2024
2.1.258 164 5/25/2024
2.1.257 11,255 5/23/2024
2.1.256 4,567 5/23/2024
2.1.255 3,239 5/22/2024
2.1.254 2,477 5/22/2024
2.1.253 1,020 5/22/2024
2.1.252 168 5/22/2024
2.1.251 166 5/22/2024
2.1.250 4,755 5/22/2024
2.1.249 11,862 5/18/2024
2.1.248 2,555 5/17/2024
2.1.247 4,436 5/17/2024
2.1.246 6,687 5/16/2024
2.1.245 1,780 5/15/2024
2.1.244 5,001 5/15/2024
2.1.243 10,232 5/12/2024
2.1.242 5,618 5/3/2024
2.1.241 6,207 4/29/2024
2.1.240 3,504 4/29/2024
2.1.239 6,807 4/28/2024
2.1.238 1,133 4/28/2024
2.1.237 1,329 4/28/2024
2.1.236 5,136 4/28/2024
2.1.235 756 4/28/2024
2.1.234 6,705 4/28/2024
2.1.233 1,456 4/28/2024
2.1.232 6,295 4/27/2024
2.1.231 177 4/27/2024
2.1.230 12,714 4/19/2024
2.1.229 7,839 4/18/2024
2.1.228 8,153 4/12/2024
2.1.227 1,341 4/12/2024
2.1.226 2,115 4/12/2024
2.1.225 1,780 4/12/2024
2.1.224 1,232 4/12/2024
2.1.223 1,808 4/12/2024
2.1.222 715 4/12/2024
2.1.221 183 4/12/2024
2.1.220 4,603 4/10/2024
2.1.219 19,997 4/10/2024
2.1.218 868 4/10/2024
2.1.217 9,790 4/2/2024
2.1.216 1,754 4/1/2024
2.1.215 9,468 3/29/2024
2.1.214 6,881 3/25/2024
2.1.213 815 3/25/2024
2.1.212 9,491 3/20/2024
2.1.211 6,564 3/19/2024
2.1.210 4,003 3/19/2024
2.1.209 4,297 3/18/2024
2.1.208 9,449 3/15/2024
2.1.207 6,455 3/13/2024
2.1.206 2,482 3/13/2024
2.1.205 3,305 3/13/2024
2.1.204 233 3/13/2024
2.1.203 221 3/13/2024
2.1.202 2,107 3/13/2024
2.1.201 215 3/13/2024
2.1.200 4,654 3/12/2024
2.1.199 6,040 3/12/2024
2.1.198 7,690 3/11/2024
2.1.197 5,468 3/11/2024
2.1.196 5,847 3/10/2024
2.1.195 7,559 3/8/2024
2.1.194 675 3/8/2024
2.1.193 5,378 3/8/2024
2.1.192 6,909 3/6/2024
2.1.191 6,901 3/4/2024
2.1.190 3,861 3/4/2024
2.1.189 7,706 3/2/2024
2.1.188 1,984 3/2/2024
2.1.187 2,533 3/2/2024
2.1.186 1,392 3/2/2024
2.1.185 965 3/2/2024
2.1.184 5,302 2/29/2024
2.1.183 1,721 2/29/2024
2.1.182 2,610 2/29/2024
2.1.181 4,978 2/26/2024
2.1.180 19,356 2/25/2024
2.1.179 2,318 2/25/2024
2.1.178 7,629 2/23/2024
2.1.177 7,359 2/22/2024
2.1.176 2,097 2/22/2024
2.1.175 2,505 2/21/2024
2.1.174 4,046 2/21/2024
2.1.173 3,606 2/21/2024
2.1.172 4,571 2/21/2024
2.1.171 1,936 2/21/2024
2.1.170 422 2/21/2024
2.1.169 4,133 2/21/2024
2.1.168 1,373 2/20/2024
2.1.167 275 2/20/2024
2.1.166 274 2/20/2024
2.1.165 5,530 2/20/2024
2.1.164 4,241 2/20/2024
2.1.163 4,020 2/20/2024
2.1.162 8,482 2/19/2024
2.1.161 6,628 2/17/2024
2.1.160 2,758 2/17/2024
2.1.159 2,017 2/16/2024
2.1.158 1,453 2/16/2024
2.1.157 2,492 2/16/2024
2.1.156 3,713 2/16/2024
2.1.155 4,386 2/16/2024
2.1.154 325 2/16/2024
2.1.153 2,171 2/16/2024
2.1.152 309 2/16/2024
2.1.151 306 2/16/2024
2.1.150 7,424 2/14/2024
2.1.149 3,082 2/13/2024
2.1.148 3,720 2/13/2024
2.1.147 4,618 2/13/2024
2.1.146 4,430 2/13/2024
2.1.145 6,050 2/12/2024
2.1.144 972 2/11/2024
2.1.143 6,565 2/11/2024
2.1.142 3,686 2/11/2024
2.1.141 7,727 2/10/2024
2.1.140 975 2/9/2024
2.1.139 6,977 2/9/2024
2.1.138 4,502 2/9/2024
2.1.137 1,204 2/8/2024
2.1.136 5,643 2/8/2024
2.1.135 2,293 2/8/2024
2.1.134 13,745 2/8/2024
2.1.133 382 2/8/2024
2.1.132 316 2/8/2024
2.1.131 6,355 2/7/2024
2.1.130 2,582 2/7/2024
2.1.129 4,400 2/7/2024
2.1.128 1,427 2/7/2024
2.1.127 1,253 2/6/2024
2.1.126 3,549 2/6/2024
2.1.125 350 2/6/2024
2.1.124 9,260 2/5/2024
2.1.123 5,993 2/4/2024
2.1.122 6,394 2/2/2024
2.1.121 7,518 1/31/2024
2.1.120 7,335 1/29/2024
2.1.119 4,574 1/29/2024
2.1.118 3,047 1/29/2024
2.1.117 4,759 1/28/2024
2.1.116 6,351 1/28/2024
2.1.115 3,609 1/28/2024
2.1.114 2,193 1/28/2024
2.1.113 2,800 1/27/2024
2.1.112 2,556 1/27/2024
2.1.111 6,610 1/27/2024
2.1.110 3,430 1/27/2024
2.1.109 7,812 1/27/2024
2.1.108 2,176 1/26/2024
2.1.107 2,639 1/26/2024
2.1.106 3,269 1/26/2024
2.1.105 6,131 1/26/2024
2.1.104 2,910 1/26/2024
2.1.103 1,667 1/26/2024
2.1.102 5,545 1/25/2024
2.1.101 4,383 1/25/2024
2.1.100 2,180 1/25/2024
2.1.99 6,894 1/25/2024
2.1.98 6,931 1/19/2024
2.1.97 6,866 1/15/2024
2.1.96 3,141 1/15/2024
2.1.95 2,500 1/15/2024
2.1.94 6,243 1/15/2024
2.1.93 6,477 1/15/2024
2.1.92 6,201 1/14/2024
2.1.91 7,585 1/13/2024
2.1.90 6,285 1/12/2024
2.1.89 6,225 1/11/2024
2.1.88 8,581 1/7/2024
2.1.87 6,865 1/5/2024
2.1.86 3,030 1/5/2024
2.1.85 4,037 1/5/2024
2.1.84 7,360 1/3/2024
2.1.83 4,487 1/1/2024
2.1.82 6,118 12/28/2023
2.1.81 2,426 12/28/2023
2.1.80 2,566 12/28/2023
2.1.79 5,428 12/27/2023
2.1.78 2,598 12/27/2023
2.1.77 372 12/27/2023
2.1.76 10,455 12/25/2023
2.1.75 5,734 12/25/2023
2.1.74 2,991 12/25/2023
2.1.73 907 12/25/2023
2.1.72 392 12/25/2023
2.1.71 8,321 12/24/2023
2.1.70 6,471 12/23/2023
2.1.69 3,499 12/23/2023
2.1.68 2,121 12/23/2023
2.1.67 4,527 12/23/2023
2.1.66 361 12/23/2023
2.1.65 9,857 12/19/2023
2.1.64 2,668 12/19/2023
2.1.63 6,620 12/12/2023
2.1.62 573 12/12/2023
2.1.61 3,250 12/11/2023
2.1.60 2,622 12/11/2023
2.1.59 1,428 12/11/2023
2.1.58 2,029 12/11/2023
2.1.57 1,046 12/10/2023
2.1.56 1,023 12/10/2023
2.1.55 2,146 12/10/2023
2.1.54 1,333 12/10/2023
2.1.53 9,602 12/10/2023
2.1.52 2,223 12/9/2023
2.1.51 1,267 12/9/2023
2.1.50 1,927 12/9/2023
2.1.49 2,929 12/9/2023
2.1.48 331 12/9/2023
2.1.47 1,585 12/9/2023
2.1.46 400 12/9/2023
2.1.45 3,315 12/9/2023
2.1.44 362 12/9/2023
2.1.43 5,423 12/9/2023
2.1.42 7,954 12/6/2023
2.1.41 1,425 12/6/2023
2.1.40 2,090 12/6/2023
2.1.39 4,708 12/5/2023
2.1.38 2,387 12/5/2023
2.1.37 1,353 12/5/2023
2.1.36 3,418 12/5/2023
2.1.35 337 12/5/2023
2.1.34 2,888 12/5/2023
2.1.33 342 12/5/2023
2.1.32 1,961 12/4/2023
2.1.31 1,775 12/4/2023
2.1.30 372 12/4/2023
2.1.29 10,395 12/4/2023
2.1.28 3,608 11/27/2023
2.1.27 1,650 11/26/2023
2.1.26 4,043 11/23/2023
2.1.25 3,480 11/23/2023
2.1.24 4,346 11/23/2023
2.1.23 345 11/23/2023
2.1.22 8,365 11/20/2023
2.1.21 4,057 11/20/2023
2.1.20 6,754 11/19/2023
2.1.19 3,544 11/19/2023
2.1.18 4,876 11/19/2023
2.1.17 1,315 11/18/2023
2.1.16 6,509 11/18/2023
2.1.15 1,449 11/18/2023
2.1.14 4,051 11/18/2023
2.1.13 834 11/18/2023
2.1.12 4,215 11/17/2023
2.1.11 3,561 11/17/2023
2.1.10 2,670 11/17/2023
2.1.9 508 11/17/2023
2.1.8 3,956 11/17/2023
2.1.7 2,471 11/17/2023
2.1.6 3,036 11/17/2023
2.1.5 2,264 11/17/2023
2.1.4 743 11/17/2023
2.1.3 3,981 11/16/2023
2.0.78 1,338 11/15/2023
2.0.77 370 11/15/2023
2.0.76 3,603 11/15/2023
2.0.2 355 11/16/2023
2.0.1 335 11/16/2023
1.0.75 5,077 11/13/2023
1.0.74 7,252 11/10/2023
1.0.73 5,484 11/9/2023
1.0.72 3,875 11/8/2023
1.0.71 5,712 11/7/2023
1.0.70 2,974 11/6/2023
1.0.69 3,648 11/3/2023
1.0.68 6,326 11/2/2023
1.0.67 4,184 11/1/2023
1.0.66 12,708 10/26/2023
1.0.65 7,783 10/19/2023
1.0.64 3,323 10/18/2023
1.0.63 3,359 10/17/2023
1.0.62 4,053 10/16/2023
1.0.61 6,893 10/13/2023
1.0.60 4,221 10/12/2023
1.0.59 13,329 9/18/2023
1.0.58 358 9/18/2023
1.0.57 8,832 9/14/2023
1.0.56 8,326 8/31/2023
1.0.55 4,164 8/30/2023
1.0.54 3,689 8/29/2023
1.0.53 3,626 8/28/2023
1.0.52 6,542 8/25/2023
1.0.51 3,866 8/24/2023
1.0.50 9,126 8/21/2023
1.0.49 3,802 8/18/2023
1.0.48 3,551 8/17/2023
1.0.47 6,116 8/16/2023
1.0.46 10,273 8/10/2023
1.0.45 3,634 8/9/2023
1.0.44 5,833 8/8/2023
1.0.43 5,114 8/7/2023
1.0.42 5,341 8/4/2023
1.0.41 9,889 7/13/2023
1.0.40 6,445 7/11/2023
1.0.39 4,129 7/10/2023
1.0.38 4,932 7/7/2023
1.0.37 450 7/7/2023
1.0.36 13,476 6/30/2023
1.0.35 7,022 6/28/2023
1.0.34 7,028 6/27/2023
1.0.33 8,084 6/26/2023
1.0.32 4,993 6/23/2023
1.0.31 9,941 6/21/2023
1.0.30 10,366 6/15/2023
1.0.29 4,243 6/14/2023
1.0.28 11,147 6/9/2023
1.0.27 4,761 6/8/2023
1.0.26 5,806 6/7/2023
1.0.25 6,567 6/6/2023
1.0.24 465 6/6/2023
1.0.23 5,617 6/5/2023
1.0.22 19,107 5/30/2023
1.0.21 21,646 5/29/2023
1.0.20 7,616 5/26/2023
1.0.19 8,746 5/25/2023
1.0.18 9,231 5/24/2023
1.0.17 6,342 5/24/2023
1.0.16 1,924 5/23/2023
1.0.15 1,812 5/23/2023
1.0.12 3,563 5/22/2023
1.0.11 21,164 5/16/2023
1.0.10 17,463 4/20/2023
1.0.9 16,797 4/3/2023
1.0.8 1,389 4/3/2023
1.0.7 2,724 3/23/2023
1.0.5 901 3/13/2023
1.0.4 629 3/11/2023
1.0.3 528 3/11/2023
1.0.2 524 3/11/2023
1.0.1 595 3/11/2023