Soenneker.Utils.AsyncSingleton 2.1.27

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

Install-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 114,059 9/3/2025
3.0.715 183 9/3/2025
3.0.714 60,366 8/11/2025
3.0.713 170 8/11/2025
3.0.712 108,797 7/1/2025
3.0.711 12,468 6/27/2025
3.0.710 1,638 6/27/2025
3.0.709 66,459 5/27/2025
3.0.708 1,165 5/27/2025
3.0.707 25,472 5/22/2025
3.0.705 39,144 5/7/2025
3.0.704 639 5/7/2025
3.0.703 23,935 5/5/2025
3.0.702 695 5/5/2025
3.0.701 209 5/5/2025
3.0.700 30,019 4/8/2025
3.0.699 7,441 4/8/2025
3.0.698 3,793 4/8/2025
3.0.697 5,285 4/8/2025
3.0.696 13,932 4/7/2025
3.0.695 4,945 4/7/2025
3.0.694 13,050 4/7/2025
3.0.693 11,999 4/7/2025
3.0.692 3,542 4/7/2025
3.0.691 3,345 4/6/2025
3.0.690 1,873 4/6/2025
3.0.689 340 4/6/2025
3.0.688 234 4/6/2025
3.0.687 4,863 4/6/2025
3.0.686 2,897 4/6/2025
3.0.685 181 4/6/2025
3.0.684 12,312 4/5/2025
3.0.683 2,010 4/5/2025
3.0.682 618 4/5/2025
3.0.681 188 4/5/2025
3.0.680 950 4/4/2025
3.0.679 347 4/4/2025
3.0.678 63,359 4/1/2025
3.0.677 16,940 3/31/2025
3.0.676 12,635 3/29/2025
3.0.675 16,691 3/25/2025
3.0.674 12,870 3/21/2025
3.0.673 23,599 3/15/2025
3.0.672 13,282 3/12/2025
3.0.671 1,217 3/12/2025
3.0.670 6,601 3/11/2025
3.0.669 327 3/11/2025
3.0.668 8,920 3/11/2025
3.0.667 8,381 3/11/2025
3.0.666 27,785 3/2/2025
3.0.665 3,030 3/2/2025
3.0.664 3,172 3/1/2025
3.0.663 5,239 3/1/2025
3.0.662 4,635 3/1/2025
3.0.661 3,313 3/1/2025
3.0.660 165 3/1/2025
3.0.659 5,083 3/1/2025
3.0.658 19,693 2/25/2025
3.0.657 4,476 2/25/2025
3.0.656 4,016 2/25/2025
3.0.655 4,996 2/24/2025
3.0.654 11,599 2/22/2025
3.0.653 18,731 2/22/2025
3.0.652 535 2/22/2025
3.0.651 5,297 2/21/2025
3.0.650 11,370 2/21/2025
3.0.649 14,886 2/19/2025
3.0.648 787 2/18/2025
3.0.647 2,830 2/18/2025
3.0.646 3,266 2/18/2025
3.0.645 8,408 2/18/2025
3.0.644 14,838 2/13/2025
3.0.643 16,813 2/12/2025
3.0.642 1,686 2/12/2025
3.0.641 2,908 2/12/2025
3.0.640 3,205 2/11/2025
3.0.639 3,269 2/11/2025
3.0.638 4,080 2/11/2025
3.0.637 6,140 2/11/2025
3.0.636 7,603 2/11/2025
3.0.635 9,980 2/10/2025
3.0.634 190 2/10/2025
3.0.633 12,849 2/9/2025
3.0.632 9,791 2/8/2025
3.0.631 1,839 2/8/2025
3.0.630 3,937 2/7/2025
3.0.629 4,868 2/7/2025
3.0.628 5,089 2/7/2025
3.0.627 441 2/7/2025
3.0.626 4,833 2/7/2025
3.0.625 175 2/7/2025
3.0.624 1,066 2/7/2025
3.0.623 26,229 2/5/2025
3.0.622 2,209 2/5/2025
3.0.621 3,949 2/5/2025
3.0.620 3,036 2/5/2025
3.0.619 30,026 1/28/2025
3.0.618 8,441 1/28/2025
3.0.617 467 1/27/2025
3.0.616 30,158 1/26/2025
3.0.615 2,802 1/26/2025
3.0.614 6,724 1/25/2025
3.0.613 9,260 1/25/2025
3.0.612 5,696 1/25/2025
3.0.611 3,198 1/24/2025
3.0.610 22,957 1/24/2025
3.0.609 7,566 1/24/2025
3.0.608 7,360 1/24/2025
3.0.607 6,070 1/23/2025
3.0.606 5,992 1/23/2025
3.0.605 17,522 1/21/2025
3.0.604 3,793 1/21/2025
3.0.603 8,735 1/21/2025
3.0.602 5,785 1/21/2025
3.0.601 8,343 1/21/2025
3.0.600 8,432 1/20/2025
3.0.599 616 1/20/2025
3.0.598 1,117 1/20/2025
3.0.597 8,321 1/20/2025
3.0.596 10,111 1/20/2025
3.0.595 1,213 1/20/2025
3.0.594 185 1/20/2025
3.0.593 1,142 1/20/2025
3.0.592 168 1/20/2025
3.0.591 26,277 1/19/2025
3.0.590 4,089 1/19/2025
3.0.589 4,135 1/18/2025
3.0.588 6,805 1/18/2025
3.0.587 2,663 1/18/2025
3.0.586 11,145 1/17/2025
3.0.585 2,060 1/17/2025
3.0.584 5,522 1/17/2025
3.0.583 4,973 1/16/2025
3.0.582 29,808 1/16/2025
3.0.581 2,646 1/16/2025
3.0.580 5,345 1/16/2025
3.0.579 6,703 1/15/2025
3.0.578 3,996 1/15/2025
3.0.577 7,375 1/15/2025
3.0.576 11,695 1/15/2025
3.0.575 2,031 1/15/2025
3.0.574 6,299 1/15/2025
3.0.573 589 1/15/2025
3.0.572 5,909 1/14/2025
3.0.571 2,786 1/14/2025
3.0.570 6,393 1/14/2025
3.0.569 25,233 1/13/2025
3.0.568 8,850 1/12/2025
3.0.567 13,297 1/11/2025
3.0.566 3,674 1/11/2025
3.0.565 1,733 1/11/2025
3.0.564 1,475 1/10/2025
3.0.563 7,506 1/10/2025
3.0.562 673 1/10/2025
3.0.561 1,578 1/10/2025
3.0.560 160 1/10/2025
3.0.559 158 1/10/2025
3.0.558 16,327 1/8/2025
3.0.557 490 1/8/2025
3.0.556 6,676 1/3/2025
3.0.555 5,294 1/3/2025
3.0.554 7,226 1/2/2025
3.0.553 1,210 1/2/2025
3.0.552 214 1/2/2025
3.0.551 4,203 1/2/2025
3.0.550 9,102 1/1/2025
3.0.549 1,294 1/1/2025
3.0.548 2,057 1/1/2025
3.0.547 2,370 1/1/2025
3.0.546 184 1/1/2025
3.0.545 1,040 12/31/2024
3.0.544 177 12/31/2024
3.0.543 379 12/31/2024
3.0.542 12,826 12/31/2024
3.0.541 13,791 12/31/2024
3.0.540 5,479 12/31/2024
3.0.539 6,815 12/31/2024
3.0.538 4,961 12/31/2024
3.0.537 2,102 12/31/2024
3.0.536 181 12/31/2024
3.0.535 8,415 12/31/2024
3.0.534 26,052 12/27/2024
3.0.533 4,840 12/27/2024
3.0.532 17,568 12/24/2024
3.0.531 1,090 12/24/2024
3.0.530 2,466 12/24/2024
3.0.529 439 12/24/2024
3.0.528 488 12/24/2024
3.0.527 3,016 12/23/2024
3.0.526 6,247 12/23/2024
3.0.525 2,986 12/23/2024
3.0.524 2,819 12/23/2024
3.0.523 3,910 12/23/2024
3.0.522 2,015 12/23/2024
3.0.521 5,029 12/22/2024
3.0.520 188 12/22/2024
3.0.519 21,146 12/22/2024
3.0.518 203 12/22/2024
3.0.517 16,380 12/22/2024
3.0.516 171 12/22/2024
3.0.515 7,649 12/22/2024
3.0.514 187 12/22/2024
3.0.513 1,497 12/21/2024
3.0.512 475 12/21/2024
3.0.511 167 12/21/2024
3.0.510 14,077 12/21/2024
3.0.509 1,484 12/21/2024
3.0.508 160 12/21/2024
3.0.507 2,386 12/21/2024
3.0.506 181 12/21/2024
3.0.505 7,958 12/21/2024
3.0.504 2,618 12/21/2024
3.0.503 6,309 12/21/2024
3.0.502 178 12/21/2024
3.0.501 3,918 12/20/2024
3.0.500 3,828 12/20/2024
3.0.499 7,598 12/20/2024
3.0.498 2,315 12/20/2024
3.0.497 1,084 12/20/2024
3.0.496 13,264 12/19/2024
3.0.495 1,037 12/19/2024
3.0.494 1,777 12/18/2024
3.0.493 952 12/18/2024
3.0.492 18,751 12/17/2024
3.0.491 564 12/17/2024
3.0.490 1,250 12/17/2024
3.0.489 1,616 12/17/2024
3.0.488 1,813 12/16/2024
3.0.487 581 12/16/2024
3.0.486 150 12/16/2024
3.0.485 16,551 12/9/2024
3.0.484 4,039 12/9/2024
3.0.483 8,727 12/9/2024
3.0.482 1,641 12/9/2024
3.0.480 17,687 12/6/2024
3.0.479 9,307 12/6/2024
3.0.478 3,066 12/6/2024
3.0.477 1,679 12/6/2024
3.0.476 1,128 12/6/2024
3.0.475 3,693 12/6/2024
3.0.474 11,224 12/6/2024
3.0.473 14,449 12/5/2024
3.0.472 1,721 12/5/2024
3.0.471 8,695 12/5/2024
3.0.470 3,969 12/5/2024
3.0.469 1,139 12/5/2024
3.0.468 8,006 12/4/2024
3.0.467 4,558 12/4/2024
3.0.466 4,761 12/4/2024
3.0.465 12,166 12/3/2024
3.0.464 517 12/3/2024
3.0.463 2,758 12/3/2024
3.0.462 10,553 12/3/2024
3.0.461 2,026 12/3/2024
3.0.460 6,558 12/3/2024
3.0.459 167 12/3/2024
3.0.458 1,330 12/3/2024
3.0.457 14,119 12/2/2024
3.0.456 6,326 12/2/2024
3.0.455 1,889 12/2/2024
3.0.454 1,603 12/1/2024
3.0.453 8,595 12/1/2024
3.0.452 8,951 12/1/2024
3.0.451 9,381 11/29/2024
3.0.450 14,867 11/20/2024
3.0.449 9,721 11/20/2024
3.0.448 724 11/20/2024
3.0.447 3,356 11/20/2024
3.0.445 4,232 11/19/2024
3.0.444 3,531 11/19/2024
3.0.443 9,739 11/19/2024
3.0.442 7,042 11/19/2024
3.0.441 168 11/19/2024
3.0.439 19,738 11/14/2024
3.0.438 7,598 11/14/2024
3.0.437 3,168 11/14/2024
3.0.436 5,803 11/14/2024
3.0.435 558 11/14/2024
3.0.434 190 11/14/2024
3.0.433 2,048 11/14/2024
3.0.432 167 11/14/2024
2.1.431 28,203 11/13/2024
2.1.430 5,463 11/13/2024
2.1.429 4,258 11/12/2024
2.1.428 19,644 11/9/2024
2.1.427 4,176 11/9/2024
2.1.426 4,354 11/8/2024
2.1.425 2,016 11/8/2024
2.1.424 2,244 11/8/2024
2.1.423 2,600 11/8/2024
2.1.422 2,974 11/8/2024
2.1.421 7,948 11/8/2024
2.1.420 30,911 11/1/2024
2.1.419 14,273 10/29/2024
2.1.418 5,428 10/29/2024
2.1.417 7,428 10/29/2024
2.1.416 13,937 10/28/2024
2.1.415 13,853 10/26/2024
2.1.414 15,655 10/22/2024
2.1.413 5,190 10/22/2024
2.1.412 2,898 10/22/2024
2.1.411 15,721 10/17/2024
2.1.410 14,018 10/15/2024
2.1.409 2,580 10/14/2024
2.1.408 14,391 10/11/2024
2.1.407 4,023 10/11/2024
2.1.406 2,632 10/11/2024
2.1.404 21,397 10/8/2024
2.1.403 8,545 10/8/2024
2.1.402 26,476 10/3/2024
2.1.401 1,895 10/3/2024
2.1.400 4,447 10/3/2024
2.1.399 17,164 10/2/2024
2.1.398 5,670 10/2/2024
2.1.397 17,607 10/1/2024
2.1.396 1,601 10/1/2024
2.1.395 8,732 9/30/2024
2.1.394 13,739 9/29/2024
2.1.393 4,491 9/29/2024
2.1.392 4,185 9/29/2024
2.1.391 11,841 9/27/2024
2.1.390 8,061 9/27/2024
2.1.389 270 9/27/2024
2.1.388 1,203 9/27/2024
2.1.387 3,107 9/27/2024
2.1.386 185 9/27/2024
2.1.385 17,928 9/26/2024
2.1.384 15,775 9/26/2024
2.1.383 6,873 9/26/2024
2.1.382 19,568 9/23/2024
2.1.381 4,775 9/23/2024
2.1.380 8,484 9/23/2024
2.1.379 8,337 9/23/2024
2.1.378 6,432 9/23/2024
2.1.377 1,249 9/23/2024
2.1.376 3,282 9/23/2024
2.1.375 175 9/23/2024
2.1.374 23,410 9/17/2024
2.1.373 1,069 9/17/2024
2.1.372 4,378 9/17/2024
2.1.371 4,633 9/17/2024
2.1.370 5,088 9/17/2024
2.1.369 7,064 9/17/2024
2.1.368 7,743 9/17/2024
2.1.367 25,489 9/16/2024
2.1.366 13,062 9/12/2024
2.1.365 4,994 9/11/2024
2.1.363 13,973 9/11/2024
2.1.362 27,238 9/10/2024
2.1.361 1,139 9/10/2024
2.1.360 1,661 9/10/2024
2.1.359 1,467 9/10/2024
2.1.358 5,780 9/9/2024
2.1.357 2,365 9/9/2024
2.1.356 9,692 9/9/2024
2.1.355 2,718 9/9/2024
2.1.354 11,033 9/9/2024
2.1.353 21,419 9/7/2024
2.1.352 16,048 9/6/2024
2.1.351 8,339 9/5/2024
2.1.350 8,347 9/5/2024
2.1.349 865 9/5/2024
2.1.348 213 9/5/2024
2.1.347 14,455 9/5/2024
2.1.346 1,638 9/4/2024
2.1.345 22,051 9/3/2024
2.1.344 10,019 9/3/2024
2.1.343 7,517 9/3/2024
2.1.342 14,295 8/29/2024
2.1.341 11,957 8/26/2024
2.1.340 12,707 8/21/2024
2.1.339 4,714 8/21/2024
2.1.338 2,745 8/20/2024
2.1.337 9,591 8/20/2024
2.1.336 204 8/20/2024
2.1.335 192 8/20/2024
2.1.334 16,128 8/19/2024
2.1.333 15,522 8/15/2024
2.1.332 15,519 8/13/2024
2.1.331 12,828 8/6/2024
2.1.330 7,446 8/6/2024
2.1.329 11,379 8/1/2024
2.1.328 2,354 8/1/2024
2.1.327 1,072 8/1/2024
2.1.326 16,381 7/25/2024
2.1.325 3,443 7/25/2024
2.1.324 2,967 7/25/2024
2.1.323 450 7/24/2024
2.1.322 1,296 7/24/2024
2.1.321 622 7/24/2024
2.1.320 16,656 7/20/2024
2.1.319 20,726 7/14/2024
2.1.318 7,703 7/14/2024
2.1.317 11,232 7/10/2024
2.1.316 4,917 7/10/2024
2.1.315 4,407 7/10/2024
2.1.314 2,520 7/10/2024
2.1.313 1,748 7/10/2024
2.1.312 545 7/10/2024
2.1.311 4,428 7/10/2024
2.1.310 2,152 7/9/2024
2.1.308 4,436 7/9/2024
2.1.307 180 7/9/2024
2.1.306 4,919 7/9/2024
2.1.305 11,220 7/9/2024
2.1.304 9,762 7/9/2024
2.1.303 4,588 7/9/2024
2.1.302 176 7/9/2024
2.1.301 12,707 7/9/2024
2.1.300 10,381 7/8/2024
2.1.299 596 7/8/2024
2.1.298 172 7/8/2024
2.1.297 188 7/8/2024
2.1.296 14,100 7/8/2024
2.1.295 2,770 7/7/2024
2.1.294 8,979 7/7/2024
2.1.293 199 7/7/2024
2.1.292 2,407 7/7/2024
2.1.291 5,144 7/7/2024
2.1.290 17,571 7/3/2024
2.1.289 5,682 7/3/2024
2.1.288 5,020 7/3/2024
2.1.287 1,482 7/3/2024
2.1.286 9,870 7/2/2024
2.1.283 6,045 6/30/2024
2.1.282 4,031 6/28/2024
2.1.281 416 6/28/2024
2.1.279 12,798 6/22/2024
2.1.278 14,650 6/15/2024
2.1.277 1,888 6/15/2024
2.1.276 11,155 6/14/2024
2.1.275 17,890 6/1/2024
2.1.274 2,912 6/1/2024
2.1.273 1,790 6/1/2024
2.1.272 15,787 5/31/2024
2.1.271 9,730 5/29/2024
2.1.270 11,083 5/28/2024
2.1.269 6,311 5/27/2024
2.1.268 11,507 5/26/2024
2.1.267 11,463 5/26/2024
2.1.266 547 5/26/2024
2.1.265 4,189 5/25/2024
2.1.264 2,942 5/25/2024
2.1.263 2,763 5/25/2024
2.1.262 186 5/25/2024
2.1.261 2,266 5/25/2024
2.1.260 189 5/25/2024
2.1.259 8,082 5/25/2024
2.1.258 181 5/25/2024
2.1.257 14,234 5/23/2024
2.1.256 5,817 5/23/2024
2.1.255 4,120 5/22/2024
2.1.254 3,063 5/22/2024
2.1.253 1,228 5/22/2024
2.1.252 184 5/22/2024
2.1.251 185 5/22/2024
2.1.250 6,021 5/22/2024
2.1.249 15,337 5/18/2024
2.1.248 3,184 5/17/2024
2.1.247 5,644 5/17/2024
2.1.246 8,577 5/16/2024
2.1.245 2,242 5/15/2024
2.1.244 6,372 5/15/2024
2.1.243 13,304 5/12/2024
2.1.242 7,134 5/3/2024
2.1.241 7,952 4/29/2024
2.1.240 4,380 4/29/2024
2.1.239 8,582 4/28/2024
2.1.238 1,393 4/28/2024
2.1.237 1,626 4/28/2024
2.1.236 6,531 4/28/2024
2.1.235 916 4/28/2024
2.1.234 8,441 4/28/2024
2.1.233 1,816 4/28/2024
2.1.232 7,991 4/27/2024
2.1.231 194 4/27/2024
2.1.230 16,057 4/19/2024
2.1.229 9,998 4/18/2024
2.1.228 10,361 4/12/2024
2.1.227 1,633 4/12/2024
2.1.226 2,630 4/12/2024
2.1.225 2,158 4/12/2024
2.1.224 1,518 4/12/2024
2.1.223 2,209 4/12/2024
2.1.222 828 4/12/2024
2.1.221 202 4/12/2024
2.1.220 5,795 4/10/2024
2.1.219 24,731 4/10/2024
2.1.218 1,056 4/10/2024
2.1.217 12,412 4/2/2024
2.1.216 2,200 4/1/2024
2.1.215 11,891 3/29/2024
2.1.214 8,687 3/25/2024
2.1.213 975 3/25/2024
2.1.212 11,961 3/20/2024
2.1.211 8,170 3/19/2024
2.1.210 5,037 3/19/2024
2.1.209 5,469 3/18/2024
2.1.208 11,726 3/15/2024
2.1.207 8,070 3/13/2024
2.1.206 3,100 3/13/2024
2.1.205 4,039 3/13/2024
2.1.204 254 3/13/2024
2.1.203 243 3/13/2024
2.1.202 2,666 3/13/2024
2.1.201 236 3/13/2024
2.1.200 5,765 3/12/2024
2.1.199 7,405 3/12/2024
2.1.198 9,685 3/11/2024
2.1.197 6,761 3/11/2024
2.1.196 7,334 3/10/2024
2.1.195 9,313 3/8/2024
2.1.194 846 3/8/2024
2.1.193 6,636 3/8/2024
2.1.192 8,643 3/6/2024
2.1.191 8,539 3/4/2024
2.1.190 4,742 3/4/2024
2.1.189 9,509 3/2/2024
2.1.188 2,408 3/2/2024
2.1.187 3,082 3/2/2024
2.1.186 1,733 3/2/2024
2.1.185 1,176 3/2/2024
2.1.184 6,532 2/29/2024
2.1.183 2,113 2/29/2024
2.1.182 3,246 2/29/2024
2.1.181 6,136 2/26/2024
2.1.180 23,534 2/25/2024
2.1.179 2,783 2/25/2024
2.1.178 9,321 2/23/2024
2.1.177 9,016 2/22/2024
2.1.176 2,523 2/22/2024
2.1.175 3,080 2/21/2024
2.1.174 4,933 2/21/2024
2.1.173 4,427 2/21/2024
2.1.172 5,606 2/21/2024
2.1.171 2,387 2/21/2024
2.1.170 461 2/21/2024
2.1.169 4,990 2/21/2024
2.1.168 1,679 2/20/2024
2.1.167 295 2/20/2024
2.1.166 295 2/20/2024
2.1.165 6,705 2/20/2024
2.1.164 5,194 2/20/2024
2.1.163 4,878 2/20/2024
2.1.162 10,296 2/19/2024
2.1.161 8,055 2/17/2024
2.1.160 3,303 2/17/2024
2.1.159 2,473 2/16/2024
2.1.158 1,760 2/16/2024
2.1.157 3,031 2/16/2024
2.1.156 4,431 2/16/2024
2.1.155 5,274 2/16/2024
2.1.154 344 2/16/2024
2.1.153 2,648 2/16/2024
2.1.152 325 2/16/2024
2.1.151 324 2/16/2024
2.1.150 8,965 2/14/2024
2.1.149 3,690 2/13/2024
2.1.148 4,447 2/13/2024
2.1.147 5,634 2/13/2024
2.1.146 5,429 2/13/2024
2.1.145 7,433 2/12/2024
2.1.144 1,155 2/11/2024
2.1.143 7,935 2/11/2024
2.1.142 4,389 2/11/2024
2.1.141 9,271 2/10/2024
2.1.140 1,172 2/9/2024
2.1.139 8,377 2/9/2024
2.1.138 5,511 2/9/2024
2.1.137 1,407 2/8/2024
2.1.136 6,797 2/8/2024
2.1.135 2,770 2/8/2024
2.1.134 15,977 2/8/2024
2.1.133 408 2/8/2024
2.1.132 336 2/8/2024
2.1.131 7,658 2/7/2024
2.1.130 3,115 2/7/2024
2.1.129 5,277 2/7/2024
2.1.128 1,702 2/7/2024
2.1.127 1,467 2/6/2024
2.1.126 4,283 2/6/2024
2.1.125 367 2/6/2024
2.1.124 11,186 2/5/2024
2.1.123 7,183 2/4/2024
2.1.122 7,671 2/2/2024
2.1.121 8,985 1/31/2024
2.1.120 8,785 1/29/2024
2.1.119 5,491 1/29/2024
2.1.118 3,699 1/29/2024
2.1.117 5,609 1/28/2024
2.1.116 7,648 1/28/2024
2.1.115 4,306 1/28/2024
2.1.114 2,668 1/28/2024
2.1.113 3,245 1/27/2024
2.1.112 3,074 1/27/2024
2.1.111 7,907 1/27/2024
2.1.110 4,185 1/27/2024
2.1.109 9,279 1/27/2024
2.1.108 2,579 1/26/2024
2.1.107 3,172 1/26/2024
2.1.106 3,861 1/26/2024
2.1.105 7,257 1/26/2024
2.1.104 3,431 1/26/2024
2.1.103 2,004 1/26/2024
2.1.102 6,695 1/25/2024
2.1.101 5,301 1/25/2024
2.1.100 2,624 1/25/2024
2.1.99 8,124 1/25/2024
2.1.98 8,321 1/19/2024
2.1.97 8,137 1/15/2024
2.1.96 3,650 1/15/2024
2.1.95 3,002 1/15/2024
2.1.94 7,400 1/15/2024
2.1.93 7,620 1/15/2024
2.1.92 7,308 1/14/2024
2.1.91 8,993 1/13/2024
2.1.90 7,363 1/12/2024
2.1.89 7,374 1/11/2024
2.1.88 10,123 1/7/2024
2.1.87 8,129 1/5/2024
2.1.86 3,553 1/5/2024
2.1.85 4,797 1/5/2024
2.1.84 8,700 1/3/2024
2.1.83 5,282 1/1/2024
2.1.82 7,188 12/28/2023
2.1.81 2,826 12/28/2023
2.1.80 3,041 12/28/2023
2.1.79 6,442 12/27/2023
2.1.78 3,066 12/27/2023
2.1.77 387 12/27/2023
2.1.76 12,394 12/25/2023
2.1.75 6,703 12/25/2023
2.1.74 3,553 12/25/2023
2.1.73 1,050 12/25/2023
2.1.72 409 12/25/2023
2.1.71 9,824 12/24/2023
2.1.70 7,660 12/23/2023
2.1.69 4,120 12/23/2023
2.1.68 2,556 12/23/2023
2.1.67 5,222 12/23/2023
2.1.66 378 12/23/2023
2.1.65 11,821 12/19/2023
2.1.64 3,114 12/19/2023
2.1.63 7,787 12/12/2023
2.1.62 650 12/12/2023
2.1.61 3,776 12/11/2023
2.1.60 3,012 12/11/2023
2.1.59 1,581 12/11/2023
2.1.58 2,328 12/11/2023
2.1.57 1,220 12/10/2023
2.1.56 1,182 12/10/2023
2.1.55 2,441 12/10/2023
2.1.54 1,528 12/10/2023
2.1.53 11,089 12/10/2023
2.1.52 2,588 12/9/2023
2.1.51 1,457 12/9/2023
2.1.50 2,223 12/9/2023
2.1.49 3,397 12/9/2023
2.1.48 351 12/9/2023
2.1.47 1,909 12/9/2023
2.1.46 420 12/9/2023
2.1.45 3,752 12/9/2023
2.1.44 379 12/9/2023
2.1.43 6,332 12/9/2023
2.1.42 9,281 12/6/2023
2.1.41 1,631 12/6/2023
2.1.40 2,447 12/6/2023
2.1.39 5,553 12/5/2023
2.1.38 2,800 12/5/2023
2.1.37 1,584 12/5/2023
2.1.36 4,009 12/5/2023
2.1.35 361 12/5/2023
2.1.34 3,413 12/5/2023
2.1.33 359 12/5/2023
2.1.32 2,352 12/4/2023
2.1.31 2,006 12/4/2023
2.1.30 389 12/4/2023
2.1.29 12,285 12/4/2023
2.1.28 4,405 11/27/2023
2.1.27 1,945 11/26/2023
2.1.26 4,811 11/23/2023
2.1.25 4,171 11/23/2023
2.1.24 5,174 11/23/2023
2.1.23 361 11/23/2023
2.1.22 9,973 11/20/2023
2.1.21 4,817 11/20/2023
2.1.20 8,191 11/19/2023
2.1.19 4,249 11/19/2023
2.1.18 5,801 11/19/2023
2.1.17 1,559 11/18/2023
2.1.16 7,923 11/18/2023
2.1.15 1,671 11/18/2023
2.1.14 4,845 11/18/2023
2.1.13 896 11/18/2023
2.1.12 5,057 11/17/2023
2.1.11 4,254 11/17/2023
2.1.10 3,310 11/17/2023
2.1.9 583 11/17/2023
2.1.8 4,650 11/17/2023
2.1.7 2,955 11/17/2023
2.1.6 3,694 11/17/2023
2.1.5 2,843 11/17/2023
2.1.4 883 11/17/2023
2.1.3 4,706 11/16/2023
2.0.78 1,609 11/15/2023
2.0.77 387 11/15/2023
2.0.76 4,296 11/15/2023
2.0.2 370 11/16/2023
2.0.1 356 11/16/2023
1.0.75 6,172 11/13/2023
1.0.74 8,711 11/10/2023
1.0.73 6,431 11/9/2023
1.0.72 4,464 11/8/2023
1.0.71 6,651 11/7/2023
1.0.70 3,458 11/6/2023
1.0.69 4,279 11/3/2023
1.0.68 7,255 11/2/2023
1.0.67 5,017 11/1/2023
1.0.66 14,950 10/26/2023
1.0.65 9,000 10/19/2023
1.0.64 3,790 10/18/2023
1.0.63 3,903 10/17/2023
1.0.62 4,756 10/16/2023
1.0.61 7,797 10/13/2023
1.0.60 4,834 10/12/2023
1.0.59 15,752 9/18/2023
1.0.58 380 9/18/2023
1.0.57 10,207 9/14/2023
1.0.56 9,771 8/31/2023
1.0.55 4,746 8/30/2023
1.0.54 4,311 8/29/2023
1.0.53 4,186 8/28/2023
1.0.52 7,534 8/25/2023
1.0.51 4,484 8/24/2023
1.0.50 10,646 8/21/2023
1.0.49 4,444 8/18/2023
1.0.48 4,099 8/17/2023
1.0.47 6,899 8/16/2023
1.0.46 11,890 8/10/2023
1.0.45 4,152 8/9/2023
1.0.44 6,531 8/8/2023
1.0.43 5,892 8/7/2023
1.0.42 6,076 8/4/2023
1.0.41 11,377 7/13/2023
1.0.40 7,335 7/11/2023
1.0.39 4,809 7/10/2023
1.0.38 5,593 7/7/2023
1.0.37 470 7/7/2023
1.0.36 15,434 6/30/2023
1.0.35 7,972 6/28/2023
1.0.34 7,906 6/27/2023
1.0.33 9,022 6/26/2023
1.0.32 5,686 6/23/2023
1.0.31 11,123 6/21/2023
1.0.30 11,813 6/15/2023
1.0.29 4,757 6/14/2023
1.0.28 12,611 6/9/2023
1.0.27 5,342 6/8/2023
1.0.26 6,373 6/7/2023
1.0.25 7,293 6/6/2023
1.0.24 492 6/6/2023
1.0.23 6,272 6/5/2023
1.0.22 21,657 5/30/2023
1.0.21 23,503 5/29/2023
1.0.20 8,433 5/26/2023
1.0.19 9,631 5/25/2023
1.0.18 10,037 5/24/2023
1.0.17 6,937 5/24/2023
1.0.16 2,182 5/23/2023
1.0.15 1,970 5/23/2023
1.0.12 4,007 5/22/2023
1.0.11 23,381 5/16/2023
1.0.10 19,335 4/20/2023
1.0.9 18,439 4/3/2023
1.0.8 1,468 4/3/2023
1.0.7 2,888 3/23/2023
1.0.5 938 3/13/2023
1.0.4 668 3/11/2023
1.0.3 555 3/11/2023
1.0.2 552 3/11/2023
1.0.1 625 3/11/2023