Soenneker.Utils.SingletonDictionary 3.0.736

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.736                
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.736                
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.SingletonDictionary" Version="3.0.736" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Utils.SingletonDictionary --version 3.0.736                
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.736"                
#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.SingletonDictionary as a Cake Addin
#addin nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.736

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

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.SingletonDictionary

An externally initializing singleton dictionary that uses double-check asynchronous locking, with optional async and sync disposal

Installation

dotnet add package Soenneker.Utils.SingletonDictionary

Example

Below is a long-living HttpClient implementation using SingletonDictionary with different settings. It guarantees only one instance of a particular key is instantiated due to the locking.

public class HttpRequester : IDisposable, IAsyncDisposable
{
    private readonly SingletonDictionary<HttpClient> _clients;

    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.
        _clients = new SingletonDictionary<HttpClient>((args) =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

            HttpClient client = new HttpClient(socketsHandler);
            client.Timeout = TimeSpan.FromSeconds((int)args[0]);

            return client;
        });
    }

    public async ValueTask Get()
    {
        // retrieve the singleton async, thus not blocking the calling thread
        await (await _client.Get("100", 100)).GetAsync("https://google.com");
    }

    // Disposal is not necessary for AsyncSingleton unless the type used is IDisposable/IAsyncDisposable
    public ValueTask DisposeAsync()
    {
        GC.SuppressFinalize(false);

        return _client.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(false);
        
        _client.Dispose();
    }
}
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

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

Package Downloads
Soenneker.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Soenneker.Cosmos.Database

A utility library for storing Azure Cosmos databases

Soenneker.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

Soenneker.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.759 0 1/3/2025
3.0.758 0 1/3/2025
3.0.757 23 1/3/2025
3.0.756 21 1/3/2025
3.0.755 133 1/3/2025
3.0.754 29 1/3/2025
3.0.753 245 1/3/2025
3.0.752 157 1/2/2025
3.0.751 30 1/2/2025
3.0.750 496 1/2/2025
3.0.749 38 1/2/2025
3.0.748 952 1/2/2025
3.0.747 32 1/2/2025
3.0.746 38 1/2/2025
3.0.745 1,803 1/1/2025
3.0.744 471 1/1/2025
3.0.743 141 1/1/2025
3.0.742 70 1/1/2025
3.0.741 780 1/1/2025
3.0.740 63 1/1/2025
3.0.739 70 1/1/2025
3.0.738 68 1/1/2025
3.0.737 196 12/31/2024
3.0.736 71 12/31/2024
3.0.735 75 12/31/2024
3.0.734 377 12/31/2024
3.0.733 69 12/31/2024
3.0.732 2,627 12/31/2024
3.0.731 64 12/31/2024
3.0.730 2,949 12/31/2024
3.0.729 68 12/31/2024
3.0.728 1,827 12/31/2024
3.0.727 216 12/31/2024
3.0.726 69 12/31/2024
3.0.725 1,095 12/31/2024
3.0.724 68 12/31/2024
3.0.723 7,598 12/28/2024
3.0.722 1,090 12/28/2024
3.0.721 1,186 12/27/2024
3.0.720 78 12/27/2024
3.0.719 2,648 12/27/2024
3.0.718 4,849 12/24/2024
3.0.717 1,214 12/24/2024
3.0.716 907 12/24/2024
3.0.715 772 12/24/2024
3.0.714 1,347 12/24/2024
3.0.713 63 12/24/2024
3.0.712 2,211 12/24/2024
3.0.711 610 12/24/2024
3.0.710 72 12/24/2024
3.0.709 427 12/24/2024
3.0.708 941 12/24/2024
3.0.707 223 12/24/2024
3.0.706 93 12/24/2024
3.0.705 1,014 12/24/2024
3.0.704 73 12/24/2024
3.0.703 1,749 12/23/2024
3.0.702 2,715 12/23/2024
3.0.701 79 12/23/2024
3.0.700 635 12/23/2024
3.0.699 71 12/23/2024
3.0.698 1,792 12/23/2024
3.0.697 77 12/23/2024
3.0.696 1,412 12/23/2024
3.0.695 80 12/23/2024
3.0.694 402 12/22/2024
3.0.693 1,363 12/22/2024
3.0.692 3,964 12/22/2024
3.0.691 76 12/22/2024
3.0.690 1,505 12/22/2024
3.0.689 129 12/22/2024
3.0.688 440 12/22/2024
3.0.687 74 12/22/2024
3.0.686 235 12/22/2024
3.0.685 73 12/22/2024
3.0.684 6,720 12/22/2024
3.0.683 73 12/22/2024
3.0.682 1,034 12/21/2024
3.0.681 231 12/21/2024
3.0.680 79 12/21/2024
3.0.679 455 12/21/2024
3.0.678 741 12/21/2024
3.0.677 73 12/21/2024
3.0.676 3,737 12/21/2024
3.0.675 352 12/21/2024
3.0.674 71 12/21/2024
3.0.673 2,500 12/21/2024
3.0.672 647 12/21/2024
3.0.671 75 12/21/2024
3.0.670 1,547 12/20/2024
3.0.669 80 12/20/2024
3.0.668 73 12/20/2024
3.0.667 3,641 12/20/2024
3.0.666 1,108 12/20/2024
3.0.665 187 12/20/2024
3.0.664 3,415 12/19/2024
3.0.663 398 12/19/2024
3.0.662 1,985 12/18/2024
3.0.661 80 12/18/2024
3.0.660 6,520 12/17/2024
3.0.659 177 12/17/2024
3.0.658 656 12/16/2024
3.0.657 83 12/16/2024
3.0.656 113 12/16/2024
3.0.655 72 12/16/2024
3.0.654 6,436 12/10/2024
3.0.653 967 12/10/2024
3.0.652 349 12/9/2024
3.0.651 79 12/9/2024
3.0.650 2,638 12/9/2024
3.0.649 1,337 12/9/2024
3.0.648 72 12/9/2024
3.0.647 3,598 12/9/2024
3.0.646 2,697 12/6/2024
3.0.645 401 12/6/2024
3.0.644 83 12/6/2024
3.0.643 656 12/6/2024
3.0.641 3,834 12/6/2024
3.0.640 2,416 12/6/2024
3.0.639 5,242 12/6/2024
3.0.637 336 12/6/2024
3.0.636 2,487 12/5/2024
3.0.635 3,535 12/5/2024
3.0.634 3,137 12/5/2024
3.0.633 77 12/5/2024
3.0.632 1,708 12/5/2024
3.0.631 1,001 12/5/2024
3.0.630 82 12/5/2024
3.0.629 352 12/5/2024
3.0.628 75 12/5/2024
3.0.627 119 12/5/2024
3.0.626 75 12/5/2024
3.0.625 3,330 12/4/2024
3.0.624 73 12/4/2024
3.0.623 84 12/4/2024
3.0.622 81 12/4/2024
3.0.621 1,687 12/4/2024
3.0.620 268 12/4/2024
3.0.619 381 12/4/2024
3.0.618 3,320 12/3/2024
3.0.617 83 12/3/2024
3.0.616 1,094 12/3/2024
3.0.615 414 12/3/2024
3.0.614 87 12/3/2024
3.0.613 78 12/3/2024
3.0.612 3,969 12/3/2024
3.0.611 80 12/3/2024
3.0.610 3,265 12/3/2024
3.0.609 71 12/3/2024
3.0.608 3,028 12/2/2024
3.0.607 2,615 12/2/2024
3.0.606 1,594 12/2/2024
3.0.605 244 12/2/2024
3.0.604 80 12/2/2024
3.0.603 369 12/2/2024
3.0.602 3,412 12/1/2024
3.0.601 83 12/1/2024
3.0.600 1,836 12/1/2024
3.0.599 167 12/1/2024
3.0.598 3,423 12/1/2024
3.0.597 86 12/1/2024
3.0.596 3,535 11/29/2024
3.0.595 1,023 11/29/2024
3.0.594 4,499 11/21/2024
3.0.593 265 11/21/2024
3.0.592 4,463 11/20/2024
3.0.591 307 11/20/2024
3.0.590 82 11/20/2024
3.0.589 87 11/20/2024
3.0.588 391 11/20/2024
3.0.587 129 11/20/2024
3.0.586 75 11/20/2024
3.0.585 2,000 11/20/2024
3.0.584 2,720 11/19/2024
3.0.583 76 11/19/2024
3.0.582 612 11/19/2024
3.0.581 74 11/19/2024
3.0.580 2,649 11/19/2024
3.0.579 72 11/19/2024
3.0.578 1,284 11/19/2024
3.0.577 78 11/19/2024
3.0.576 8,463 11/14/2024
3.0.575 108 11/14/2024
3.0.574 483 11/14/2024
3.0.573 2,338 11/14/2024
3.0.572 690 11/14/2024
3.0.571 84 11/14/2024
3.0.570 81 11/14/2024
3.0.569 4,106 11/14/2024
3.0.568 89 11/14/2024
3.0.567 83 11/14/2024
3.0.566 3,455 11/14/2024
3.0.565 83 11/14/2024
3.0.564 79 11/14/2024
3.0.563 85 11/14/2024
2.1.562 7,695 11/13/2024
2.1.561 1,299 11/13/2024
2.1.560 3,022 11/13/2024
2.1.559 87 11/13/2024
2.1.558 1,307 11/12/2024
2.1.557 377 11/12/2024
2.1.556 8,206 11/9/2024
2.1.555 339 11/9/2024
2.1.554 82 11/9/2024
2.1.553 1,704 11/9/2024
2.1.552 82 11/9/2024
2.1.551 925 11/8/2024
2.1.550 85 11/8/2024
2.1.549 85 11/8/2024
2.1.548 84 11/8/2024
2.1.547 398 11/8/2024
2.1.546 1,858 11/8/2024
2.1.545 81 11/8/2024
2.1.544 5,426 11/8/2024
2.1.543 79 11/8/2024
2.1.542 11,530 11/1/2024
2.1.541 432 11/1/2024
2.1.540 6,732 10/29/2024
2.1.539 707 10/29/2024
2.1.538 2,806 10/29/2024
2.1.537 603 10/29/2024
2.1.536 5,520 10/28/2024
2.1.535 1,815 10/28/2024
2.1.534 3,982 10/26/2024
2.1.533 681 10/26/2024
2.1.532 7,317 10/22/2024
2.1.531 230 10/22/2024
2.1.530 527 10/22/2024
2.1.529 854 10/22/2024
2.1.528 67 10/22/2024
2.1.527 459 10/22/2024
2.1.526 6,462 10/18/2024
2.1.525 1,065 10/17/2024
2.1.524 4,120 10/15/2024
2.1.523 1,575 10/15/2024
2.1.522 83 10/14/2024
2.1.521 5,093 10/12/2024
2.1.520 629 10/11/2024
2.1.519 83 10/11/2024
2.1.518 453 10/11/2024
2.1.517 2,894 10/11/2024
2.1.516 6,312 10/9/2024
2.1.515 363 10/9/2024
2.1.514 79 10/9/2024
2.1.513 1,944 10/8/2024
2.1.512 119 10/8/2024
2.1.511 2,197 10/8/2024
2.1.510 126 10/8/2024
2.1.509 76 10/8/2024
2.1.508 3,906 10/8/2024
2.1.507 6,119 10/3/2024
2.1.506 87 10/3/2024
2.1.505 1,082 10/3/2024
2.1.504 1,888 10/3/2024
2.1.503 1,383 10/3/2024
2.1.502 5,694 10/2/2024
2.1.501 85 10/2/2024
2.1.500 1,790 10/2/2024
2.1.499 980 10/2/2024
2.1.498 4,148 10/1/2024
2.1.497 672 10/1/2024
2.1.496 87 10/1/2024
2.1.495 2,598 10/1/2024
2.1.494 84 10/1/2024
2.1.493 127 10/1/2024
2.1.492 5,304 9/29/2024
2.1.491 1,355 9/29/2024
2.1.490 84 9/29/2024
2.1.489 1,196 9/29/2024
2.1.488 82 9/29/2024
2.1.487 2,493 9/29/2024
2.1.486 4,964 9/27/2024
2.1.485 757 9/27/2024
2.1.484 3,100 9/27/2024
2.1.483 92 9/27/2024
2.1.482 424 9/27/2024
2.1.481 2,137 9/27/2024
2.1.480 3,132 9/26/2024
2.1.479 3,448 9/26/2024
2.1.478 2,330 9/26/2024
2.1.477 2,135 9/26/2024
2.1.476 3,759 9/26/2024
2.1.475 87 9/26/2024
2.1.474 5,516 9/23/2024
2.1.473 1,277 9/23/2024
2.1.472 932 9/23/2024
2.1.471 1,114 9/23/2024
2.1.470 82 9/23/2024
2.1.469 1,524 9/23/2024
2.1.468 80 9/23/2024
2.1.467 4,622 9/23/2024
2.1.466 88 9/23/2024
2.1.465 697 9/23/2024
2.1.464 94 9/23/2024
2.1.463 83 9/23/2024
2.1.462 856 9/23/2024
2.1.461 9,035 9/18/2024
2.1.460 232 9/17/2024
2.1.459 1,182 9/17/2024
2.1.458 1,687 9/17/2024
2.1.457 89 9/17/2024
2.1.456 1,777 9/17/2024
2.1.455 440 9/17/2024
2.1.454 3,228 9/17/2024
2.1.453 516 9/17/2024
2.1.452 176 9/17/2024
2.1.451 2,621 9/17/2024
2.1.450 7,419 9/16/2024
2.1.449 697 9/16/2024
2.1.448 4,934 9/12/2024
2.1.447 2,896 9/12/2024
2.1.446 1,288 9/11/2024
2.1.445 1,511 9/11/2024
2.1.443 3,697 9/11/2024
2.1.442 973 9/11/2024
2.1.441 939 9/11/2024
2.1.440 2,270 9/11/2024
2.1.439 8,046 9/10/2024
2.1.438 109 9/10/2024
2.1.437 1,131 9/10/2024
2.1.436 103 9/10/2024
2.1.434 2,889 9/10/2024
2.1.433 581 9/9/2024
2.1.432 1,980 9/9/2024
2.1.430 1,522 9/9/2024
2.1.428 127 9/9/2024
2.1.427 446 9/9/2024
2.1.426 13,205 9/7/2024
2.1.425 119 9/7/2024
2.1.424 4,960 9/6/2024
2.1.423 348 9/6/2024
2.1.422 2,184 9/6/2024
2.1.421 103 9/5/2024
2.1.420 112 9/5/2024
2.1.419 2,362 9/5/2024
2.1.418 1,123 9/5/2024
2.1.417 105 9/5/2024
2.1.416 1,126 9/5/2024
2.1.415 415 9/5/2024
2.1.414 103 9/5/2024
2.1.413 5,003 9/5/2024
2.1.412 183 9/5/2024
2.1.411 109 9/5/2024
2.1.410 2,234 9/4/2024
2.1.409 7,947 9/3/2024
2.1.408 96 9/3/2024
2.1.407 90 9/3/2024
2.1.406 3,977 9/3/2024
2.1.405 140 9/3/2024
2.1.404 2,455 9/3/2024
2.1.403 5,243 8/29/2024
2.1.402 2,510 8/29/2024
2.1.401 2,853 8/26/2024
2.1.400 93 8/26/2024
2.1.399 4,903 8/21/2024
2.1.398 596 8/21/2024
2.1.397 117 8/21/2024
2.1.396 2,534 8/21/2024
2.1.395 131 8/20/2024
2.1.394 121 8/20/2024
2.1.393 455 8/20/2024
2.1.392 2,939 8/20/2024
2.1.391 404 8/20/2024
2.1.390 107 8/20/2024
2.1.389 2,626 8/20/2024
2.1.388 109 8/20/2024
2.1.387 1,186 8/20/2024
2.1.386 2,867 8/19/2024
2.1.385 4,733 8/15/2024
2.1.384 2,087 8/15/2024
2.1.383 4,771 8/14/2024
2.1.382 144 8/13/2024
2.1.381 5,625 8/7/2024
2.1.380 262 8/6/2024
2.1.379 2,658 8/6/2024
2.1.378 4,895 8/1/2024
2.1.377 315 8/1/2024
2.1.376 86 8/1/2024
2.1.374 1,119 8/1/2024
2.1.373 5,763 7/25/2024
2.1.372 82 7/25/2024
2.1.371 709 7/25/2024
2.1.370 294 7/25/2024
2.1.369 345 7/25/2024
2.1.368 170 7/25/2024
2.1.367 371 7/24/2024
2.1.366 127 7/24/2024
2.1.365 194 7/24/2024
2.1.364 297 7/24/2024
2.1.363 7,912 7/20/2024
2.1.362 1,434 7/20/2024
2.1.361 4,949 7/14/2024
2.1.360 1,515 7/14/2024
2.1.359 91 7/14/2024
2.1.358 1,479 7/14/2024
2.1.357 4,267 7/10/2024
2.1.355 773 7/10/2024
2.1.354 1,165 7/10/2024
2.1.353 108 7/10/2024
2.1.352 1,886 7/10/2024
2.1.351 109 7/10/2024
2.1.350 89 7/10/2024
2.1.349 154 7/10/2024
2.1.348 92 7/10/2024
2.1.347 2,022 7/10/2024
2.1.346 108 7/10/2024
2.1.345 798 7/10/2024
2.1.344 96 7/10/2024
2.1.343 194 7/9/2024
2.1.342 86 7/9/2024
2.1.339 1,942 7/9/2024
2.1.338 473 7/9/2024
2.1.337 3,974 7/9/2024
2.1.336 1,056 7/9/2024
2.1.335 99 7/9/2024
2.1.334 2,551 7/9/2024
2.1.333 103 7/9/2024
2.1.332 4,305 7/9/2024
2.1.331 92 7/9/2024
2.1.330 2,484 7/9/2024
2.1.329 80 7/9/2024
2.1.328 1,047 7/9/2024
2.1.327 695 7/8/2024
2.1.326 945 7/8/2024
2.1.325 109 7/8/2024
2.1.324 104 7/8/2024
2.1.323 4,803 7/8/2024
2.1.322 1,594 7/8/2024
2.1.321 111 7/8/2024
2.1.320 2,256 7/7/2024
2.1.319 104 7/7/2024
2.1.318 114 7/7/2024
2.1.317 95 7/7/2024
2.1.316 1,108 7/7/2024
2.1.315 2,132 7/7/2024
2.1.314 1,826 7/7/2024
2.1.313 198 7/7/2024
2.1.312 3,334 7/5/2024
2.1.311 3,835 7/3/2024
2.1.310 3,003 7/3/2024
2.1.309 365 7/3/2024
2.1.308 3,856 7/2/2024
2.1.307 1,819 6/30/2024
2.1.306 2,215 6/28/2024
2.1.305 5,350 6/22/2024
2.1.304 4,824 6/15/2024
2.1.303 4,047 6/14/2024
2.1.302 5,825 6/1/2024
2.1.301 1,551 6/1/2024
2.1.300 567 6/1/2024
2.1.299 5,773 5/31/2024
2.1.298 3,658 5/29/2024
2.1.297 2,987 5/28/2024
2.1.296 2,406 5/27/2024
2.1.295 4,771 5/26/2024
2.1.294 1,990 5/26/2024
2.1.293 465 5/26/2024
2.1.292 2,477 5/25/2024
2.1.291 1,346 5/25/2024
2.1.290 114 5/25/2024
2.1.289 107 5/25/2024
2.1.288 658 5/25/2024
2.1.287 108 5/25/2024
2.1.286 388 5/25/2024
2.1.285 118 5/25/2024
2.1.284 108 5/25/2024
2.1.283 7,335 5/23/2024
2.1.282 511 5/23/2024
2.1.281 248 5/22/2024
2.1.280 3,588 5/22/2024
2.1.279 102 5/22/2024
2.1.278 114 5/22/2024
2.1.277 117 5/22/2024
2.1.276 2,089 5/22/2024
2.1.275 3,351 5/18/2024
2.1.274 1,870 5/18/2024
2.1.273 1,778 5/17/2024
2.1.272 97 5/17/2024
2.1.271 2,692 5/16/2024
2.1.270 413 5/15/2024
2.1.269 2,699 5/15/2024
2.1.268 4,398 5/12/2024
2.1.267 2,696 5/3/2024
2.1.266 1,115 4/30/2024
2.1.265 1,720 4/29/2024
2.1.264 1,864 4/29/2024
2.1.263 2,605 4/28/2024
2.1.262 1,440 4/28/2024
2.1.261 1,069 4/28/2024
2.1.260 1,720 4/28/2024
2.1.259 877 4/28/2024
2.1.258 99 4/28/2024
2.1.257 4,105 4/27/2024
2.1.256 112 4/27/2024
2.1.255 4,336 4/19/2024
2.1.254 4,011 4/18/2024
2.1.253 3,382 4/12/2024
2.1.252 1,118 4/12/2024
2.1.251 704 4/12/2024
2.1.250 835 4/12/2024
2.1.249 175 4/12/2024
2.1.248 95 4/12/2024
2.1.247 967 4/12/2024
2.1.246 286 4/12/2024
2.1.245 1,619 4/11/2024
2.1.244 3,654 4/10/2024
2.1.243 1,095 4/9/2024
2.1.242 3,110 4/2/2024
2.1.241 873 4/1/2024
2.1.240 2,040 3/29/2024
2.1.239 1,789 3/25/2024
2.1.238 275 3/25/2024
2.1.237 3,265 3/20/2024
2.1.236 2,112 3/19/2024
2.1.235 501 3/19/2024
2.1.234 2,288 3/18/2024
2.1.233 1,369 3/18/2024
2.1.232 1,356 3/15/2024
2.1.231 2,308 3/13/2024
2.1.230 1,067 3/13/2024
2.1.229 632 3/13/2024
2.1.228 734 3/13/2024
2.1.227 119 3/13/2024
2.1.226 522 3/13/2024
2.1.225 124 3/13/2024
2.1.224 131 3/13/2024
2.1.223 1,624 3/12/2024
2.1.222 2,786 3/11/2024
2.1.221 2,416 3/11/2024
2.1.220 1,585 3/10/2024
2.1.219 1,845 3/8/2024
2.1.218 1,028 3/8/2024
2.1.217 1,522 3/8/2024
2.1.216 2,049 3/6/2024
2.1.215 1,966 3/4/2024
2.1.214 1,379 3/4/2024
2.1.213 2,522 3/2/2024
2.1.212 1,177 3/2/2024
2.1.211 386 3/2/2024
2.1.210 330 3/2/2024
2.1.209 453 3/2/2024
2.1.208 3,374 2/29/2024
2.1.207 619 2/29/2024
2.1.206 320 2/29/2024
2.1.205 3,256 2/26/2024
2.1.204 1,462 2/25/2024
2.1.203 2,556 2/23/2024
2.1.202 1,861 2/22/2024
2.1.201 921 2/22/2024
2.1.200 400 2/21/2024
2.1.199 1,164 2/21/2024
2.1.198 271 2/21/2024
2.1.197 738 2/21/2024
2.1.196 112 2/21/2024
2.1.195 1,204 2/21/2024
2.1.194 385 2/21/2024
2.1.193 118 2/21/2024
2.1.192 117 2/21/2024
2.1.191 572 2/21/2024
2.1.190 97 2/21/2024
2.1.189 2,590 2/20/2024
2.1.188 685 2/20/2024
2.1.187 617 2/20/2024
2.1.186 725 2/20/2024
2.1.185 2,062 2/19/2024
2.1.184 1,839 2/17/2024
2.1.183 864 2/16/2024
2.1.182 834 2/16/2024
2.1.181 1,305 2/16/2024
2.1.180 106 2/16/2024
2.1.179 611 2/16/2024
2.1.178 115 2/16/2024
2.1.177 116 2/16/2024
2.1.176 526 2/16/2024
2.1.175 102 2/16/2024
2.1.174 3,251 2/13/2024
2.1.173 1,343 2/13/2024
2.1.172 1,060 2/13/2024
2.1.171 437 2/13/2024
2.1.170 606 2/13/2024
2.1.169 1,905 2/12/2024
2.1.168 493 2/11/2024
2.1.167 1,491 2/11/2024
2.1.166 833 2/11/2024
2.1.165 2,713 2/10/2024
2.1.164 527 2/9/2024
2.1.163 125 2/9/2024
2.1.162 1,527 2/9/2024
2.1.161 1,633 2/9/2024
2.1.160 369 2/8/2024
2.1.159 1,191 2/8/2024
2.1.158 819 2/8/2024
2.1.157 1,415 2/8/2024
2.1.156 112 2/8/2024
2.1.155 1,826 2/7/2024
2.1.154 425 2/7/2024
2.1.153 581 2/7/2024
2.1.152 1,240 2/7/2024
2.1.151 363 2/6/2024
2.1.150 121 2/6/2024
2.1.149 114 2/6/2024
2.1.148 2,716 2/5/2024
2.1.147 1,503 2/4/2024
2.1.146 2,049 2/2/2024
2.1.145 1,886 1/31/2024
2.1.144 2,106 1/29/2024
2.1.143 1,331 1/29/2024
2.1.142 332 1/29/2024
2.1.141 1,454 1/28/2024
2.1.140 437 1/28/2024
2.1.139 291 1/28/2024
2.1.138 525 1/28/2024
2.1.137 1,892 1/28/2024
2.1.136 908 1/28/2024
2.1.135 273 1/27/2024
2.1.134 897 1/27/2024
2.1.133 1,139 1/27/2024
2.1.132 1,156 1/27/2024
2.1.131 141 1/27/2024
2.1.130 681 1/27/2024
2.1.129 1,034 1/26/2024
2.1.128 206 1/26/2024
2.1.127 854 1/26/2024
2.1.126 1,103 1/26/2024
2.1.125 1,607 1/26/2024
2.1.124 863 1/25/2024
2.1.123 1,078 1/25/2024
2.1.122 439 1/25/2024
2.1.121 894 1/25/2024
2.1.120 503 1/25/2024
2.1.119 2,546 1/19/2024
2.1.118 2,184 1/15/2024
2.1.117 485 1/15/2024
2.1.116 1,191 1/15/2024
2.1.115 118 1/15/2024
2.1.114 545 1/15/2024
2.1.113 1,356 1/15/2024
2.1.112 2,517 1/14/2024
2.1.111 1,579 1/13/2024
2.1.110 1,808 1/12/2024
2.1.109 2,017 1/11/2024
2.1.108 2,600 1/7/2024
2.1.107 2,071 1/5/2024
2.1.106 470 1/5/2024
2.1.105 127 1/5/2024
2.1.104 132 1/5/2024
2.1.103 1,461 1/5/2024
2.1.102 132 1/5/2024
2.1.101 2,727 1/1/2024
2.1.100 2,189 12/28/2023
2.1.99 725 12/28/2023
2.1.98 483 12/28/2023
2.1.97 123 12/28/2023
2.1.96 121 12/28/2023
2.1.95 700 12/27/2023
2.1.94 131 12/27/2023
2.1.93 455 12/27/2023
2.1.92 125 12/27/2023
2.1.91 127 12/27/2023
2.1.90 2,186 12/25/2023
2.1.89 340 12/25/2023
2.1.88 761 12/25/2023
2.1.87 128 12/25/2023
2.1.86 608 12/25/2023
2.1.85 119 12/25/2023
2.1.84 554 12/25/2023
2.1.83 125 12/25/2023
2.1.82 1,622 12/24/2023
2.1.81 1,053 12/23/2023
2.1.80 849 12/23/2023
2.1.79 295 12/23/2023
2.1.78 530 12/23/2023
2.1.77 119 12/23/2023
2.1.76 111 12/23/2023
2.1.75 1,059 12/23/2023
2.1.74 112 12/23/2023
2.1.73 1,378 12/19/2023
2.1.72 208 12/19/2023
2.1.71 3,040 12/11/2023
2.1.70 709 12/10/2023
2.1.69 108 12/10/2023
2.1.68 476 12/10/2023
2.1.67 1,389 12/10/2023
2.1.66 359 12/9/2023
2.1.65 350 12/9/2023
2.1.64 283 12/9/2023
2.1.63 122 12/9/2023
2.1.62 253 12/9/2023
2.1.61 188 12/9/2023
2.1.60 122 12/9/2023
2.1.59 1,056 12/9/2023
2.1.58 117 12/9/2023
2.1.57 1,485 12/6/2023
2.1.56 381 12/6/2023
2.1.55 234 12/6/2023
2.1.54 261 12/6/2023
2.1.53 907 12/5/2023
2.1.52 372 12/5/2023
2.1.51 337 12/5/2023
2.1.50 376 12/5/2023
2.1.49 124 12/5/2023
2.1.48 332 12/5/2023
2.1.47 269 12/5/2023
2.1.46 124 12/4/2023
2.1.45 125 12/4/2023
2.1.44 321 12/4/2023
2.1.43 137 12/4/2023
2.1.42 988 12/4/2023
2.1.41 105 12/4/2023
2.1.40 1,156 11/27/2023
2.1.39 505 11/26/2023
2.1.38 209 11/26/2023
2.1.37 617 11/23/2023
2.1.36 673 11/23/2023
2.1.35 625 11/23/2023
2.1.34 125 11/23/2023
2.1.33 386 11/23/2023
2.1.32 130 11/23/2023
2.1.31 1,063 11/20/2023
2.1.30 1,030 11/20/2023
2.1.29 781 11/19/2023
2.1.28 248 11/19/2023
2.1.27 448 11/19/2023
2.1.26 484 11/19/2023
2.1.25 483 11/19/2023
2.1.24 112 11/19/2023
2.1.23 212 11/18/2023
2.1.22 967 11/18/2023
2.1.21 368 11/18/2023
2.1.20 525 11/18/2023
2.1.19 124 11/18/2023
2.1.18 297 11/18/2023
2.1.17 119 11/18/2023
2.1.16 581 11/17/2023
2.1.15 505 11/17/2023
2.1.14 117 11/17/2023
2.1.13 413 11/17/2023
2.1.12 288 11/17/2023
2.1.11 478 11/17/2023
2.1.10 118 11/17/2023
2.1.9 501 11/17/2023
2.1.8 117 11/17/2023
2.1.7 135 11/17/2023
2.1.6 312 11/17/2023
2.1.5 362 11/16/2023
2.0.101 2,053 11/15/2023
2.0.100 113 11/15/2023
2.0.99 123 11/15/2023
2.0.4 123 11/16/2023
2.0.3 127 11/16/2023
2.0.2 120 11/16/2023
2.0.1 114 11/16/2023
1.0.98 603 11/14/2023
1.0.97 742 11/13/2023
1.0.96 109 11/13/2023
1.0.95 562 11/10/2023
1.0.94 112 11/10/2023
1.0.93 912 11/9/2023
1.0.92 120 11/9/2023
1.0.91 1,017 11/7/2023
1.0.90 110 11/7/2023
1.0.89 497 11/6/2023
1.0.88 120 11/6/2023
1.0.87 588 11/3/2023
1.0.86 124 11/3/2023
1.0.85 872 11/2/2023
1.0.84 117 11/2/2023
1.0.83 593 11/1/2023
1.0.82 1,434 10/26/2023
1.0.81 1,283 10/19/2023
1.0.80 132 10/19/2023
1.0.79 767 10/18/2023
1.0.78 151 10/18/2023
1.0.77 720 10/17/2023
1.0.76 138 10/17/2023
1.0.75 627 10/16/2023
1.0.74 143 10/16/2023
1.0.73 690 10/13/2023
1.0.72 328 10/12/2023
1.0.71 1,715 9/20/2023
1.0.70 651 9/19/2023
1.0.69 666 9/18/2023
1.0.68 131 9/18/2023
1.0.67 878 9/14/2023
1.0.66 1,492 8/31/2023
1.0.65 140 8/31/2023
1.0.64 777 8/30/2023
1.0.63 147 8/30/2023
1.0.62 148 8/30/2023
1.0.61 827 8/28/2023
1.0.60 673 8/25/2023
1.0.59 140 8/25/2023
1.0.58 472 8/24/2023
1.0.57 1,428 8/21/2023
1.0.56 783 8/18/2023
1.0.55 734 8/17/2023
1.0.54 143 8/17/2023
1.0.53 1,885 8/10/2023
1.0.52 552 8/9/2023
1.0.51 659 8/8/2023
1.0.50 631 8/7/2023
1.0.49 165 8/7/2023
1.0.48 2,426 7/13/2023
1.0.47 863 7/11/2023
1.0.46 710 7/10/2023
1.0.45 673 7/7/2023
1.0.44 159 7/7/2023
1.0.43 2,087 6/30/2023
1.0.42 1,042 6/29/2023
1.0.41 584 6/28/2023
1.0.40 1,490 6/26/2023
1.0.39 756 6/23/2023
1.0.38 1,065 6/21/2023
1.0.37 1,393 6/15/2023
1.0.36 459 6/14/2023
1.0.35 1,729 6/9/2023
1.0.34 800 6/8/2023
1.0.33 1,570 6/7/2023
1.0.32 158 6/7/2023
1.0.31 1,188 6/6/2023
1.0.30 1,123 6/5/2023
1.0.29 1,324 6/2/2023
1.0.28 144 6/2/2023
1.0.27 1,212 6/1/2023
1.0.26 587 5/31/2023
1.0.25 471 5/31/2023
1.0.24 153 5/31/2023
1.0.23 1,442 5/30/2023
1.0.22 1,507 5/26/2023
1.0.21 661 5/25/2023
1.0.20 140 5/25/2023
1.0.19 818 5/24/2023
1.0.18 148 5/24/2023
1.0.17 434 5/23/2023
1.0.13 1,454 5/22/2023
1.0.12 1,175 5/18/2023
1.0.11 579 5/17/2023
1.0.10 1,537 5/1/2023
1.0.9 1,012 4/25/2023
1.0.8 463 4/24/2023
1.0.7 987 4/21/2023
1.0.6 1,946 4/13/2023
1.0.5 578 4/12/2023
1.0.4 1,004 4/8/2023
1.0.3 178 4/8/2023
1.0.2 576 4/8/2023
1.0.1 181 4/8/2023