Soenneker.Utils.AsyncSingleton 2.1.269

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

A utility library for Azure Service Bus Administration client accessibility

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.716 43,002 9/3/2025
3.0.715 164 9/3/2025
3.0.714 38,324 8/11/2025
3.0.713 154 8/11/2025
3.0.712 71,806 7/1/2025
3.0.711 8,746 6/27/2025
3.0.710 1,129 6/27/2025
3.0.709 46,468 5/27/2025
3.0.708 802 5/27/2025
3.0.707 17,745 5/22/2025
3.0.705 27,783 5/7/2025
3.0.704 482 5/7/2025
3.0.703 16,687 5/5/2025
3.0.702 510 5/5/2025
3.0.701 191 5/5/2025
3.0.700 21,180 4/8/2025
3.0.699 5,170 4/8/2025
3.0.698 2,632 4/8/2025
3.0.697 3,610 4/8/2025
3.0.696 9,328 4/7/2025
3.0.695 3,344 4/7/2025
3.0.694 8,879 4/7/2025
3.0.693 7,899 4/7/2025
3.0.692 2,320 4/7/2025
3.0.691 2,340 4/6/2025
3.0.690 1,375 4/6/2025
3.0.689 285 4/6/2025
3.0.688 213 4/6/2025
3.0.687 3,406 4/6/2025
3.0.686 2,015 4/6/2025
3.0.685 163 4/6/2025
3.0.684 8,469 4/5/2025
3.0.683 1,430 4/5/2025
3.0.682 459 4/5/2025
3.0.681 169 4/5/2025
3.0.680 744 4/4/2025
3.0.679 294 4/4/2025
3.0.678 43,120 4/1/2025
3.0.677 11,181 3/31/2025
3.0.676 8,366 3/29/2025
3.0.675 10,942 3/25/2025
3.0.674 8,605 3/21/2025
3.0.673 15,612 3/15/2025
3.0.672 8,789 3/12/2025
3.0.671 861 3/12/2025
3.0.670 4,534 3/11/2025
3.0.669 283 3/11/2025
3.0.668 6,128 3/11/2025
3.0.667 5,596 3/11/2025
3.0.666 18,335 3/2/2025
3.0.665 2,037 3/2/2025
3.0.664 2,144 3/1/2025
3.0.663 3,402 3/1/2025
3.0.662 3,200 3/1/2025
3.0.661 2,234 3/1/2025
3.0.660 146 3/1/2025
3.0.659 3,414 3/1/2025
3.0.658 13,153 2/25/2025
3.0.657 2,981 2/25/2025
3.0.656 2,656 2/25/2025
3.0.655 3,289 2/24/2025
3.0.654 7,773 2/22/2025
3.0.653 12,440 2/22/2025
3.0.652 403 2/22/2025
3.0.651 3,501 2/21/2025
3.0.650 7,633 2/21/2025
3.0.649 9,953 2/19/2025
3.0.648 586 2/18/2025
3.0.647 1,985 2/18/2025
3.0.646 2,222 2/18/2025
3.0.645 5,647 2/18/2025
3.0.644 10,077 2/13/2025
3.0.643 11,339 2/12/2025
3.0.642 1,177 2/12/2025
3.0.641 1,986 2/12/2025
3.0.640 2,251 2/11/2025
3.0.639 2,244 2/11/2025
3.0.638 2,719 2/11/2025
3.0.637 4,069 2/11/2025
3.0.636 5,277 2/11/2025
3.0.635 6,738 2/10/2025
3.0.634 164 2/10/2025
3.0.633 8,735 2/9/2025
3.0.632 6,399 2/8/2025
3.0.631 1,298 2/8/2025
3.0.630 2,562 2/7/2025
3.0.629 3,121 2/7/2025
3.0.628 3,438 2/7/2025
3.0.627 372 2/7/2025
3.0.626 3,168 2/7/2025
3.0.625 156 2/7/2025
3.0.624 761 2/7/2025
3.0.623 17,179 2/5/2025
3.0.622 1,500 2/5/2025
3.0.621 2,594 2/5/2025
3.0.620 2,068 2/5/2025
3.0.619 20,197 1/28/2025
3.0.618 5,317 1/28/2025
3.0.617 345 1/27/2025
3.0.616 19,296 1/26/2025
3.0.615 1,808 1/26/2025
3.0.614 4,408 1/25/2025
3.0.613 5,885 1/25/2025
3.0.612 3,689 1/25/2025
3.0.611 2,032 1/24/2025
3.0.610 14,746 1/24/2025
3.0.609 4,826 1/24/2025
3.0.608 4,694 1/24/2025
3.0.607 3,894 1/23/2025
3.0.606 3,716 1/23/2025
3.0.605 11,179 1/21/2025
3.0.604 2,451 1/21/2025
3.0.603 5,759 1/21/2025
3.0.602 3,798 1/21/2025
3.0.601 5,459 1/21/2025
3.0.600 5,345 1/20/2025
3.0.599 419 1/20/2025
3.0.598 733 1/20/2025
3.0.597 5,577 1/20/2025
3.0.596 6,838 1/20/2025
3.0.595 809 1/20/2025
3.0.594 163 1/20/2025
3.0.593 797 1/20/2025
3.0.592 145 1/20/2025
3.0.591 16,783 1/19/2025
3.0.590 2,710 1/19/2025
3.0.589 2,737 1/18/2025
3.0.588 4,407 1/18/2025
3.0.587 1,775 1/18/2025
3.0.586 6,909 1/17/2025
3.0.585 1,356 1/17/2025
3.0.584 3,689 1/17/2025
3.0.583 3,200 1/16/2025
3.0.582 18,837 1/16/2025
3.0.581 1,719 1/16/2025
3.0.580 3,498 1/16/2025
3.0.579 4,302 1/15/2025
3.0.578 2,607 1/15/2025
3.0.577 4,633 1/15/2025
3.0.576 7,536 1/15/2025
3.0.575 1,320 1/15/2025
3.0.574 3,725 1/15/2025
3.0.573 402 1/15/2025
3.0.572 3,440 1/14/2025
3.0.571 1,637 1/14/2025
3.0.570 3,832 1/14/2025
3.0.569 15,475 1/13/2025
3.0.568 5,454 1/12/2025
3.0.567 8,203 1/11/2025
3.0.566 2,313 1/11/2025
3.0.565 1,110 1/11/2025
3.0.564 954 1/10/2025
3.0.563 4,932 1/10/2025
3.0.562 485 1/10/2025
3.0.561 964 1/10/2025
3.0.560 144 1/10/2025
3.0.559 139 1/10/2025
3.0.558 10,145 1/8/2025
3.0.557 327 1/8/2025
3.0.556 4,341 1/3/2025
3.0.555 3,441 1/3/2025
3.0.554 4,664 1/2/2025
3.0.553 857 1/2/2025
3.0.552 180 1/2/2025
3.0.551 2,657 1/2/2025
3.0.550 5,756 1/1/2025
3.0.549 830 1/1/2025
3.0.548 1,346 1/1/2025
3.0.547 1,526 1/1/2025
3.0.546 163 1/1/2025
3.0.545 758 12/31/2024
3.0.544 155 12/31/2024
3.0.543 286 12/31/2024
3.0.542 8,242 12/31/2024
3.0.541 8,704 12/31/2024
3.0.540 3,403 12/31/2024
3.0.539 4,463 12/31/2024
3.0.538 3,189 12/31/2024
3.0.537 1,391 12/31/2024
3.0.536 158 12/31/2024
3.0.535 5,429 12/31/2024
3.0.534 16,510 12/27/2024
3.0.533 3,098 12/27/2024
3.0.532 11,338 12/24/2024
3.0.531 793 12/24/2024
3.0.530 1,629 12/24/2024
3.0.529 332 12/24/2024
3.0.528 395 12/24/2024
3.0.527 1,981 12/23/2024
3.0.526 3,993 12/23/2024
3.0.525 1,929 12/23/2024
3.0.524 1,861 12/23/2024
3.0.523 2,534 12/23/2024
3.0.522 1,292 12/23/2024
3.0.521 3,253 12/22/2024
3.0.520 165 12/22/2024
3.0.519 13,686 12/22/2024
3.0.518 172 12/22/2024
3.0.517 10,427 12/22/2024
3.0.516 151 12/22/2024
3.0.515 4,685 12/22/2024
3.0.514 169 12/22/2024
3.0.513 1,017 12/21/2024
3.0.512 362 12/21/2024
3.0.511 144 12/21/2024
3.0.510 8,822 12/21/2024
3.0.509 955 12/21/2024
3.0.508 142 12/21/2024
3.0.507 1,492 12/21/2024
3.0.506 160 12/21/2024
3.0.505 5,261 12/21/2024
3.0.504 1,625 12/21/2024
3.0.503 4,089 12/21/2024
3.0.502 157 12/21/2024
3.0.501 2,535 12/20/2024
3.0.500 2,578 12/20/2024
3.0.499 4,930 12/20/2024
3.0.498 1,562 12/20/2024
3.0.497 745 12/20/2024
3.0.496 7,737 12/19/2024
3.0.495 714 12/19/2024
3.0.494 1,143 12/18/2024
3.0.493 632 12/18/2024
3.0.492 12,262 12/17/2024
3.0.491 435 12/17/2024
3.0.490 916 12/17/2024
3.0.489 1,187 12/17/2024
3.0.488 1,290 12/16/2024
3.0.487 421 12/16/2024
3.0.486 136 12/16/2024
3.0.485 10,822 12/9/2024
3.0.484 2,613 12/9/2024
3.0.483 5,584 12/9/2024
3.0.482 1,097 12/9/2024
3.0.480 11,270 12/6/2024
3.0.479 6,113 12/6/2024
3.0.478 1,989 12/6/2024
3.0.477 1,142 12/6/2024
3.0.476 765 12/6/2024
3.0.475 2,362 12/6/2024
3.0.474 7,285 12/6/2024
3.0.473 9,530 12/5/2024
3.0.472 1,147 12/5/2024
3.0.471 5,672 12/5/2024
3.0.470 2,465 12/5/2024
3.0.469 796 12/5/2024
3.0.468 5,203 12/4/2024
3.0.467 2,840 12/4/2024
3.0.466 2,962 12/4/2024
3.0.465 7,961 12/3/2024
3.0.464 343 12/3/2024
3.0.463 1,907 12/3/2024
3.0.462 6,645 12/3/2024
3.0.461 1,317 12/3/2024
3.0.460 4,005 12/3/2024
3.0.459 148 12/3/2024
3.0.458 884 12/3/2024
3.0.457 9,043 12/2/2024
3.0.456 3,942 12/2/2024
3.0.455 1,203 12/2/2024
3.0.454 1,065 12/1/2024
3.0.453 5,320 12/1/2024
3.0.452 5,733 12/1/2024
3.0.451 5,949 11/29/2024
3.0.450 9,956 11/20/2024
3.0.449 6,334 11/20/2024
3.0.448 522 11/20/2024
3.0.447 2,221 11/20/2024
3.0.445 2,799 11/19/2024
3.0.444 2,411 11/19/2024
3.0.443 6,565 11/19/2024
3.0.442 4,753 11/19/2024
3.0.441 145 11/19/2024
3.0.439 12,800 11/14/2024
3.0.438 5,059 11/14/2024
3.0.437 2,162 11/14/2024
3.0.436 3,949 11/14/2024
3.0.435 421 11/14/2024
3.0.434 169 11/14/2024
3.0.433 1,439 11/14/2024
3.0.432 147 11/14/2024
2.1.431 18,906 11/13/2024
2.1.430 3,633 11/13/2024
2.1.429 2,880 11/12/2024
2.1.428 13,158 11/9/2024
2.1.427 2,826 11/9/2024
2.1.426 3,043 11/8/2024
2.1.425 1,367 11/8/2024
2.1.424 1,533 11/8/2024
2.1.423 1,835 11/8/2024
2.1.422 2,028 11/8/2024
2.1.421 5,469 11/8/2024
2.1.420 20,563 11/1/2024
2.1.419 9,526 10/29/2024
2.1.418 3,818 10/29/2024
2.1.417 5,037 10/29/2024
2.1.416 9,362 10/28/2024
2.1.415 9,455 10/26/2024
2.1.414 11,517 10/22/2024
2.1.413 3,439 10/22/2024
2.1.412 1,940 10/22/2024
2.1.411 10,432 10/17/2024
2.1.410 9,284 10/15/2024
2.1.409 1,795 10/14/2024
2.1.408 9,626 10/11/2024
2.1.407 2,671 10/11/2024
2.1.406 1,772 10/11/2024
2.1.404 14,296 10/8/2024
2.1.403 5,916 10/8/2024
2.1.402 18,023 10/3/2024
2.1.401 1,356 10/3/2024
2.1.400 3,062 10/3/2024
2.1.399 11,439 10/2/2024
2.1.398 3,857 10/2/2024
2.1.397 11,855 10/1/2024
2.1.396 1,102 10/1/2024
2.1.395 5,874 9/30/2024
2.1.394 9,214 9/29/2024
2.1.393 3,045 9/29/2024
2.1.392 2,861 9/29/2024
2.1.391 8,128 9/27/2024
2.1.390 5,517 9/27/2024
2.1.389 220 9/27/2024
2.1.388 873 9/27/2024
2.1.387 2,102 9/27/2024
2.1.386 165 9/27/2024
2.1.385 12,193 9/26/2024
2.1.384 10,623 9/26/2024
2.1.383 4,759 9/26/2024
2.1.382 13,471 9/23/2024
2.1.381 3,357 9/23/2024
2.1.380 5,815 9/23/2024
2.1.379 5,817 9/23/2024
2.1.378 4,383 9/23/2024
2.1.377 928 9/23/2024
2.1.376 2,240 9/23/2024
2.1.375 150 9/23/2024
2.1.374 16,260 9/17/2024
2.1.373 791 9/17/2024
2.1.372 3,149 9/17/2024
2.1.371 3,240 9/17/2024
2.1.370 3,633 9/17/2024
2.1.369 4,865 9/17/2024
2.1.368 5,487 9/17/2024
2.1.367 17,911 9/16/2024
2.1.366 9,287 9/12/2024
2.1.365 3,438 9/11/2024
2.1.363 9,942 9/11/2024
2.1.362 19,523 9/10/2024
2.1.361 884 9/10/2024
2.1.360 1,189 9/10/2024
2.1.359 1,104 9/10/2024
2.1.358 4,215 9/9/2024
2.1.357 1,714 9/9/2024
2.1.356 7,086 9/9/2024
2.1.355 2,030 9/9/2024
2.1.354 7,931 9/9/2024
2.1.353 15,166 9/7/2024
2.1.352 11,379 9/6/2024
2.1.351 5,897 9/5/2024
2.1.350 6,070 9/5/2024
2.1.349 642 9/5/2024
2.1.348 196 9/5/2024
2.1.347 10,310 9/5/2024
2.1.346 1,174 9/4/2024
2.1.345 15,564 9/3/2024
2.1.344 6,979 9/3/2024
2.1.343 5,119 9/3/2024
2.1.342 9,946 8/29/2024
2.1.341 8,365 8/26/2024
2.1.340 8,826 8/21/2024
2.1.339 3,317 8/21/2024
2.1.338 1,882 8/20/2024
2.1.337 6,845 8/20/2024
2.1.336 183 8/20/2024
2.1.335 175 8/20/2024
2.1.334 11,170 8/19/2024
2.1.333 10,905 8/15/2024
2.1.332 10,804 8/13/2024
2.1.331 9,078 8/6/2024
2.1.330 5,089 8/6/2024
2.1.329 7,716 8/1/2024
2.1.328 1,592 8/1/2024
2.1.327 754 8/1/2024
2.1.326 11,078 7/25/2024
2.1.325 2,354 7/25/2024
2.1.324 2,041 7/25/2024
2.1.323 337 7/24/2024
2.1.322 898 7/24/2024
2.1.321 465 7/24/2024
2.1.320 11,345 7/20/2024
2.1.319 14,183 7/14/2024
2.1.318 5,223 7/14/2024
2.1.317 7,906 7/10/2024
2.1.316 3,452 7/10/2024
2.1.315 3,093 7/10/2024
2.1.314 1,798 7/10/2024
2.1.313 1,249 7/10/2024
2.1.312 415 7/10/2024
2.1.311 3,153 7/10/2024
2.1.310 1,509 7/9/2024
2.1.308 3,181 7/9/2024
2.1.307 158 7/9/2024
2.1.306 3,554 7/9/2024
2.1.305 8,044 7/9/2024
2.1.304 6,513 7/9/2024
2.1.303 3,202 7/9/2024
2.1.302 160 7/9/2024
2.1.301 11,262 7/9/2024
2.1.300 7,182 7/8/2024
2.1.299 475 7/8/2024
2.1.298 156 7/8/2024
2.1.297 170 7/8/2024
2.1.296 9,723 7/8/2024
2.1.295 1,912 7/7/2024
2.1.294 5,900 7/7/2024
2.1.293 178 7/7/2024
2.1.292 1,704 7/7/2024
2.1.291 3,565 7/7/2024
2.1.290 11,849 7/3/2024
2.1.289 3,818 7/3/2024
2.1.288 3,422 7/3/2024
2.1.287 1,051 7/3/2024
2.1.286 6,695 7/2/2024
2.1.283 4,074 6/30/2024
2.1.282 2,745 6/28/2024
2.1.281 320 6/28/2024
2.1.279 8,849 6/22/2024
2.1.278 10,316 6/15/2024
2.1.277 1,360 6/15/2024
2.1.276 7,833 6/14/2024
2.1.275 12,410 6/1/2024
2.1.274 2,092 6/1/2024
2.1.273 1,271 6/1/2024
2.1.272 11,041 5/31/2024
2.1.271 6,797 5/29/2024
2.1.270 7,813 5/28/2024
2.1.269 4,365 5/27/2024
2.1.268 8,059 5/26/2024
2.1.267 8,075 5/26/2024
2.1.266 408 5/26/2024
2.1.265 2,985 5/25/2024
2.1.264 2,109 5/25/2024
2.1.263 2,036 5/25/2024
2.1.262 167 5/25/2024
2.1.261 1,615 5/25/2024
2.1.260 171 5/25/2024
2.1.259 5,605 5/25/2024
2.1.258 163 5/25/2024
2.1.257 10,121 5/23/2024
2.1.256 4,105 5/23/2024
2.1.255 2,942 5/22/2024
2.1.254 2,205 5/22/2024
2.1.253 979 5/22/2024
2.1.252 166 5/22/2024
2.1.251 164 5/22/2024
2.1.250 4,204 5/22/2024
2.1.249 10,729 5/18/2024
2.1.248 2,267 5/17/2024
2.1.247 3,940 5/17/2024
2.1.246 6,068 5/16/2024
2.1.245 1,592 5/15/2024
2.1.244 4,540 5/15/2024
2.1.243 9,138 5/12/2024
2.1.242 5,012 5/3/2024
2.1.241 5,568 4/29/2024
2.1.240 3,196 4/29/2024
2.1.239 6,042 4/28/2024
2.1.238 1,051 4/28/2024
2.1.237 1,208 4/28/2024
2.1.236 4,664 4/28/2024
2.1.235 726 4/28/2024
2.1.234 6,098 4/28/2024
2.1.233 1,312 4/28/2024
2.1.232 5,755 4/27/2024
2.1.231 175 4/27/2024
2.1.230 11,482 4/19/2024
2.1.229 7,086 4/18/2024
2.1.228 7,452 4/12/2024
2.1.227 1,206 4/12/2024
2.1.226 1,956 4/12/2024
2.1.225 1,606 4/12/2024
2.1.224 1,072 4/12/2024
2.1.223 1,622 4/12/2024
2.1.222 689 4/12/2024
2.1.221 180 4/12/2024
2.1.220 4,086 4/10/2024
2.1.219 18,236 4/10/2024
2.1.218 798 4/10/2024
2.1.217 8,864 4/2/2024
2.1.216 1,581 4/1/2024
2.1.215 8,524 3/29/2024
2.1.214 6,218 3/25/2024
2.1.213 750 3/25/2024
2.1.212 8,605 3/20/2024
2.1.211 5,954 3/19/2024
2.1.210 3,539 3/19/2024
2.1.209 3,847 3/18/2024
2.1.208 8,550 3/15/2024
2.1.207 5,799 3/13/2024
2.1.206 2,223 3/13/2024
2.1.205 2,969 3/13/2024
2.1.204 231 3/13/2024
2.1.203 220 3/13/2024
2.1.202 1,837 3/13/2024
2.1.201 215 3/13/2024
2.1.200 4,171 3/12/2024
2.1.199 5,490 3/12/2024
2.1.198 6,933 3/11/2024
2.1.197 4,913 3/11/2024
2.1.196 5,284 3/10/2024
2.1.195 6,816 3/8/2024
2.1.194 629 3/8/2024
2.1.193 4,846 3/8/2024
2.1.192 6,221 3/6/2024
2.1.191 6,239 3/4/2024
2.1.190 3,495 3/4/2024
2.1.189 6,991 3/2/2024
2.1.188 1,825 3/2/2024
2.1.187 2,246 3/2/2024
2.1.186 1,255 3/2/2024
2.1.185 880 3/2/2024
2.1.184 4,702 2/29/2024
2.1.183 1,544 2/29/2024
2.1.182 2,355 2/29/2024
2.1.181 4,453 2/26/2024
2.1.180 17,276 2/25/2024
2.1.179 2,134 2/25/2024
2.1.178 6,756 2/23/2024
2.1.177 6,590 2/22/2024
2.1.176 1,879 2/22/2024
2.1.175 2,268 2/21/2024
2.1.174 3,637 2/21/2024
2.1.173 3,226 2/21/2024
2.1.172 4,118 2/21/2024
2.1.171 1,725 2/21/2024
2.1.170 417 2/21/2024
2.1.169 3,704 2/21/2024
2.1.168 1,181 2/20/2024
2.1.167 274 2/20/2024
2.1.166 274 2/20/2024
2.1.165 4,970 2/20/2024
2.1.164 3,838 2/20/2024
2.1.163 3,601 2/20/2024
2.1.162 7,626 2/19/2024
2.1.161 6,012 2/17/2024
2.1.160 2,534 2/17/2024
2.1.159 1,810 2/16/2024
2.1.158 1,320 2/16/2024
2.1.157 2,189 2/16/2024
2.1.156 3,434 2/16/2024
2.1.155 3,951 2/16/2024
2.1.154 323 2/16/2024
2.1.153 1,935 2/16/2024
2.1.152 309 2/16/2024
2.1.151 303 2/16/2024
2.1.150 6,750 2/14/2024
2.1.149 2,857 2/13/2024
2.1.148 3,385 2/13/2024
2.1.147 4,105 2/13/2024
2.1.146 4,004 2/13/2024
2.1.145 5,463 2/12/2024
2.1.144 880 2/11/2024
2.1.143 5,948 2/11/2024
2.1.142 3,391 2/11/2024
2.1.141 7,061 2/10/2024
2.1.140 911 2/9/2024
2.1.139 6,330 2/9/2024
2.1.138 4,096 2/9/2024
2.1.137 1,098 2/8/2024
2.1.136 5,069 2/8/2024
2.1.135 2,064 2/8/2024
2.1.134 12,326 2/8/2024
2.1.133 381 2/8/2024
2.1.132 316 2/8/2024
2.1.131 5,807 2/7/2024
2.1.130 2,378 2/7/2024
2.1.129 4,017 2/7/2024
2.1.128 1,287 2/7/2024
2.1.127 1,183 2/6/2024
2.1.126 3,164 2/6/2024
2.1.125 349 2/6/2024
2.1.124 8,497 2/5/2024
2.1.123 5,466 2/4/2024
2.1.122 5,799 2/2/2024
2.1.121 6,884 1/31/2024
2.1.120 6,724 1/29/2024
2.1.119 4,144 1/29/2024
2.1.118 2,797 1/29/2024
2.1.117 4,369 1/28/2024
2.1.116 5,799 1/28/2024
2.1.115 3,342 1/28/2024
2.1.114 1,974 1/28/2024
2.1.113 2,637 1/27/2024
2.1.112 2,338 1/27/2024
2.1.111 6,074 1/27/2024
2.1.110 3,044 1/27/2024
2.1.109 7,290 1/27/2024
2.1.108 1,973 1/26/2024
2.1.107 2,430 1/26/2024
2.1.106 2,994 1/26/2024
2.1.105 5,666 1/26/2024
2.1.104 2,642 1/26/2024
2.1.103 1,552 1/26/2024
2.1.102 5,088 1/25/2024
2.1.101 3,974 1/25/2024
2.1.100 1,958 1/25/2024
2.1.99 6,381 1/25/2024
2.1.98 6,273 1/19/2024
2.1.97 6,381 1/15/2024
2.1.96 2,917 1/15/2024
2.1.95 2,282 1/15/2024
2.1.94 5,761 1/15/2024
2.1.93 5,903 1/15/2024
2.1.92 5,700 1/14/2024
2.1.91 6,986 1/13/2024
2.1.90 5,859 1/12/2024
2.1.89 5,750 1/11/2024
2.1.88 7,978 1/7/2024
2.1.87 6,354 1/5/2024
2.1.86 2,805 1/5/2024
2.1.85 3,699 1/5/2024
2.1.84 6,782 1/3/2024
2.1.83 4,142 1/1/2024
2.1.82 5,686 12/28/2023
2.1.81 2,272 12/28/2023
2.1.80 2,340 12/28/2023
2.1.79 5,072 12/27/2023
2.1.78 2,370 12/27/2023
2.1.77 370 12/27/2023
2.1.76 9,767 12/25/2023
2.1.75 5,358 12/25/2023
2.1.74 2,764 12/25/2023
2.1.73 831 12/25/2023
2.1.72 390 12/25/2023
2.1.71 7,695 12/24/2023
2.1.70 6,051 12/23/2023
2.1.69 3,252 12/23/2023
2.1.68 1,930 12/23/2023
2.1.67 4,227 12/23/2023
2.1.66 361 12/23/2023
2.1.65 9,176 12/19/2023
2.1.64 2,498 12/19/2023
2.1.63 6,173 12/12/2023
2.1.62 566 12/12/2023
2.1.61 3,051 12/11/2023
2.1.60 2,440 12/11/2023
2.1.59 1,365 12/11/2023
2.1.58 1,864 12/11/2023
2.1.57 963 12/10/2023
2.1.56 954 12/10/2023
2.1.55 2,018 12/10/2023
2.1.54 1,284 12/10/2023
2.1.53 9,073 12/10/2023
2.1.52 2,083 12/9/2023
2.1.51 1,190 12/9/2023
2.1.50 1,795 12/9/2023
2.1.49 2,746 12/9/2023
2.1.48 330 12/9/2023
2.1.47 1,430 12/9/2023
2.1.46 399 12/9/2023
2.1.45 3,126 12/9/2023
2.1.44 361 12/9/2023
2.1.43 5,036 12/9/2023
2.1.42 7,448 12/6/2023
2.1.41 1,347 12/6/2023
2.1.40 1,972 12/6/2023
2.1.39 4,382 12/5/2023
2.1.38 2,238 12/5/2023
2.1.37 1,257 12/5/2023
2.1.36 3,155 12/5/2023
2.1.35 336 12/5/2023
2.1.34 2,668 12/5/2023
2.1.33 341 12/5/2023
2.1.32 1,774 12/4/2023
2.1.31 1,705 12/4/2023
2.1.30 369 12/4/2023
2.1.29 9,649 12/4/2023
2.1.28 3,385 11/27/2023
2.1.27 1,524 11/26/2023
2.1.26 3,777 11/23/2023
2.1.25 3,213 11/23/2023
2.1.24 4,016 11/23/2023
2.1.23 344 11/23/2023
2.1.22 7,784 11/20/2023
2.1.21 3,767 11/20/2023
2.1.20 6,125 11/19/2023
2.1.19 3,278 11/19/2023
2.1.18 4,464 11/19/2023
2.1.17 1,228 11/18/2023
2.1.16 5,933 11/18/2023
2.1.15 1,376 11/18/2023
2.1.14 3,701 11/18/2023
2.1.13 809 11/18/2023
2.1.12 3,871 11/17/2023
2.1.11 3,271 11/17/2023
2.1.10 2,386 11/17/2023
2.1.9 464 11/17/2023
2.1.8 3,681 11/17/2023
2.1.7 2,255 11/17/2023
2.1.6 2,766 11/17/2023
2.1.5 1,945 11/17/2023
2.1.4 674 11/17/2023
2.1.3 3,581 11/16/2023
2.0.78 1,228 11/15/2023
2.0.77 370 11/15/2023
2.0.76 3,284 11/15/2023
2.0.2 355 11/16/2023
2.0.1 333 11/16/2023
1.0.75 4,607 11/13/2023
1.0.74 6,696 11/10/2023
1.0.73 5,172 11/9/2023
1.0.72 3,562 11/8/2023
1.0.71 5,387 11/7/2023
1.0.70 2,753 11/6/2023
1.0.69 3,381 11/3/2023
1.0.68 5,955 11/2/2023
1.0.67 3,888 11/1/2023
1.0.66 11,697 10/26/2023
1.0.65 7,210 10/19/2023
1.0.64 3,120 10/18/2023
1.0.63 3,077 10/17/2023
1.0.62 3,753 10/16/2023
1.0.61 6,560 10/13/2023
1.0.60 3,955 10/12/2023
1.0.59 12,277 9/18/2023
1.0.58 358 9/18/2023
1.0.57 8,313 9/14/2023
1.0.56 7,717 8/31/2023
1.0.55 3,891 8/30/2023
1.0.54 3,430 8/29/2023
1.0.53 3,374 8/28/2023
1.0.52 6,202 8/25/2023
1.0.51 3,567 8/24/2023
1.0.50 8,576 8/21/2023
1.0.49 3,481 8/18/2023
1.0.48 3,265 8/17/2023
1.0.47 5,852 8/16/2023
1.0.46 9,673 8/10/2023
1.0.45 3,389 8/9/2023
1.0.44 5,561 8/8/2023
1.0.43 4,776 8/7/2023
1.0.42 5,041 8/4/2023
1.0.41 9,222 7/13/2023
1.0.40 6,092 7/11/2023
1.0.39 3,808 7/10/2023
1.0.38 4,669 7/7/2023
1.0.37 447 7/7/2023
1.0.36 12,795 6/30/2023
1.0.35 6,605 6/28/2023
1.0.34 6,712 6/27/2023
1.0.33 7,710 6/26/2023
1.0.32 4,698 6/23/2023
1.0.31 9,446 6/21/2023
1.0.30 9,772 6/15/2023
1.0.29 3,968 6/14/2023
1.0.28 10,520 6/9/2023
1.0.27 4,543 6/8/2023
1.0.26 5,530 6/7/2023
1.0.25 6,269 6/6/2023
1.0.24 464 6/6/2023
1.0.23 5,346 6/5/2023
1.0.22 18,019 5/30/2023
1.0.21 20,841 5/29/2023
1.0.20 7,330 5/26/2023
1.0.19 8,480 5/25/2023
1.0.18 8,858 5/24/2023
1.0.17 6,089 5/24/2023
1.0.16 1,833 5/23/2023
1.0.15 1,776 5/23/2023
1.0.12 3,384 5/22/2023
1.0.11 20,363 5/16/2023
1.0.10 16,776 4/20/2023
1.0.9 16,236 4/3/2023
1.0.8 1,377 4/3/2023
1.0.7 2,681 3/23/2023
1.0.5 889 3/13/2023
1.0.4 621 3/11/2023
1.0.3 525 3/11/2023
1.0.2 522 3/11/2023
1.0.1 588 3/11/2023