Soenneker.Validators.ExpiringKey 2.1.325

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

// Install Soenneker.Validators.ExpiringKey as a Cake Tool
#tool nuget:?package=Soenneker.Validators.ExpiringKey&version=2.1.325                

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.Validators.ExpiringKey

A validation module that checks for keys, stores them, expires them after an amount of time

Ideal for caching, session management, and more.

🚀 Features

  • Validate Key: Check if a key exists.
  • Add Key: Add a key with an expiration time.
  • Validate and Add: Validate if a key exists and add it if not.
  • Remove Key: Remove a key.

Installation

dotnet add package Soenneker.Validators.ExpiringKey

💻 Usage

IExpiringKeyValidator can be registered within DI, and injected:

public static async Task Main(string[] args)
{
    ...
    builder.Services.AddExpiringKeyValidatorAsSingleton();
}

or it can be initialized manually: new ExpiringKeyValidator().

Validate Key

Check if a key is present.

bool Validate(string key)

Add Key

Add a key with an expiration time.

void Add(string key, int expirationTimeMilliseconds)

Validate and Add Key

Validate a key and add it if it doesn't exist.

bool ValidateAndAdd(string key, int expirationTimeMilliseconds) // true if doesn't exist, false if it does

Remove Key

Remove a key.

void Remove(string key)

Example

var validator = new ExpiringKeyValidator();
validator.Add("key1", 5000); // 5 seconds

var invalid = validator.Validate("key1"); // false, key exists

await Task.Delay(7000); // wait 7 seconds

var validAfterTime = validator.Validate("key1"); // true, key does not exist
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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.767 0 1/3/2025
3.0.766 0 1/3/2025
3.0.765 0 1/3/2025
3.0.764 0 1/3/2025
3.0.763 0 1/2/2025
3.0.762 0 1/2/2025
3.0.761 0 1/2/2025
3.0.760 0 1/2/2025
3.0.759 0 1/2/2025
3.0.758 0 1/2/2025
3.0.757 0 1/2/2025
3.0.756 0 1/2/2025
3.0.755 40 1/1/2025
3.0.754 39 1/1/2025
3.0.753 38 1/1/2025
3.0.752 38 1/1/2025
3.0.751 37 12/31/2024
3.0.750 36 12/31/2024
3.0.749 39 12/31/2024
3.0.748 40 12/31/2024
3.0.747 38 12/31/2024
3.0.746 36 12/31/2024
3.0.745 44 12/31/2024
3.0.744 39 12/31/2024
3.0.743 51 12/31/2024
3.0.742 51 12/31/2024
3.0.741 54 12/31/2024
3.0.740 67 12/31/2024
3.0.739 64 12/31/2024
3.0.738 68 12/31/2024
3.0.737 64 12/31/2024
3.0.736 73 12/31/2024
3.0.735 61 12/31/2024
3.0.734 64 12/31/2024
3.0.733 77 12/31/2024
3.0.732 62 12/31/2024
3.0.731 71 12/31/2024
3.0.730 78 12/28/2024
3.0.729 78 12/28/2024
3.0.728 72 12/28/2024
3.0.727 75 12/28/2024
3.0.726 75 12/28/2024
3.0.725 75 12/28/2024
3.0.724 74 12/27/2024
3.0.723 73 12/27/2024
3.0.722 81 12/27/2024
3.0.721 77 12/27/2024
3.0.720 78 12/24/2024
3.0.719 78 12/24/2024
3.0.718 73 12/24/2024
3.0.717 70 12/24/2024
3.0.716 77 12/24/2024
3.0.715 72 12/24/2024
3.0.714 78 12/24/2024
3.0.713 69 12/24/2024
3.0.712 73 12/24/2024
3.0.711 74 12/24/2024
3.0.710 73 12/24/2024
3.0.709 72 12/24/2024
3.0.708 75 12/24/2024
3.0.707 72 12/24/2024
3.0.706 73 12/23/2024
3.0.705 71 12/23/2024
3.0.704 68 12/23/2024
3.0.703 75 12/23/2024
3.0.702 69 12/23/2024
3.0.701 67 12/23/2024
3.0.700 74 12/23/2024
3.0.699 84 12/23/2024
3.0.698 76 12/23/2024
3.0.697 67 12/23/2024
3.0.696 73 12/23/2024
3.0.695 71 12/23/2024
3.0.694 77 12/23/2024
3.0.693 73 12/23/2024
3.0.692 70 12/22/2024
3.0.691 70 12/22/2024
3.0.690 68 12/22/2024
3.0.689 71 12/22/2024
3.0.688 82 12/22/2024
3.0.687 74 12/22/2024
3.0.686 66 12/22/2024
3.0.685 69 12/22/2024
3.0.684 72 12/22/2024
3.0.683 74 12/22/2024
3.0.682 74 12/22/2024
3.0.681 88 12/22/2024
3.0.680 84 12/22/2024
3.0.679 74 12/22/2024
3.0.678 75 12/21/2024
3.0.677 81 12/21/2024
3.0.676 76 12/21/2024
3.0.675 73 12/21/2024
3.0.674 108 12/21/2024
3.0.673 71 12/21/2024
3.0.672 76 12/21/2024
3.0.671 74 12/21/2024
3.0.670 79 12/21/2024
3.0.669 80 12/21/2024
3.0.668 77 12/21/2024
3.0.667 78 12/21/2024
3.0.666 77 12/21/2024
3.0.665 74 12/21/2024
3.0.664 75 12/21/2024
3.0.663 70 12/20/2024
3.0.662 73 12/20/2024
3.0.661 82 12/20/2024
3.0.660 75 12/20/2024
3.0.659 78 12/20/2024
3.0.658 74 12/20/2024
3.0.657 77 12/20/2024
3.0.656 78 12/20/2024
3.0.655 78 12/20/2024
3.0.654 76 12/19/2024
3.0.653 73 12/19/2024
3.0.652 70 12/19/2024
3.0.651 73 12/19/2024
3.0.650 79 12/19/2024
3.0.649 86 12/19/2024
3.0.648 81 12/19/2024
3.0.647 87 12/18/2024
3.0.646 74 12/18/2024
3.0.645 83 12/18/2024
3.0.644 75 12/18/2024
3.0.643 68 12/17/2024
3.0.642 73 12/16/2024
3.0.641 62 12/16/2024
3.0.640 66 12/16/2024
3.0.639 78 12/10/2024
3.0.638 75 12/10/2024
3.0.637 70 12/10/2024
3.0.636 75 12/10/2024
3.0.635 70 12/10/2024
3.0.634 73 12/10/2024
3.0.633 72 12/10/2024
3.0.632 74 12/9/2024
3.0.631 72 12/9/2024
3.0.630 79 12/9/2024
3.0.629 83 12/9/2024
3.0.628 75 12/9/2024
3.0.627 79 12/9/2024
3.0.626 82 12/9/2024
3.0.625 83 12/9/2024
3.0.624 79 12/9/2024
3.0.623 79 12/7/2024
3.0.622 82 12/7/2024
3.0.621 77 12/7/2024
3.0.620 85 12/6/2024
3.0.619 79 12/6/2024
3.0.618 77 12/6/2024
3.0.617 83 12/6/2024
3.0.616 82 12/6/2024
3.0.615 79 12/6/2024
3.0.614 83 12/6/2024
3.0.613 83 12/6/2024
3.0.612 87 12/6/2024
3.0.611 95 12/6/2024
3.0.610 85 12/6/2024
3.0.609 82 12/6/2024
3.0.608 80 12/6/2024
3.0.607 89 12/6/2024
3.0.606 89 12/6/2024
3.0.605 82 12/6/2024
3.0.604 77 12/6/2024
3.0.603 87 12/6/2024
3.0.602 79 12/6/2024
3.0.601 88 12/6/2024
3.0.600 88 12/6/2024
3.0.599 83 12/6/2024
3.0.598 84 12/6/2024
3.0.597 89 12/6/2024
3.0.596 86 12/5/2024
3.0.595 87 12/5/2024
3.0.594 86 12/5/2024
3.0.593 79 12/5/2024
3.0.592 85 12/3/2024
3.0.591 83 12/3/2024
3.0.590 97 12/3/2024
3.0.589 89 12/3/2024
3.0.588 85 12/3/2024
3.0.587 74 12/3/2024
3.0.586 80 12/3/2024
3.0.585 70 12/3/2024
3.0.584 77 12/2/2024
3.0.583 77 12/2/2024
3.0.582 75 12/2/2024
3.0.581 78 12/2/2024
3.0.580 83 12/2/2024
3.0.579 73 12/2/2024
3.0.578 68 12/2/2024
3.0.577 87 12/2/2024
3.0.576 77 12/2/2024
3.0.575 81 12/2/2024
3.0.574 73 12/2/2024
3.0.573 82 12/1/2024
3.0.572 80 12/1/2024
3.0.571 83 12/1/2024
3.0.570 77 12/1/2024
3.0.569 89 12/1/2024
3.0.568 83 12/1/2024
3.0.567 83 12/1/2024
3.0.566 85 12/1/2024
3.0.565 79 11/29/2024
3.0.564 76 11/29/2024
3.0.563 80 11/29/2024
3.0.562 75 11/29/2024
3.0.561 78 11/29/2024
3.0.560 83 11/29/2024
3.0.559 86 11/29/2024
3.0.558 84 11/21/2024
3.0.557 82 11/21/2024
3.0.556 76 11/21/2024
3.0.555 85 11/21/2024
3.0.554 78 11/21/2024
3.0.553 86 11/20/2024
3.0.552 94 11/20/2024
3.0.551 86 11/20/2024
3.0.550 88 11/20/2024
3.0.549 83 11/20/2024
3.0.548 83 11/20/2024
3.0.547 80 11/20/2024
3.0.546 82 11/20/2024
3.0.545 81 11/20/2024
3.0.544 80 11/20/2024
3.0.543 85 11/19/2024
3.0.542 76 11/19/2024
3.0.541 74 11/19/2024
3.0.540 77 11/19/2024
3.0.539 80 11/19/2024
3.0.538 76 11/19/2024
3.0.537 75 11/19/2024
3.0.536 81 11/15/2024
3.0.535 90 11/15/2024
3.0.534 79 11/14/2024
3.0.533 80 11/14/2024
3.0.532 76 11/14/2024
3.0.531 78 11/14/2024
3.0.530 73 11/14/2024
3.0.529 80 11/14/2024
3.0.528 76 11/14/2024
3.0.527 78 11/14/2024
3.0.526 77 11/14/2024
3.0.525 69 11/14/2024
3.0.524 78 11/14/2024
3.0.523 77 11/14/2024
3.0.522 82 11/14/2024
3.0.521 78 11/14/2024
3.0.520 82 11/14/2024
3.0.519 83 11/14/2024
3.0.518 80 11/14/2024
3.0.517 82 11/14/2024
3.0.516 82 11/14/2024
3.0.515 77 11/14/2024
3.0.514 81 11/14/2024
3.0.513 90 11/14/2024
3.0.512 90 11/14/2024
2.1.511 83 11/13/2024
2.1.510 89 11/13/2024
2.1.509 85 11/13/2024
2.1.508 84 11/13/2024
2.1.507 82 11/13/2024
2.1.506 81 11/13/2024
2.1.505 85 11/13/2024
2.1.504 87 11/13/2024
2.1.503 81 11/13/2024
2.1.502 81 11/13/2024
2.1.501 89 11/12/2024
2.1.500 83 11/12/2024
2.1.499 81 11/12/2024
2.1.498 88 11/9/2024
2.1.497 96 11/9/2024
2.1.496 94 11/9/2024
2.1.495 90 11/9/2024
2.1.494 88 11/9/2024
2.1.493 91 11/9/2024
2.1.492 86 11/9/2024
2.1.491 88 11/9/2024
2.1.490 82 11/9/2024
2.1.489 92 11/9/2024
2.1.488 96 11/8/2024
2.1.487 82 11/8/2024
2.1.486 84 11/8/2024
2.1.485 84 11/8/2024
2.1.484 89 11/8/2024
2.1.483 87 11/8/2024
2.1.482 86 11/8/2024
2.1.481 90 11/8/2024
2.1.480 91 11/8/2024
2.1.479 81 11/6/2024
2.1.478 80 11/6/2024
2.1.477 88 11/1/2024
2.1.476 88 11/1/2024
2.1.475 85 11/1/2024
2.1.474 82 11/1/2024
2.1.473 91 10/29/2024
2.1.472 82 10/29/2024
2.1.471 92 10/29/2024
2.1.470 76 10/29/2024
2.1.469 86 10/29/2024
2.1.468 84 10/29/2024
2.1.467 87 10/29/2024
2.1.466 80 10/29/2024
2.1.465 79 10/29/2024
2.1.464 83 10/29/2024
2.1.463 81 10/29/2024
2.1.462 76 10/29/2024
2.1.461 85 10/28/2024
2.1.460 82 10/28/2024
2.1.459 87 10/26/2024
2.1.458 90 10/26/2024
2.1.457 89 10/26/2024
2.1.456 82 10/26/2024
2.1.455 87 10/26/2024
2.1.454 90 10/22/2024
2.1.453 78 10/22/2024
2.1.452 86 10/22/2024
2.1.451 83 10/22/2024
2.1.450 83 10/22/2024
2.1.449 88 10/22/2024
2.1.448 83 10/22/2024
2.1.447 78 10/22/2024
2.1.446 81 10/22/2024
2.1.445 79 10/22/2024
2.1.444 82 10/22/2024
2.1.443 122 10/18/2024
2.1.442 116 10/18/2024
2.1.441 90 10/17/2024
2.1.440 98 10/17/2024
2.1.439 90 10/17/2024
2.1.438 95 10/17/2024
2.1.437 88 10/15/2024
2.1.436 89 10/15/2024
2.1.435 78 10/15/2024
2.1.434 86 10/15/2024
2.1.433 91 10/14/2024
2.1.432 87 10/12/2024
2.1.431 91 10/12/2024
2.1.430 85 10/12/2024
2.1.429 87 10/12/2024
2.1.428 86 10/12/2024
2.1.427 92 10/11/2024
2.1.426 86 10/11/2024
2.1.425 92 10/11/2024
2.1.424 93 10/11/2024
2.1.423 92 10/11/2024
2.1.422 89 10/9/2024
2.1.421 86 10/9/2024
2.1.420 91 10/9/2024
2.1.419 84 10/9/2024
2.1.418 86 10/9/2024
2.1.417 83 10/9/2024
2.1.416 91 10/9/2024
2.1.415 83 10/9/2024
2.1.414 84 10/9/2024
2.1.413 78 10/9/2024
2.1.412 89 10/9/2024
2.1.411 87 10/9/2024
2.1.410 84 10/8/2024
2.1.409 85 10/8/2024
2.1.408 88 10/8/2024
2.1.407 84 10/8/2024
2.1.406 83 10/8/2024
2.1.405 97 10/8/2024
2.1.404 87 10/8/2024
2.1.403 102 10/8/2024
2.1.402 85 10/3/2024
2.1.401 85 10/3/2024
2.1.400 75 10/3/2024
2.1.399 85 10/3/2024
2.1.398 86 10/3/2024
2.1.397 84 10/3/2024
2.1.396 128 10/3/2024
2.1.395 80 10/3/2024
2.1.394 89 10/3/2024
2.1.393 81 10/3/2024
2.1.392 85 10/2/2024
2.1.391 81 10/2/2024
2.1.390 82 10/2/2024
2.1.389 88 10/2/2024
2.1.388 91 10/2/2024
2.1.387 83 10/2/2024
2.1.386 78 10/2/2024
2.1.385 90 10/2/2024
2.1.384 87 10/2/2024
2.1.383 90 10/1/2024
2.1.382 82 10/1/2024
2.1.381 83 10/1/2024
2.1.380 84 10/1/2024
2.1.379 84 10/1/2024
2.1.378 84 10/1/2024
2.1.377 83 10/1/2024
2.1.376 87 10/1/2024
2.1.375 88 10/1/2024
2.1.374 88 9/29/2024
2.1.373 86 9/29/2024
2.1.372 88 9/29/2024
2.1.371 83 9/29/2024
2.1.370 91 9/29/2024
2.1.369 91 9/29/2024
2.1.368 96 9/29/2024
2.1.367 86 9/29/2024
2.1.366 84 9/27/2024
2.1.365 88 9/27/2024
2.1.364 86 9/27/2024
2.1.363 88 9/27/2024
2.1.362 83 9/27/2024
2.1.361 87 9/27/2024
2.1.360 86 9/27/2024
2.1.359 90 9/27/2024
2.1.358 96 9/27/2024
2.1.357 84 9/27/2024
2.1.356 87 9/27/2024
2.1.355 82 9/27/2024
2.1.354 90 9/27/2024
2.1.353 83 9/27/2024
2.1.352 83 9/27/2024
2.1.351 89 9/27/2024
2.1.350 100 9/27/2024
2.1.349 83 9/27/2024
2.1.348 85 9/26/2024
2.1.347 89 9/26/2024
2.1.346 94 9/26/2024
2.1.345 86 9/26/2024
2.1.344 93 9/26/2024
2.1.343 88 9/26/2024
2.1.342 90 9/26/2024
2.1.341 88 9/26/2024
2.1.340 86 9/26/2024
2.1.339 84 9/26/2024
2.1.338 86 9/26/2024
2.1.337 92 9/26/2024
2.1.336 88 9/26/2024
2.1.335 83 9/26/2024
2.1.334 90 9/26/2024
2.1.333 95 9/24/2024
2.1.332 91 9/23/2024
2.1.331 81 9/23/2024
2.1.330 92 9/23/2024
2.1.329 91 9/23/2024
2.1.328 91 9/23/2024
2.1.327 84 9/23/2024
2.1.326 100 9/23/2024
2.1.325 82 9/23/2024
2.1.324 89 9/23/2024
2.1.323 92 9/23/2024
2.1.322 92 9/23/2024
2.1.321 85 9/23/2024
2.1.320 79 9/23/2024
2.1.319 87 9/23/2024
2.1.318 97 9/23/2024
2.1.317 82 9/23/2024
2.1.316 82 9/23/2024
2.1.315 93 9/23/2024
2.1.314 78 9/23/2024
2.1.313 80 9/23/2024
2.1.312 85 9/19/2024
2.1.311 83 9/18/2024
2.1.310 87 9/18/2024
2.1.309 87 9/18/2024
2.1.308 96 9/18/2024
2.1.307 91 9/18/2024
2.1.306 96 9/18/2024
2.1.305 92 9/17/2024
2.1.304 98 9/17/2024
2.1.303 94 9/17/2024
2.1.302 87 9/17/2024
2.1.301 95 9/17/2024
2.1.300 98 9/17/2024
2.1.299 94 9/17/2024
2.1.297 86 9/17/2024
2.1.296 117 9/17/2024
2.1.295 105 9/17/2024
2.1.294 108 9/17/2024
2.1.293 110 9/17/2024
2.1.292 104 9/17/2024
2.1.291 106 9/17/2024
2.1.290 106 9/17/2024
2.1.289 110 9/16/2024
2.1.288 100 9/16/2024
2.1.287 105 9/16/2024
2.1.286 110 9/16/2024
2.1.285 107 9/16/2024
2.1.284 104 9/16/2024
2.1.283 107 9/16/2024
2.1.282 112 9/12/2024
2.1.281 109 9/12/2024
2.1.280 119 9/12/2024
2.1.279 104 9/12/2024
2.1.278 109 9/12/2024
2.1.277 115 9/12/2024
2.1.276 106 9/12/2024
2.1.275 103 9/11/2024
2.1.274 106 9/11/2024
2.1.273 105 9/11/2024
2.1.272 112 9/11/2024
2.1.271 101 9/11/2024
2.1.269 112 9/11/2024
2.1.268 100 9/11/2024
2.1.267 107 9/11/2024
2.1.266 115 9/11/2024
2.1.265 103 9/11/2024
2.1.264 105 9/11/2024
2.1.263 107 9/10/2024
2.1.262 105 9/10/2024
2.1.261 116 9/10/2024
2.1.260 107 9/10/2024
2.1.259 109 9/10/2024
2.1.258 104 9/10/2024
2.1.257 95 9/10/2024
2.1.256 100 9/10/2024
2.1.255 96 9/10/2024
2.1.254 103 9/10/2024
2.1.253 105 9/10/2024
2.1.252 99 9/10/2024
2.1.251 99 9/10/2024
2.1.249 105 9/10/2024
2.1.248 95 9/10/2024
2.1.247 96 9/9/2024
2.1.246 99 9/9/2024
2.1.244 101 9/9/2024
2.1.243 109 9/9/2024
2.1.242 99 9/9/2024
2.1.241 100 9/9/2024
2.1.239 105 9/9/2024
2.1.238 94 9/9/2024
2.1.237 105 9/9/2024
2.1.236 105 9/9/2024
2.1.235 109 9/7/2024
2.1.234 110 9/7/2024
2.1.233 109 9/7/2024
2.1.232 104 9/7/2024
2.1.231 101 9/7/2024
2.1.230 101 9/7/2024
2.1.229 111 9/7/2024
2.1.228 100 9/7/2024
2.1.227 122 9/6/2024
2.1.226 112 9/6/2024
2.1.225 110 9/6/2024
2.1.224 108 9/6/2024
2.1.223 105 9/6/2024
2.1.222 113 9/6/2024
2.1.221 108 9/6/2024
2.1.220 109 9/6/2024
2.1.219 114 9/5/2024
2.1.218 106 9/5/2024
2.1.217 100 9/5/2024
2.1.216 93 9/5/2024
2.1.215 107 9/5/2024
2.1.214 106 9/5/2024
2.1.213 106 9/5/2024
2.1.212 103 9/5/2024
2.1.211 113 9/5/2024
2.1.210 101 9/5/2024
2.1.209 110 9/5/2024
2.1.208 106 9/5/2024
2.1.207 106 9/5/2024
2.1.206 105 9/5/2024
2.1.205 106 9/5/2024
2.1.204 105 9/5/2024
2.1.203 105 9/4/2024
2.1.202 107 9/4/2024
2.1.201 110 9/4/2024
2.1.200 104 9/4/2024
2.1.199 116 9/4/2024
2.1.198 109 9/3/2024
2.1.197 104 9/3/2024
2.1.196 108 9/3/2024
2.1.195 105 9/3/2024
2.1.194 105 9/3/2024
2.1.193 104 9/3/2024
2.1.192 81 9/3/2024
2.1.191 97 9/3/2024
2.1.190 112 9/3/2024
2.1.189 106 9/3/2024
2.1.188 102 9/3/2024
2.1.187 101 9/3/2024
2.1.186 96 9/3/2024
2.1.185 104 8/30/2024
2.1.184 108 8/29/2024
2.1.183 99 8/29/2024
2.1.182 101 8/29/2024
2.1.181 99 8/29/2024
2.1.180 95 8/29/2024
2.1.179 98 8/29/2024
2.1.178 104 8/26/2024
2.1.177 112 8/26/2024
2.1.176 111 8/26/2024
2.1.175 104 8/26/2024
2.1.174 103 8/26/2024
2.1.173 104 8/26/2024
2.1.172 114 8/26/2024
2.1.171 134 8/21/2024
2.1.170 132 8/21/2024
2.1.169 129 8/21/2024
2.1.168 128 8/21/2024
2.1.167 126 8/21/2024
2.1.166 123 8/21/2024
2.1.165 122 8/21/2024
2.1.164 122 8/21/2024
2.1.163 131 8/20/2024
2.1.162 125 8/20/2024
2.1.161 123 8/20/2024
2.1.160 117 8/20/2024
2.1.159 124 8/20/2024
2.1.158 102 8/20/2024
2.1.157 117 8/20/2024
2.1.156 106 8/20/2024
2.1.155 121 8/20/2024
2.1.154 119 8/20/2024
2.1.153 115 8/20/2024
2.1.152 117 8/20/2024
2.1.151 112 8/20/2024
2.1.150 119 8/19/2024
2.1.149 110 8/19/2024
2.1.148 123 8/15/2024
2.1.147 121 8/15/2024
2.1.146 125 8/15/2024
2.1.145 124 8/15/2024
2.1.144 121 8/15/2024
2.1.143 112 8/15/2024
2.1.142 122 8/14/2024
2.1.141 120 8/14/2024
2.1.140 100 8/14/2024
2.1.139 107 8/14/2024
2.1.138 102 8/14/2024
2.1.137 119 8/13/2024
2.1.136 86 8/7/2024
2.1.135 85 8/7/2024
2.1.134 110 8/7/2024
2.1.133 105 8/7/2024
2.1.132 103 8/7/2024
2.1.131 103 8/7/2024
2.1.130 89 8/7/2024
2.1.129 102 8/6/2024
2.1.128 86 8/6/2024
2.1.127 76 8/6/2024
2.1.126 80 8/1/2024
2.1.125 73 8/1/2024
2.1.124 69 8/1/2024
2.1.123 82 8/1/2024
2.1.122 75 8/1/2024
2.1.121 89 8/1/2024
2.1.120 81 8/1/2024
2.1.117 76 7/25/2024
2.1.116 92 7/25/2024
2.1.115 85 7/25/2024
2.1.114 86 7/25/2024
2.1.113 91 7/25/2024
2.1.112 85 7/25/2024
2.1.111 94 7/25/2024
2.1.110 94 7/25/2024
2.1.109 91 7/25/2024
2.1.108 86 7/25/2024
2.1.107 85 7/25/2024
2.1.106 97 7/24/2024
2.1.105 94 7/24/2024
2.1.103 105 7/24/2024
2.1.102 93 7/20/2024
2.1.101 85 7/20/2024
2.1.100 96 7/20/2024
2.1.99 96 7/20/2024
2.1.98 99 7/20/2024
2.1.97 94 7/20/2024
2.1.96 92 7/14/2024
2.1.95 83 7/14/2024
2.1.94 86 7/14/2024
2.1.93 69 7/14/2024
2.1.92 89 7/14/2024
2.1.91 86 7/14/2024
2.1.90 88 7/14/2024
2.1.89 89 7/14/2024
2.1.88 87 7/14/2024
2.1.87 81 7/14/2024
2.1.86 93 7/11/2024
2.1.85 90 7/10/2024
2.1.84 89 7/10/2024
2.1.83 87 7/10/2024
2.1.82 96 7/10/2024
2.1.81 89 7/10/2024
2.1.80 78 7/10/2024
2.1.79 95 7/10/2024
2.1.76 75 7/10/2024
2.1.75 97 7/10/2024
2.1.74 88 7/10/2024
2.1.73 89 7/10/2024
2.1.72 83 7/10/2024
2.1.71 96 7/10/2024
2.1.70 82 7/10/2024
2.1.69 84 7/10/2024
2.1.66 78 7/10/2024
2.1.65 97 7/10/2024
2.1.64 98 7/9/2024
2.1.61 65 7/9/2024
2.1.60 88 7/9/2024
2.1.59 88 7/9/2024
2.1.58 97 7/9/2024
2.1.57 91 7/9/2024
2.1.56 109 7/9/2024
2.1.55 112 7/9/2024
2.1.54 99 7/9/2024
2.1.53 95 7/9/2024
2.1.52 94 7/9/2024
2.1.51 94 7/9/2024
2.1.50 90 7/9/2024
2.1.49 85 7/9/2024
2.1.48 101 7/9/2024
2.1.47 89 7/9/2024
2.1.46 112 7/9/2024
2.1.45 111 7/8/2024
2.1.44 83 7/8/2024
2.1.43 100 7/8/2024
2.1.42 109 7/8/2024
2.1.41 91 7/8/2024
2.1.40 105 7/8/2024
2.1.39 85 7/8/2024
2.1.38 86 7/8/2024
2.1.37 111 7/7/2024
2.1.36 91 7/7/2024
2.1.35 106 7/7/2024
2.1.34 88 7/7/2024
2.1.33 116 7/3/2024
2.1.32 96 7/3/2024
2.1.31 120 7/3/2024
2.1.30 105 7/3/2024
2.1.29 106 7/3/2024
2.1.28 103 7/3/2024
2.1.27 99 7/3/2024
2.1.26 94 7/3/2024
2.1.25 94 7/3/2024
2.1.24 117 6/27/2024
2.1.23 121 6/27/2024
2.1.22 119 6/27/2024
2.1.21 115 6/27/2024
2.1.20 101 6/22/2024
2.1.19 109 6/22/2024
2.1.18 118 6/22/2024
2.1.17 109 6/22/2024
2.1.16 112 6/22/2024
2.1.15 110 6/16/2024
2.1.14 103 6/16/2024
2.1.13 147 6/15/2024
2.1.12 107 6/15/2024
2.1.11 89 6/15/2024
2.1.10 103 6/15/2024
2.1.9 120 6/15/2024
2.1.8 92 6/15/2024
2.1.7 107 6/15/2024
2.1.6 109 6/15/2024
2.1.5 89 6/15/2024
2.1.4 107 6/12/2024
2.1.3 96 6/12/2024