Soenneker.Utils.HttpClientCache 2.1.713

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

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

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

Providing thread-safe singleton HttpClients

Why?

'Long-lived' HttpClient static/singleton instances is the recommended use pattern in .NET. Avoid the unnecessary overhead of IHttpClientFactory, and definitely avoid creating a new HttpClient instance per request.

HttpClientCache provides a thread-safe singleton HttpClient instance per key via dependency injection. HttpClients are created lazily, and disposed on application shutdown (or manually if you want).

See Guidelines for using HttpClient

Installation

dotnet add package Soenneker.Utils.HttpClientCache

Usage

  1. Register IHttpClientCache within DI (Program.cs).
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddHttpClientCache();
}
  1. Inject IHttpClientCache via constructor, and retrieve a fresh HttpClient.

Example:

public class TestClass
{
    IHttpClientCache _httpClientCache;

    public TestClass(IHttpClientCache httpClientCache)
    {
        _httpClientCache = httpClientCache;
    }

    public async ValueTask<string> GetGoogleSource()
    {
        HttpClient httpClient = await _httpClientCache.Get(nameof(TestClass));

        var response = await httpClient.GetAsync("https://www.google.com");
        response.EnsureSuccessStatusCode();

        var responseString = await response.Content.ReadAsStringAsync();
        return responseString;
    }
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (15)

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

Package Downloads
Soenneker.Blob.Container

A utility library for Azure Blob storage container operations

Soenneker.Validators.Email.Disposable.Online

A validation module checking for disposable email addresses via online sources

Soenneker.Queue.Client

A utility library for Azure Queue (Storage) client accessibility

Soenneker.YouTube.Client

An async thread-safe singleton for the YouTube client YouTubeExplode

Soenneker.Blob.Service

A utility library for Azure Blob storage service client operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.773 0 9/16/2024
2.1.772 0 9/16/2024
2.1.771 7 9/16/2024
2.1.770 56 9/16/2024
2.1.769 106 9/16/2024
2.1.768 692 9/12/2024
2.1.767 214 9/12/2024
2.1.766 266 9/12/2024
2.1.765 501 9/12/2024
2.1.764 337 9/12/2024
2.1.763 45 9/12/2024
2.1.762 575 9/11/2024
2.1.761 284 9/11/2024
2.1.760 450 9/11/2024
2.1.759 42 9/11/2024
2.1.757 1,308 9/11/2024
2.1.756 363 9/11/2024
2.1.754 152 9/11/2024
2.1.753 242 9/11/2024
2.1.752 229 9/11/2024
2.1.751 392 9/11/2024
2.1.750 47 9/11/2024
2.1.749 879 9/11/2024
2.1.748 1,956 9/10/2024
2.1.747 1,082 9/10/2024
2.1.746 206 9/10/2024
2.1.745 177 9/10/2024
2.1.744 389 9/10/2024
2.1.743 61 9/10/2024
2.1.742 444 9/10/2024
2.1.741 59 9/10/2024
2.1.740 573 9/10/2024
2.1.738 222 9/10/2024
2.1.737 1,006 9/9/2024
2.1.736 58 9/9/2024
2.1.734 930 9/9/2024
2.1.733 56 9/9/2024
2.1.730 1,549 9/9/2024
2.1.729 60 9/9/2024
2.1.728 1,307 9/9/2024
2.1.727 1,627 9/9/2024
2.1.726 1,996 9/7/2024
2.1.725 440 9/7/2024
2.1.724 524 9/7/2024
2.1.723 711 9/6/2024
2.1.722 1,151 9/6/2024
2.1.721 683 9/6/2024
2.1.720 134 9/6/2024
2.1.719 687 9/6/2024
2.1.718 67 9/6/2024
2.1.717 322 9/6/2024
2.1.716 1,101 9/5/2024
2.1.715 63 9/5/2024
2.1.714 515 9/5/2024
2.1.713 64 9/5/2024
2.1.712 739 9/5/2024
2.1.711 180 9/5/2024
2.1.710 68 9/5/2024
2.1.709 2,113 9/5/2024
2.1.708 543 9/5/2024
2.1.707 67 9/5/2024
2.1.706 595 9/5/2024
2.1.705 844 9/5/2024
2.1.704 498 9/4/2024
2.1.703 67 9/4/2024
2.1.702 436 9/4/2024
2.1.701 64 9/4/2024
2.1.700 1,950 9/4/2024
2.1.699 292 9/4/2024
2.1.698 627 9/4/2024
2.1.697 482 9/3/2024
2.1.696 216 9/3/2024
2.1.695 66 9/3/2024
2.1.694 1,126 9/3/2024
2.1.693 1,256 9/3/2024
2.1.692 281 9/3/2024
2.1.691 494 9/3/2024
2.1.690 57 9/3/2024
2.1.689 691 9/3/2024
2.1.688 52 9/3/2024
2.1.687 325 9/3/2024
2.1.686 2,075 8/30/2024
2.1.685 196 8/29/2024
2.1.684 394 8/29/2024
2.1.683 745 8/29/2024
2.1.682 437 8/29/2024
2.1.681 62 8/29/2024
2.1.680 1,132 8/26/2024
2.1.679 391 8/26/2024
2.1.678 345 8/26/2024
2.1.677 989 8/26/2024
2.1.676 85 8/26/2024
2.1.675 1,078 8/21/2024
2.1.674 737 8/21/2024
2.1.673 461 8/21/2024
2.1.672 509 8/21/2024
2.1.671 88 8/21/2024
2.1.670 359 8/21/2024
2.1.669 93 8/21/2024
2.1.668 970 8/20/2024
2.1.667 101 8/20/2024
2.1.666 911 8/20/2024
2.1.665 82 8/20/2024
2.1.664 246 8/20/2024
2.1.663 891 8/20/2024
2.1.662 78 8/20/2024
2.1.661 252 8/20/2024
2.1.660 79 8/20/2024
2.1.659 1,010 8/20/2024
2.1.658 1,209 8/20/2024
2.1.657 656 8/19/2024
2.1.656 83 8/19/2024
2.1.655 1,345 8/15/2024
2.1.654 362 8/15/2024
2.1.653 377 8/15/2024
2.1.652 456 8/15/2024
2.1.651 565 8/15/2024
2.1.650 721 8/15/2024
2.1.649 1,774 8/14/2024
2.1.648 88 8/14/2024
2.1.647 567 8/14/2024
2.1.646 340 8/14/2024
2.1.645 161 8/13/2024
2.1.644 1,751 8/7/2024
2.1.643 202 8/7/2024
2.1.642 460 8/7/2024
2.1.641 291 8/7/2024
2.1.640 1,014 8/6/2024
2.1.639 115 8/6/2024
2.1.638 58 8/6/2024
2.1.637 614 8/6/2024
2.1.636 874 8/1/2024
2.1.635 413 8/1/2024
2.1.634 311 8/1/2024
2.1.633 180 8/1/2024
2.1.632 45 8/1/2024
2.1.631 413 8/1/2024
2.1.630 46 8/1/2024
2.1.629 576 8/1/2024
2.1.628 1,661 7/25/2024
2.1.627 261 7/25/2024
2.1.626 408 7/25/2024
2.1.625 461 7/25/2024
2.1.624 54 7/25/2024
2.1.623 327 7/25/2024
2.1.622 165 7/25/2024
2.1.621 181 7/25/2024
2.1.620 356 7/25/2024
2.1.619 108 7/24/2024
2.1.618 317 7/24/2024
2.1.617 137 7/24/2024
2.1.616 218 7/24/2024
2.1.615 3,017 7/20/2024
2.1.614 54 7/20/2024
2.1.612 344 7/20/2024
2.1.611 465 7/20/2024
2.1.610 369 7/20/2024
2.1.609 1,537 7/14/2024
2.1.608 313 7/14/2024
2.1.607 297 7/14/2024
2.1.606 610 7/14/2024
2.1.605 328 7/14/2024
2.1.604 57 7/14/2024
2.1.603 783 7/14/2024
2.1.602 149 7/14/2024
2.1.601 55 7/14/2024
2.1.600 1,492 7/10/2024
2.1.599 168 7/10/2024
2.1.598 154 7/10/2024
2.1.597 146 7/10/2024
2.1.596 132 7/10/2024
2.1.594 309 7/10/2024
2.1.593 815 7/10/2024
2.1.592 56 7/10/2024
2.1.591 561 7/10/2024
2.1.590 57 7/10/2024
2.1.589 52 7/10/2024
2.1.588 1,117 7/10/2024
2.1.587 45 7/10/2024
2.1.586 410 7/10/2024
2.1.585 64 7/10/2024
2.1.584 60 7/10/2024
2.1.583 66 7/10/2024
2.1.581 219 7/10/2024
2.1.580 62 7/10/2024
2.1.579 870 7/9/2024
2.1.578 56 7/9/2024
2.1.576 709 7/9/2024
2.1.575 49 7/9/2024
2.1.574 129 7/9/2024
2.1.573 2,156 7/9/2024
2.1.572 56 7/9/2024
2.1.571 582 7/9/2024
2.1.570 977 7/9/2024
2.1.569 105 7/9/2024
2.1.568 766 7/9/2024
2.1.567 686 7/9/2024
2.1.566 61 7/9/2024
2.1.565 510 7/9/2024
2.1.564 62 7/9/2024
2.1.563 706 7/9/2024
2.1.562 63 7/9/2024
2.1.560 425 7/8/2024
2.1.559 1,073 7/8/2024
2.1.558 70 7/8/2024
2.1.557 641 7/8/2024
2.1.556 881 7/8/2024
2.1.555 153 7/8/2024
2.1.554 641 7/8/2024
2.1.553 158 7/8/2024
2.1.552 68 7/8/2024
2.1.551 724 7/8/2024
2.1.550 557 7/7/2024
2.1.549 62 7/7/2024
2.1.548 464 7/7/2024
2.1.547 72 7/7/2024
2.1.546 152 7/7/2024
2.1.545 67 7/7/2024
2.1.544 800 7/7/2024
2.1.543 66 7/7/2024
2.1.542 790 7/7/2024
2.1.541 438 7/7/2024
2.1.540 1,502 7/5/2024
2.1.539 782 7/4/2024
2.1.538 740 7/3/2024
2.1.537 477 7/3/2024
2.1.536 337 7/3/2024
2.1.535 235 7/3/2024
2.1.534 912 7/3/2024
2.1.533 94 7/3/2024
2.1.532 762 7/3/2024
2.1.531 58 7/3/2024
2.1.530 515 7/3/2024
2.1.529 919 7/2/2024
2.1.528 925 6/30/2024
2.1.527 877 6/28/2024
2.1.526 431 6/27/2024
2.1.525 494 6/27/2024
2.1.524 544 6/27/2024
2.1.523 907 6/22/2024
2.1.522 659 6/22/2024
2.1.521 543 6/22/2024
2.1.520 82 6/22/2024
2.1.519 1,067 6/16/2024
2.1.518 381 6/16/2024
2.1.517 387 6/15/2024
2.1.516 646 6/15/2024
2.1.515 325 6/15/2024
2.1.514 329 6/15/2024
2.1.513 68 6/15/2024
2.1.512 993 6/15/2024
2.1.511 75 6/15/2024
2.1.510 789 6/15/2024
2.1.509 668 6/15/2024
2.1.508 335 6/14/2024
2.1.507 70 6/14/2024
2.1.506 2,319 6/4/2024
2.1.505 913 6/2/2024
2.1.504 134 6/2/2024
2.1.503 228 6/2/2024
2.1.502 232 6/1/2024
2.1.501 267 6/1/2024
2.1.500 485 6/1/2024
2.1.499 76 6/1/2024
2.1.498 612 6/1/2024
2.1.497 180 6/1/2024
2.1.496 76 6/1/2024
2.1.495 667 6/1/2024
2.1.494 74 6/1/2024
2.1.493 1,588 5/31/2024
2.1.492 450 5/31/2024
2.1.491 294 5/31/2024
2.1.490 451 5/31/2024
2.1.489 253 5/31/2024
2.1.488 597 5/31/2024
2.1.487 966 5/29/2024
2.1.486 370 5/29/2024
2.1.485 531 5/29/2024
2.1.484 455 5/29/2024
2.1.483 77 5/29/2024
2.1.482 1,037 5/28/2024
2.1.481 296 5/28/2024
2.1.480 302 5/28/2024
2.1.479 332 5/28/2024
2.1.478 53 5/28/2024
2.1.477 726 5/28/2024
2.1.476 54 5/28/2024
2.1.475 248 5/28/2024
2.1.474 976 5/27/2024
2.1.473 946 5/27/2024
2.1.472 354 5/27/2024
2.1.471 386 5/27/2024
2.1.470 650 5/26/2024
2.1.469 62 5/26/2024
2.1.468 911 5/26/2024
2.1.467 112 5/26/2024
2.1.466 305 5/26/2024
2.1.465 481 5/26/2024
2.1.464 800 5/26/2024
2.1.463 61 5/26/2024
2.1.462 529 5/26/2024
2.1.461 66 5/26/2024
2.1.460 189 5/25/2024
2.1.459 259 5/25/2024
2.1.458 62 5/25/2024
2.1.457 825 5/25/2024
2.1.456 64 5/25/2024
2.1.455 832 5/25/2024
2.1.454 64 5/25/2024
2.1.453 1,077 5/25/2024
2.1.452 100 5/25/2024
2.1.451 442 5/25/2024
2.1.450 63 5/25/2024
2.1.449 363 5/25/2024
2.1.448 1,357 5/23/2024
2.1.447 442 5/23/2024
2.1.446 466 5/23/2024
2.1.445 48 5/23/2024
2.1.444 512 5/23/2024
2.1.443 68 5/23/2024
2.1.442 447 5/23/2024
2.1.441 65 5/23/2024
2.1.440 669 5/23/2024
2.1.439 74 5/23/2024
2.1.438 481 5/22/2024
2.1.437 671 5/22/2024
2.1.436 67 5/22/2024
2.1.435 470 5/22/2024
2.1.434 74 5/22/2024
2.1.433 71 5/22/2024
2.1.432 756 5/22/2024
2.1.431 521 5/22/2024
2.1.430 892 5/19/2024
2.1.429 350 5/18/2024
2.1.428 375 5/18/2024
2.1.427 431 5/18/2024
2.1.426 277 5/18/2024
2.1.425 88 5/18/2024
2.1.424 613 5/17/2024
2.1.423 82 5/17/2024
2.1.422 405 5/17/2024
2.1.421 1,063 5/17/2024
2.1.420 82 5/17/2024
2.1.419 674 5/16/2024
2.1.418 339 5/16/2024
2.1.417 560 5/16/2024
2.1.416 89 5/16/2024
2.1.415 548 5/15/2024
2.1.414 81 5/15/2024
2.1.413 587 5/15/2024
2.1.412 1,022 5/14/2024
2.1.411 87 5/14/2024
2.1.410 1,152 5/13/2024
2.1.409 447 5/13/2024
2.1.408 335 5/13/2024
2.1.407 272 5/13/2024
2.1.406 61 5/13/2024
2.1.405 1,374 5/3/2024
2.1.404 630 4/30/2024
2.1.403 153 4/30/2024
2.1.402 369 4/30/2024
2.1.401 404 4/30/2024
2.1.400 547 4/30/2024
2.1.399 517 4/30/2024
2.1.398 334 4/29/2024
2.1.397 266 4/29/2024
2.1.396 84 4/29/2024
2.1.395 1,098 4/29/2024
2.1.394 371 4/29/2024
2.1.393 780 4/29/2024
2.1.392 213 4/28/2024
2.1.391 81 4/28/2024
2.1.390 620 4/28/2024
2.1.389 103 4/28/2024
2.1.388 694 4/28/2024
2.1.387 445 4/28/2024
2.1.386 79 4/28/2024
2.1.385 656 4/28/2024
2.1.384 81 4/28/2024
2.1.383 495 4/28/2024
2.1.382 81 4/28/2024
2.1.381 1,161 4/28/2024
2.1.380 612 4/27/2024
2.1.379 92 4/27/2024
2.1.378 87 4/27/2024
2.1.377 1,571 4/20/2024
2.1.376 588 4/20/2024
2.1.375 521 4/19/2024
2.1.374 268 4/19/2024
2.1.373 81 4/19/2024
2.1.372 1,000 4/19/2024
2.1.371 517 4/19/2024
2.1.370 487 4/19/2024
2.1.369 367 4/19/2024
2.1.368 132 4/18/2024
2.1.367 79 4/18/2024
2.1.366 1,132 4/15/2024
2.1.365 438 4/14/2024
2.1.364 506 4/13/2024
2.1.363 562 4/12/2024
2.1.362 87 4/12/2024
2.1.361 458 4/12/2024
2.1.360 274 4/12/2024
2.1.359 427 4/12/2024
2.1.358 89 4/12/2024
2.1.357 703 4/12/2024
2.1.356 102 4/12/2024
2.1.355 740 4/12/2024
2.1.354 88 4/12/2024
2.1.353 308 4/11/2024
2.1.352 462 4/11/2024
2.1.351 84 4/11/2024
2.1.350 616 4/10/2024
2.1.349 86 4/10/2024
2.1.348 607 4/9/2024
2.1.347 84 4/9/2024
2.1.346 1,282 4/2/2024
2.1.345 231 4/2/2024
2.1.344 292 4/1/2024
2.1.343 113 4/1/2024
2.1.342 815 3/29/2024
2.1.341 88 3/29/2024
2.1.340 680 3/25/2024
2.1.339 75 3/25/2024
2.1.338 580 3/25/2024
2.1.337 821 3/20/2024
2.1.336 96 3/20/2024
2.1.335 899 3/19/2024
2.1.334 94 3/19/2024
2.1.333 335 3/19/2024
2.1.332 342 3/19/2024
2.1.331 563 3/18/2024
2.1.330 89 3/18/2024
2.1.329 572 3/18/2024
2.1.328 601 3/16/2024
2.1.327 338 3/15/2024
2.1.326 719 3/13/2024
2.1.325 419 3/13/2024
2.1.324 135 3/13/2024
2.1.323 115 3/13/2024
2.1.322 536 3/13/2024
2.1.321 99 3/13/2024
2.1.320 315 3/13/2024
2.1.319 91 3/13/2024
2.1.318 87 3/13/2024
2.1.317 338 3/12/2024
2.1.316 95 3/12/2024
2.1.315 386 3/12/2024
2.1.314 467 3/12/2024
2.1.313 495 3/12/2024
2.1.312 339 3/11/2024
2.1.311 682 3/11/2024
2.1.310 285 3/11/2024
2.1.309 539 3/10/2024
2.1.308 93 3/10/2024
2.1.307 692 3/8/2024
2.1.306 193 3/8/2024
2.1.305 437 3/8/2024
2.1.304 78 3/8/2024
2.1.303 458 3/8/2024
2.1.302 82 3/8/2024
2.1.301 806 3/6/2024
2.1.300 98 3/6/2024
2.1.299 736 3/4/2024
2.1.298 414 3/4/2024
2.1.297 356 3/4/2024
2.1.296 106 3/4/2024
2.1.295 893 3/3/2024
2.1.294 185 3/2/2024
2.1.293 464 3/2/2024
2.1.292 96 3/2/2024
2.1.291 1,521 2/29/2024
2.1.290 310 2/29/2024
2.1.289 82 2/29/2024
2.1.288 176 2/29/2024
2.1.287 78 2/29/2024
2.1.286 519 2/29/2024
2.1.285 991 2/26/2024
2.1.284 93 2/26/2024
2.1.283 434 2/25/2024
2.1.282 157 2/25/2024
2.1.281 665 2/23/2024
2.1.280 383 2/23/2024
2.1.279 386 2/22/2024
2.1.278 195 2/22/2024
2.1.277 281 2/22/2024
2.1.276 95 2/22/2024
2.1.275 186 2/21/2024
2.1.274 99 2/21/2024
2.1.273 449 2/21/2024
2.1.272 107 2/21/2024
2.1.271 88 2/21/2024
2.1.270 477 2/21/2024
2.1.269 241 2/21/2024
2.1.268 96 2/21/2024
2.1.267 213 2/21/2024
2.1.266 85 2/21/2024
2.1.265 233 2/21/2024
2.1.264 89 2/21/2024
2.1.263 347 2/21/2024
2.1.262 431 2/20/2024
2.1.261 285 2/20/2024
2.1.260 121 2/20/2024
2.1.259 159 2/20/2024
2.1.258 367 2/20/2024
2.1.257 204 2/20/2024
2.1.256 261 2/19/2024
2.1.255 401 2/19/2024
2.1.254 83 2/19/2024
2.1.253 599 2/17/2024
2.1.252 80 2/17/2024
2.1.251 247 2/17/2024
2.1.250 365 2/16/2024
2.1.249 78 2/16/2024
2.1.248 283 2/16/2024
2.1.247 252 2/16/2024
2.1.246 83 2/16/2024
2.1.245 286 2/16/2024
2.1.244 78 2/16/2024
2.1.243 82 2/16/2024
2.1.242 310 2/16/2024
2.1.241 87 2/16/2024
2.1.240 890 2/13/2024
2.1.239 85 2/13/2024
2.1.238 500 2/13/2024
2.1.237 366 2/13/2024
2.1.236 172 2/13/2024
2.1.235 80 2/13/2024
2.1.234 143 2/13/2024
2.1.233 376 2/13/2024
2.1.232 96 2/13/2024
2.1.231 476 2/12/2024
2.1.230 329 2/12/2024
2.1.229 109 2/11/2024
2.1.228 97 2/11/2024
2.1.227 478 2/11/2024
2.1.226 238 2/11/2024
2.1.225 302 2/11/2024
2.1.224 191 2/11/2024
2.1.223 718 2/10/2024
2.1.222 161 2/10/2024
2.1.221 221 2/9/2024
2.1.220 260 2/9/2024
2.1.219 419 2/9/2024
2.1.218 306 2/9/2024
2.1.217 352 2/9/2024
2.1.216 94 2/9/2024
2.1.215 267 2/8/2024
2.1.214 356 2/8/2024
2.1.213 96 2/8/2024
2.1.212 289 2/8/2024
2.1.211 144 2/8/2024
2.1.210 435 2/8/2024
2.1.209 119 2/8/2024
2.1.208 547 2/7/2024
2.1.207 100 2/7/2024
2.1.206 134 2/7/2024
2.1.205 370 2/7/2024
2.1.204 254 2/7/2024
2.1.203 94 2/7/2024
2.1.202 253 2/7/2024
2.1.201 94 2/7/2024
2.1.200 377 2/6/2024
2.1.199 92 2/6/2024
2.1.198 699 2/5/2024
2.1.197 89 2/5/2024
2.1.196 445 2/4/2024
2.1.195 153 2/4/2024
2.1.194 643 2/2/2024
2.1.193 91 2/2/2024
2.1.192 585 1/31/2024
2.1.191 98 1/31/2024
2.1.190 447 1/30/2024
2.1.189 391 1/29/2024
2.1.188 308 1/29/2024
2.1.187 85 1/29/2024
2.1.186 84 1/29/2024
2.1.185 363 1/29/2024
2.1.184 250 1/29/2024
2.1.183 77 1/29/2024
2.1.182 246 1/28/2024
2.1.181 87 1/28/2024
2.1.180 183 1/28/2024
2.1.179 349 1/28/2024
2.1.178 86 1/28/2024
2.1.177 198 1/28/2024
2.1.176 239 1/28/2024
2.1.175 85 1/28/2024
2.1.174 580 1/28/2024
2.1.173 137 1/27/2024
2.1.172 90 1/27/2024
2.1.171 413 1/27/2024
2.1.170 85 1/27/2024
2.1.169 176 1/27/2024
2.1.168 94 1/27/2024
2.1.167 386 1/27/2024
2.1.166 85 1/27/2024
2.1.165 423 1/27/2024
2.1.164 88 1/27/2024
2.1.163 181 1/27/2024
2.1.162 107 1/26/2024
2.1.161 80 1/26/2024
2.1.160 558 1/26/2024
2.1.159 87 1/26/2024
2.1.158 386 1/26/2024
2.1.157 78 1/26/2024
2.1.156 177 1/26/2024
2.1.155 181 1/26/2024
2.1.154 84 1/26/2024
2.1.153 141 1/26/2024
2.1.152 78 1/26/2024
2.1.151 543 1/25/2024
2.1.150 89 1/25/2024
2.1.149 264 1/25/2024
2.1.148 86 1/25/2024
2.1.147 485 1/25/2024
2.1.146 153 1/25/2024
2.1.145 83 1/25/2024
2.1.144 249 1/25/2024
2.1.143 652 1/19/2024
2.1.142 87 1/19/2024
2.1.141 563 1/15/2024
2.1.140 120 1/15/2024
2.1.139 96 1/15/2024
2.1.138 483 1/15/2024
2.1.137 98 1/15/2024
2.1.136 227 1/15/2024
2.1.135 98 1/15/2024
2.1.134 360 1/15/2024
2.1.133 222 1/15/2024
2.1.132 653 1/14/2024
2.1.131 90 1/14/2024
2.1.130 496 1/13/2024
2.1.129 92 1/13/2024
2.1.128 520 1/12/2024
2.1.127 96 1/12/2024
2.1.126 497 1/11/2024
2.1.125 367 1/11/2024
2.1.124 618 1/8/2024
2.1.123 267 1/7/2024
2.1.122 467 1/5/2024
2.1.121 230 1/5/2024
2.1.120 95 1/5/2024
2.1.119 381 1/5/2024
2.1.118 375 1/5/2024
2.1.117 100 1/5/2024
2.1.116 567 1/3/2024
2.1.115 122 1/3/2024
2.1.114 361 1/1/2024
2.1.113 148 1/1/2024
2.1.112 651 12/30/2023
2.1.111 230 12/28/2023
2.1.110 182 12/28/2023
2.1.109 227 12/28/2023
2.1.108 198 12/28/2023
2.1.107 117 12/28/2023
2.1.106 431 12/28/2023
2.1.105 181 12/27/2023
2.1.104 108 12/27/2023
2.1.103 133 12/27/2023
2.1.102 100 12/27/2023
2.1.101 574 12/25/2023
2.1.100 90 12/25/2023
2.1.99 218 12/25/2023
2.1.98 106 12/25/2023
2.1.97 332 12/25/2023
2.1.96 247 12/25/2023
2.1.95 158 12/25/2023
2.1.94 102 12/25/2023
2.1.93 129 12/25/2023
2.1.92 125 12/25/2023
2.1.91 538 12/24/2023
2.1.90 183 12/24/2023
2.1.89 328 12/23/2023
2.1.88 146 12/23/2023
2.1.87 103 12/23/2023
2.1.86 215 12/23/2023
2.1.85 101 12/23/2023
2.1.84 339 12/23/2023
2.1.83 103 12/23/2023
2.1.82 371 12/23/2023
2.1.81 106 12/23/2023
2.1.80 207 12/23/2023
2.1.79 453 12/19/2023
2.1.78 100 12/19/2023
2.1.77 181 12/19/2023
2.1.76 795 12/11/2023
2.1.75 226 12/11/2023
2.1.74 244 12/10/2023
2.1.73 183 12/10/2023
2.1.72 130 12/10/2023
2.1.71 406 12/10/2023
2.1.70 144 12/9/2023
2.1.69 203 12/9/2023
2.1.68 222 12/9/2023
2.1.67 134 12/9/2023
2.1.66 147 12/9/2023
2.1.65 195 12/9/2023
2.1.64 107 12/9/2023
2.1.63 289 12/9/2023
2.1.62 412 12/6/2023
2.1.61 173 12/6/2023
2.1.60 201 12/6/2023
2.1.59 144 12/6/2023
2.1.58 231 12/5/2023
2.1.57 213 12/5/2023
2.1.56 150 12/5/2023
2.1.55 176 12/5/2023
2.1.54 171 12/5/2023
2.1.53 124 12/5/2023
2.1.52 183 12/5/2023
2.1.51 132 12/4/2023
2.1.50 112 12/4/2023
2.1.49 339 12/4/2023
2.1.48 112 12/4/2023
2.1.47 104 12/4/2023
2.1.46 315 11/28/2023
2.1.45 130 11/27/2023
2.1.44 159 11/27/2023
2.1.43 123 11/26/2023
2.1.42 197 11/23/2023
2.1.41 116 11/23/2023
2.1.40 260 11/23/2023
2.1.39 223 11/23/2023
2.1.38 178 11/23/2023
2.1.37 123 11/23/2023
2.1.36 149 11/23/2023
2.1.35 348 11/22/2023
2.1.34 147 11/20/2023
2.1.33 161 11/20/2023
2.1.32 203 11/20/2023
2.1.31 113 11/20/2023
2.1.30 215 11/19/2023
2.1.29 110 11/19/2023
2.1.28 141 11/19/2023
2.1.27 120 11/19/2023
2.1.26 190 11/19/2023
2.1.25 121 11/19/2023
2.1.24 130 11/19/2023
2.1.23 113 11/19/2023
2.1.22 113 11/19/2023
2.1.21 228 11/18/2023
2.1.20 126 11/18/2023
2.1.19 118 11/18/2023
2.1.18 113 11/18/2023
2.1.17 110 11/18/2023
2.1.16 121 11/17/2023
2.1.15 109 11/17/2023
2.1.14 116 11/17/2023
2.1.13 122 11/17/2023
2.1.12 147 11/17/2023
2.1.11 99 11/17/2023
2.1.10 116 11/17/2023
2.1.9 116 11/17/2023
2.1.8 133 11/17/2023
2.1.7 123 11/17/2023
2.1.6 143 11/17/2023
2.1.5 121 11/17/2023
2.1.4 119 11/16/2023
2.1.3 117 11/16/2023
2.0.37 556 11/15/2023
2.0.36 115 11/15/2023
2.0.35 115 11/15/2023
2.0.34 118 11/15/2023
1.0.33 119 11/14/2023
1.0.32 105 11/14/2023
1.0.31 285 11/13/2023
1.0.30 107 11/13/2023
1.0.29 138 11/10/2023
1.0.28 113 11/10/2023
1.0.27 113 11/9/2023
1.0.26 112 11/9/2023
1.0.25 110 11/9/2023
1.0.24 110 11/7/2023
1.0.23 110 11/7/2023
1.0.22 106 11/6/2023
1.0.21 114 11/6/2023
1.0.20 135 11/3/2023
1.0.19 119 11/3/2023
1.0.18 132 11/2/2023
1.0.17 117 11/2/2023
1.0.16 126 11/1/2023
1.0.15 118 11/1/2023
1.0.14 155 10/26/2023
1.0.13 132 10/26/2023
1.0.12 153 10/19/2023
1.0.11 146 10/19/2023
1.0.10 145 10/18/2023
1.0.9 146 10/18/2023
1.0.8 147 10/17/2023
1.0.7 131 10/17/2023
1.0.6 165 10/16/2023
1.0.5 161 10/16/2023
1.0.4 159 10/13/2023
1.0.3 152 10/13/2023
1.0.2 152 10/12/2023
1.0.1 177 10/1/2023