Soenneker.Validators.ExpiringKey 3.0.757

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

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

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 net9.0 is compatible. 
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.773 38 1/3/2025
3.0.772 45 1/3/2025
3.0.771 40 1/3/2025
3.0.770 32 1/3/2025
3.0.769 40 1/3/2025
3.0.768 34 1/3/2025
3.0.767 46 1/3/2025
3.0.766 37 1/3/2025
3.0.765 36 1/3/2025
3.0.764 37 1/3/2025
3.0.763 43 1/2/2025
3.0.762 40 1/2/2025
3.0.761 34 1/2/2025
3.0.760 40 1/2/2025
3.0.759 36 1/2/2025
3.0.758 43 1/2/2025
3.0.757 37 1/2/2025
3.0.756 36 1/2/2025
3.0.755 42 1/1/2025
3.0.754 41 1/1/2025
3.0.753 40 1/1/2025
3.0.752 40 1/1/2025
3.0.751 41 12/31/2024
3.0.750 39 12/31/2024
3.0.749 42 12/31/2024
3.0.748 43 12/31/2024
3.0.747 41 12/31/2024
3.0.746 39 12/31/2024
3.0.745 47 12/31/2024
3.0.744 42 12/31/2024
3.0.743 54 12/31/2024
3.0.742 54 12/31/2024
3.0.741 57 12/31/2024
3.0.740 70 12/31/2024
3.0.739 67 12/31/2024
3.0.738 71 12/31/2024
3.0.737 67 12/31/2024
3.0.736 76 12/31/2024
3.0.735 64 12/31/2024
3.0.734 67 12/31/2024
3.0.733 80 12/31/2024
3.0.732 65 12/31/2024
3.0.731 74 12/31/2024
3.0.730 81 12/28/2024
3.0.729 81 12/28/2024
3.0.728 75 12/28/2024
3.0.727 78 12/28/2024
3.0.726 78 12/28/2024
3.0.725 78 12/28/2024
3.0.724 77 12/27/2024
3.0.723 76 12/27/2024
3.0.722 84 12/27/2024
3.0.721 80 12/27/2024
3.0.720 81 12/24/2024
3.0.719 81 12/24/2024
3.0.718 76 12/24/2024
3.0.717 73 12/24/2024
3.0.716 80 12/24/2024
3.0.715 75 12/24/2024
3.0.714 81 12/24/2024
3.0.713 72 12/24/2024
3.0.712 76 12/24/2024
3.0.711 77 12/24/2024
3.0.710 76 12/24/2024
3.0.709 75 12/24/2024
3.0.708 78 12/24/2024
3.0.707 75 12/24/2024
3.0.706 76 12/23/2024
3.0.705 74 12/23/2024
3.0.704 71 12/23/2024
3.0.703 78 12/23/2024
3.0.702 72 12/23/2024
3.0.701 70 12/23/2024
3.0.700 77 12/23/2024
3.0.699 87 12/23/2024
3.0.698 79 12/23/2024
3.0.697 70 12/23/2024
3.0.696 76 12/23/2024
3.0.695 74 12/23/2024
3.0.694 80 12/23/2024
3.0.693 76 12/23/2024
3.0.692 73 12/22/2024
3.0.691 73 12/22/2024
3.0.690 71 12/22/2024
3.0.689 74 12/22/2024
3.0.688 85 12/22/2024
3.0.687 77 12/22/2024
3.0.686 69 12/22/2024
3.0.685 72 12/22/2024
3.0.684 75 12/22/2024
3.0.683 77 12/22/2024
3.0.682 77 12/22/2024
3.0.681 91 12/22/2024
3.0.680 87 12/22/2024
3.0.679 77 12/22/2024
3.0.678 78 12/21/2024
3.0.677 84 12/21/2024
3.0.676 79 12/21/2024
3.0.675 76 12/21/2024
3.0.674 111 12/21/2024
3.0.673 74 12/21/2024
3.0.672 79 12/21/2024
3.0.671 77 12/21/2024
3.0.670 82 12/21/2024
3.0.669 83 12/21/2024
3.0.668 80 12/21/2024
3.0.667 81 12/21/2024
3.0.666 80 12/21/2024
3.0.665 77 12/21/2024
3.0.664 78 12/21/2024
3.0.663 73 12/20/2024
3.0.662 76 12/20/2024
3.0.661 85 12/20/2024
3.0.660 78 12/20/2024
3.0.659 81 12/20/2024
3.0.658 77 12/20/2024
3.0.657 80 12/20/2024
3.0.656 81 12/20/2024
3.0.655 81 12/20/2024
3.0.654 79 12/19/2024
3.0.653 76 12/19/2024
3.0.652 73 12/19/2024
3.0.651 76 12/19/2024
3.0.650 82 12/19/2024
3.0.649 89 12/19/2024
3.0.648 84 12/19/2024
3.0.647 90 12/18/2024
3.0.646 77 12/18/2024
3.0.645 86 12/18/2024
3.0.644 78 12/18/2024
3.0.643 71 12/17/2024
3.0.642 76 12/16/2024
3.0.641 65 12/16/2024
3.0.640 69 12/16/2024
3.0.639 81 12/10/2024
3.0.638 78 12/10/2024
3.0.637 73 12/10/2024
3.0.636 78 12/10/2024
3.0.635 73 12/10/2024
3.0.634 76 12/10/2024
3.0.633 75 12/10/2024
3.0.632 77 12/9/2024
3.0.631 75 12/9/2024
3.0.630 82 12/9/2024
3.0.629 86 12/9/2024
3.0.628 78 12/9/2024
3.0.627 82 12/9/2024
3.0.626 85 12/9/2024
3.0.625 86 12/9/2024
3.0.624 82 12/9/2024
3.0.623 82 12/7/2024
3.0.622 85 12/7/2024
3.0.621 80 12/7/2024
3.0.620 87 12/6/2024
3.0.619 82 12/6/2024
3.0.618 80 12/6/2024
3.0.617 86 12/6/2024
3.0.616 84 12/6/2024
3.0.615 82 12/6/2024
3.0.614 86 12/6/2024
3.0.613 85 12/6/2024
3.0.612 90 12/6/2024
3.0.611 97 12/6/2024
3.0.610 87 12/6/2024
3.0.609 85 12/6/2024
3.0.608 83 12/6/2024
3.0.607 92 12/6/2024
3.0.606 91 12/6/2024
3.0.605 85 12/6/2024
3.0.604 80 12/6/2024
3.0.603 90 12/6/2024
3.0.602 81 12/6/2024
3.0.601 90 12/6/2024
3.0.600 91 12/6/2024
3.0.599 85 12/6/2024
3.0.598 86 12/6/2024
3.0.597 92 12/6/2024
3.0.596 89 12/5/2024
3.0.595 89 12/5/2024
3.0.594 88 12/5/2024
3.0.593 82 12/5/2024
3.0.592 87 12/3/2024
3.0.591 85 12/3/2024
3.0.590 99 12/3/2024
3.0.589 91 12/3/2024
3.0.588 87 12/3/2024
3.0.587 76 12/3/2024
3.0.586 82 12/3/2024
3.0.585 72 12/3/2024
3.0.584 79 12/2/2024
3.0.583 79 12/2/2024
3.0.582 77 12/2/2024
3.0.581 80 12/2/2024
3.0.580 85 12/2/2024
3.0.579 75 12/2/2024
3.0.578 70 12/2/2024
3.0.577 89 12/2/2024
3.0.576 79 12/2/2024
3.0.575 83 12/2/2024
3.0.574 75 12/2/2024
3.0.573 84 12/1/2024
3.0.572 82 12/1/2024
3.0.571 85 12/1/2024
3.0.570 79 12/1/2024
3.0.569 91 12/1/2024
3.0.568 85 12/1/2024
3.0.567 85 12/1/2024
3.0.566 87 12/1/2024
3.0.565 81 11/29/2024
3.0.564 78 11/29/2024
3.0.563 85 11/29/2024
3.0.562 77 11/29/2024
3.0.561 80 11/29/2024
3.0.560 85 11/29/2024
3.0.559 88 11/29/2024
3.0.558 88 11/21/2024
3.0.557 84 11/21/2024
3.0.556 78 11/21/2024
3.0.555 87 11/21/2024
3.0.554 80 11/21/2024
3.0.553 88 11/20/2024
3.0.552 96 11/20/2024
3.0.551 88 11/20/2024
3.0.550 90 11/20/2024
3.0.549 85 11/20/2024
3.0.548 85 11/20/2024
3.0.547 82 11/20/2024
3.0.546 84 11/20/2024
3.0.545 83 11/20/2024
3.0.544 82 11/20/2024
3.0.543 87 11/19/2024
3.0.542 78 11/19/2024
3.0.541 78 11/19/2024
3.0.540 79 11/19/2024
3.0.539 82 11/19/2024
3.0.538 78 11/19/2024
3.0.537 77 11/19/2024
3.0.536 83 11/15/2024
3.0.535 94 11/15/2024
3.0.534 81 11/14/2024
3.0.533 82 11/14/2024
3.0.532 78 11/14/2024
3.0.531 80 11/14/2024
3.0.530 75 11/14/2024
3.0.529 82 11/14/2024
3.0.528 78 11/14/2024
3.0.527 80 11/14/2024
3.0.526 79 11/14/2024
3.0.525 71 11/14/2024
3.0.524 80 11/14/2024
3.0.523 79 11/14/2024
3.0.522 84 11/14/2024
3.0.521 82 11/14/2024
3.0.520 84 11/14/2024
3.0.519 85 11/14/2024
3.0.518 82 11/14/2024
3.0.517 84 11/14/2024
3.0.516 84 11/14/2024
3.0.515 79 11/14/2024
3.0.514 83 11/14/2024
3.0.513 92 11/14/2024
3.0.512 93 11/14/2024
2.1.511 86 11/13/2024
2.1.510 92 11/13/2024
2.1.509 88 11/13/2024
2.1.508 87 11/13/2024
2.1.507 85 11/13/2024
2.1.506 84 11/13/2024
2.1.505 88 11/13/2024
2.1.504 90 11/13/2024
2.1.503 84 11/13/2024
2.1.502 84 11/13/2024
2.1.501 91 11/12/2024
2.1.500 85 11/12/2024
2.1.499 83 11/12/2024
2.1.498 90 11/9/2024
2.1.497 98 11/9/2024
2.1.496 96 11/9/2024
2.1.495 94 11/9/2024
2.1.494 90 11/9/2024
2.1.493 93 11/9/2024
2.1.492 90 11/9/2024
2.1.491 90 11/9/2024
2.1.490 84 11/9/2024
2.1.489 94 11/9/2024
2.1.488 98 11/8/2024
2.1.487 84 11/8/2024
2.1.486 86 11/8/2024
2.1.485 86 11/8/2024
2.1.484 93 11/8/2024
2.1.483 89 11/8/2024
2.1.482 88 11/8/2024
2.1.481 92 11/8/2024
2.1.480 93 11/8/2024
2.1.479 83 11/6/2024
2.1.478 82 11/6/2024
2.1.477 90 11/1/2024
2.1.476 90 11/1/2024
2.1.475 87 11/1/2024
2.1.474 84 11/1/2024
2.1.473 93 10/29/2024
2.1.472 84 10/29/2024
2.1.471 96 10/29/2024
2.1.470 80 10/29/2024
2.1.469 88 10/29/2024
2.1.468 86 10/29/2024
2.1.467 89 10/29/2024
2.1.466 82 10/29/2024
2.1.465 81 10/29/2024
2.1.464 85 10/29/2024
2.1.463 83 10/29/2024
2.1.462 78 10/29/2024
2.1.461 87 10/28/2024
2.1.460 84 10/28/2024
2.1.459 89 10/26/2024
2.1.458 92 10/26/2024
2.1.457 91 10/26/2024
2.1.456 84 10/26/2024
2.1.455 89 10/26/2024
2.1.454 92 10/22/2024
2.1.453 80 10/22/2024
2.1.452 88 10/22/2024
2.1.451 85 10/22/2024
2.1.450 85 10/22/2024
2.1.449 90 10/22/2024
2.1.448 85 10/22/2024
2.1.447 80 10/22/2024
2.1.446 83 10/22/2024
2.1.445 81 10/22/2024
2.1.444 84 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 92 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 86 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 86 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 89 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 91 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 92 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 102 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 110 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 104 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 107 9/3/2024
2.1.194 105 9/3/2024
2.1.193 104 9/3/2024
2.1.192 82 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 110 8/29/2024
2.1.183 99 8/29/2024
2.1.182 101 8/29/2024
2.1.181 101 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 123 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 103 8/6/2024
2.1.128 88 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 71 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 84 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 114 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 109 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