Soenneker.Utils.AsyncSingleton 1.0.22

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 1.0.22                
NuGet\Install-Package Soenneker.Utils.AsyncSingleton -Version 1.0.22                
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="1.0.22" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Utils.AsyncSingleton --version 1.0.22                
#r "nuget: Soenneker.Utils.AsyncSingleton, 1.0.22"                
#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.
// Install Soenneker.Utils.AsyncSingleton as a Cake Addin
#addin nuget:?package=Soenneker.Utils.AsyncSingleton&version=1.0.22

// Install Soenneker.Utils.AsyncSingleton as a Cake Tool
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=1.0.22                

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. 
.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 (25)

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

Package Downloads
Soenneker.Utils.MemoryStream

An easy modern MemoryStream utility

Soenneker.Blob.Container

A utility library for Azure Blob storage container operations

Soenneker.Redis.Client

A utility library for Redis client accessibility

Soenneker.Validators.Email.Disposable.Online

A validation module checking for disposable email addresses via online sources

Soenneker.GitHub.Client

An async thread-safe singleton for Octokit's GitHubClient

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.673 1,303 3 days ago
3.0.672 4,081 5 days ago
3.0.671 519 6 days ago
3.0.670 2,818 6 days ago
3.0.669 174 6 days ago
3.0.668 4,208 6 days ago
3.0.667 3,807 6 days ago
3.0.666 15,140 16 days ago
3.0.665 1,699 16 days ago
3.0.664 1,816 16 days ago
3.0.663 2,971 16 days ago
3.0.662 2,635 16 days ago
3.0.661 1,937 16 days ago
3.0.660 80 16 days ago
3.0.659 2,885 17 days ago
3.0.658 11,594 20 days ago
3.0.657 2,550 20 days ago
3.0.656 2,288 21 days ago
3.0.655 2,882 21 days ago
3.0.654 6,787 23 days ago
3.0.653 10,903 24 days ago
3.0.652 290 24 days ago
3.0.651 2,996 24 days ago
3.0.650 6,644 25 days ago
3.0.649 8,844 a month ago
3.0.648 463 a month ago
3.0.647 1,704 a month ago
3.0.646 1,943 a month ago
3.0.645 5,009 a month ago
3.0.644 8,632 a month ago
3.0.643 9,755 a month ago
3.0.642 968 a month ago
3.0.641 1,690 a month ago
3.0.640 1,887 a month ago
3.0.639 1,886 a month ago
3.0.638 2,352 a month ago
3.0.637 3,537 a month ago
3.0.636 4,536 a month ago
3.0.635 5,783 a month ago
3.0.634 92 a month ago
3.0.633 7,724 a month ago
3.0.632 5,634 a month ago
3.0.631 1,078 a month ago
3.0.630 2,247 a month ago
3.0.629 2,827 a month ago
3.0.628 3,036 a month ago
3.0.627 259 a month ago
3.0.626 2,738 a month ago
3.0.625 83 a month ago
3.0.624 628 a month ago
3.0.623 15,161 a month ago
3.0.622 1,209 a month ago
3.0.621 2,192 a month ago
3.0.620 1,710 a month ago
3.0.619 17,723 2 months ago
3.0.618 4,423 2 months ago
3.0.617 244 2 months ago
3.0.616 16,465 2 months ago
3.0.615 1,556 2 months ago
3.0.614 3,786 2 months ago
3.0.613 5,033 2 months ago
3.0.612 3,171 2 months ago
3.0.611 1,699 2 months ago
3.0.610 12,701 2 months ago
3.0.609 4,085 2 months ago
3.0.608 3,957 2 months ago
3.0.607 3,296 2 months ago
3.0.606 3,064 2 months ago
3.0.605 9,597 2 months ago
3.0.604 2,005 2 months ago
3.0.603 4,920 2 months ago
3.0.602 3,237 2 months ago
3.0.601 4,620 2 months ago
3.0.600 4,595 2 months ago
3.0.599 335 2 months ago
3.0.598 616 2 months ago
3.0.597 4,670 2 months ago
3.0.596 5,805 2 months ago
3.0.595 673 2 months ago
3.0.594 80 2 months ago
3.0.593 633 2 months ago
3.0.592 81 2 months ago
3.0.591 14,244 2 months ago
3.0.590 2,286 2 months ago
3.0.589 2,310 2 months ago
3.0.588 3,744 2 months ago
3.0.587 1,442 2 months ago
3.0.586 6,006 2 months ago
3.0.585 1,121 2 months ago
3.0.584 2,987 2 months ago
3.0.583 2,747 2 months ago
3.0.582 16,026 2 months ago
3.0.581 1,424 2 months ago
3.0.580 2,934 2 months ago
3.0.579 3,631 2 months ago
3.0.578 2,197 2 months ago
3.0.577 3,864 2 months ago
3.0.576 6,533 2 months ago
3.0.575 1,066 2 months ago
3.0.574 3,137 2 months ago
3.0.573 253 2 months ago
3.0.572 2,793 2 months ago
3.0.571 1,299 2 months ago
3.0.570 3,148 2 months ago
3.0.569 12,774 2 months ago
3.0.568 4,539 2 months ago
3.0.567 6,845 2 months ago
3.0.566 1,926 2 months ago
3.0.565 871 2 months ago
3.0.564 782 2 months ago
3.0.563 4,129 2 months ago
3.0.562 381 2 months ago
3.0.561 798 2 months ago
3.0.560 79 2 months ago
3.0.559 78 2 months ago
3.0.558 8,525 2 months ago
3.0.557 238 2 months ago
3.0.556 3,716 2 months ago
3.0.555 2,922 2 months ago
3.0.554 3,905 2 months ago
3.0.553 644 2 months ago
3.0.552 115 2 months ago
3.0.551 2,198 3 months ago
3.0.550 4,982 3 months ago
3.0.549 689 3 months ago
3.0.548 1,099 3 months ago
3.0.547 1,287 3 months ago
3.0.546 92 3 months ago
3.0.545 579 3 months ago
3.0.544 94 3 months ago
3.0.543 204 3 months ago
3.0.542 6,986 3 months ago
3.0.541 7,291 3 months ago
3.0.540 2,946 3 months ago
3.0.539 3,738 3 months ago
3.0.538 2,682 3 months ago
3.0.537 1,112 3 months ago
3.0.536 89 3 months ago
3.0.535 4,627 3 months ago
3.0.534 14,193 3 months ago
3.0.533 2,621 3 months ago
3.0.532 9,709 3 months ago
3.0.531 615 3 months ago
3.0.530 1,423 3 months ago
3.0.529 250 3 months ago
3.0.528 300 3 months ago
3.0.527 1,690 3 months ago
3.0.526 3,449 3 months ago
3.0.525 1,652 3 months ago
3.0.524 1,526 3 months ago
3.0.523 2,139 3 months ago
3.0.522 1,128 3 months ago
3.0.521 2,747 3 months ago
3.0.520 91 3 months ago
3.0.519 11,814 3 months ago
3.0.518 108 3 months ago
3.0.517 8,706 3 months ago
3.0.516 86 3 months ago
3.0.515 4,170 3 months ago
3.0.514 87 3 months ago
3.0.513 803 3 months ago
3.0.512 252 3 months ago
3.0.511 84 3 months ago
3.0.510 7,371 3 months ago
3.0.509 804 3 months ago
3.0.508 83 3 months ago
3.0.507 1,280 3 months ago
3.0.506 90 3 months ago
3.0.505 4,470 3 months ago
3.0.504 1,417 3 months ago
3.0.503 3,451 3 months ago
3.0.502 86 3 months ago
3.0.501 2,139 3 months ago
3.0.500 2,219 3 months ago
3.0.499 4,165 3 months ago
3.0.498 1,287 3 months ago
3.0.497 587 3 months ago
3.0.496 6,492 3 months ago
3.0.495 548 3 months ago
3.0.494 963 3 months ago
3.0.493 516 3 months ago
3.0.492 10,669 3 months ago
3.0.491 361 3 months ago
3.0.490 787 3 months ago
3.0.489 1,013 3 months ago
3.0.488 1,068 3 months ago
3.0.487 319 3 months ago
3.0.486 82 3 months ago
3.0.485 9,337 3 months ago
3.0.484 2,148 3 months ago
3.0.483 4,761 3 months ago
3.0.482 904 3 months ago
3.0.480 9,599 3 months ago
3.0.479 5,155 3 months ago
3.0.478 1,650 3 months ago
3.0.477 928 3 months ago
3.0.476 611 3 months ago
3.0.475 2,027 3 months ago
3.0.474 6,289 3 months ago
3.0.473 8,358 3 months ago
3.0.472 938 3 months ago
3.0.471 4,878 3 months ago
3.0.470 2,182 3 months ago
3.0.469 609 3 months ago
3.0.468 4,409 3 months ago
3.0.467 2,361 3 months ago
3.0.466 2,558 3 months ago
3.0.465 6,814 3 months ago
3.0.464 281 3 months ago
3.0.463 1,557 3 months ago
3.0.462 5,871 3 months ago
3.0.461 1,103 3 months ago
3.0.460 3,382 3 months ago
3.0.459 87 3 months ago
3.0.458 719 3 months ago
3.0.457 7,800 4 months ago
3.0.456 3,471 4 months ago
3.0.455 1,005 4 months ago
3.0.454 874 4 months ago
3.0.453 4,603 4 months ago
3.0.452 4,995 4 months ago
3.0.451 5,119 4 months ago
3.0.450 8,132 4 months ago
3.0.449 5,476 4 months ago
3.0.448 391 4 months ago
3.0.447 1,889 4 months ago
3.0.445 2,368 4 months ago
3.0.444 2,092 4 months ago
3.0.443 5,688 4 months ago
3.0.442 4,038 4 months ago
3.0.441 82 4 months ago
3.0.439 11,072 4 months ago
3.0.438 4,298 4 months ago
3.0.437 1,843 4 months ago
3.0.436 3,359 4 months ago
3.0.435 322 4 months ago
3.0.434 108 4 months ago
3.0.433 1,157 4 months ago
3.0.432 90 4 months ago
2.1.431 15,811 4 months ago
2.1.430 3,170 4 months ago
2.1.429 2,458 4 months ago
2.1.428 11,598 4 months ago
2.1.427 2,370 4 months ago
2.1.426 2,577 4 months ago
2.1.425 1,169 4 months ago
2.1.424 1,317 4 months ago
2.1.423 1,537 4 months ago
2.1.422 1,759 4 months ago
2.1.421 4,708 4 months ago
2.1.420 18,076 5 months ago
2.1.419 8,281 5 months ago
2.1.418 3,232 5 months ago
2.1.417 4,409 5 months ago
2.1.416 8,194 5 months ago
2.1.415 8,307 5 months ago
2.1.414 9,526 5 months ago
2.1.413 2,955 5 months ago
2.1.412 1,672 5 months ago
2.1.411 9,042 5 months ago
2.1.410 8,062 5 months ago
2.1.409 1,495 5 months ago
2.1.408 8,357 5 months ago
2.1.407 2,307 5 months ago
2.1.406 1,494 5 months ago
2.1.404 12,335 5 months ago
2.1.403 5,081 5 months ago
2.1.402 15,120 5 months ago
2.1.401 1,110 5 months ago
2.1.400 2,554 5 months ago
2.1.399 9,829 6 months ago
2.1.398 3,258 6 months ago
2.1.397 10,227 6 months ago
2.1.396 916 6 months ago
2.1.395 5,083 6 months ago
2.1.394 7,957 6 months ago
2.1.393 2,553 6 months ago
2.1.392 2,456 6 months ago
2.1.391 6,964 6 months ago
2.1.390 4,737 6 months ago
2.1.389 157 6 months ago
2.1.388 734 6 months ago
2.1.387 1,763 6 months ago
2.1.386 100 6 months ago
2.1.385 10,505 6 months ago
2.1.384 9,213 6 months ago
2.1.383 4,012 6 months ago
2.1.382 11,644 6 months ago
2.1.381 2,879 6 months ago
2.1.380 4,994 6 months ago
2.1.379 4,967 6 months ago
2.1.378 3,757 6 months ago
2.1.377 763 6 months ago
2.1.376 1,883 6 months ago
2.1.375 90 6 months ago
2.1.374 13,664 6 months ago
2.1.373 668 6 months ago
2.1.372 2,734 6 months ago
2.1.371 2,751 6 months ago
2.1.370 3,136 6 months ago
2.1.369 4,246 6 months ago
2.1.368 4,750 6 months ago
2.1.367 15,704 6 months ago
2.1.366 8,088 6 months ago
2.1.365 3,052 6 months ago
2.1.363 8,925 6 months ago
2.1.362 17,221 6 months ago
2.1.361 722 6 months ago
2.1.360 1,039 6 months ago
2.1.359 923 6 months ago
2.1.358 3,676 6 months ago
2.1.357 1,512 6 months ago
2.1.356 6,292 6 months ago
2.1.355 1,748 6 months ago
2.1.354 7,031 6 months ago
2.1.353 13,517 6 months ago
2.1.352 9,926 6 months ago
2.1.351 5,159 6 months ago
2.1.350 5,174 6 months ago
2.1.349 552 6 months ago
2.1.348 140 6 months ago
2.1.347 9,055 6 months ago
2.1.346 1,028 6 months ago
2.1.345 13,639 6 months ago
2.1.344 6,164 6 months ago
2.1.343 4,551 6 months ago
2.1.342 8,727 7 months ago
2.1.341 7,289 7 months ago
2.1.340 7,697 7 months ago
2.1.339 2,817 7 months ago
2.1.338 1,650 7 months ago
2.1.337 5,816 7 months ago
2.1.336 117 7 months ago
2.1.335 117 7 months ago
2.1.334 9,799 7 months ago
2.1.333 9,530 7 months ago
2.1.332 9,518 7 months ago
2.1.331 7,982 7 months ago
2.1.330 4,374 7 months ago
2.1.329 6,592 8 months ago
2.1.328 1,355 8 months ago
2.1.327 626 8 months ago
2.1.326 9,480 8 months ago
2.1.325 1,976 8 months ago
2.1.324 1,708 8 months ago
2.1.323 268 8 months ago
2.1.322 720 8 months ago
2.1.321 342 8 months ago
2.1.320 9,462 8 months ago
2.1.319 12,037 8 months ago
2.1.318 4,477 8 months ago
2.1.317 6,816 8 months ago
2.1.316 2,952 8 months ago
2.1.315 2,763 8 months ago
2.1.314 1,597 8 months ago
2.1.313 1,019 8 months ago
2.1.312 329 8 months ago
2.1.311 2,612 8 months ago
2.1.310 1,344 8 months ago
2.1.308 2,762 8 months ago
2.1.307 97 8 months ago
2.1.306 2,949 8 months ago
2.1.305 6,824 8 months ago
2.1.304 5,711 8 months ago
2.1.303 2,747 8 months ago
2.1.302 95 8 months ago
2.1.301 7,035 8 months ago
2.1.300 6,127 8 months ago
2.1.299 365 8 months ago
2.1.298 98 8 months ago
2.1.297 108 8 months ago
2.1.296 8,419 8 months ago
2.1.295 1,641 8 months ago
2.1.294 5,085 8 months ago
2.1.293 121 8 months ago
2.1.292 1,459 8 months ago
2.1.291 3,109 8 months ago
2.1.290 10,331 8 months ago
2.1.289 3,296 8 months ago
2.1.288 2,953 8 months ago
2.1.287 865 8 months ago
2.1.286 5,700 8 months ago
2.1.283 3,543 9 months ago
2.1.282 2,381 9 months ago
2.1.281 240 9 months ago
2.1.279 7,663 9 months ago
2.1.278 8,844 9 months ago
2.1.277 1,167 9 months ago
2.1.276 6,772 9 months ago
2.1.275 10,811 10 months ago
2.1.274 1,741 10 months ago
2.1.273 1,097 10 months ago
2.1.272 9,432 10 months ago
2.1.271 5,885 10 months ago
2.1.270 6,731 10 months ago
2.1.269 3,784 10 months ago
2.1.268 7,001 10 months ago
2.1.267 6,902 10 months ago
2.1.266 332 10 months ago
2.1.265 2,528 10 months ago
2.1.264 1,836 10 months ago
2.1.263 1,674 10 months ago
2.1.262 112 10 months ago
2.1.261 1,348 10 months ago
2.1.260 109 10 months ago
2.1.259 4,906 10 months ago
2.1.258 106 10 months ago
2.1.257 8,734 10 months ago
2.1.256 3,454 10 months ago
2.1.255 2,485 10 months ago
2.1.254 1,869 10 months ago
2.1.253 764 10 months ago
2.1.252 104 10 months ago
2.1.251 102 10 months ago
2.1.250 3,614 10 months ago
2.1.249 9,285 10 months ago
2.1.248 1,956 10 months ago
2.1.247 3,350 5/17/2024
2.1.246 5,220 5/16/2024
2.1.245 1,353 5/15/2024
2.1.244 3,797 5/15/2024
2.1.243 7,777 5/12/2024
2.1.242 4,247 5/3/2024
2.1.241 4,769 4/29/2024
2.1.240 2,718 4/29/2024
2.1.239 5,231 4/28/2024
2.1.238 848 4/28/2024
2.1.237 970 4/28/2024
2.1.236 3,944 4/28/2024
2.1.235 556 4/28/2024
2.1.234 5,282 4/28/2024
2.1.233 1,113 4/28/2024
2.1.232 4,913 4/27/2024
2.1.231 112 4/27/2024
2.1.230 9,881 4/19/2024
2.1.229 6,122 4/18/2024
2.1.228 6,412 4/12/2024
2.1.227 1,023 4/12/2024
2.1.226 1,641 4/12/2024
2.1.225 1,377 4/12/2024
2.1.224 958 4/12/2024
2.1.223 1,378 4/12/2024
2.1.222 524 4/12/2024
2.1.221 117 4/12/2024
2.1.220 3,595 4/10/2024
2.1.219 15,195 4/10/2024
2.1.218 677 4/10/2024
2.1.217 7,626 4/2/2024
2.1.216 1,331 4/1/2024
2.1.215 7,375 3/29/2024
2.1.214 5,349 3/25/2024
2.1.213 613 3/25/2024
2.1.212 7,434 3/20/2024
2.1.211 5,139 3/19/2024
2.1.210 3,070 3/19/2024
2.1.209 3,389 3/18/2024
2.1.208 7,380 3/15/2024
2.1.207 5,022 3/13/2024
2.1.206 1,922 3/13/2024
2.1.205 2,502 3/13/2024
2.1.204 163 3/13/2024
2.1.203 157 3/13/2024
2.1.202 1,664 3/13/2024
2.1.201 159 3/13/2024
2.1.200 3,621 3/12/2024
2.1.199 4,635 3/12/2024
2.1.198 6,074 3/11/2024
2.1.197 4,216 3/11/2024
2.1.196 4,518 3/10/2024
2.1.195 5,841 3/8/2024
2.1.194 533 3/8/2024
2.1.193 4,198 3/8/2024
2.1.192 5,394 3/6/2024
2.1.191 5,391 3/4/2024
2.1.190 3,058 3/4/2024
2.1.189 6,124 3/2/2024
2.1.188 1,566 3/2/2024
2.1.187 1,958 3/2/2024
2.1.186 1,099 3/2/2024
2.1.185 765 3/2/2024
2.1.184 4,127 2/29/2024
2.1.183 1,354 2/29/2024
2.1.182 2,063 2/29/2024
2.1.181 3,968 2/26/2024
2.1.180 15,319 2/25/2024
2.1.179 1,838 2/25/2024
2.1.178 6,055 2/23/2024
2.1.177 5,862 2/22/2024
2.1.176 1,635 2/22/2024
2.1.175 1,977 2/21/2024
2.1.174 3,197 2/21/2024
2.1.173 2,876 2/21/2024
2.1.172 3,617 2/21/2024
2.1.171 1,559 2/21/2024
2.1.170 358 2/21/2024
2.1.169 3,314 2/21/2024
2.1.168 1,030 2/20/2024
2.1.167 208 2/20/2024
2.1.166 213 2/20/2024
2.1.165 4,411 2/20/2024
2.1.164 3,342 2/20/2024
2.1.163 3,207 2/20/2024
2.1.162 6,723 2/19/2024
2.1.161 5,360 2/17/2024
2.1.160 2,231 2/17/2024
2.1.159 1,610 2/16/2024
2.1.158 1,173 2/16/2024
2.1.157 1,965 2/16/2024
2.1.156 3,022 2/16/2024
2.1.155 3,492 2/16/2024
2.1.154 248 2/16/2024
2.1.153 1,723 2/16/2024
2.1.152 249 2/16/2024
2.1.151 243 2/16/2024
2.1.150 5,958 2/14/2024
2.1.149 2,522 2/13/2024
2.1.148 3,044 2/13/2024
2.1.147 3,664 2/13/2024
2.1.146 3,507 2/13/2024
2.1.145 4,868 2/12/2024
2.1.144 769 2/11/2024
2.1.143 5,293 2/11/2024
2.1.142 2,989 2/11/2024
2.1.141 6,198 2/10/2024
2.1.140 777 2/9/2024
2.1.139 5,637 2/9/2024
2.1.138 3,635 2/9/2024
2.1.137 967 2/8/2024
2.1.136 4,553 2/8/2024
2.1.135 1,879 2/8/2024
2.1.134 10,497 2/8/2024
2.1.133 314 2/8/2024
2.1.132 262 2/8/2024
2.1.131 5,182 2/7/2024
2.1.130 2,062 2/7/2024
2.1.129 3,535 2/7/2024
2.1.128 1,147 2/7/2024
2.1.127 1,015 2/6/2024
2.1.126 2,827 2/6/2024
2.1.125 281 2/6/2024
2.1.124 7,468 2/5/2024
2.1.123 4,874 2/4/2024
2.1.122 5,158 2/2/2024
2.1.121 6,142 1/31/2024
2.1.120 6,047 1/29/2024
2.1.119 3,654 1/29/2024
2.1.118 2,453 1/29/2024
2.1.117 3,904 1/28/2024
2.1.116 5,194 1/28/2024
2.1.115 2,952 1/28/2024
2.1.114 1,723 1/28/2024
2.1.113 2,358 1/27/2024
2.1.112 2,072 1/27/2024
2.1.111 5,408 1/27/2024
2.1.110 2,722 1/27/2024
2.1.109 6,471 1/27/2024
2.1.108 1,677 1/26/2024
2.1.107 2,121 1/26/2024
2.1.106 2,760 1/26/2024
2.1.105 4,998 1/26/2024
2.1.104 2,379 1/26/2024
2.1.103 1,316 1/26/2024
2.1.102 4,437 1/25/2024
2.1.101 3,547 1/25/2024
2.1.100 1,712 1/25/2024
2.1.99 5,696 1/25/2024
2.1.98 5,482 1/19/2024
2.1.97 5,693 1/15/2024
2.1.96 2,616 1/15/2024
2.1.95 2,044 1/15/2024
2.1.94 5,183 1/15/2024
2.1.93 5,323 1/15/2024
2.1.92 5,172 1/14/2024
2.1.91 6,326 1/13/2024
2.1.90 5,296 1/12/2024
2.1.89 5,184 1/11/2024
2.1.88 7,186 1/7/2024
2.1.87 5,709 1/5/2024
2.1.86 2,562 1/5/2024
2.1.85 3,267 1/5/2024
2.1.84 6,159 1/3/2024
2.1.83 3,754 1/1/2024
2.1.82 5,110 12/28/2023
2.1.81 2,073 12/28/2023
2.1.80 2,070 12/28/2023
2.1.79 4,575 12/27/2023
2.1.78 2,152 12/27/2023
2.1.77 299 12/27/2023
2.1.76 8,786 12/25/2023
2.1.75 4,818 12/25/2023
2.1.74 2,445 12/25/2023
2.1.73 714 12/25/2023
2.1.72 323 12/25/2023
2.1.71 6,939 12/24/2023
2.1.70 5,418 12/23/2023
2.1.69 2,913 12/23/2023
2.1.68 1,720 12/23/2023
2.1.67 3,893 12/23/2023
2.1.66 297 12/23/2023
2.1.65 8,199 12/19/2023
2.1.64 2,260 12/19/2023
2.1.63 5,554 12/12/2023
2.1.62 468 12/12/2023
2.1.61 2,748 12/11/2023
2.1.60 2,226 12/11/2023
2.1.59 1,240 12/11/2023
2.1.58 1,671 12/11/2023
2.1.57 844 12/10/2023
2.1.56 823 12/10/2023
2.1.55 1,856 12/10/2023
2.1.54 1,146 12/10/2023
2.1.53 8,254 12/10/2023
2.1.52 1,868 12/9/2023
2.1.51 1,056 12/9/2023
2.1.50 1,630 12/9/2023
2.1.49 2,500 12/9/2023
2.1.48 268 12/9/2023
2.1.47 1,276 12/9/2023
2.1.46 342 12/9/2023
2.1.45 2,883 12/9/2023
2.1.44 304 12/9/2023
2.1.43 4,558 12/9/2023
2.1.42 6,810 12/6/2023
2.1.41 1,249 12/6/2023
2.1.40 1,787 12/6/2023
2.1.39 4,008 12/5/2023
2.1.38 2,029 12/5/2023
2.1.37 1,139 12/5/2023
2.1.36 2,891 12/5/2023
2.1.35 299 12/5/2023
2.1.34 2,460 12/5/2023
2.1.33 305 12/5/2023
2.1.32 1,615 12/4/2023
2.1.31 1,543 12/4/2023
2.1.30 332 12/4/2023
2.1.29 8,856 12/4/2023
2.1.28 2,919 11/27/2023
2.1.27 1,372 11/26/2023
2.1.26 3,428 11/23/2023
2.1.25 2,955 11/23/2023
2.1.24 3,608 11/23/2023
2.1.23 306 11/23/2023
2.1.22 7,041 11/20/2023
2.1.21 3,419 11/20/2023
2.1.20 5,506 11/19/2023
2.1.19 3,019 11/19/2023
2.1.18 4,180 11/19/2023
2.1.17 1,126 11/18/2023
2.1.16 5,429 11/18/2023
2.1.15 1,318 11/18/2023
2.1.14 3,443 11/18/2023
2.1.13 761 11/18/2023
2.1.12 3,579 11/17/2023
2.1.11 2,958 11/17/2023
2.1.10 2,196 11/17/2023
2.1.9 412 11/17/2023
2.1.8 3,481 11/17/2023
2.1.7 2,024 11/17/2023
2.1.6 2,541 11/17/2023
2.1.5 1,739 11/17/2023
2.1.4 593 11/17/2023
2.1.3 3,294 11/16/2023
2.0.78 1,133 11/15/2023
2.0.77 324 11/15/2023
2.0.76 2,952 11/15/2023
2.0.2 328 11/16/2023
2.0.1 290 11/16/2023
1.0.75 4,244 11/13/2023
1.0.74 6,110 11/10/2023
1.0.73 4,812 11/9/2023
1.0.72 3,268 11/8/2023
1.0.71 5,008 11/7/2023
1.0.70 2,494 11/6/2023
1.0.69 3,123 11/3/2023
1.0.68 5,637 11/2/2023
1.0.67 3,432 11/1/2023
1.0.66 10,960 10/26/2023
1.0.65 6,722 10/19/2023
1.0.64 2,908 10/18/2023
1.0.63 2,817 10/17/2023
1.0.62 3,412 10/16/2023
1.0.61 6,210 10/13/2023
1.0.60 3,652 10/12/2023
1.0.59 11,456 9/18/2023
1.0.58 311 9/18/2023
1.0.57 7,707 9/14/2023
1.0.56 7,172 8/31/2023
1.0.55 3,652 8/30/2023
1.0.54 3,133 8/29/2023
1.0.53 3,043 8/28/2023
1.0.52 5,832 8/25/2023
1.0.51 3,260 8/24/2023
1.0.50 7,928 8/21/2023
1.0.49 3,234 8/18/2023
1.0.48 3,004 8/17/2023
1.0.47 5,502 8/16/2023
1.0.46 9,086 8/10/2023
1.0.45 3,164 8/9/2023
1.0.44 5,288 8/8/2023
1.0.43 4,467 8/7/2023
1.0.42 4,664 8/4/2023
1.0.41 8,595 7/13/2023
1.0.40 5,723 7/11/2023
1.0.39 3,503 7/10/2023
1.0.38 4,366 7/7/2023
1.0.37 383 7/7/2023
1.0.36 12,028 6/30/2023
1.0.35 6,199 6/28/2023
1.0.34 6,338 6/27/2023
1.0.33 7,332 6/26/2023
1.0.32 4,363 6/23/2023
1.0.31 8,905 6/21/2023
1.0.30 9,253 6/15/2023
1.0.29 3,664 6/14/2023
1.0.28 9,887 6/9/2023
1.0.27 4,299 6/8/2023
1.0.26 5,260 6/7/2023
1.0.25 5,903 6/6/2023
1.0.24 394 6/6/2023
1.0.23 4,939 6/5/2023
1.0.22 17,076 5/30/2023
1.0.21 19,894 5/29/2023
1.0.20 6,880 5/26/2023
1.0.19 8,007 5/25/2023
1.0.18 8,364 5/24/2023
1.0.17 5,670 5/24/2023
1.0.16 1,699 5/23/2023
1.0.15 1,688 5/23/2023
1.0.12 3,111 5/22/2023
1.0.11 19,317 5/16/2023
1.0.10 15,914 4/20/2023
1.0.9 15,200 4/3/2023
1.0.8 1,280 4/3/2023
1.0.7 2,524 3/23/2023
1.0.5 797 3/13/2023
1.0.4 542 3/11/2023
1.0.3 446 3/11/2023
1.0.2 449 3/11/2023
1.0.1 502 3/11/2023