Soenneker.Utils.HttpClientCache 3.0.993

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 3.0.993                
NuGet\Install-Package Soenneker.Utils.HttpClientCache -Version 3.0.993                
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.993" />                
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.993                
#r "nuget: Soenneker.Utils.HttpClientCache, 3.0.993"                
#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.993

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

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.1034 0 12/1/2024
3.0.1033 0 12/1/2024
3.0.1032 0 12/1/2024
3.0.1031 289 11/29/2024
3.0.1030 75 11/29/2024
3.0.1029 240 11/29/2024
3.0.1028 348 11/29/2024
3.0.1027 34 11/29/2024
3.0.1026 1,143 11/21/2024
3.0.1025 692 11/21/2024
3.0.1024 463 11/21/2024
3.0.1023 751 11/20/2024
3.0.1022 1,865 11/20/2024
3.0.1021 640 11/20/2024
3.0.1020 167 11/20/2024
3.0.1019 135 11/20/2024
3.0.1018 210 11/20/2024
3.0.1017 68 11/20/2024
3.0.1016 134 11/20/2024
3.0.1015 66 11/20/2024
3.0.1014 1,458 11/20/2024
3.0.1013 505 11/20/2024
3.0.1012 69 11/20/2024
3.0.1011 632 11/20/2024
3.0.1010 627 11/20/2024
3.0.1009 107 11/19/2024
3.0.1008 793 11/19/2024
3.0.1007 66 11/19/2024
3.0.1006 1,901 11/19/2024
3.0.1005 60 11/19/2024
3.0.1004 72 11/19/2024
3.0.1003 863 11/19/2024
3.0.1002 63 11/19/2024
3.0.1001 3,190 11/19/2024
3.0.1000 68 11/19/2024
3.0.999 3,115 11/15/2024
3.0.998 503 11/15/2024
3.0.997 714 11/14/2024
3.0.996 112 11/14/2024
3.0.995 64 11/14/2024
3.0.993 1,109 11/14/2024
3.0.992 73 11/14/2024
3.0.991 1,021 11/14/2024
3.0.990 101 11/14/2024
3.0.989 2,313 11/14/2024
3.0.988 74 11/14/2024
3.0.987 1,944 11/14/2024
3.0.986 76 11/14/2024
3.0.985 1,240 11/14/2024
3.0.984 310 11/14/2024
3.0.983 68 11/14/2024
3.0.982 739 11/14/2024
2.1.981 1,700 11/13/2024
2.1.980 2,065 11/13/2024
2.1.979 640 11/13/2024
2.1.978 743 11/13/2024
2.1.977 1,232 11/13/2024
2.1.976 72 11/13/2024
2.1.975 1,223 11/13/2024
2.1.974 80 11/13/2024
2.1.973 964 11/13/2024
2.1.972 320 11/12/2024
2.1.971 76 11/12/2024
2.1.970 1,813 11/12/2024
2.1.969 3,454 11/9/2024
2.1.968 814 11/9/2024
2.1.967 826 11/9/2024
2.1.966 82 11/9/2024
2.1.965 537 11/9/2024
2.1.964 96 11/9/2024
2.1.963 74 11/9/2024
2.1.962 979 11/8/2024
2.1.961 71 11/8/2024
2.1.960 235 11/8/2024
2.1.959 76 11/8/2024
2.1.958 83 11/8/2024
2.1.957 1,236 11/8/2024
2.1.956 3,227 11/8/2024
2.1.955 1,910 11/8/2024
2.1.954 73 11/8/2024
2.1.953 758 11/8/2024
2.1.952 4,121 11/6/2024
2.1.951 1,735 11/5/2024
2.1.950 1,424 11/1/2024
2.1.949 247 11/1/2024
2.1.948 1,201 11/1/2024
2.1.947 581 11/1/2024
2.1.946 2,461 10/29/2024
2.1.945 499 10/29/2024
2.1.944 70 10/29/2024
2.1.943 507 10/29/2024
2.1.942 609 10/29/2024
2.1.941 1,008 10/29/2024
2.1.939 1,622 10/29/2024
2.1.938 277 10/29/2024
2.1.937 68 10/29/2024
2.1.936 2,602 10/29/2024
2.1.935 66 10/29/2024
2.1.934 606 10/28/2024
2.1.933 1,220 10/28/2024
2.1.932 1,993 10/26/2024
2.1.931 226 10/26/2024
2.1.930 728 10/26/2024
2.1.929 954 10/26/2024
2.1.928 2,613 10/22/2024
2.1.927 636 10/22/2024
2.1.926 1,107 10/22/2024
2.1.925 496 10/22/2024
2.1.924 345 10/22/2024
2.1.923 788 10/22/2024
2.1.922 593 10/22/2024
2.1.921 66 10/22/2024
2.1.920 1,010 10/22/2024
2.1.919 2,050 10/18/2024
2.1.918 413 10/18/2024
2.1.917 676 10/17/2024
2.1.916 1,198 10/17/2024
2.1.915 71 10/17/2024
2.1.914 1,533 10/15/2024
2.1.913 520 10/15/2024
2.1.912 324 10/15/2024
2.1.911 769 10/15/2024
2.1.910 581 10/14/2024
2.1.909 77 10/14/2024
2.1.908 2,148 10/12/2024
2.1.907 445 10/12/2024
2.1.906 758 10/12/2024
2.1.905 746 10/11/2024
2.1.904 77 10/11/2024
2.1.903 1,235 10/11/2024
2.1.902 79 10/11/2024
2.1.901 1,947 10/9/2024
2.1.900 484 10/9/2024
2.1.899 1,183 10/9/2024
2.1.898 821 10/9/2024
2.1.897 800 10/9/2024
2.1.896 265 10/9/2024
2.1.895 81 10/9/2024
2.1.894 536 10/8/2024
2.1.893 856 10/8/2024
2.1.892 149 10/8/2024
2.1.891 1,100 10/8/2024
2.1.890 1,772 10/8/2024
2.1.889 81 10/8/2024
2.1.888 1,399 10/8/2024
2.1.887 1,445 10/4/2024
2.1.886 819 10/3/2024
2.1.885 921 10/3/2024
2.1.884 263 10/3/2024
2.1.883 595 10/3/2024
2.1.882 76 10/3/2024
2.1.881 946 10/3/2024
2.1.880 76 10/3/2024
2.1.879 528 10/3/2024
2.1.878 1,070 10/3/2024
2.1.877 398 10/3/2024
2.1.876 1,291 10/2/2024
2.1.875 642 10/2/2024
2.1.874 423 10/2/2024
2.1.873 957 10/2/2024
2.1.872 75 10/2/2024
2.1.871 82 10/2/2024
2.1.870 1,098 10/2/2024
2.1.869 526 10/2/2024
2.1.868 74 10/2/2024
2.1.867 336 10/2/2024
2.1.866 1,160 10/2/2024
2.1.865 103 10/2/2024
2.1.864 1,721 10/1/2024
2.1.863 730 10/1/2024
2.1.862 562 10/1/2024
2.1.861 897 10/1/2024
2.1.860 76 10/1/2024
2.1.859 652 10/1/2024
2.1.858 311 10/1/2024
2.1.857 75 10/1/2024
2.1.856 761 10/1/2024
2.1.855 78 10/1/2024
2.1.854 2,553 9/29/2024
2.1.853 261 9/29/2024
2.1.852 383 9/29/2024
2.1.851 690 9/29/2024
2.1.850 441 9/29/2024
2.1.849 801 9/29/2024
2.1.848 71 9/29/2024
2.1.847 542 9/29/2024
2.1.846 84 9/29/2024
2.1.845 978 9/29/2024
2.1.844 73 9/29/2024
2.1.843 2,081 9/27/2024
2.1.842 506 9/27/2024
2.1.841 629 9/27/2024
2.1.839 480 9/27/2024
2.1.838 84 9/27/2024
2.1.837 2,020 9/27/2024
2.1.836 826 9/27/2024
2.1.835 76 9/27/2024
2.1.834 1,101 9/27/2024
2.1.833 271 9/27/2024
2.1.832 93 9/27/2024
2.1.831 1,644 9/27/2024
2.1.830 430 9/27/2024
2.1.829 1,063 9/26/2024
2.1.828 1,225 9/26/2024
2.1.827 76 9/26/2024
2.1.826 1,336 9/26/2024
2.1.825 86 9/26/2024
2.1.824 610 9/26/2024
2.1.823 77 9/26/2024
2.1.822 367 9/26/2024
2.1.821 454 9/26/2024
2.1.820 1,145 9/26/2024
2.1.819 80 9/26/2024
2.1.818 1,466 9/26/2024
2.1.817 1,819 9/25/2024
2.1.816 1,533 9/23/2024
2.1.815 186 9/23/2024
2.1.814 413 9/23/2024
2.1.813 89 9/23/2024
2.1.812 665 9/23/2024
2.1.811 82 9/23/2024
2.1.810 631 9/23/2024
2.1.809 84 9/23/2024
2.1.808 670 9/23/2024
2.1.807 853 9/23/2024
2.1.806 89 9/23/2024
2.1.805 2,237 9/23/2024
2.1.804 1,041 9/23/2024
2.1.803 84 9/23/2024
2.1.802 1,178 9/23/2024
2.1.801 81 9/23/2024
2.1.800 1,173 9/23/2024
2.1.799 75 9/23/2024
2.1.798 608 9/23/2024
2.1.797 79 9/23/2024
2.1.796 3,114 9/18/2024
2.1.795 475 9/18/2024
2.1.794 737 9/18/2024
2.1.793 485 9/18/2024
2.1.792 572 9/18/2024
2.1.791 149 9/18/2024
2.1.790 417 9/17/2024
2.1.789 91 9/17/2024
2.1.788 590 9/17/2024
2.1.787 94 9/17/2024
2.1.786 645 9/17/2024
2.1.785 144 9/17/2024
2.1.784 1,180 9/17/2024
2.1.783 543 9/17/2024
2.1.782 833 9/17/2024
2.1.781 94 9/17/2024
2.1.780 116 9/17/2024
2.1.779 92 9/17/2024
2.1.778 1,154 9/17/2024
2.1.777 479 9/17/2024
2.1.776 506 9/17/2024
2.1.775 93 9/17/2024
2.1.774 1,259 9/17/2024
2.1.773 4,445 9/16/2024
2.1.772 603 9/16/2024
2.1.771 379 9/16/2024
2.1.770 675 9/16/2024
2.1.769 616 9/16/2024
2.1.768 1,965 9/12/2024
2.1.767 489 9/12/2024
2.1.766 579 9/12/2024
2.1.765 1,117 9/12/2024
2.1.764 660 9/12/2024
2.1.763 99 9/12/2024
2.1.762 1,140 9/11/2024
2.1.761 551 9/11/2024
2.1.760 898 9/11/2024
2.1.759 95 9/11/2024
2.1.757 2,079 9/11/2024
2.1.756 607 9/11/2024
2.1.754 292 9/11/2024
2.1.753 362 9/11/2024
2.1.752 367 9/11/2024
2.1.751 633 9/11/2024
2.1.750 103 9/11/2024
2.1.749 1,484 9/11/2024
2.1.748 3,326 9/10/2024
2.1.747 1,762 9/10/2024
2.1.746 303 9/10/2024
2.1.745 239 9/10/2024
2.1.744 569 9/10/2024
2.1.743 88 9/10/2024
2.1.742 638 9/10/2024
2.1.741 92 9/10/2024
2.1.740 805 9/10/2024
2.1.738 308 9/10/2024
2.1.737 1,223 9/9/2024
2.1.736 86 9/9/2024
2.1.734 1,272 9/9/2024
2.1.733 88 9/9/2024
2.1.730 2,036 9/9/2024
2.1.729 88 9/9/2024
2.1.728 1,739 9/9/2024
2.1.727 2,072 9/9/2024
2.1.726 2,731 9/7/2024
2.1.725 595 9/7/2024
2.1.724 712 9/7/2024
2.1.723 961 9/6/2024
2.1.722 1,527 9/6/2024
2.1.721 923 9/6/2024
2.1.720 188 9/6/2024
2.1.719 904 9/6/2024
2.1.718 115 9/6/2024
2.1.717 427 9/6/2024
2.1.716 1,463 9/5/2024
2.1.715 91 9/5/2024
2.1.714 673 9/5/2024
2.1.713 96 9/5/2024
2.1.712 967 9/5/2024
2.1.711 244 9/5/2024
2.1.710 97 9/5/2024
2.1.709 2,798 9/5/2024
2.1.708 723 9/5/2024
2.1.707 97 9/5/2024
2.1.706 785 9/5/2024
2.1.705 1,109 9/5/2024
2.1.704 673 9/4/2024
2.1.703 94 9/4/2024
2.1.702 594 9/4/2024
2.1.701 90 9/4/2024
2.1.700 2,577 9/4/2024
2.1.699 408 9/4/2024
2.1.698 832 9/4/2024
2.1.697 653 9/3/2024
2.1.696 292 9/3/2024
2.1.695 94 9/3/2024
2.1.694 1,542 9/3/2024
2.1.693 1,683 9/3/2024
2.1.692 383 9/3/2024
2.1.691 691 9/3/2024
2.1.690 87 9/3/2024
2.1.689 947 9/3/2024
2.1.688 83 9/3/2024
2.1.687 423 9/3/2024
2.1.686 2,816 8/30/2024
2.1.685 280 8/29/2024
2.1.684 550 8/29/2024
2.1.683 1,024 8/29/2024
2.1.682 601 8/29/2024
2.1.681 85 8/29/2024
2.1.680 1,524 8/26/2024
2.1.679 550 8/26/2024
2.1.678 462 8/26/2024
2.1.677 1,356 8/26/2024
2.1.676 107 8/26/2024
2.1.675 1,427 8/21/2024
2.1.674 982 8/21/2024
2.1.673 609 8/21/2024
2.1.672 705 8/21/2024
2.1.671 115 8/21/2024
2.1.670 489 8/21/2024
2.1.669 116 8/21/2024
2.1.668 1,362 8/20/2024
2.1.667 122 8/20/2024
2.1.666 1,249 8/20/2024
2.1.665 107 8/20/2024
2.1.664 331 8/20/2024
2.1.663 1,195 8/20/2024
2.1.662 102 8/20/2024
2.1.661 324 8/20/2024
2.1.660 102 8/20/2024
2.1.659 1,391 8/20/2024
2.1.658 1,641 8/20/2024
2.1.657 898 8/19/2024
2.1.656 111 8/19/2024
2.1.655 1,784 8/15/2024
2.1.654 483 8/15/2024
2.1.653 505 8/15/2024
2.1.652 609 8/15/2024
2.1.651 765 8/15/2024
2.1.650 931 8/15/2024
2.1.649 2,354 8/14/2024
2.1.648 110 8/14/2024
2.1.647 758 8/14/2024
2.1.646 442 8/14/2024
2.1.645 213 8/13/2024
2.1.644 2,347 8/7/2024
2.1.643 269 8/7/2024
2.1.642 641 8/7/2024
2.1.641 386 8/7/2024
2.1.640 1,401 8/6/2024
2.1.639 160 8/6/2024
2.1.638 79 8/6/2024
2.1.637 877 8/6/2024
2.1.636 1,270 8/1/2024
2.1.635 595 8/1/2024
2.1.634 446 8/1/2024
2.1.633 263 8/1/2024
2.1.632 71 8/1/2024
2.1.631 632 8/1/2024
2.1.630 71 8/1/2024
2.1.629 858 8/1/2024
2.1.628 2,343 7/25/2024
2.1.627 350 7/25/2024
2.1.626 575 7/25/2024
2.1.625 624 7/25/2024
2.1.624 73 7/25/2024
2.1.623 440 7/25/2024
2.1.622 227 7/25/2024
2.1.621 286 7/25/2024
2.1.620 514 7/25/2024
2.1.619 147 7/24/2024
2.1.618 468 7/24/2024
2.1.617 177 7/24/2024
2.1.616 311 7/24/2024
2.1.615 4,126 7/20/2024
2.1.614 74 7/20/2024
2.1.612 501 7/20/2024
2.1.611 642 7/20/2024
2.1.610 535 7/20/2024
2.1.609 2,089 7/14/2024
2.1.608 435 7/14/2024
2.1.607 422 7/14/2024
2.1.606 838 7/14/2024
2.1.605 460 7/14/2024
2.1.604 80 7/14/2024
2.1.603 1,094 7/14/2024
2.1.602 202 7/14/2024
2.1.601 74 7/14/2024
2.1.600 2,054 7/10/2024
2.1.599 221 7/10/2024
2.1.598 202 7/10/2024
2.1.597 193 7/10/2024
2.1.596 174 7/10/2024
2.1.594 379 7/10/2024
2.1.593 1,056 7/10/2024
2.1.592 76 7/10/2024
2.1.591 690 7/10/2024
2.1.590 108 7/10/2024
2.1.589 73 7/10/2024
2.1.588 1,564 7/10/2024
2.1.587 63 7/10/2024
2.1.586 576 7/10/2024
2.1.585 82 7/10/2024
2.1.584 79 7/10/2024
2.1.583 83 7/10/2024
2.1.581 276 7/10/2024
2.1.580 81 7/10/2024
2.1.579 1,131 7/9/2024
2.1.578 73 7/9/2024
2.1.576 966 7/9/2024
2.1.575 72 7/9/2024
2.1.574 159 7/9/2024
2.1.573 2,919 7/9/2024
2.1.572 79 7/9/2024
2.1.571 808 7/9/2024
2.1.570 1,383 7/9/2024
2.1.569 146 7/9/2024
2.1.568 1,077 7/9/2024
2.1.567 953 7/9/2024
2.1.566 79 7/9/2024
2.1.565 709 7/9/2024
2.1.564 82 7/9/2024
2.1.563 973 7/9/2024
2.1.562 82 7/9/2024
2.1.560 601 7/8/2024
2.1.559 1,404 7/8/2024
2.1.558 90 7/8/2024
2.1.557 895 7/8/2024
2.1.556 1,205 7/8/2024
2.1.555 203 7/8/2024
2.1.554 893 7/8/2024
2.1.553 215 7/8/2024
2.1.552 93 7/8/2024
2.1.551 1,022 7/8/2024
2.1.550 740 7/7/2024
2.1.549 79 7/7/2024
2.1.548 632 7/7/2024
2.1.547 91 7/7/2024
2.1.546 195 7/7/2024
2.1.545 90 7/7/2024
2.1.544 1,102 7/7/2024
2.1.543 87 7/7/2024
2.1.542 1,100 7/7/2024
2.1.541 552 7/7/2024
2.1.540 2,098 7/5/2024
2.1.539 1,104 7/4/2024
2.1.538 1,049 7/3/2024
2.1.537 662 7/3/2024
2.1.536 454 7/3/2024
2.1.535 309 7/3/2024
2.1.534 1,301 7/3/2024
2.1.533 124 7/3/2024
2.1.532 1,075 7/3/2024
2.1.531 77 7/3/2024
2.1.530 741 7/3/2024
2.1.529 1,291 7/2/2024
2.1.528 1,253 6/30/2024
2.1.527 1,223 6/28/2024
2.1.526 580 6/27/2024
2.1.525 659 6/27/2024
2.1.524 748 6/27/2024
2.1.523 1,217 6/22/2024
2.1.522 875 6/22/2024
2.1.521 751 6/22/2024
2.1.520 98 6/22/2024
2.1.519 1,400 6/16/2024
2.1.518 510 6/16/2024
2.1.517 512 6/15/2024
2.1.516 869 6/15/2024
2.1.515 428 6/15/2024
2.1.514 440 6/15/2024
2.1.513 91 6/15/2024
2.1.512 1,333 6/15/2024
2.1.511 91 6/15/2024
2.1.510 1,068 6/15/2024
2.1.509 911 6/15/2024
2.1.508 433 6/14/2024
2.1.507 87 6/14/2024
2.1.506 3,132 6/4/2024
2.1.505 1,224 6/2/2024
2.1.504 175 6/2/2024
2.1.503 303 6/2/2024
2.1.502 302 6/1/2024
2.1.501 358 6/1/2024
2.1.500 649 6/1/2024
2.1.499 92 6/1/2024
2.1.498 807 6/1/2024
2.1.497 227 6/1/2024
2.1.496 95 6/1/2024
2.1.495 899 6/1/2024
2.1.494 91 6/1/2024
2.1.493 2,154 5/31/2024
2.1.492 599 5/31/2024
2.1.491 397 5/31/2024
2.1.490 595 5/31/2024
2.1.489 356 5/31/2024
2.1.488 818 5/31/2024
2.1.487 1,287 5/29/2024
2.1.486 496 5/29/2024
2.1.485 705 5/29/2024
2.1.484 601 5/29/2024
2.1.483 94 5/29/2024
2.1.482 1,419 5/28/2024
2.1.481 410 5/28/2024
2.1.480 413 5/28/2024
2.1.479 448 5/28/2024
2.1.478 70 5/28/2024
2.1.477 976 5/28/2024
2.1.476 70 5/28/2024
2.1.475 340 5/28/2024
2.1.474 1,306 5/27/2024
2.1.473 1,278 5/27/2024
2.1.472 483 5/27/2024
2.1.471 530 5/27/2024
2.1.470 895 5/26/2024
2.1.469 79 5/26/2024
2.1.468 1,224 5/26/2024
2.1.467 144 5/26/2024
2.1.466 408 5/26/2024
2.1.465 669 5/26/2024
2.1.464 1,091 5/26/2024
2.1.463 79 5/26/2024
2.1.462 713 5/26/2024
2.1.461 84 5/26/2024
2.1.460 239 5/25/2024
2.1.459 348 5/25/2024
2.1.458 79 5/25/2024
2.1.457 1,127 5/25/2024
2.1.456 82 5/25/2024
2.1.455 1,118 5/25/2024
2.1.454 85 5/25/2024
2.1.453 1,447 5/25/2024
2.1.452 116 5/25/2024
2.1.451 563 5/25/2024
2.1.450 78 5/25/2024
2.1.449 471 5/25/2024
2.1.448 1,861 5/23/2024
2.1.447 586 5/23/2024
2.1.446 641 5/23/2024
2.1.445 65 5/23/2024
2.1.444 681 5/23/2024
2.1.443 88 5/23/2024
2.1.442 599 5/23/2024
2.1.441 82 5/23/2024
2.1.440 910 5/23/2024
2.1.439 91 5/23/2024
2.1.438 641 5/22/2024
2.1.437 896 5/22/2024
2.1.436 87 5/22/2024
2.1.435 645 5/22/2024
2.1.434 93 5/22/2024
2.1.433 90 5/22/2024
2.1.432 1,055 5/22/2024
2.1.431 704 5/22/2024
2.1.430 1,220 5/19/2024
2.1.429 475 5/18/2024
2.1.428 511 5/18/2024
2.1.427 565 5/18/2024
2.1.426 376 5/18/2024
2.1.425 107 5/18/2024
2.1.424 822 5/17/2024
2.1.423 105 5/17/2024
2.1.422 524 5/17/2024
2.1.421 1,426 5/17/2024
2.1.420 101 5/17/2024
2.1.419 916 5/16/2024
2.1.418 423 5/16/2024
2.1.417 756 5/16/2024
2.1.416 109 5/16/2024
2.1.415 754 5/15/2024
2.1.414 97 5/15/2024
2.1.413 802 5/15/2024
2.1.412 1,368 5/14/2024
2.1.411 109 5/14/2024
2.1.410 1,605 5/13/2024
2.1.409 611 5/13/2024
2.1.408 485 5/13/2024
2.1.407 373 5/13/2024
2.1.406 79 5/13/2024
2.1.405 1,850 5/3/2024
2.1.404 884 4/30/2024
2.1.403 191 4/30/2024
2.1.402 465 4/30/2024
2.1.401 524 4/30/2024
2.1.400 731 4/30/2024
2.1.399 652 4/30/2024
2.1.398 458 4/29/2024
2.1.397 344 4/29/2024
2.1.396 100 4/29/2024
2.1.395 1,498 4/29/2024
2.1.394 493 4/29/2024
2.1.393 1,055 4/29/2024
2.1.392 293 4/28/2024
2.1.391 101 4/28/2024
2.1.390 823 4/28/2024
2.1.389 118 4/28/2024
2.1.388 913 4/28/2024
2.1.387 590 4/28/2024
2.1.386 103 4/28/2024
2.1.385 922 4/28/2024
2.1.384 99 4/28/2024
2.1.383 632 4/28/2024
2.1.382 99 4/28/2024
2.1.381 1,552 4/28/2024
2.1.380 813 4/27/2024
2.1.379 109 4/27/2024
2.1.378 108 4/27/2024
2.1.377 2,073 4/20/2024
2.1.376 790 4/20/2024
2.1.375 695 4/19/2024
2.1.374 356 4/19/2024
2.1.373 99 4/19/2024
2.1.372 1,352 4/19/2024
2.1.371 693 4/19/2024
2.1.370 681 4/19/2024
2.1.369 470 4/19/2024
2.1.368 157 4/18/2024
2.1.367 105 4/18/2024
2.1.366 1,486 4/15/2024
2.1.365 578 4/14/2024
2.1.364 667 4/13/2024
2.1.363 763 4/12/2024
2.1.362 105 4/12/2024
2.1.361 602 4/12/2024
2.1.360 343 4/12/2024
2.1.359 585 4/12/2024
2.1.358 105 4/12/2024
2.1.357 937 4/12/2024
2.1.356 122 4/12/2024
2.1.355 995 4/12/2024
2.1.354 109 4/12/2024
2.1.353 394 4/11/2024
2.1.352 592 4/11/2024
2.1.351 101 4/11/2024
2.1.350 810 4/10/2024
2.1.349 105 4/10/2024
2.1.348 786 4/9/2024
2.1.347 101 4/9/2024
2.1.346 1,680 4/2/2024
2.1.345 284 4/2/2024
2.1.344 391 4/1/2024
2.1.343 160 4/1/2024
2.1.342 1,076 3/29/2024
2.1.341 107 3/29/2024
2.1.340 887 3/25/2024
2.1.339 94 3/25/2024
2.1.338 768 3/25/2024
2.1.337 1,071 3/20/2024
2.1.336 113 3/20/2024
2.1.335 1,207 3/19/2024
2.1.334 114 3/19/2024
2.1.333 424 3/19/2024
2.1.332 437 3/19/2024
2.1.331 736 3/18/2024
2.1.330 105 3/18/2024
2.1.329 716 3/18/2024
2.1.328 737 3/16/2024
2.1.327 430 3/15/2024
2.1.326 909 3/13/2024
2.1.325 515 3/13/2024
2.1.324 152 3/13/2024
2.1.323 136 3/13/2024
2.1.322 692 3/13/2024
2.1.321 118 3/13/2024
2.1.320 407 3/13/2024
2.1.319 107 3/13/2024
2.1.318 106 3/13/2024
2.1.317 420 3/12/2024
2.1.316 113 3/12/2024
2.1.315 485 3/12/2024
2.1.314 593 3/12/2024
2.1.313 640 3/12/2024
2.1.312 423 3/11/2024
2.1.311 865 3/11/2024
2.1.310 378 3/11/2024
2.1.309 670 3/10/2024
2.1.308 110 3/10/2024
2.1.307 869 3/8/2024
2.1.306 250 3/8/2024
2.1.305 555 3/8/2024
2.1.304 110 3/8/2024
2.1.303 575 3/8/2024
2.1.302 103 3/8/2024
2.1.301 1,019 3/6/2024
2.1.300 120 3/6/2024
2.1.299 899 3/4/2024
2.1.298 537 3/4/2024
2.1.297 436 3/4/2024
2.1.296 128 3/4/2024
2.1.295 1,158 3/3/2024
2.1.294 245 3/2/2024
2.1.293 593 3/2/2024
2.1.292 113 3/2/2024
2.1.291 1,943 2/29/2024
2.1.290 406 2/29/2024
2.1.289 98 2/29/2024
2.1.288 239 2/29/2024
2.1.287 101 2/29/2024
2.1.286 677 2/29/2024
2.1.285 1,209 2/26/2024
2.1.284 112 2/26/2024
2.1.283 520 2/25/2024
2.1.282 175 2/25/2024
2.1.281 796 2/23/2024
2.1.280 468 2/23/2024
2.1.279 452 2/22/2024
2.1.278 226 2/22/2024
2.1.277 324 2/22/2024
2.1.276 112 2/22/2024
2.1.275 226 2/21/2024
2.1.274 117 2/21/2024
2.1.273 520 2/21/2024
2.1.272 128 2/21/2024
2.1.271 116 2/21/2024
2.1.270 536 2/21/2024
2.1.269 308 2/21/2024
2.1.268 113 2/21/2024
2.1.267 258 2/21/2024
2.1.266 103 2/21/2024
2.1.265 286 2/21/2024
2.1.264 106 2/21/2024
2.1.263 394 2/21/2024
2.1.262 534 2/20/2024
2.1.261 319 2/20/2024
2.1.260 138 2/20/2024
2.1.259 203 2/20/2024
2.1.258 452 2/20/2024
2.1.257 249 2/20/2024
2.1.256 302 2/19/2024
2.1.255 465 2/19/2024
2.1.254 99 2/19/2024
2.1.253 714 2/17/2024
2.1.252 103 2/17/2024
2.1.251 303 2/17/2024
2.1.250 427 2/16/2024
2.1.249 95 2/16/2024
2.1.248 323 2/16/2024
2.1.247 297 2/16/2024
2.1.246 102 2/16/2024
2.1.245 368 2/16/2024
2.1.244 97 2/16/2024
2.1.243 101 2/16/2024
2.1.242 369 2/16/2024
2.1.241 109 2/16/2024
2.1.240 995 2/13/2024
2.1.239 110 2/13/2024
2.1.238 596 2/13/2024
2.1.237 432 2/13/2024
2.1.236 206 2/13/2024
2.1.235 98 2/13/2024
2.1.234 173 2/13/2024
2.1.233 447 2/13/2024
2.1.232 116 2/13/2024
2.1.231 554 2/12/2024
2.1.230 372 2/12/2024
2.1.229 127 2/11/2024
2.1.228 114 2/11/2024
2.1.227 543 2/11/2024
2.1.226 265 2/11/2024
2.1.225 344 2/11/2024
2.1.224 221 2/11/2024
2.1.223 890 2/10/2024
2.1.222 193 2/10/2024
2.1.221 270 2/9/2024
2.1.220 297 2/9/2024
2.1.219 482 2/9/2024
2.1.218 351 2/9/2024
2.1.217 448 2/9/2024
2.1.216 111 2/9/2024
2.1.215 321 2/8/2024
2.1.214 419 2/8/2024
2.1.213 118 2/8/2024
2.1.212 327 2/8/2024
2.1.211 161 2/8/2024
2.1.210 540 2/8/2024
2.1.209 141 2/8/2024
2.1.208 633 2/7/2024
2.1.207 141 2/7/2024
2.1.206 150 2/7/2024
2.1.205 428 2/7/2024
2.1.204 291 2/7/2024
2.1.203 110 2/7/2024
2.1.202 283 2/7/2024
2.1.201 117 2/7/2024
2.1.200 433 2/6/2024
2.1.199 116 2/6/2024
2.1.198 846 2/5/2024
2.1.197 111 2/5/2024
2.1.196 532 2/4/2024
2.1.195 179 2/4/2024
2.1.194 748 2/2/2024
2.1.193 114 2/2/2024
2.1.192 675 1/31/2024
2.1.191 118 1/31/2024
2.1.190 529 1/30/2024
2.1.189 457 1/29/2024
2.1.188 361 1/29/2024
2.1.187 107 1/29/2024
2.1.186 106 1/29/2024
2.1.185 419 1/29/2024
2.1.184 278 1/29/2024
2.1.183 97 1/29/2024
2.1.182 291 1/28/2024
2.1.181 111 1/28/2024
2.1.180 231 1/28/2024
2.1.179 401 1/28/2024
2.1.178 111 1/28/2024
2.1.177 234 1/28/2024
2.1.176 279 1/28/2024
2.1.175 106 1/28/2024
2.1.174 752 1/28/2024
2.1.173 170 1/27/2024
2.1.172 107 1/27/2024
2.1.171 489 1/27/2024
2.1.170 107 1/27/2024
2.1.169 210 1/27/2024
2.1.168 116 1/27/2024
2.1.167 456 1/27/2024
2.1.166 106 1/27/2024
2.1.165 476 1/27/2024
2.1.164 106 1/27/2024
2.1.163 212 1/27/2024
2.1.162 124 1/26/2024
2.1.161 98 1/26/2024
2.1.160 666 1/26/2024
2.1.159 113 1/26/2024
2.1.158 460 1/26/2024
2.1.157 98 1/26/2024
2.1.156 216 1/26/2024
2.1.155 211 1/26/2024
2.1.154 103 1/26/2024
2.1.153 170 1/26/2024
2.1.152 96 1/26/2024
2.1.151 613 1/25/2024
2.1.150 116 1/25/2024
2.1.149 309 1/25/2024
2.1.148 108 1/25/2024
2.1.147 612 1/25/2024
2.1.146 181 1/25/2024
2.1.145 108 1/25/2024
2.1.144 316 1/25/2024
2.1.143 740 1/19/2024
2.1.142 111 1/19/2024
2.1.141 629 1/15/2024
2.1.140 143 1/15/2024
2.1.139 125 1/15/2024
2.1.138 601 1/15/2024
2.1.137 126 1/15/2024
2.1.136 262 1/15/2024
2.1.135 128 1/15/2024
2.1.134 426 1/15/2024
2.1.133 262 1/15/2024
2.1.132 768 1/14/2024
2.1.131 110 1/14/2024
2.1.130 597 1/13/2024
2.1.129 109 1/13/2024
2.1.128 603 1/12/2024
2.1.127 136 1/12/2024
2.1.126 569 1/11/2024
2.1.125 414 1/11/2024
2.1.124 739 1/8/2024
2.1.123 301 1/7/2024
2.1.122 531 1/5/2024
2.1.121 272 1/5/2024
2.1.120 114 1/5/2024
2.1.119 433 1/5/2024
2.1.118 466 1/5/2024
2.1.117 124 1/5/2024
2.1.116 645 1/3/2024
2.1.115 154 1/3/2024
2.1.114 419 1/1/2024
2.1.113 170 1/1/2024
2.1.112 751 12/30/2023
2.1.111 288 12/28/2023
2.1.110 202 12/28/2023
2.1.109 262 12/28/2023
2.1.108 233 12/28/2023
2.1.107 144 12/28/2023
2.1.106 530 12/28/2023
2.1.105 201 12/27/2023
2.1.104 128 12/27/2023
2.1.103 153 12/27/2023
2.1.102 119 12/27/2023
2.1.101 688 12/25/2023
2.1.100 113 12/25/2023
2.1.99 254 12/25/2023
2.1.98 128 12/25/2023
2.1.97 424 12/25/2023
2.1.96 308 12/25/2023
2.1.95 178 12/25/2023
2.1.94 123 12/25/2023
2.1.93 152 12/25/2023
2.1.92 146 12/25/2023
2.1.91 635 12/24/2023
2.1.90 214 12/24/2023
2.1.89 382 12/23/2023
2.1.88 171 12/23/2023
2.1.87 124 12/23/2023
2.1.86 246 12/23/2023
2.1.85 125 12/23/2023
2.1.84 426 12/23/2023
2.1.83 125 12/23/2023
2.1.82 423 12/23/2023
2.1.81 129 12/23/2023
2.1.80 251 12/23/2023
2.1.79 534 12/19/2023
2.1.78 121 12/19/2023
2.1.77 209 12/19/2023
2.1.76 934 12/11/2023
2.1.75 262 12/11/2023
2.1.74 276 12/10/2023
2.1.73 208 12/10/2023
2.1.72 148 12/10/2023
2.1.71 506 12/10/2023
2.1.70 170 12/9/2023
2.1.69 246 12/9/2023
2.1.68 260 12/9/2023
2.1.67 153 12/9/2023
2.1.66 164 12/9/2023
2.1.65 212 12/9/2023
2.1.64 127 12/9/2023
2.1.63 338 12/9/2023
2.1.62 519 12/6/2023
2.1.61 213 12/6/2023
2.1.60 249 12/6/2023
2.1.59 165 12/6/2023
2.1.58 279 12/5/2023
2.1.57 262 12/5/2023
2.1.56 181 12/5/2023
2.1.55 211 12/5/2023
2.1.54 202 12/5/2023
2.1.53 150 12/5/2023
2.1.52 224 12/5/2023
2.1.51 153 12/4/2023
2.1.50 131 12/4/2023
2.1.49 419 12/4/2023
2.1.48 131 12/4/2023
2.1.47 127 12/4/2023
2.1.46 380 11/28/2023
2.1.45 158 11/27/2023
2.1.44 203 11/27/2023
2.1.43 142 11/26/2023
2.1.42 245 11/23/2023
2.1.41 134 11/23/2023
2.1.40 324 11/23/2023
2.1.39 280 11/23/2023
2.1.38 212 11/23/2023
2.1.37 146 11/23/2023
2.1.36 166 11/23/2023
2.1.35 421 11/22/2023
2.1.34 191 11/20/2023
2.1.33 207 11/20/2023
2.1.32 274 11/20/2023
2.1.31 136 11/20/2023
2.1.30 282 11/19/2023
2.1.29 127 11/19/2023
2.1.28 165 11/19/2023
2.1.27 144 11/19/2023
2.1.26 238 11/19/2023
2.1.25 139 11/19/2023
2.1.24 153 11/19/2023
2.1.23 131 11/19/2023
2.1.22 134 11/19/2023
2.1.21 315 11/18/2023
2.1.20 149 11/18/2023
2.1.19 153 11/18/2023
2.1.18 132 11/18/2023
2.1.17 129 11/18/2023
2.1.16 142 11/17/2023
2.1.15 132 11/17/2023
2.1.14 138 11/17/2023
2.1.13 146 11/17/2023
2.1.12 164 11/17/2023
2.1.11 119 11/17/2023
2.1.10 135 11/17/2023
2.1.9 139 11/17/2023
2.1.8 152 11/17/2023
2.1.7 142 11/17/2023
2.1.6 165 11/17/2023
2.1.5 141 11/17/2023
2.1.4 142 11/16/2023
2.1.3 138 11/16/2023
2.0.37 833 11/15/2023
2.0.36 134 11/15/2023
2.0.35 139 11/15/2023
2.0.34 137 11/15/2023
1.0.33 141 11/14/2023
1.0.32 131 11/14/2023
1.0.31 347 11/13/2023
1.0.30 130 11/13/2023
1.0.29 169 11/10/2023
1.0.28 133 11/10/2023
1.0.27 136 11/9/2023
1.0.26 131 11/9/2023
1.0.25 132 11/9/2023
1.0.24 131 11/7/2023
1.0.23 126 11/7/2023
1.0.22 126 11/6/2023
1.0.21 135 11/6/2023
1.0.20 154 11/3/2023
1.0.19 144 11/3/2023
1.0.18 153 11/2/2023
1.0.17 142 11/2/2023
1.0.16 151 11/1/2023
1.0.15 140 11/1/2023
1.0.14 178 10/26/2023
1.0.13 152 10/26/2023
1.0.12 170 10/19/2023
1.0.11 169 10/19/2023
1.0.10 170 10/18/2023
1.0.9 167 10/18/2023
1.0.8 164 10/17/2023
1.0.7 153 10/17/2023
1.0.6 186 10/16/2023
1.0.5 180 10/16/2023
1.0.4 180 10/13/2023
1.0.3 173 10/13/2023
1.0.2 172 10/12/2023
1.0.1 195 10/1/2023