Soenneker.Utils.RateLimiting.Factory 3.0.784

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.RateLimiting.Factory --version 3.0.784
                    
NuGet\Install-Package Soenneker.Utils.RateLimiting.Factory -Version 3.0.784
                    
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.RateLimiting.Factory" Version="3.0.784" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.RateLimiting.Factory" Version="3.0.784" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Utils.RateLimiting.Factory" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Utils.RateLimiting.Factory --version 3.0.784
                    
#r "nuget: Soenneker.Utils.RateLimiting.Factory, 3.0.784"
                    
#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.
#addin nuget:?package=Soenneker.Utils.RateLimiting.Factory&version=3.0.784
                    
Install Soenneker.Utils.RateLimiting.Factory as a Cake Addin
#tool nuget:?package=Soenneker.Utils.RateLimiting.Factory&version=3.0.784
                    
Install Soenneker.Utils.RateLimiting.Factory as a Cake Tool

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.RateLimiting.Factory

An async thread-safe singleton dictionary for Soenneker.Utils.RateLimiting.Executors, designed to manage the rate at which tasks are executed.

Installation

dotnet add package Soenneker.Utils.RateLimiting.Factory

Usage

  1. Register IRateLimitingFactory within DI (Program.cs).
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddRateLimitingFactoryAsSingleton();
}
  1. Inject IRateLimitingFactory, and retrieve a RateLimitingFactory.

Example:

public class TestClass
{
    IRateLimitingFactory _factory;

    public TestClass(IRateLimitingFactory factory)
    {
        _factory = factory;
    }

    public async ValueTask ExecuteTasks()
    {
        RateLimitingExecutor rateLimitingExecutor = await _factory.Get("test", TimeSpan.FromSeconds(2));

        for (int i = 0; i < 5; i++)
        {
            await rateLimitingExecutor.Execute(async ct =>
            {
                Logger.LogInformation($"Executing Task {i + 1} at {DateTime.Now:HH:mm:ss}");

                await Task.Delay(100, ct); // Simulate some work
            });
        }
    }
}

Console Output

Executing Task 1 at 14:00:00
Executing Task 2 at 14:00:02
Executing Task 3 at 14:00:04
Executing Task 4 at 14:00:06
Executing Task 5 at 14:00:08
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Soenneker.Utils.RateLimiting.Factory:

Package Downloads
Soenneker.Validators.Yahoo.Exists

A validation module checking for Yahoo account existence

Soenneker.Validators.Gmail.Exists

A validation module checking for Gmail account existence

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.808 0 4/4/2025
3.0.807 0 4/3/2025
3.0.806 0 4/3/2025
3.0.805 90 4/1/2025
3.0.804 64 4/1/2025
3.0.803 81 4/1/2025
3.0.802 52 4/1/2025
3.0.801 56 4/1/2025
3.0.800 116 4/1/2025
3.0.799 93 4/1/2025
3.0.798 63 4/1/2025
3.0.797 114 3/31/2025
3.0.796 55 3/31/2025
3.0.795 62 3/31/2025
3.0.794 57 3/31/2025
3.0.793 145 3/31/2025
3.0.792 98 3/31/2025
3.0.791 104 3/29/2025
3.0.790 94 3/29/2025
3.0.789 85 3/29/2025
3.0.788 67 3/29/2025
3.0.787 72 3/29/2025
3.0.786 186 3/27/2025
3.0.785 508 3/26/2025
3.0.784 473 3/25/2025
3.0.783 442 3/25/2025
3.0.782 465 3/25/2025
3.0.781 443 3/25/2025
3.0.780 453 3/25/2025
3.0.779 445 3/25/2025
3.0.778 221 3/21/2025
3.0.777 118 3/21/2025
3.0.776 98 3/21/2025
3.0.775 131 3/21/2025
3.0.774 109 3/21/2025
3.0.773 204 3/20/2025
3.0.772 238 3/18/2025
3.0.771 184 3/18/2025
3.0.770 130 3/18/2025
3.0.769 142 3/18/2025
3.0.768 190 3/18/2025
3.0.767 163 3/18/2025
3.0.766 134 3/15/2025
3.0.765 80 3/15/2025
3.0.764 77 3/15/2025
3.0.763 52 3/15/2025
3.0.762 89 3/15/2025
3.0.761 290 3/12/2025
3.0.760 165 3/12/2025
3.0.759 166 3/12/2025
3.0.758 148 3/12/2025
3.0.757 221 3/12/2025
3.0.756 152 3/12/2025
3.0.755 141 3/12/2025
3.0.754 146 3/12/2025
3.0.753 220 3/12/2025
3.0.752 148 3/12/2025
3.0.751 146 3/12/2025
3.0.750 182 3/11/2025
3.0.749 143 3/11/2025
3.0.748 201 3/11/2025
3.0.747 157 3/11/2025
3.0.746 164 3/11/2025
3.0.745 155 3/11/2025
3.0.744 168 3/11/2025
3.0.743 160 3/11/2025
3.0.742 225 3/11/2025
3.0.741 156 3/11/2025
3.0.740 166 3/11/2025
3.0.739 289 3/11/2025
3.0.738 149 3/11/2025
3.0.737 318 3/7/2025
3.0.736 213 3/7/2025
3.0.735 196 3/7/2025
3.0.734 270 3/7/2025
3.0.733 232 3/7/2025
3.0.732 212 3/7/2025
3.0.731 251 3/2/2025
3.0.730 121 3/2/2025
3.0.729 120 3/2/2025
3.0.728 104 3/2/2025
3.0.727 77 3/2/2025
3.0.726 87 3/2/2025
3.0.725 81 3/2/2025
3.0.724 129 3/2/2025
3.0.723 80 3/2/2025
3.0.722 123 3/2/2025
3.0.721 73 3/2/2025
3.0.720 93 3/2/2025
3.0.719 84 3/2/2025
3.0.718 185 3/1/2025
3.0.717 86 3/1/2025
3.0.716 85 3/1/2025
3.0.715 176 3/1/2025
3.0.714 79 3/1/2025
3.0.713 78 3/1/2025
3.0.712 268 3/1/2025
3.0.711 87 3/1/2025
3.0.710 85 3/1/2025
3.0.709 74 3/1/2025
3.0.708 89 3/1/2025
3.0.707 74 3/1/2025
3.0.706 171 3/1/2025
3.0.705 77 3/1/2025
3.0.704 72 3/1/2025
3.0.703 271 2/26/2025
3.0.702 82 2/26/2025
3.0.701 113 2/25/2025
3.0.700 74 2/25/2025
3.0.699 159 2/25/2025
3.0.698 82 2/25/2025
3.0.697 180 2/25/2025
3.0.696 83 2/25/2025
3.0.695 78 2/25/2025
3.0.694 134 2/25/2025
3.0.693 80 2/25/2025
3.0.692 85 2/24/2025
3.0.691 81 2/24/2025
3.0.690 82 2/24/2025
3.0.689 296 2/23/2025
3.0.688 135 2/23/2025
3.0.687 123 2/23/2025
3.0.686 82 2/23/2025
3.0.685 102 2/23/2025
3.0.684 77 2/23/2025
3.0.683 83 2/22/2025
3.0.682 191 2/22/2025
3.0.681 149 2/22/2025
3.0.680 100 2/22/2025
3.0.679 119 2/22/2025
3.0.678 90 2/22/2025
3.0.677 106 2/22/2025
3.0.676 123 2/22/2025
3.0.675 87 2/22/2025
3.0.674 171 2/22/2025
3.0.673 99 2/22/2025
3.0.672 82 2/22/2025
3.0.671 130 2/21/2025
3.0.670 83 2/21/2025
3.0.669 88 2/21/2025
3.0.668 88 2/21/2025
3.0.667 85 2/21/2025
3.0.666 247 2/21/2025
3.0.665 91 2/21/2025
3.0.664 85 2/21/2025
3.0.663 273 2/19/2025
3.0.662 99 2/19/2025
3.0.661 105 2/19/2025
3.0.660 89 2/19/2025
3.0.659 104 2/19/2025
3.0.658 92 2/19/2025
3.0.657 115 2/19/2025
3.0.656 93 2/19/2025
3.0.655 238 2/18/2025
3.0.654 89 2/18/2025
3.0.653 151 2/18/2025
3.0.652 88 2/18/2025
3.0.651 95 2/18/2025
3.0.650 87 2/18/2025
3.0.649 84 2/18/2025
3.0.648 211 2/18/2025
3.0.647 92 2/18/2025
3.0.646 195 2/16/2025
3.0.645 146 2/14/2025
3.0.644 110 2/14/2025
3.0.643 95 2/14/2025
3.0.642 122 2/14/2025
3.0.641 98 2/14/2025
3.0.640 98 2/14/2025
3.0.639 90 2/14/2025
3.0.638 173 2/13/2025
3.0.637 93 2/13/2025
3.0.636 278 2/12/2025
3.0.635 102 2/12/2025
3.0.634 93 2/12/2025
3.0.633 96 2/12/2025
3.0.632 167 2/12/2025
3.0.631 87 2/12/2025
3.0.630 98 2/12/2025
3.0.629 136 2/12/2025
3.0.628 83 2/12/2025
3.0.627 95 2/12/2025
3.0.626 88 2/12/2025
3.0.625 90 2/12/2025
3.0.624 148 2/11/2025
3.0.623 86 2/11/2025
3.0.622 83 2/11/2025
3.0.621 294 2/11/2025
3.0.620 87 2/11/2025
3.0.619 93 2/11/2025
3.0.618 91 2/11/2025
3.0.617 85 2/11/2025
3.0.616 85 2/11/2025
3.0.615 199 2/11/2025
3.0.614 89 2/11/2025
3.0.613 87 2/11/2025
3.0.612 158 2/11/2025
3.0.611 96 2/11/2025
3.0.610 121 2/11/2025
3.0.609 84 2/11/2025
3.0.608 90 2/11/2025
3.0.607 122 2/11/2025
3.0.606 90 2/11/2025
3.0.605 94 2/11/2025
3.0.604 90 2/10/2025
3.0.603 97 2/10/2025
3.0.602 95 2/10/2025
3.0.601 179 2/10/2025
3.0.600 82 2/10/2025
3.0.599 84 2/10/2025
3.0.598 163 2/10/2025
3.0.597 92 2/10/2025
3.0.596 86 2/10/2025
3.0.595 155 2/10/2025
3.0.594 182 2/9/2025
3.0.593 109 2/9/2025
3.0.592 83 2/9/2025
3.0.591 78 2/9/2025
3.0.590 87 2/9/2025
3.0.589 84 2/9/2025
3.0.588 92 2/9/2025
3.0.587 288 2/8/2025
3.0.586 88 2/8/2025
3.0.585 94 2/8/2025
3.0.584 87 2/8/2025
3.0.583 81 2/8/2025
3.0.582 108 2/7/2025
3.0.581 84 2/7/2025
3.0.580 85 2/7/2025
3.0.579 214 2/7/2025
3.0.578 78 2/7/2025
3.0.577 87 2/7/2025
3.0.576 93 2/7/2025
3.0.575 82 2/7/2025
3.0.574 85 2/7/2025
3.0.573 84 2/7/2025
3.0.572 85 2/7/2025
3.0.571 91 2/7/2025
3.0.570 82 2/7/2025
3.0.569 88 2/7/2025
3.0.568 78 2/7/2025
3.0.567 271 2/7/2025
3.0.566 132 2/7/2025
3.0.565 83 2/6/2025
3.0.564 192 2/5/2025
3.0.563 125 2/5/2025
3.0.562 109 2/5/2025
3.0.561 123 2/5/2025
3.0.560 109 2/5/2025
3.0.559 93 2/5/2025
3.0.558 195 2/5/2025
3.0.557 88 2/5/2025
3.0.556 114 2/5/2025
3.0.555 81 2/5/2025
3.0.554 95 2/5/2025
3.0.553 87 2/5/2025
3.0.552 87 2/5/2025
3.0.551 168 2/5/2025
3.0.550 191 2/5/2025
3.0.549 221 1/28/2025
3.0.548 93 1/28/2025
3.0.547 84 1/28/2025
3.0.546 82 1/28/2025
3.0.545 85 1/28/2025
3.0.544 81 1/28/2025
3.0.543 137 1/28/2025
3.0.542 79 1/28/2025
3.0.541 105 1/28/2025
3.0.540 96 1/28/2025
3.0.539 205 1/28/2025
3.0.538 82 1/27/2025
3.0.537 73 1/27/2025
3.0.536 74 1/27/2025
3.0.535 72 1/27/2025
3.0.534 76 1/27/2025
3.0.533 113 1/27/2025
3.0.532 75 1/27/2025
3.0.531 80 1/27/2025
3.0.530 75 1/27/2025
3.0.529 78 1/27/2025
3.0.528 211 1/26/2025
3.0.527 120 1/26/2025
3.0.526 84 1/26/2025
3.0.525 87 1/26/2025
3.0.524 84 1/26/2025
3.0.523 153 1/26/2025
3.0.522 88 1/25/2025
3.0.521 83 1/25/2025
3.0.520 179 1/25/2025
3.0.519 80 1/25/2025
3.0.518 82 1/25/2025
3.0.517 140 1/25/2025
3.0.516 80 1/25/2025
3.0.515 106 1/25/2025
3.0.514 168 1/25/2025
3.0.513 74 1/25/2025
3.0.512 166 1/24/2025
3.0.511 123 1/24/2025
3.0.510 107 1/24/2025
3.0.509 77 1/24/2025
3.0.508 104 1/24/2025
3.0.507 95 1/24/2025
3.0.506 78 1/24/2025
3.0.505 139 1/24/2025
3.0.504 81 1/24/2025
3.0.503 137 1/24/2025
3.0.502 78 1/24/2025
3.0.501 74 1/24/2025
3.0.500 77 1/24/2025
3.0.499 81 1/24/2025
3.0.498 78 1/24/2025
3.0.497 75 1/24/2025
3.0.496 73 1/24/2025
3.0.495 189 1/24/2025
3.0.494 75 1/24/2025
3.0.493 75 1/24/2025
3.0.492 73 1/24/2025
3.0.491 103 1/23/2025
3.0.490 116 1/23/2025
3.0.489 76 1/23/2025
3.0.488 197 1/22/2025
3.0.487 130 1/22/2025
3.0.486 87 1/21/2025
3.0.485 71 1/21/2025
3.0.484 134 1/21/2025
3.0.483 73 1/21/2025
3.0.482 83 1/21/2025
3.0.481 81 1/21/2025
3.0.480 79 1/21/2025
3.0.479 126 1/21/2025
3.0.478 76 1/21/2025
3.0.477 78 1/21/2025
3.0.476 202 1/21/2025
3.0.475 78 1/21/2025
3.0.474 79 1/21/2025
3.0.473 84 1/21/2025
3.0.472 80 1/21/2025
3.0.471 76 1/21/2025
3.0.470 217 1/21/2025
3.0.469 82 1/21/2025
3.0.468 130 1/20/2025
3.0.467 76 1/20/2025
3.0.466 140 1/20/2025
3.0.465 75 1/20/2025
3.0.464 159 1/20/2025
3.0.463 134 1/20/2025
3.0.462 79 1/20/2025
3.0.461 112 1/20/2025
3.0.460 71 1/20/2025
3.0.459 204 1/20/2025
3.0.458 78 1/20/2025
3.0.457 79 1/20/2025
3.0.456 72 1/20/2025
3.0.455 74 1/20/2025
3.0.454 183 1/19/2025
3.0.453 71 1/19/2025
3.0.452 79 1/19/2025
3.0.451 71 1/19/2025
3.0.450 148 1/19/2025
3.0.449 71 1/19/2025
3.0.448 74 1/19/2025
3.0.447 215 1/19/2025
3.0.446 70 1/19/2025
3.0.445 126 1/18/2025
3.0.444 149 1/18/2025
3.0.443 70 1/18/2025
3.0.442 168 1/18/2025
3.0.441 165 1/17/2025
3.0.440 128 1/17/2025
3.0.439 74 1/17/2025
3.0.438 77 1/17/2025
3.0.437 80 1/17/2025
3.0.436 153 1/17/2025
3.0.435 73 1/17/2025
3.0.434 99 1/17/2025
3.0.433 82 1/16/2025
3.0.432 144 1/16/2025
3.0.431 75 1/16/2025
3.0.430 91 1/16/2025
3.0.429 156 1/16/2025
3.0.428 97 1/16/2025
3.0.427 100 1/16/2025
3.0.426 70 1/16/2025
3.0.425 83 1/16/2025
3.0.424 137 1/16/2025
3.0.423 73 1/16/2025
3.0.422 163 1/16/2025
3.0.421 80 1/15/2025
3.0.420 143 1/15/2025
3.0.419 131 1/15/2025
3.0.418 79 1/15/2025
3.0.417 72 1/15/2025
3.0.416 116 1/15/2025
3.0.415 64 1/15/2025
3.0.414 232 1/15/2025
3.0.413 59 1/15/2025
3.0.412 89 1/15/2025
3.0.411 60 1/15/2025
3.0.410 48 1/15/2025
3.0.409 44 1/15/2025
3.0.408 42 1/15/2025
3.0.407 98 1/14/2025
3.0.406 57 1/14/2025
3.0.405 60 1/14/2025
3.0.404 66 1/14/2025
3.0.403 56 1/14/2025
3.0.402 118 1/14/2025
3.0.401 58 1/14/2025
3.0.400 159 1/14/2025
3.0.399 56 1/14/2025
3.0.398 130 1/13/2025
3.0.397 67 1/13/2025
3.0.396 61 1/13/2025
3.0.395 113 1/13/2025
3.0.394 69 1/13/2025
3.0.393 90 1/13/2025
3.0.392 66 1/13/2025
3.0.391 156 1/13/2025
3.0.390 66 1/13/2025
3.0.389 140 1/11/2025
3.0.388 69 1/11/2025
3.0.387 74 1/11/2025
3.0.386 103 1/11/2025
3.0.385 115 1/11/2025
3.0.384 75 1/11/2025
3.0.383 82 1/11/2025
3.0.382 78 1/11/2025
3.0.381 109 1/11/2025
3.0.380 77 1/11/2025
3.0.379 141 1/10/2025
3.0.378 82 1/10/2025
3.0.377 128 1/10/2025
3.0.376 79 1/10/2025
3.0.375 120 1/10/2025
3.0.374 77 1/10/2025
3.0.373 100 1/10/2025
3.0.372 76 1/10/2025
3.0.371 458 1/3/2025
3.0.370 170 1/3/2025
3.0.369 119 1/3/2025
3.0.368 100 1/3/2025
3.0.367 117 1/3/2025
3.0.366 106 1/3/2025
3.0.365 156 1/3/2025
3.0.364 109 1/3/2025
3.0.363 99 1/3/2025
3.0.362 85 1/3/2025
3.0.361 98 1/3/2025
3.0.360 87 1/3/2025
3.0.359 154 1/2/2025
3.0.358 86 1/2/2025
3.0.357 157 1/2/2025
3.0.356 90 1/2/2025
3.0.355 262 1/2/2025
3.0.354 87 1/2/2025
3.0.353 90 1/2/2025
3.0.352 188 1/1/2025
3.0.351 97 1/1/2025
3.0.350 94 1/1/2025
3.0.349 138 1/1/2025
3.0.348 91 1/1/2025
3.0.347 103 1/1/2025
3.0.346 90 1/1/2025
3.0.345 163 1/1/2025
3.0.344 100 1/1/2025
3.0.343 92 1/1/2025
3.0.342 101 1/1/2025
3.0.341 130 1/1/2025
3.0.340 100 1/1/2025
3.0.339 105 12/31/2024
3.0.338 96 12/31/2024
3.0.337 92 12/31/2024
3.0.336 189 12/31/2024
3.0.335 102 12/31/2024
3.0.334 103 12/31/2024
3.0.333 257 12/31/2024
3.0.332 111 12/31/2024
3.0.331 112 12/31/2024
3.0.330 106 12/31/2024
3.0.329 226 12/31/2024
3.0.328 80 12/31/2024
3.0.327 77 12/31/2024
3.0.326 139 12/31/2024
3.0.325 81 12/31/2024
3.0.324 87 12/31/2024
3.0.323 86 12/31/2024
3.0.322 87 12/31/2024
3.0.321 214 12/30/2024
3.0.320 157 12/28/2024
3.0.319 137 12/28/2024
3.0.318 89 12/28/2024
3.0.317 89 12/28/2024
3.0.316 102 12/28/2024
3.0.315 127 12/28/2024
3.0.314 80 12/28/2024
3.0.313 92 12/27/2024
3.0.312 88 12/27/2024
3.0.311 156 12/27/2024
3.0.310 86 12/27/2024
3.0.309 276 12/24/2024
3.0.308 140 12/24/2024
3.0.307 87 12/24/2024
3.0.306 82 12/24/2024
3.0.305 156 12/24/2024
3.0.304 104 12/24/2024
3.0.303 115 12/24/2024
3.0.302 88 12/24/2024
3.0.301 85 12/24/2024
3.0.300 165 12/24/2024
3.0.299 163 12/24/2024
3.0.298 112 12/24/2024
3.0.297 81 12/24/2024
3.0.296 88 12/24/2024
3.0.295 87 12/24/2024
3.0.294 119 12/24/2024
3.0.293 85 12/24/2024
3.0.292 120 12/23/2024
3.0.291 77 12/23/2024
3.0.290 97 12/23/2024
3.0.289 85 12/23/2024
3.0.288 146 12/23/2024
3.0.287 188 12/23/2024
3.0.286 84 12/23/2024
3.0.285 140 12/23/2024
3.0.284 88 12/23/2024
3.0.283 87 12/23/2024
3.0.282 116 12/23/2024
3.0.281 85 12/23/2024
3.0.280 202 12/23/2024
3.0.279 86 12/23/2024
3.0.278 121 12/22/2024
3.0.277 82 12/22/2024
3.0.276 89 12/22/2024
3.0.275 163 12/22/2024
3.0.274 97 12/22/2024
3.0.273 88 12/22/2024
3.0.272 95 12/22/2024
3.0.271 205 12/22/2024
3.0.270 88 12/22/2024
3.0.269 139 12/22/2024
3.0.268 182 12/22/2024
3.0.267 90 12/22/2024
3.0.266 118 12/22/2024
3.0.265 115 12/21/2024
3.0.264 101 12/21/2024
3.0.263 109 12/21/2024
3.0.262 89 12/21/2024
3.0.261 229 12/21/2024
3.0.260 89 12/21/2024
3.0.259 123 12/21/2024
3.0.258 88 12/21/2024
3.0.257 166 12/21/2024
3.0.256 93 12/21/2024
3.0.255 86 12/21/2024
3.0.254 208 12/21/2024
3.0.253 91 12/21/2024
3.0.252 85 12/21/2024
3.0.251 128 12/20/2024
3.0.250 85 12/20/2024
3.0.249 150 12/20/2024
3.0.248 91 12/20/2024
3.0.247 87 12/20/2024
3.0.246 166 12/20/2024
3.0.245 153 12/20/2024
3.0.244 87 12/20/2024
3.0.243 92 12/20/2024
3.0.242 91 12/20/2024
3.0.241 151 12/20/2024
3.0.240 97 12/20/2024
3.0.239 96 12/20/2024
3.0.238 170 12/19/2024
3.0.237 89 12/19/2024
3.0.236 123 12/19/2024
3.0.235 109 12/19/2024
3.0.234 88 12/19/2024
3.0.233 90 12/19/2024
3.0.232 134 12/19/2024
3.0.231 83 12/19/2024
3.0.230 120 12/18/2024
3.0.229 87 12/18/2024
3.0.228 91 12/18/2024
3.0.227 178 12/17/2024
3.0.225 121 12/17/2024
3.0.224 154 12/17/2024
3.0.223 110 12/16/2024
3.0.222 88 12/16/2024
3.0.221 90 12/16/2024
3.0.220 96 12/16/2024
3.0.219 279 12/10/2024
3.0.218 80 12/10/2024
3.0.217 108 12/10/2024
3.0.216 94 12/10/2024
3.0.215 131 12/10/2024
3.0.214 87 12/10/2024
3.0.213 101 12/9/2024
3.0.212 99 12/9/2024
3.0.211 132 12/9/2024
3.0.210 174 12/9/2024
3.0.209 91 12/9/2024
3.0.208 98 12/9/2024
3.0.207 83 12/9/2024
3.0.206 87 12/9/2024
3.0.205 140 12/9/2024
3.0.204 85 12/9/2024
3.0.203 210 12/7/2024
3.0.202 100 12/7/2024
3.0.201 93 12/7/2024
3.0.200 89 12/6/2024
3.0.199 85 12/6/2024
3.0.198 100 12/6/2024
3.0.197 93 12/6/2024
3.0.196 94 12/6/2024
3.0.195 95 12/6/2024
3.0.194 96 12/6/2024
3.0.193 89 12/6/2024
3.0.192 96 12/6/2024
3.0.191 103 12/6/2024
3.0.190 97 12/6/2024
3.0.189 102 12/6/2024
3.0.188 99 12/6/2024
3.0.187 114 12/6/2024
3.0.184 107 12/6/2024
3.0.183 95 12/6/2024
3.0.182 91 12/6/2024
3.0.181 106 12/5/2024
3.0.180 102 12/5/2024
3.0.179 95 12/5/2024
3.0.178 648 12/5/2024
3.0.177 106 12/5/2024
3.0.176 96 12/5/2024
3.0.175 119 12/5/2024
3.0.174 84 12/5/2024
3.0.173 114 12/5/2024
3.0.172 135 12/5/2024
3.0.171 90 12/5/2024
3.0.170 124 12/5/2024
3.0.169 98 12/5/2024
3.0.168 102 12/5/2024
3.0.167 94 12/4/2024
3.0.166 94 12/4/2024
3.0.165 143 12/4/2024
3.0.164 95 12/4/2024
3.0.163 181 12/4/2024
3.0.162 130 12/4/2024
3.0.161 101 12/4/2024
3.0.160 129 12/4/2024
3.0.159 92 12/4/2024
3.0.158 150 12/4/2024
3.0.157 93 12/4/2024
3.0.156 96 12/4/2024
3.0.155 168 12/4/2024
3.0.154 94 12/3/2024
3.0.153 87 12/3/2024
3.0.152 130 12/3/2024
3.0.151 83 12/3/2024
3.0.150 119 12/3/2024
3.0.149 88 12/3/2024
3.0.148 92 12/3/2024
3.0.147 89 12/3/2024
3.0.146 134 12/3/2024
3.0.145 84 12/3/2024
3.0.144 96 12/3/2024
3.0.143 140 12/3/2024
3.0.142 89 12/3/2024
3.0.141 330 12/2/2024
3.0.140 96 12/2/2024
3.0.139 91 12/2/2024
3.0.138 83 12/2/2024
3.0.137 139 12/2/2024
3.0.136 97 12/2/2024
3.0.135 94 12/2/2024
3.0.134 145 12/2/2024
3.0.133 87 12/2/2024
3.0.132 150 12/2/2024
3.0.131 87 12/2/2024
3.0.130 191 12/2/2024
3.0.129 89 12/2/2024
3.0.128 90 12/1/2024
3.0.127 91 12/1/2024
3.0.126 132 12/1/2024
3.0.125 94 12/1/2024
3.0.124 186 12/1/2024
3.0.123 103 12/1/2024
3.0.122 97 12/1/2024
3.0.121 96 12/1/2024
3.0.120 177 11/29/2024
3.0.119 114 11/29/2024
3.0.118 89 11/29/2024
3.0.117 129 11/29/2024
3.0.116 85 11/29/2024
3.0.115 122 11/29/2024
3.0.114 105 11/29/2024
3.0.113 170 11/21/2024
3.0.112 109 11/21/2024
3.0.111 87 11/21/2024
3.0.110 93 11/21/2024
3.0.109 119 11/21/2024
3.0.108 97 11/21/2024
3.0.107 192 11/20/2024
3.0.106 104 11/20/2024
3.0.105 93 11/20/2024
3.0.104 112 11/20/2024
3.0.103 91 11/20/2024
3.0.102 87 11/20/2024
3.0.101 94 11/20/2024
3.0.100 92 11/19/2024
3.0.99 92 11/19/2024
3.0.98 88 11/19/2024
3.0.97 354 11/19/2024
3.0.96 218 11/19/2024
3.0.95 82 11/19/2024
3.0.94 81 11/19/2024
3.0.93 156 11/19/2024
3.0.92 82 11/19/2024
3.0.91 111 11/19/2024
3.0.90 89 11/19/2024
3.0.89 239 11/15/2024
3.0.88 116 11/15/2024
3.0.87 84 11/15/2024
3.0.86 93 11/14/2024
3.0.85 84 11/14/2024
3.0.84 130 11/14/2024
3.0.83 86 11/14/2024
3.0.82 95 11/14/2024
3.0.81 89 11/14/2024
3.0.80 140 11/14/2024
3.0.79 136 11/14/2024
3.0.78 98 11/14/2024
3.0.77 88 11/14/2024
3.0.76 182 11/14/2024
3.0.75 101 11/14/2024
3.0.74 142 11/14/2024
3.0.73 175 11/14/2024
3.0.72 97 11/14/2024
3.0.71 152 11/14/2024
3.0.70 91 11/14/2024
3.0.69 117 11/14/2024
3.0.68 104 11/14/2024
3.0.67 188 11/14/2024
3.0.66 96 11/14/2024
3.0.65 96 11/14/2024
2.1.64 276 11/13/2024
2.1.63 112 11/13/2024
2.1.62 127 11/13/2024
2.1.61 93 11/13/2024
2.1.60 94 11/13/2024
2.1.59 231 11/13/2024
2.1.58 97 11/13/2024
2.1.57 97 11/13/2024
2.1.56 133 11/12/2024
2.1.55 92 11/12/2024
2.1.54 613 11/9/2024
2.1.53 126 11/9/2024
2.1.52 100 11/9/2024
2.1.51 150 11/9/2024
2.1.50 102 11/9/2024
2.1.49 101 11/9/2024
2.1.48 102 11/9/2024
2.1.47 233 11/9/2024
2.1.46 218 11/8/2024
2.1.45 103 11/8/2024
2.1.44 109 11/8/2024
2.1.43 128 11/8/2024
2.1.42 107 11/8/2024
2.1.41 219 11/8/2024
2.1.40 103 11/8/2024
2.1.39 102 11/8/2024
2.1.38 191 11/8/2024
2.1.37 96 11/8/2024
2.1.36 256 11/6/2024
2.1.35 146 11/6/2024
2.1.34 281 11/1/2024
2.1.33 132 11/1/2024
2.1.32 101 11/1/2024
2.1.31 131 11/1/2024
2.1.30 163 11/1/2024
2.1.29 161 11/1/2024
2.1.28 107 11/1/2024
2.1.26 226 10/29/2024
2.1.25 92 10/29/2024
2.1.24 91 10/29/2024
2.1.23 103 10/29/2024
2.1.22 98 10/29/2024
2.1.21 91 10/29/2024
2.1.20 229 10/29/2024
2.1.19 198 10/29/2024
2.1.18 131 10/29/2024
2.1.17 97 10/29/2024
2.1.16 88 10/29/2024
2.1.15 219 10/28/2024
2.1.14 100 10/28/2024
2.1.13 96 10/28/2024
2.1.12 321 10/26/2024
2.1.11 100 10/26/2024
2.1.10 99 10/26/2024
2.1.9 93 10/26/2024
2.1.8 100 10/26/2024
2.1.7 96 10/26/2024
2.1.6 219 10/22/2024
2.1.5 96 10/22/2024
2.1.4 93 10/22/2024
2.1.3 97 10/22/2024
2.1.2 99 10/22/2024
2.1.1 101 10/22/2024