Soenneker.Utils.HttpClientCache 3.0.1026

Prefix Reserved
dotnet add package Soenneker.Utils.HttpClientCache --version 3.0.1026                
NuGet\Install-Package Soenneker.Utils.HttpClientCache -Version 3.0.1026                
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="3.0.1026" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Utils.HttpClientCache --version 3.0.1026                
#r "nuget: Soenneker.Utils.HttpClientCache, 3.0.1026"                
#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=3.0.1026

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

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 net9.0 is compatible. 
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.HttpClientCache:

Package Downloads
Soenneker.Cosmos.Client

A utility library for Azure Cosmos client accessibility

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.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
3.0.1026 25 11/21/2024
3.0.1025 167 11/21/2024
3.0.1024 142 11/21/2024
3.0.1023 304 11/20/2024
3.0.1022 923 11/20/2024
3.0.1021 322 11/20/2024
3.0.1020 86 11/20/2024
3.0.1019 78 11/20/2024
3.0.1018 115 11/20/2024
3.0.1017 25 11/20/2024
3.0.1016 79 11/20/2024
3.0.1015 28 11/20/2024
3.0.1014 995 11/20/2024
3.0.1013 353 11/20/2024
3.0.1012 28 11/20/2024
3.0.1011 411 11/20/2024
3.0.1010 485 11/20/2024
3.0.1009 66 11/19/2024
3.0.1008 508 11/19/2024
3.0.1007 28 11/19/2024
3.0.1006 1,449 11/19/2024
3.0.1005 28 11/19/2024
3.0.1004 31 11/19/2024
3.0.1003 595 11/19/2024
3.0.1002 26 11/19/2024
3.0.1001 2,267 11/19/2024
3.0.1000 41 11/19/2024
3.0.999 2,655 11/15/2024
3.0.998 457 11/15/2024
3.0.997 700 11/14/2024
3.0.996 103 11/14/2024
3.0.995 58 11/14/2024
3.0.993 1,095 11/14/2024
3.0.992 67 11/14/2024
3.0.991 1,009 11/14/2024
3.0.990 94 11/14/2024
3.0.989 2,284 11/14/2024
3.0.988 68 11/14/2024
3.0.987 1,924 11/14/2024
3.0.986 70 11/14/2024
3.0.985 1,216 11/14/2024
3.0.984 304 11/14/2024
3.0.983 62 11/14/2024
3.0.982 733 11/14/2024
2.1.981 1,684 11/13/2024
2.1.980 2,049 11/13/2024
2.1.979 634 11/13/2024
2.1.978 737 11/13/2024
2.1.977 1,222 11/13/2024
2.1.976 62 11/13/2024
2.1.975 1,213 11/13/2024
2.1.974 70 11/13/2024
2.1.973 954 11/13/2024
2.1.972 310 11/12/2024
2.1.971 66 11/12/2024
2.1.970 1,803 11/12/2024
2.1.969 3,353 11/9/2024
2.1.968 806 11/9/2024
2.1.967 819 11/9/2024
2.1.966 75 11/9/2024
2.1.965 529 11/9/2024
2.1.964 88 11/9/2024
2.1.963 66 11/9/2024
2.1.962 971 11/8/2024
2.1.961 63 11/8/2024
2.1.960 227 11/8/2024
2.1.959 69 11/8/2024
2.1.958 76 11/8/2024
2.1.957 1,229 11/8/2024
2.1.956 3,219 11/8/2024
2.1.955 1,902 11/8/2024
2.1.954 65 11/8/2024
2.1.953 751 11/8/2024
2.1.952 4,113 11/6/2024
2.1.951 1,726 11/5/2024
2.1.950 1,416 11/1/2024
2.1.949 240 11/1/2024
2.1.948 1,193 11/1/2024
2.1.947 573 11/1/2024
2.1.946 2,455 10/29/2024
2.1.945 493 10/29/2024
2.1.944 64 10/29/2024
2.1.943 501 10/29/2024
2.1.942 603 10/29/2024
2.1.941 1,002 10/29/2024
2.1.939 1,616 10/29/2024
2.1.938 271 10/29/2024
2.1.937 62 10/29/2024
2.1.936 2,596 10/29/2024
2.1.935 60 10/29/2024
2.1.934 600 10/28/2024
2.1.933 1,214 10/28/2024
2.1.932 1,987 10/26/2024
2.1.931 220 10/26/2024
2.1.930 722 10/26/2024
2.1.929 948 10/26/2024
2.1.928 2,250 10/22/2024
2.1.927 632 10/22/2024
2.1.926 1,103 10/22/2024
2.1.925 491 10/22/2024
2.1.924 341 10/22/2024
2.1.923 784 10/22/2024
2.1.922 589 10/22/2024
2.1.921 62 10/22/2024
2.1.920 1,006 10/22/2024
2.1.919 2,046 10/18/2024
2.1.918 409 10/18/2024
2.1.917 672 10/17/2024
2.1.916 1,194 10/17/2024
2.1.915 67 10/17/2024
2.1.914 1,529 10/15/2024
2.1.913 516 10/15/2024
2.1.912 320 10/15/2024
2.1.911 765 10/15/2024
2.1.910 576 10/14/2024
2.1.909 73 10/14/2024
2.1.908 2,143 10/12/2024
2.1.907 441 10/12/2024
2.1.906 754 10/12/2024
2.1.905 742 10/11/2024
2.1.904 73 10/11/2024
2.1.903 1,231 10/11/2024
2.1.902 75 10/11/2024
2.1.901 1,943 10/9/2024
2.1.900 480 10/9/2024
2.1.899 1,179 10/9/2024
2.1.898 817 10/9/2024
2.1.897 796 10/9/2024
2.1.896 261 10/9/2024
2.1.895 77 10/9/2024
2.1.894 532 10/8/2024
2.1.893 852 10/8/2024
2.1.892 145 10/8/2024
2.1.891 1,096 10/8/2024
2.1.890 1,768 10/8/2024
2.1.889 77 10/8/2024
2.1.888 1,395 10/8/2024
2.1.887 1,441 10/4/2024
2.1.886 815 10/3/2024
2.1.885 917 10/3/2024
2.1.884 259 10/3/2024
2.1.883 591 10/3/2024
2.1.882 72 10/3/2024
2.1.881 942 10/3/2024
2.1.880 72 10/3/2024
2.1.879 524 10/3/2024
2.1.878 1,066 10/3/2024
2.1.877 394 10/3/2024
2.1.876 1,287 10/2/2024
2.1.875 638 10/2/2024
2.1.874 418 10/2/2024
2.1.873 952 10/2/2024
2.1.872 70 10/2/2024
2.1.871 77 10/2/2024
2.1.870 1,094 10/2/2024
2.1.869 522 10/2/2024
2.1.868 70 10/2/2024
2.1.867 332 10/2/2024
2.1.866 1,156 10/2/2024
2.1.865 99 10/2/2024
2.1.864 1,717 10/1/2024
2.1.863 726 10/1/2024
2.1.862 558 10/1/2024
2.1.861 893 10/1/2024
2.1.860 72 10/1/2024
2.1.859 648 10/1/2024
2.1.858 307 10/1/2024
2.1.857 71 10/1/2024
2.1.856 757 10/1/2024
2.1.855 74 10/1/2024
2.1.854 2,549 9/29/2024
2.1.853 257 9/29/2024
2.1.852 379 9/29/2024
2.1.851 686 9/29/2024
2.1.850 437 9/29/2024
2.1.849 797 9/29/2024
2.1.848 67 9/29/2024
2.1.847 538 9/29/2024
2.1.846 80 9/29/2024
2.1.845 974 9/29/2024
2.1.844 69 9/29/2024
2.1.843 2,022 9/27/2024
2.1.842 502 9/27/2024
2.1.841 625 9/27/2024
2.1.839 476 9/27/2024
2.1.838 80 9/27/2024
2.1.837 2,016 9/27/2024
2.1.836 822 9/27/2024
2.1.835 72 9/27/2024
2.1.834 1,097 9/27/2024
2.1.833 267 9/27/2024
2.1.832 73 9/27/2024
2.1.831 1,640 9/27/2024
2.1.830 426 9/27/2024
2.1.829 1,059 9/26/2024
2.1.828 1,216 9/26/2024
2.1.827 72 9/26/2024
2.1.826 1,332 9/26/2024
2.1.825 82 9/26/2024
2.1.824 606 9/26/2024
2.1.823 73 9/26/2024
2.1.822 362 9/26/2024
2.1.821 450 9/26/2024
2.1.820 1,136 9/26/2024
2.1.819 76 9/26/2024
2.1.818 1,462 9/26/2024
2.1.817 1,816 9/25/2024
2.1.816 1,518 9/23/2024
2.1.815 182 9/23/2024
2.1.814 410 9/23/2024
2.1.813 84 9/23/2024
2.1.812 662 9/23/2024
2.1.811 78 9/23/2024
2.1.810 626 9/23/2024
2.1.809 80 9/23/2024
2.1.808 666 9/23/2024
2.1.807 849 9/23/2024
2.1.806 85 9/23/2024
2.1.805 2,233 9/23/2024
2.1.804 1,036 9/23/2024
2.1.803 80 9/23/2024
2.1.802 1,174 9/23/2024
2.1.801 77 9/23/2024
2.1.800 1,169 9/23/2024
2.1.799 71 9/23/2024
2.1.798 604 9/23/2024
2.1.797 75 9/23/2024
2.1.796 3,110 9/18/2024
2.1.795 471 9/18/2024
2.1.794 733 9/18/2024
2.1.793 481 9/18/2024
2.1.792 568 9/18/2024
2.1.791 145 9/18/2024
2.1.790 413 9/17/2024
2.1.789 87 9/17/2024
2.1.788 586 9/17/2024
2.1.787 90 9/17/2024
2.1.786 641 9/17/2024
2.1.785 140 9/17/2024
2.1.784 1,176 9/17/2024
2.1.783 539 9/17/2024
2.1.782 829 9/17/2024
2.1.781 90 9/17/2024
2.1.780 112 9/17/2024
2.1.779 88 9/17/2024
2.1.778 1,150 9/17/2024
2.1.777 475 9/17/2024
2.1.776 502 9/17/2024
2.1.775 89 9/17/2024
2.1.774 1,255 9/17/2024
2.1.773 4,441 9/16/2024
2.1.772 599 9/16/2024
2.1.771 375 9/16/2024
2.1.770 671 9/16/2024
2.1.769 612 9/16/2024
2.1.768 1,961 9/12/2024
2.1.767 485 9/12/2024
2.1.766 575 9/12/2024
2.1.765 1,113 9/12/2024
2.1.764 656 9/12/2024
2.1.763 95 9/12/2024
2.1.762 1,136 9/11/2024
2.1.761 547 9/11/2024
2.1.760 894 9/11/2024
2.1.759 91 9/11/2024
2.1.757 2,075 9/11/2024
2.1.756 603 9/11/2024
2.1.754 288 9/11/2024
2.1.753 358 9/11/2024
2.1.752 363 9/11/2024
2.1.751 629 9/11/2024
2.1.750 99 9/11/2024
2.1.749 1,480 9/11/2024
2.1.748 3,322 9/10/2024
2.1.747 1,758 9/10/2024
2.1.746 299 9/10/2024
2.1.745 235 9/10/2024
2.1.744 565 9/10/2024
2.1.743 84 9/10/2024
2.1.742 634 9/10/2024
2.1.741 88 9/10/2024
2.1.740 801 9/10/2024
2.1.738 304 9/10/2024
2.1.737 1,219 9/9/2024
2.1.736 82 9/9/2024
2.1.734 1,268 9/9/2024
2.1.733 84 9/9/2024
2.1.730 2,032 9/9/2024
2.1.729 84 9/9/2024
2.1.728 1,735 9/9/2024
2.1.727 2,068 9/9/2024
2.1.726 2,727 9/7/2024
2.1.725 591 9/7/2024
2.1.724 708 9/7/2024
2.1.723 957 9/6/2024
2.1.722 1,523 9/6/2024
2.1.721 919 9/6/2024
2.1.720 184 9/6/2024
2.1.719 900 9/6/2024
2.1.718 94 9/6/2024
2.1.717 423 9/6/2024
2.1.716 1,459 9/5/2024
2.1.715 87 9/5/2024
2.1.714 669 9/5/2024
2.1.713 92 9/5/2024
2.1.712 964 9/5/2024
2.1.711 240 9/5/2024
2.1.710 93 9/5/2024
2.1.709 2,794 9/5/2024
2.1.708 719 9/5/2024
2.1.707 93 9/5/2024
2.1.706 780 9/5/2024
2.1.705 1,104 9/5/2024
2.1.704 669 9/4/2024
2.1.703 90 9/4/2024
2.1.702 589 9/4/2024
2.1.701 87 9/4/2024
2.1.700 2,572 9/4/2024
2.1.699 404 9/4/2024
2.1.698 828 9/4/2024
2.1.697 648 9/3/2024
2.1.696 287 9/3/2024
2.1.695 90 9/3/2024
2.1.694 1,538 9/3/2024
2.1.693 1,678 9/3/2024
2.1.692 379 9/3/2024
2.1.691 686 9/3/2024
2.1.690 83 9/3/2024
2.1.689 942 9/3/2024
2.1.688 78 9/3/2024
2.1.687 419 9/3/2024
2.1.686 2,812 8/30/2024
2.1.685 276 8/29/2024
2.1.684 546 8/29/2024
2.1.683 1,020 8/29/2024
2.1.682 597 8/29/2024
2.1.681 81 8/29/2024
2.1.680 1,520 8/26/2024
2.1.679 546 8/26/2024
2.1.678 458 8/26/2024
2.1.677 1,352 8/26/2024
2.1.676 103 8/26/2024
2.1.675 1,423 8/21/2024
2.1.674 978 8/21/2024
2.1.673 605 8/21/2024
2.1.672 701 8/21/2024
2.1.671 111 8/21/2024
2.1.670 485 8/21/2024
2.1.669 112 8/21/2024
2.1.668 1,358 8/20/2024
2.1.667 118 8/20/2024
2.1.666 1,245 8/20/2024
2.1.665 103 8/20/2024
2.1.664 327 8/20/2024
2.1.663 1,191 8/20/2024
2.1.662 98 8/20/2024
2.1.661 320 8/20/2024
2.1.660 98 8/20/2024
2.1.659 1,387 8/20/2024
2.1.658 1,637 8/20/2024
2.1.657 894 8/19/2024
2.1.656 107 8/19/2024
2.1.655 1,780 8/15/2024
2.1.654 479 8/15/2024
2.1.653 501 8/15/2024
2.1.652 605 8/15/2024
2.1.651 761 8/15/2024
2.1.650 927 8/15/2024
2.1.649 2,350 8/14/2024
2.1.648 106 8/14/2024
2.1.647 754 8/14/2024
2.1.646 438 8/14/2024
2.1.645 209 8/13/2024
2.1.644 2,343 8/7/2024
2.1.643 265 8/7/2024
2.1.642 637 8/7/2024
2.1.641 382 8/7/2024
2.1.640 1,397 8/6/2024
2.1.639 156 8/6/2024
2.1.638 75 8/6/2024
2.1.637 873 8/6/2024
2.1.636 1,266 8/1/2024
2.1.635 591 8/1/2024
2.1.634 442 8/1/2024
2.1.633 259 8/1/2024
2.1.632 67 8/1/2024
2.1.631 628 8/1/2024
2.1.630 67 8/1/2024
2.1.629 854 8/1/2024
2.1.628 2,339 7/25/2024
2.1.627 346 7/25/2024
2.1.626 571 7/25/2024
2.1.625 620 7/25/2024
2.1.624 69 7/25/2024
2.1.623 436 7/25/2024
2.1.622 223 7/25/2024
2.1.621 282 7/25/2024
2.1.620 510 7/25/2024
2.1.619 143 7/24/2024
2.1.618 464 7/24/2024
2.1.617 173 7/24/2024
2.1.616 307 7/24/2024
2.1.615 4,088 7/20/2024
2.1.614 70 7/20/2024
2.1.612 497 7/20/2024
2.1.611 638 7/20/2024
2.1.610 531 7/20/2024
2.1.609 2,085 7/14/2024
2.1.608 431 7/14/2024
2.1.607 418 7/14/2024
2.1.606 834 7/14/2024
2.1.605 456 7/14/2024
2.1.604 76 7/14/2024
2.1.603 1,090 7/14/2024
2.1.602 198 7/14/2024
2.1.601 70 7/14/2024
2.1.600 2,050 7/10/2024
2.1.599 217 7/10/2024
2.1.598 198 7/10/2024
2.1.597 189 7/10/2024
2.1.596 170 7/10/2024
2.1.594 375 7/10/2024
2.1.593 1,052 7/10/2024
2.1.592 72 7/10/2024
2.1.591 686 7/10/2024
2.1.590 104 7/10/2024
2.1.589 69 7/10/2024
2.1.588 1,560 7/10/2024
2.1.587 59 7/10/2024
2.1.586 572 7/10/2024
2.1.585 78 7/10/2024
2.1.584 75 7/10/2024
2.1.583 79 7/10/2024
2.1.581 272 7/10/2024
2.1.580 77 7/10/2024
2.1.579 1,127 7/9/2024
2.1.578 69 7/9/2024
2.1.576 962 7/9/2024
2.1.575 68 7/9/2024
2.1.574 155 7/9/2024
2.1.573 2,915 7/9/2024
2.1.572 75 7/9/2024
2.1.571 804 7/9/2024
2.1.570 1,379 7/9/2024
2.1.569 142 7/9/2024
2.1.568 1,073 7/9/2024
2.1.567 949 7/9/2024
2.1.566 75 7/9/2024
2.1.565 705 7/9/2024
2.1.564 78 7/9/2024
2.1.563 969 7/9/2024
2.1.562 78 7/9/2024
2.1.560 597 7/8/2024
2.1.559 1,400 7/8/2024
2.1.558 86 7/8/2024
2.1.557 886 7/8/2024
2.1.556 1,201 7/8/2024
2.1.555 199 7/8/2024
2.1.554 889 7/8/2024
2.1.553 211 7/8/2024
2.1.552 89 7/8/2024
2.1.551 1,018 7/8/2024
2.1.550 736 7/7/2024
2.1.549 75 7/7/2024
2.1.548 628 7/7/2024
2.1.547 87 7/7/2024
2.1.546 191 7/7/2024
2.1.545 86 7/7/2024
2.1.544 1,098 7/7/2024
2.1.543 83 7/7/2024
2.1.542 1,096 7/7/2024
2.1.541 548 7/7/2024
2.1.540 2,094 7/5/2024
2.1.539 1,100 7/4/2024
2.1.538 1,045 7/3/2024
2.1.537 658 7/3/2024
2.1.536 450 7/3/2024
2.1.535 305 7/3/2024
2.1.534 1,297 7/3/2024
2.1.533 120 7/3/2024
2.1.532 1,071 7/3/2024
2.1.531 73 7/3/2024
2.1.530 737 7/3/2024
2.1.529 1,287 7/2/2024
2.1.528 1,249 6/30/2024
2.1.527 1,219 6/28/2024
2.1.526 576 6/27/2024
2.1.525 655 6/27/2024
2.1.524 744 6/27/2024
2.1.523 1,213 6/22/2024
2.1.522 871 6/22/2024
2.1.521 747 6/22/2024
2.1.520 94 6/22/2024
2.1.519 1,396 6/16/2024
2.1.518 506 6/16/2024
2.1.517 508 6/15/2024
2.1.516 865 6/15/2024
2.1.515 424 6/15/2024
2.1.514 436 6/15/2024
2.1.513 87 6/15/2024
2.1.512 1,329 6/15/2024
2.1.511 87 6/15/2024
2.1.510 1,064 6/15/2024
2.1.509 907 6/15/2024
2.1.508 429 6/14/2024
2.1.507 83 6/14/2024
2.1.506 3,128 6/4/2024
2.1.505 1,220 6/2/2024
2.1.504 171 6/2/2024
2.1.503 299 6/2/2024
2.1.502 298 6/1/2024
2.1.501 354 6/1/2024
2.1.500 645 6/1/2024
2.1.499 88 6/1/2024
2.1.498 803 6/1/2024
2.1.497 223 6/1/2024
2.1.496 91 6/1/2024
2.1.495 895 6/1/2024
2.1.494 87 6/1/2024
2.1.493 2,150 5/31/2024
2.1.492 595 5/31/2024
2.1.491 393 5/31/2024
2.1.490 591 5/31/2024
2.1.489 352 5/31/2024
2.1.488 814 5/31/2024
2.1.487 1,283 5/29/2024
2.1.486 492 5/29/2024
2.1.485 701 5/29/2024
2.1.484 597 5/29/2024
2.1.483 90 5/29/2024
2.1.482 1,415 5/28/2024
2.1.481 406 5/28/2024
2.1.480 409 5/28/2024
2.1.479 444 5/28/2024
2.1.478 66 5/28/2024
2.1.477 972 5/28/2024
2.1.476 66 5/28/2024
2.1.475 336 5/28/2024
2.1.474 1,302 5/27/2024
2.1.473 1,274 5/27/2024
2.1.472 479 5/27/2024
2.1.471 526 5/27/2024
2.1.470 891 5/26/2024
2.1.469 75 5/26/2024
2.1.468 1,220 5/26/2024
2.1.467 140 5/26/2024
2.1.466 404 5/26/2024
2.1.465 665 5/26/2024
2.1.464 1,087 5/26/2024
2.1.463 75 5/26/2024
2.1.462 709 5/26/2024
2.1.461 80 5/26/2024
2.1.460 235 5/25/2024
2.1.459 345 5/25/2024
2.1.458 75 5/25/2024
2.1.457 1,124 5/25/2024
2.1.456 78 5/25/2024
2.1.455 1,110 5/25/2024
2.1.454 81 5/25/2024
2.1.453 1,443 5/25/2024
2.1.452 113 5/25/2024
2.1.451 560 5/25/2024
2.1.450 75 5/25/2024
2.1.449 467 5/25/2024
2.1.448 1,857 5/23/2024
2.1.447 582 5/23/2024
2.1.446 636 5/23/2024
2.1.445 61 5/23/2024
2.1.444 677 5/23/2024
2.1.443 83 5/23/2024
2.1.442 595 5/23/2024
2.1.441 78 5/23/2024
2.1.440 906 5/23/2024
2.1.439 87 5/23/2024
2.1.438 637 5/22/2024
2.1.437 892 5/22/2024
2.1.436 83 5/22/2024
2.1.435 641 5/22/2024
2.1.434 89 5/22/2024
2.1.433 86 5/22/2024
2.1.432 1,051 5/22/2024
2.1.431 700 5/22/2024
2.1.430 1,216 5/19/2024
2.1.429 471 5/18/2024
2.1.428 507 5/18/2024
2.1.427 561 5/18/2024
2.1.426 372 5/18/2024
2.1.425 103 5/18/2024
2.1.424 818 5/17/2024
2.1.423 101 5/17/2024
2.1.422 520 5/17/2024
2.1.421 1,422 5/17/2024
2.1.420 97 5/17/2024
2.1.419 912 5/16/2024
2.1.418 419 5/16/2024
2.1.417 752 5/16/2024
2.1.416 105 5/16/2024
2.1.415 750 5/15/2024
2.1.414 93 5/15/2024
2.1.413 798 5/15/2024
2.1.412 1,364 5/14/2024
2.1.411 105 5/14/2024
2.1.410 1,601 5/13/2024
2.1.409 607 5/13/2024
2.1.408 481 5/13/2024
2.1.407 369 5/13/2024
2.1.406 75 5/13/2024
2.1.405 1,846 5/3/2024
2.1.404 880 4/30/2024
2.1.403 187 4/30/2024
2.1.402 461 4/30/2024
2.1.401 518 4/30/2024
2.1.400 727 4/30/2024
2.1.399 648 4/30/2024
2.1.398 454 4/29/2024
2.1.397 340 4/29/2024
2.1.396 96 4/29/2024
2.1.395 1,494 4/29/2024
2.1.394 489 4/29/2024
2.1.393 1,051 4/29/2024
2.1.392 289 4/28/2024
2.1.391 97 4/28/2024
2.1.390 819 4/28/2024
2.1.389 114 4/28/2024
2.1.388 909 4/28/2024
2.1.387 586 4/28/2024
2.1.386 99 4/28/2024
2.1.385 918 4/28/2024
2.1.384 95 4/28/2024
2.1.383 628 4/28/2024
2.1.382 95 4/28/2024
2.1.381 1,548 4/28/2024
2.1.380 809 4/27/2024
2.1.379 105 4/27/2024
2.1.378 104 4/27/2024
2.1.377 2,069 4/20/2024
2.1.376 786 4/20/2024
2.1.375 691 4/19/2024
2.1.374 352 4/19/2024
2.1.373 95 4/19/2024
2.1.372 1,348 4/19/2024
2.1.371 689 4/19/2024
2.1.370 677 4/19/2024
2.1.369 466 4/19/2024
2.1.368 153 4/18/2024
2.1.367 101 4/18/2024
2.1.366 1,482 4/15/2024
2.1.365 574 4/14/2024
2.1.364 663 4/13/2024
2.1.363 759 4/12/2024
2.1.362 101 4/12/2024
2.1.361 598 4/12/2024
2.1.360 339 4/12/2024
2.1.359 581 4/12/2024
2.1.358 101 4/12/2024
2.1.357 933 4/12/2024
2.1.356 118 4/12/2024
2.1.355 991 4/12/2024
2.1.354 105 4/12/2024
2.1.353 390 4/11/2024
2.1.352 588 4/11/2024
2.1.351 97 4/11/2024
2.1.350 806 4/10/2024
2.1.349 101 4/10/2024
2.1.348 782 4/9/2024
2.1.347 97 4/9/2024
2.1.346 1,676 4/2/2024
2.1.345 280 4/2/2024
2.1.344 387 4/1/2024
2.1.343 156 4/1/2024
2.1.342 1,072 3/29/2024
2.1.341 103 3/29/2024
2.1.340 883 3/25/2024
2.1.339 90 3/25/2024
2.1.338 764 3/25/2024
2.1.337 1,067 3/20/2024
2.1.336 109 3/20/2024
2.1.335 1,203 3/19/2024
2.1.334 110 3/19/2024
2.1.333 420 3/19/2024
2.1.332 433 3/19/2024
2.1.331 732 3/18/2024
2.1.330 101 3/18/2024
2.1.329 712 3/18/2024
2.1.328 733 3/16/2024
2.1.327 426 3/15/2024
2.1.326 905 3/13/2024
2.1.325 511 3/13/2024
2.1.324 148 3/13/2024
2.1.323 132 3/13/2024
2.1.322 689 3/13/2024
2.1.321 114 3/13/2024
2.1.320 403 3/13/2024
2.1.319 103 3/13/2024
2.1.318 102 3/13/2024
2.1.317 416 3/12/2024
2.1.316 109 3/12/2024
2.1.315 481 3/12/2024
2.1.314 589 3/12/2024
2.1.313 636 3/12/2024
2.1.312 419 3/11/2024
2.1.311 861 3/11/2024
2.1.310 374 3/11/2024
2.1.309 666 3/10/2024
2.1.308 106 3/10/2024
2.1.307 865 3/8/2024
2.1.306 246 3/8/2024
2.1.305 551 3/8/2024
2.1.304 106 3/8/2024
2.1.303 571 3/8/2024
2.1.302 99 3/8/2024
2.1.301 1,015 3/6/2024
2.1.300 116 3/6/2024
2.1.299 895 3/4/2024
2.1.298 533 3/4/2024
2.1.297 432 3/4/2024
2.1.296 124 3/4/2024
2.1.295 1,154 3/3/2024
2.1.294 241 3/2/2024
2.1.293 589 3/2/2024
2.1.292 109 3/2/2024
2.1.291 1,939 2/29/2024
2.1.290 402 2/29/2024
2.1.289 94 2/29/2024
2.1.288 235 2/29/2024
2.1.287 97 2/29/2024
2.1.286 673 2/29/2024
2.1.285 1,205 2/26/2024
2.1.284 108 2/26/2024
2.1.283 516 2/25/2024
2.1.282 171 2/25/2024
2.1.281 792 2/23/2024
2.1.280 464 2/23/2024
2.1.279 448 2/22/2024
2.1.278 222 2/22/2024
2.1.277 320 2/22/2024
2.1.276 108 2/22/2024
2.1.275 222 2/21/2024
2.1.274 113 2/21/2024
2.1.273 516 2/21/2024
2.1.272 124 2/21/2024
2.1.271 112 2/21/2024
2.1.270 532 2/21/2024
2.1.269 304 2/21/2024
2.1.268 109 2/21/2024
2.1.267 254 2/21/2024
2.1.266 99 2/21/2024
2.1.265 282 2/21/2024
2.1.264 102 2/21/2024
2.1.263 390 2/21/2024
2.1.262 530 2/20/2024
2.1.261 315 2/20/2024
2.1.260 134 2/20/2024
2.1.259 199 2/20/2024
2.1.258 448 2/20/2024
2.1.257 245 2/20/2024
2.1.256 298 2/19/2024
2.1.255 461 2/19/2024
2.1.254 95 2/19/2024
2.1.253 710 2/17/2024
2.1.252 99 2/17/2024
2.1.251 299 2/17/2024
2.1.250 423 2/16/2024
2.1.249 91 2/16/2024
2.1.248 319 2/16/2024
2.1.247 293 2/16/2024
2.1.246 98 2/16/2024
2.1.245 364 2/16/2024
2.1.244 93 2/16/2024
2.1.243 97 2/16/2024
2.1.242 365 2/16/2024
2.1.241 105 2/16/2024
2.1.240 991 2/13/2024
2.1.239 106 2/13/2024
2.1.238 592 2/13/2024
2.1.237 428 2/13/2024
2.1.236 202 2/13/2024
2.1.235 94 2/13/2024
2.1.234 169 2/13/2024
2.1.233 443 2/13/2024
2.1.232 112 2/13/2024
2.1.231 550 2/12/2024
2.1.230 368 2/12/2024
2.1.229 123 2/11/2024
2.1.228 110 2/11/2024
2.1.227 539 2/11/2024
2.1.226 261 2/11/2024
2.1.225 340 2/11/2024
2.1.224 217 2/11/2024
2.1.223 886 2/10/2024
2.1.222 189 2/10/2024
2.1.221 266 2/9/2024
2.1.220 293 2/9/2024
2.1.219 478 2/9/2024
2.1.218 347 2/9/2024
2.1.217 444 2/9/2024
2.1.216 107 2/9/2024
2.1.215 317 2/8/2024
2.1.214 415 2/8/2024
2.1.213 114 2/8/2024
2.1.212 323 2/8/2024
2.1.211 157 2/8/2024
2.1.210 536 2/8/2024
2.1.209 137 2/8/2024
2.1.208 629 2/7/2024
2.1.207 137 2/7/2024
2.1.206 146 2/7/2024
2.1.205 424 2/7/2024
2.1.204 287 2/7/2024
2.1.203 106 2/7/2024
2.1.202 279 2/7/2024
2.1.201 113 2/7/2024
2.1.200 429 2/6/2024
2.1.199 112 2/6/2024
2.1.198 842 2/5/2024
2.1.197 107 2/5/2024
2.1.196 528 2/4/2024
2.1.195 175 2/4/2024
2.1.194 744 2/2/2024
2.1.193 110 2/2/2024
2.1.192 671 1/31/2024
2.1.191 114 1/31/2024
2.1.190 525 1/30/2024
2.1.189 453 1/29/2024
2.1.188 357 1/29/2024
2.1.187 103 1/29/2024
2.1.186 102 1/29/2024
2.1.185 415 1/29/2024
2.1.184 274 1/29/2024
2.1.183 93 1/29/2024
2.1.182 287 1/28/2024
2.1.181 107 1/28/2024
2.1.180 227 1/28/2024
2.1.179 396 1/28/2024
2.1.178 108 1/28/2024
2.1.177 231 1/28/2024
2.1.176 275 1/28/2024
2.1.175 102 1/28/2024
2.1.174 748 1/28/2024
2.1.173 166 1/27/2024
2.1.172 103 1/27/2024
2.1.171 486 1/27/2024
2.1.170 103 1/27/2024
2.1.169 206 1/27/2024
2.1.168 112 1/27/2024
2.1.167 452 1/27/2024
2.1.166 102 1/27/2024
2.1.165 472 1/27/2024
2.1.164 102 1/27/2024
2.1.163 208 1/27/2024
2.1.162 120 1/26/2024
2.1.161 94 1/26/2024
2.1.160 662 1/26/2024
2.1.159 109 1/26/2024
2.1.158 456 1/26/2024
2.1.157 94 1/26/2024
2.1.156 212 1/26/2024
2.1.155 207 1/26/2024
2.1.154 98 1/26/2024
2.1.153 165 1/26/2024
2.1.152 91 1/26/2024
2.1.151 603 1/25/2024
2.1.150 111 1/25/2024
2.1.149 305 1/25/2024
2.1.148 104 1/25/2024
2.1.147 608 1/25/2024
2.1.146 177 1/25/2024
2.1.145 104 1/25/2024
2.1.144 311 1/25/2024
2.1.143 736 1/19/2024
2.1.142 107 1/19/2024
2.1.141 625 1/15/2024
2.1.140 139 1/15/2024
2.1.139 121 1/15/2024
2.1.138 597 1/15/2024
2.1.137 122 1/15/2024
2.1.136 258 1/15/2024
2.1.135 124 1/15/2024
2.1.134 422 1/15/2024
2.1.133 258 1/15/2024
2.1.132 764 1/14/2024
2.1.131 106 1/14/2024
2.1.130 593 1/13/2024
2.1.129 105 1/13/2024
2.1.128 599 1/12/2024
2.1.127 132 1/12/2024
2.1.126 565 1/11/2024
2.1.125 410 1/11/2024
2.1.124 735 1/8/2024
2.1.123 297 1/7/2024
2.1.122 527 1/5/2024
2.1.121 268 1/5/2024
2.1.120 110 1/5/2024
2.1.119 429 1/5/2024
2.1.118 462 1/5/2024
2.1.117 120 1/5/2024
2.1.116 641 1/3/2024
2.1.115 150 1/3/2024
2.1.114 415 1/1/2024
2.1.113 166 1/1/2024
2.1.112 747 12/30/2023
2.1.111 284 12/28/2023
2.1.110 198 12/28/2023
2.1.109 258 12/28/2023
2.1.108 229 12/28/2023
2.1.107 140 12/28/2023
2.1.106 526 12/28/2023
2.1.105 197 12/27/2023
2.1.104 124 12/27/2023
2.1.103 149 12/27/2023
2.1.102 115 12/27/2023
2.1.101 684 12/25/2023
2.1.100 109 12/25/2023
2.1.99 250 12/25/2023
2.1.98 124 12/25/2023
2.1.97 420 12/25/2023
2.1.96 304 12/25/2023
2.1.95 174 12/25/2023
2.1.94 119 12/25/2023
2.1.93 148 12/25/2023
2.1.92 142 12/25/2023
2.1.91 631 12/24/2023
2.1.90 210 12/24/2023
2.1.89 378 12/23/2023
2.1.88 167 12/23/2023
2.1.87 120 12/23/2023
2.1.86 242 12/23/2023
2.1.85 121 12/23/2023
2.1.84 422 12/23/2023
2.1.83 121 12/23/2023
2.1.82 419 12/23/2023
2.1.81 125 12/23/2023
2.1.80 247 12/23/2023
2.1.79 530 12/19/2023
2.1.78 117 12/19/2023
2.1.77 205 12/19/2023
2.1.76 930 12/11/2023
2.1.75 258 12/11/2023
2.1.74 272 12/10/2023
2.1.73 204 12/10/2023
2.1.72 144 12/10/2023
2.1.71 502 12/10/2023
2.1.70 166 12/9/2023
2.1.69 242 12/9/2023
2.1.68 256 12/9/2023
2.1.67 149 12/9/2023
2.1.66 160 12/9/2023
2.1.65 208 12/9/2023
2.1.64 123 12/9/2023
2.1.63 334 12/9/2023
2.1.62 515 12/6/2023
2.1.61 209 12/6/2023
2.1.60 245 12/6/2023
2.1.59 161 12/6/2023
2.1.58 275 12/5/2023
2.1.57 258 12/5/2023
2.1.56 177 12/5/2023
2.1.55 207 12/5/2023
2.1.54 198 12/5/2023
2.1.53 146 12/5/2023
2.1.52 220 12/5/2023
2.1.51 149 12/4/2023
2.1.50 127 12/4/2023
2.1.49 415 12/4/2023
2.1.48 127 12/4/2023
2.1.47 123 12/4/2023
2.1.46 376 11/28/2023
2.1.45 154 11/27/2023
2.1.44 199 11/27/2023
2.1.43 138 11/26/2023
2.1.42 241 11/23/2023
2.1.41 130 11/23/2023
2.1.40 320 11/23/2023
2.1.39 276 11/23/2023
2.1.38 208 11/23/2023
2.1.37 142 11/23/2023
2.1.36 162 11/23/2023
2.1.35 417 11/22/2023
2.1.34 187 11/20/2023
2.1.33 203 11/20/2023
2.1.32 270 11/20/2023
2.1.31 132 11/20/2023
2.1.30 278 11/19/2023
2.1.29 123 11/19/2023
2.1.28 161 11/19/2023
2.1.27 140 11/19/2023
2.1.26 234 11/19/2023
2.1.25 135 11/19/2023
2.1.24 149 11/19/2023
2.1.23 127 11/19/2023
2.1.22 130 11/19/2023
2.1.21 311 11/18/2023
2.1.20 145 11/18/2023
2.1.19 149 11/18/2023
2.1.18 128 11/18/2023
2.1.17 125 11/18/2023
2.1.16 138 11/17/2023
2.1.15 128 11/17/2023
2.1.14 134 11/17/2023
2.1.13 142 11/17/2023
2.1.12 160 11/17/2023
2.1.11 115 11/17/2023
2.1.10 131 11/17/2023
2.1.9 135 11/17/2023
2.1.8 148 11/17/2023
2.1.7 138 11/17/2023
2.1.6 161 11/17/2023
2.1.5 137 11/17/2023
2.1.4 138 11/16/2023
2.1.3 134 11/16/2023
2.0.37 829 11/15/2023
2.0.36 130 11/15/2023
2.0.35 135 11/15/2023
2.0.34 133 11/15/2023
1.0.33 137 11/14/2023
1.0.32 127 11/14/2023
1.0.31 344 11/13/2023
1.0.30 126 11/13/2023
1.0.29 165 11/10/2023
1.0.28 129 11/10/2023
1.0.27 132 11/9/2023
1.0.26 128 11/9/2023
1.0.25 129 11/9/2023
1.0.24 126 11/7/2023
1.0.23 122 11/7/2023
1.0.22 122 11/6/2023
1.0.21 131 11/6/2023
1.0.20 150 11/3/2023
1.0.19 140 11/3/2023
1.0.18 149 11/2/2023
1.0.17 138 11/2/2023
1.0.16 147 11/1/2023
1.0.15 136 11/1/2023
1.0.14 174 10/26/2023
1.0.13 148 10/26/2023
1.0.12 166 10/19/2023
1.0.11 165 10/19/2023
1.0.10 166 10/18/2023
1.0.9 163 10/18/2023
1.0.8 160 10/17/2023
1.0.7 148 10/17/2023
1.0.6 182 10/16/2023
1.0.5 176 10/16/2023
1.0.4 176 10/13/2023
1.0.3 169 10/13/2023
1.0.2 167 10/12/2023
1.0.1 191 10/1/2023