Soenneker.Utils.AsyncSingleton 2.1.12

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

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

Package Downloads
GoogleAds.API

An async thread-safe singleton for the Google Ads client

Soenneker.Utils.MemoryStream

An easy modern MemoryStream utility

Soenneker.Utils.Runtime

A collection of helpful runtime-based operations

Soenneker.Blob.Container

A utility library for Azure Blob storage container operations

Soenneker.Redis.Client

A utility library for Redis client accessibility

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.712 28,927 7/1/2025
3.0.711 7,928 6/27/2025
3.0.710 1,021 6/27/2025
3.0.709 41,974 5/27/2025
3.0.708 704 5/27/2025
3.0.707 15,927 5/22/2025
3.0.705 24,765 5/7/2025
3.0.704 413 5/7/2025
3.0.703 15,043 5/5/2025
3.0.702 446 5/5/2025
3.0.701 156 5/5/2025
3.0.700 19,234 4/8/2025
3.0.699 4,596 4/8/2025
3.0.698 2,284 4/8/2025
3.0.697 3,133 4/8/2025
3.0.696 8,123 4/7/2025
3.0.695 2,965 4/7/2025
3.0.694 7,717 4/7/2025
3.0.693 7,016 4/7/2025
3.0.692 2,046 4/7/2025
3.0.691 2,077 4/6/2025
3.0.690 1,213 4/6/2025
3.0.689 253 4/6/2025
3.0.688 180 4/6/2025
3.0.687 2,940 4/6/2025
3.0.686 1,790 4/6/2025
3.0.685 129 4/6/2025
3.0.684 7,500 4/5/2025
3.0.683 1,266 4/5/2025
3.0.682 410 4/5/2025
3.0.681 131 4/5/2025
3.0.680 655 4/4/2025
3.0.679 246 4/4/2025
3.0.678 38,465 4/1/2025
3.0.677 9,889 3/31/2025
3.0.676 7,396 3/29/2025
3.0.675 9,798 3/25/2025
3.0.674 7,518 3/21/2025
3.0.673 13,688 3/15/2025
3.0.672 7,729 3/12/2025
3.0.671 746 3/12/2025
3.0.670 3,923 3/11/2025
3.0.669 237 3/11/2025
3.0.668 5,368 3/11/2025
3.0.667 4,934 3/11/2025
3.0.666 16,177 3/2/2025
3.0.665 1,740 3/2/2025
3.0.664 1,861 3/1/2025
3.0.663 3,002 3/1/2025
3.0.662 2,675 3/1/2025
3.0.661 1,974 3/1/2025
3.0.660 111 3/1/2025
3.0.659 2,928 3/1/2025
3.0.658 11,636 2/25/2025
3.0.657 2,583 2/25/2025
3.0.656 2,318 2/25/2025
3.0.655 2,924 2/24/2025
3.0.654 6,824 2/22/2025
3.0.653 10,959 2/22/2025
3.0.652 322 2/22/2025
3.0.651 3,028 2/21/2025
3.0.650 6,688 2/21/2025
3.0.649 8,904 2/19/2025
3.0.648 496 2/18/2025
3.0.647 1,750 2/18/2025
3.0.646 1,977 2/18/2025
3.0.645 5,051 2/18/2025
3.0.644 9,069 2/13/2025
3.0.643 10,030 2/12/2025
3.0.642 1,038 2/12/2025
3.0.641 1,723 2/12/2025
3.0.640 1,932 2/11/2025
3.0.639 1,924 2/11/2025
3.0.638 2,388 2/11/2025
3.0.637 3,578 2/11/2025
3.0.636 4,589 2/11/2025
3.0.635 5,825 2/10/2025
3.0.634 131 2/10/2025
3.0.633 7,767 2/9/2025
3.0.632 5,671 2/8/2025
3.0.631 1,114 2/8/2025
3.0.630 2,281 2/7/2025
3.0.629 2,866 2/7/2025
3.0.628 3,081 2/7/2025
3.0.627 289 2/7/2025
3.0.626 2,772 2/7/2025
3.0.625 121 2/7/2025
3.0.624 660 2/7/2025
3.0.623 15,234 2/5/2025
3.0.622 1,242 2/5/2025
3.0.621 2,227 2/5/2025
3.0.620 1,745 2/5/2025
3.0.619 17,791 1/28/2025
3.0.618 4,469 1/28/2025
3.0.617 284 1/27/2025
3.0.616 16,521 1/26/2025
3.0.615 1,586 1/26/2025
3.0.614 3,817 1/25/2025
3.0.613 5,075 1/25/2025
3.0.612 3,198 1/25/2025
3.0.611 1,727 1/24/2025
3.0.610 12,751 1/24/2025
3.0.609 4,121 1/24/2025
3.0.608 4,010 1/24/2025
3.0.607 3,332 1/23/2025
3.0.606 3,106 1/23/2025
3.0.605 9,655 1/21/2025
3.0.604 2,044 1/21/2025
3.0.603 4,951 1/21/2025
3.0.602 3,278 1/21/2025
3.0.601 4,653 1/21/2025
3.0.600 4,637 1/20/2025
3.0.599 366 1/20/2025
3.0.598 642 1/20/2025
3.0.597 4,709 1/20/2025
3.0.596 5,845 1/20/2025
3.0.595 700 1/20/2025
3.0.594 134 1/20/2025
3.0.593 663 1/20/2025
3.0.592 104 1/20/2025
3.0.591 14,301 1/19/2025
3.0.590 2,337 1/19/2025
3.0.589 2,345 1/18/2025
3.0.588 3,784 1/18/2025
3.0.587 1,480 1/18/2025
3.0.586 6,067 1/17/2025
3.0.585 1,154 1/17/2025
3.0.584 3,032 1/17/2025
3.0.583 2,779 1/16/2025
3.0.582 16,107 1/16/2025
3.0.581 1,464 1/16/2025
3.0.580 2,962 1/16/2025
3.0.579 3,672 1/15/2025
3.0.578 2,234 1/15/2025
3.0.577 3,903 1/15/2025
3.0.576 6,631 1/15/2025
3.0.575 1,093 1/15/2025
3.0.574 3,173 1/15/2025
3.0.573 286 1/15/2025
3.0.572 2,825 1/14/2025
3.0.571 1,329 1/14/2025
3.0.570 3,183 1/14/2025
3.0.569 12,887 1/13/2025
3.0.568 4,589 1/12/2025
3.0.567 6,896 1/11/2025
3.0.566 1,956 1/11/2025
3.0.565 922 1/11/2025
3.0.564 817 1/10/2025
3.0.563 4,168 1/10/2025
3.0.562 412 1/10/2025
3.0.561 830 1/10/2025
3.0.560 111 1/10/2025
3.0.559 111 1/10/2025
3.0.558 8,576 1/8/2025
3.0.557 264 1/8/2025
3.0.556 3,761 1/3/2025
3.0.555 2,952 1/3/2025
3.0.554 3,954 1/2/2025
3.0.553 687 1/2/2025
3.0.552 146 1/2/2025
3.0.551 2,248 1/2/2025
3.0.550 5,016 1/1/2025
3.0.549 723 1/1/2025
3.0.548 1,144 1/1/2025
3.0.547 1,321 1/1/2025
3.0.546 126 1/1/2025
3.0.545 618 12/31/2024
3.0.544 123 12/31/2024
3.0.543 241 12/31/2024
3.0.542 7,038 12/31/2024
3.0.541 7,337 12/31/2024
3.0.540 2,976 12/31/2024
3.0.539 3,782 12/31/2024
3.0.538 2,732 12/31/2024
3.0.537 1,140 12/31/2024
3.0.536 125 12/31/2024
3.0.535 4,664 12/31/2024
3.0.534 14,248 12/27/2024
3.0.533 2,658 12/27/2024
3.0.532 9,754 12/24/2024
3.0.531 648 12/24/2024
3.0.530 1,456 12/24/2024
3.0.529 275 12/24/2024
3.0.528 324 12/24/2024
3.0.527 1,722 12/23/2024
3.0.526 3,478 12/23/2024
3.0.525 1,683 12/23/2024
3.0.524 1,559 12/23/2024
3.0.523 2,168 12/23/2024
3.0.522 1,154 12/23/2024
3.0.521 2,779 12/22/2024
3.0.520 131 12/22/2024
3.0.519 11,889 12/22/2024
3.0.518 137 12/22/2024
3.0.517 8,744 12/22/2024
3.0.516 117 12/22/2024
3.0.515 4,202 12/22/2024
3.0.514 134 12/22/2024
3.0.513 831 12/21/2024
3.0.512 291 12/21/2024
3.0.511 114 12/21/2024
3.0.510 7,436 12/21/2024
3.0.509 840 12/21/2024
3.0.508 108 12/21/2024
3.0.507 1,306 12/21/2024
3.0.506 123 12/21/2024
3.0.505 4,513 12/21/2024
3.0.504 1,454 12/21/2024
3.0.503 3,494 12/21/2024
3.0.502 121 12/21/2024
3.0.501 2,167 12/20/2024
3.0.500 2,253 12/20/2024
3.0.499 4,210 12/20/2024
3.0.498 1,316 12/20/2024
3.0.497 619 12/20/2024
3.0.496 6,534 12/19/2024
3.0.495 576 12/19/2024
3.0.494 995 12/18/2024
3.0.493 541 12/18/2024
3.0.492 10,720 12/17/2024
3.0.491 394 12/17/2024
3.0.490 818 12/17/2024
3.0.489 1,040 12/17/2024
3.0.488 1,107 12/16/2024
3.0.487 347 12/16/2024
3.0.486 109 12/16/2024
3.0.485 9,390 12/9/2024
3.0.484 2,184 12/9/2024
3.0.483 4,818 12/9/2024
3.0.482 935 12/9/2024
3.0.480 9,653 12/6/2024
3.0.479 5,190 12/6/2024
3.0.478 1,684 12/6/2024
3.0.477 961 12/6/2024
3.0.476 638 12/6/2024
3.0.475 2,059 12/6/2024
3.0.474 6,329 12/6/2024
3.0.473 8,408 12/5/2024
3.0.472 987 12/5/2024
3.0.471 4,938 12/5/2024
3.0.470 2,214 12/5/2024
3.0.469 639 12/5/2024
3.0.468 4,449 12/4/2024
3.0.467 2,395 12/4/2024
3.0.466 2,605 12/4/2024
3.0.465 6,860 12/3/2024
3.0.464 310 12/3/2024
3.0.463 1,584 12/3/2024
3.0.462 5,909 12/3/2024
3.0.461 1,132 12/3/2024
3.0.460 3,423 12/3/2024
3.0.459 114 12/3/2024
3.0.458 751 12/3/2024
3.0.457 7,846 12/2/2024
3.0.456 3,499 12/2/2024
3.0.455 1,040 12/2/2024
3.0.454 911 12/1/2024
3.0.453 4,641 12/1/2024
3.0.452 5,033 12/1/2024
3.0.451 5,159 11/29/2024
3.0.450 8,703 11/20/2024
3.0.449 5,532 11/20/2024
3.0.448 417 11/20/2024
3.0.447 1,921 11/20/2024
3.0.445 2,423 11/19/2024
3.0.444 2,124 11/19/2024
3.0.443 5,730 11/19/2024
3.0.442 4,087 11/19/2024
3.0.441 109 11/19/2024
3.0.439 11,129 11/14/2024
3.0.438 4,343 11/14/2024
3.0.437 1,876 11/14/2024
3.0.436 3,407 11/14/2024
3.0.435 352 11/14/2024
3.0.434 133 11/14/2024
3.0.433 1,193 11/14/2024
3.0.432 118 11/14/2024
2.1.431 16,582 11/13/2024
2.1.430 3,215 11/13/2024
2.1.429 2,493 11/12/2024
2.1.428 11,650 11/9/2024
2.1.427 2,402 11/9/2024
2.1.426 2,608 11/8/2024
2.1.425 1,193 11/8/2024
2.1.424 1,351 11/8/2024
2.1.423 1,580 11/8/2024
2.1.422 1,792 11/8/2024
2.1.421 4,748 11/8/2024
2.1.420 18,144 11/1/2024
2.1.419 8,335 10/29/2024
2.1.418 3,263 10/29/2024
2.1.417 4,437 10/29/2024
2.1.416 8,242 10/28/2024
2.1.415 8,362 10/26/2024
2.1.414 10,509 10/22/2024
2.1.413 2,993 10/22/2024
2.1.412 1,707 10/22/2024
2.1.411 9,092 10/17/2024
2.1.410 8,105 10/15/2024
2.1.409 1,528 10/14/2024
2.1.408 8,417 10/11/2024
2.1.407 2,338 10/11/2024
2.1.406 1,524 10/11/2024
2.1.404 12,459 10/8/2024
2.1.403 5,122 10/8/2024
2.1.402 15,398 10/3/2024
2.1.401 1,141 10/3/2024
2.1.400 2,646 10/3/2024
2.1.399 9,940 10/2/2024
2.1.398 3,290 10/2/2024
2.1.397 10,287 10/1/2024
2.1.396 950 10/1/2024
2.1.395 5,132 9/30/2024
2.1.394 8,039 9/29/2024
2.1.393 2,596 9/29/2024
2.1.392 2,488 9/29/2024
2.1.391 7,168 9/27/2024
2.1.390 4,776 9/27/2024
2.1.389 184 9/27/2024
2.1.388 767 9/27/2024
2.1.387 1,802 9/27/2024
2.1.386 129 9/27/2024
2.1.385 10,575 9/26/2024
2.1.384 9,268 9/26/2024
2.1.383 4,058 9/26/2024
2.1.382 11,722 9/23/2024
2.1.381 2,916 9/23/2024
2.1.380 5,033 9/23/2024
2.1.379 5,015 9/23/2024
2.1.378 3,802 9/23/2024
2.1.377 787 9/23/2024
2.1.376 1,921 9/23/2024
2.1.375 118 9/23/2024
2.1.374 13,939 9/17/2024
2.1.373 696 9/17/2024
2.1.372 2,771 9/17/2024
2.1.371 2,781 9/17/2024
2.1.370 3,175 9/17/2024
2.1.369 4,280 9/17/2024
2.1.368 4,809 9/17/2024
2.1.367 15,801 9/16/2024
2.1.366 8,157 9/12/2024
2.1.365 3,082 9/11/2024
2.1.363 8,960 9/11/2024
2.1.362 17,286 9/10/2024
2.1.361 752 9/10/2024
2.1.360 1,066 9/10/2024
2.1.359 948 9/10/2024
2.1.358 3,706 9/9/2024
2.1.357 1,548 9/9/2024
2.1.356 6,330 9/9/2024
2.1.355 1,776 9/9/2024
2.1.354 7,070 9/9/2024
2.1.353 13,574 9/7/2024
2.1.352 9,990 9/6/2024
2.1.351 5,200 9/5/2024
2.1.350 5,220 9/5/2024
2.1.349 574 9/5/2024
2.1.348 167 9/5/2024
2.1.347 9,103 9/5/2024
2.1.346 1,065 9/4/2024
2.1.345 13,710 9/3/2024
2.1.344 6,207 9/3/2024
2.1.343 4,576 9/3/2024
2.1.342 8,775 8/29/2024
2.1.341 7,318 8/26/2024
2.1.340 7,765 8/21/2024
2.1.339 2,858 8/21/2024
2.1.338 1,680 8/20/2024
2.1.337 5,861 8/20/2024
2.1.336 147 8/20/2024
2.1.335 142 8/20/2024
2.1.334 9,865 8/19/2024
2.1.333 9,602 8/15/2024
2.1.332 9,569 8/13/2024
2.1.331 8,039 8/6/2024
2.1.330 4,426 8/6/2024
2.1.329 6,641 8/1/2024
2.1.328 1,388 8/1/2024
2.1.327 662 8/1/2024
2.1.326 9,545 7/25/2024
2.1.325 2,007 7/25/2024
2.1.324 1,742 7/25/2024
2.1.323 297 7/24/2024
2.1.322 753 7/24/2024
2.1.321 373 7/24/2024
2.1.320 9,805 7/20/2024
2.1.319 12,320 7/14/2024
2.1.318 4,533 7/14/2024
2.1.317 6,882 7/10/2024
2.1.316 2,986 7/10/2024
2.1.315 2,794 7/10/2024
2.1.314 1,631 7/10/2024
2.1.313 1,064 7/10/2024
2.1.312 358 7/10/2024
2.1.311 2,651 7/10/2024
2.1.310 1,370 7/9/2024
2.1.308 2,793 7/9/2024
2.1.307 126 7/9/2024
2.1.306 2,986 7/9/2024
2.1.305 6,858 7/9/2024
2.1.304 5,748 7/9/2024
2.1.303 2,784 7/9/2024
2.1.302 129 7/9/2024
2.1.301 9,666 7/9/2024
2.1.300 6,186 7/8/2024
2.1.299 393 7/8/2024
2.1.298 123 7/8/2024
2.1.297 135 7/8/2024
2.1.296 8,480 7/8/2024
2.1.295 1,670 7/7/2024
2.1.294 5,135 7/7/2024
2.1.293 149 7/7/2024
2.1.292 1,487 7/7/2024
2.1.291 3,138 7/7/2024
2.1.290 10,381 7/3/2024
2.1.289 3,326 7/3/2024
2.1.288 2,983 7/3/2024
2.1.287 893 7/3/2024
2.1.286 5,741 7/2/2024
2.1.283 3,571 6/30/2024
2.1.282 2,420 6/28/2024
2.1.281 271 6/28/2024
2.1.279 7,725 6/22/2024
2.1.278 9,024 6/15/2024
2.1.277 1,189 6/15/2024
2.1.276 6,803 6/14/2024
2.1.275 10,854 6/1/2024
2.1.274 1,770 6/1/2024
2.1.273 1,124 6/1/2024
2.1.272 9,475 5/31/2024
2.1.271 5,934 5/29/2024
2.1.270 6,767 5/28/2024
2.1.269 3,824 5/27/2024
2.1.268 7,062 5/26/2024
2.1.267 6,953 5/26/2024
2.1.266 359 5/26/2024
2.1.265 2,563 5/25/2024
2.1.264 1,866 5/25/2024
2.1.263 1,707 5/25/2024
2.1.262 136 5/25/2024
2.1.261 1,372 5/25/2024
2.1.260 136 5/25/2024
2.1.259 4,953 5/25/2024
2.1.258 132 5/25/2024
2.1.257 8,787 5/23/2024
2.1.256 3,498 5/23/2024
2.1.255 2,531 5/22/2024
2.1.254 1,905 5/22/2024
2.1.253 806 5/22/2024
2.1.252 137 5/22/2024
2.1.251 131 5/22/2024
2.1.250 3,656 5/22/2024
2.1.249 9,348 5/18/2024
2.1.248 1,991 5/17/2024
2.1.247 3,385 5/17/2024
2.1.246 5,250 5/16/2024
2.1.245 1,377 5/15/2024
2.1.244 3,833 5/15/2024
2.1.243 7,842 5/12/2024
2.1.242 4,293 5/3/2024
2.1.241 4,811 4/29/2024
2.1.240 2,748 4/29/2024
2.1.239 5,289 4/28/2024
2.1.238 879 4/28/2024
2.1.237 1,002 4/28/2024
2.1.236 3,984 4/28/2024
2.1.235 583 4/28/2024
2.1.234 5,343 4/28/2024
2.1.233 1,144 4/28/2024
2.1.232 4,955 4/27/2024
2.1.231 137 4/27/2024
2.1.230 9,927 4/19/2024
2.1.229 6,160 4/18/2024
2.1.228 6,464 4/12/2024
2.1.227 1,066 4/12/2024
2.1.226 1,678 4/12/2024
2.1.225 1,411 4/12/2024
2.1.224 980 4/12/2024
2.1.223 1,409 4/12/2024
2.1.222 555 4/12/2024
2.1.221 145 4/12/2024
2.1.220 3,624 4/10/2024
2.1.219 15,933 4/10/2024
2.1.218 700 4/10/2024
2.1.217 7,679 4/2/2024
2.1.216 1,363 4/1/2024
2.1.215 7,404 3/29/2024
2.1.214 5,407 3/25/2024
2.1.213 639 3/25/2024
2.1.212 7,480 3/20/2024
2.1.211 5,189 3/19/2024
2.1.210 3,108 3/19/2024
2.1.209 3,418 3/18/2024
2.1.208 7,431 3/15/2024
2.1.207 5,060 3/13/2024
2.1.206 1,956 3/13/2024
2.1.205 2,552 3/13/2024
2.1.204 191 3/13/2024
2.1.203 185 3/13/2024
2.1.202 1,693 3/13/2024
2.1.201 186 3/13/2024
2.1.200 3,657 3/12/2024
2.1.199 4,673 3/12/2024
2.1.198 6,107 3/11/2024
2.1.197 4,253 3/11/2024
2.1.196 4,565 3/10/2024
2.1.195 5,898 3/8/2024
2.1.194 555 3/8/2024
2.1.193 4,246 3/8/2024
2.1.192 5,439 3/6/2024
2.1.191 5,443 3/4/2024
2.1.190 3,094 3/4/2024
2.1.189 6,162 3/2/2024
2.1.188 1,612 3/2/2024
2.1.187 1,990 3/2/2024
2.1.186 1,147 3/2/2024
2.1.185 791 3/2/2024
2.1.184 4,210 2/29/2024
2.1.183 1,387 2/29/2024
2.1.182 2,095 2/29/2024
2.1.181 4,005 2/26/2024
2.1.180 15,456 2/25/2024
2.1.179 1,879 2/25/2024
2.1.178 6,118 2/23/2024
2.1.177 5,901 2/22/2024
2.1.176 1,673 2/22/2024
2.1.175 2,007 2/21/2024
2.1.174 3,226 2/21/2024
2.1.173 2,915 2/21/2024
2.1.172 3,653 2/21/2024
2.1.171 1,585 2/21/2024
2.1.170 383 2/21/2024
2.1.169 3,367 2/21/2024
2.1.168 1,060 2/20/2024
2.1.167 238 2/20/2024
2.1.166 242 2/20/2024
2.1.165 4,443 2/20/2024
2.1.164 3,386 2/20/2024
2.1.163 3,241 2/20/2024
2.1.162 6,784 2/19/2024
2.1.161 5,420 2/17/2024
2.1.160 2,276 2/17/2024
2.1.159 1,638 2/16/2024
2.1.158 1,203 2/16/2024
2.1.157 1,993 2/16/2024
2.1.156 3,073 2/16/2024
2.1.155 3,551 2/16/2024
2.1.154 286 2/16/2024
2.1.153 1,758 2/16/2024
2.1.152 277 2/16/2024
2.1.151 271 2/16/2024
2.1.150 5,996 2/14/2024
2.1.149 2,556 2/13/2024
2.1.148 3,084 2/13/2024
2.1.147 3,710 2/13/2024
2.1.146 3,557 2/13/2024
2.1.145 4,915 2/12/2024
2.1.144 798 2/11/2024
2.1.143 5,339 2/11/2024
2.1.142 3,030 2/11/2024
2.1.141 6,264 2/10/2024
2.1.140 817 2/9/2024
2.1.139 5,680 2/9/2024
2.1.138 3,671 2/9/2024
2.1.137 990 2/8/2024
2.1.136 4,602 2/8/2024
2.1.135 1,911 2/8/2024
2.1.134 10,559 2/8/2024
2.1.133 342 2/8/2024
2.1.132 287 2/8/2024
2.1.131 5,244 2/7/2024
2.1.130 2,099 2/7/2024
2.1.129 3,572 2/7/2024
2.1.128 1,173 2/7/2024
2.1.127 1,042 2/6/2024
2.1.126 2,864 2/6/2024
2.1.125 313 2/6/2024
2.1.124 7,525 2/5/2024
2.1.123 4,905 2/4/2024
2.1.122 5,189 2/2/2024
2.1.121 6,183 1/31/2024
2.1.120 6,092 1/29/2024
2.1.119 3,704 1/29/2024
2.1.118 2,481 1/29/2024
2.1.117 3,951 1/28/2024
2.1.116 5,239 1/28/2024
2.1.115 2,995 1/28/2024
2.1.114 1,758 1/28/2024
2.1.113 2,392 1/27/2024
2.1.112 2,101 1/27/2024
2.1.111 5,443 1/27/2024
2.1.110 2,751 1/27/2024
2.1.109 6,509 1/27/2024
2.1.108 1,708 1/26/2024
2.1.107 2,151 1/26/2024
2.1.106 2,794 1/26/2024
2.1.105 5,032 1/26/2024
2.1.104 2,420 1/26/2024
2.1.103 1,344 1/26/2024
2.1.102 4,486 1/25/2024
2.1.101 3,582 1/25/2024
2.1.100 1,743 1/25/2024
2.1.99 5,747 1/25/2024
2.1.98 5,525 1/19/2024
2.1.97 5,748 1/15/2024
2.1.96 2,646 1/15/2024
2.1.95 2,076 1/15/2024
2.1.94 5,220 1/15/2024
2.1.93 5,365 1/15/2024
2.1.92 5,203 1/14/2024
2.1.91 6,354 1/13/2024
2.1.90 5,350 1/12/2024
2.1.89 5,246 1/11/2024
2.1.88 7,244 1/7/2024
2.1.87 5,752 1/5/2024
2.1.86 2,589 1/5/2024
2.1.85 3,298 1/5/2024
2.1.84 6,212 1/3/2024
2.1.83 3,779 1/1/2024
2.1.82 5,139 12/28/2023
2.1.81 2,101 12/28/2023
2.1.80 2,094 12/28/2023
2.1.79 4,611 12/27/2023
2.1.78 2,193 12/27/2023
2.1.77 335 12/27/2023
2.1.76 8,832 12/25/2023
2.1.75 4,858 12/25/2023
2.1.74 2,497 12/25/2023
2.1.73 746 12/25/2023
2.1.72 351 12/25/2023
2.1.71 6,996 12/24/2023
2.1.70 5,468 12/23/2023
2.1.69 2,949 12/23/2023
2.1.68 1,755 12/23/2023
2.1.67 3,929 12/23/2023
2.1.66 328 12/23/2023
2.1.65 8,254 12/19/2023
2.1.64 2,295 12/19/2023
2.1.63 5,599 12/12/2023
2.1.62 497 12/12/2023
2.1.61 2,782 12/11/2023
2.1.60 2,254 12/11/2023
2.1.59 1,272 12/11/2023
2.1.58 1,703 12/11/2023
2.1.57 878 12/10/2023
2.1.56 845 12/10/2023
2.1.55 1,885 12/10/2023
2.1.54 1,175 12/10/2023
2.1.53 8,299 12/10/2023
2.1.52 1,893 12/9/2023
2.1.51 1,085 12/9/2023
2.1.50 1,656 12/9/2023
2.1.49 2,523 12/9/2023
2.1.48 294 12/9/2023
2.1.47 1,299 12/9/2023
2.1.46 368 12/9/2023
2.1.45 2,922 12/9/2023
2.1.44 331 12/9/2023
2.1.43 4,601 12/9/2023
2.1.42 6,844 12/6/2023
2.1.41 1,271 12/6/2023
2.1.40 1,816 12/6/2023
2.1.39 4,034 12/5/2023
2.1.38 2,047 12/5/2023
2.1.37 1,154 12/5/2023
2.1.36 2,911 12/5/2023
2.1.35 312 12/5/2023
2.1.34 2,476 12/5/2023
2.1.33 322 12/5/2023
2.1.32 1,625 12/4/2023
2.1.31 1,559 12/4/2023
2.1.30 348 12/4/2023
2.1.29 8,875 12/4/2023
2.1.28 2,955 11/27/2023
2.1.27 1,394 11/26/2023
2.1.26 3,463 11/23/2023
2.1.25 2,982 11/23/2023
2.1.24 3,639 11/23/2023
2.1.23 320 11/23/2023
2.1.22 7,063 11/20/2023
2.1.21 3,432 11/20/2023
2.1.20 5,553 11/19/2023
2.1.19 3,029 11/19/2023
2.1.18 4,202 11/19/2023
2.1.17 1,142 11/18/2023
2.1.16 5,454 11/18/2023
2.1.15 1,338 11/18/2023
2.1.14 3,474 11/18/2023
2.1.13 773 11/18/2023
2.1.12 3,601 11/17/2023
2.1.11 2,987 11/17/2023
2.1.10 2,221 11/17/2023
2.1.9 429 11/17/2023
2.1.8 3,506 11/17/2023
2.1.7 2,041 11/17/2023
2.1.6 2,559 11/17/2023
2.1.5 1,759 11/17/2023
2.1.4 608 11/17/2023
2.1.3 3,318 11/16/2023
2.0.78 1,148 11/15/2023
2.0.77 340 11/15/2023
2.0.76 2,972 11/15/2023
2.0.2 338 11/16/2023
2.0.1 304 11/16/2023
1.0.75 4,259 11/13/2023
1.0.74 6,131 11/10/2023
1.0.73 4,831 11/9/2023
1.0.72 3,299 11/8/2023
1.0.71 5,040 11/7/2023
1.0.70 2,519 11/6/2023
1.0.69 3,138 11/3/2023
1.0.68 5,652 11/2/2023
1.0.67 3,451 11/1/2023
1.0.66 11,005 10/26/2023
1.0.65 6,761 10/19/2023
1.0.64 2,937 10/18/2023
1.0.63 2,843 10/17/2023
1.0.62 3,443 10/16/2023
1.0.61 6,253 10/13/2023
1.0.60 3,685 10/12/2023
1.0.59 11,506 9/18/2023
1.0.58 329 9/18/2023
1.0.57 7,750 9/14/2023
1.0.56 7,215 8/31/2023
1.0.55 3,678 8/30/2023
1.0.54 3,157 8/29/2023
1.0.53 3,073 8/28/2023
1.0.52 5,883 8/25/2023
1.0.51 3,305 8/24/2023
1.0.50 7,989 8/21/2023
1.0.49 3,284 8/18/2023
1.0.48 3,040 8/17/2023
1.0.47 5,532 8/16/2023
1.0.46 9,118 8/10/2023
1.0.45 3,187 8/9/2023
1.0.44 5,321 8/8/2023
1.0.43 4,502 8/7/2023
1.0.42 4,696 8/4/2023
1.0.41 8,660 7/13/2023
1.0.40 5,756 7/11/2023
1.0.39 3,536 7/10/2023
1.0.38 4,396 7/7/2023
1.0.37 408 7/7/2023
1.0.36 12,077 6/30/2023
1.0.35 6,242 6/28/2023
1.0.34 6,379 6/27/2023
1.0.33 7,383 6/26/2023
1.0.32 4,404 6/23/2023
1.0.31 8,986 6/21/2023
1.0.30 9,314 6/15/2023
1.0.29 3,724 6/14/2023
1.0.28 9,999 6/9/2023
1.0.27 4,328 6/8/2023
1.0.26 5,314 6/7/2023
1.0.25 5,939 6/6/2023
1.0.24 424 6/6/2023
1.0.23 5,016 6/5/2023
1.0.22 17,191 5/30/2023
1.0.21 20,028 5/29/2023
1.0.20 6,918 5/26/2023
1.0.19 8,043 5/25/2023
1.0.18 8,411 5/24/2023
1.0.17 5,706 5/24/2023
1.0.16 1,727 5/23/2023
1.0.15 1,723 5/23/2023
1.0.12 3,144 5/22/2023
1.0.11 19,358 5/16/2023
1.0.10 15,945 4/20/2023
1.0.9 15,246 4/3/2023
1.0.8 1,307 4/3/2023
1.0.7 2,557 3/23/2023
1.0.5 831 3/13/2023
1.0.4 575 3/11/2023
1.0.3 484 3/11/2023
1.0.2 480 3/11/2023
1.0.1 550 3/11/2023