Soenneker.Twilio.RestClient 2.1.654

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

// Install Soenneker.Twilio.RestClient as a Cake Tool
#tool nuget:?package=Soenneker.Twilio.RestClient&version=2.1.654                

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.Twilio.RestClient

An async thread-safe singleton for a Twilio RestClient

Installation

dotnet add package Soenneker.Twilio.RestClient

Why?

This library provides a singleton of a TwilioRestClient.

Internally it implements an HttpClient singleton. This HttpClient has less overhead than new instances of HttpClient and IHttpClientFactory all while correctly handling connection pooling for DNS changes.

See soenneker.utils.httpclientcache for more information.

Usage

  1. Register ITwilioRestClientUtil with DI.
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddTwilioRestClientUtilAsSingleton();
}
  1. Inject ITwilioRestClientUtil via constructor, and retrieve a TwilioRestClient.
public class TestClass
{
    ITwilioRestClientUtil _twilioRestClientUtil;

    public TestClass(ITwilioRestClientUtil twilioRestClientUtil)
    {
        _twilioRestClientUtil = twilioRestClientUtil;
    }

    public async ValueTask SendMessage()
    {
        var message = await MessageResource.CreateAsync(
            new PhoneNumber("+11234567890"),
            from: new PhoneNumber("+10987654321"),
            body: "Hello World!",
            client: await _twilioRestClientUtil.Get()
        );

        Console.WriteLine(message.Sid);
    }
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
2.1.840 29 9/7/2024
2.1.839 27 9/7/2024
2.1.838 29 9/7/2024
2.1.837 32 9/7/2024
2.1.836 34 9/7/2024
2.1.835 35 9/7/2024
2.1.834 28 9/7/2024
2.1.833 29 9/7/2024
2.1.832 26 9/6/2024
2.1.831 29 9/6/2024
2.1.830 34 9/6/2024
2.1.829 31 9/6/2024
2.1.828 33 9/6/2024
2.1.827 33 9/6/2024
2.1.826 27 9/6/2024
2.1.825 29 9/6/2024
2.1.824 32 9/6/2024
2.1.823 28 9/6/2024
2.1.822 31 9/6/2024
2.1.821 25 9/6/2024
2.1.820 28 9/5/2024
2.1.819 27 9/5/2024
2.1.818 29 9/5/2024
2.1.817 25 9/5/2024
2.1.816 28 9/5/2024
2.1.815 33 9/5/2024
2.1.814 31 9/5/2024
2.1.813 32 9/5/2024
2.1.812 30 9/5/2024
2.1.811 28 9/5/2024
2.1.810 32 9/5/2024
2.1.809 34 9/5/2024
2.1.808 29 9/5/2024
2.1.807 32 9/5/2024
2.1.806 21 9/5/2024
2.1.805 28 9/5/2024
2.1.804 30 9/5/2024
2.1.803 23 9/5/2024
2.1.802 28 9/5/2024
2.1.801 24 9/5/2024
2.1.800 35 9/5/2024
2.1.799 31 9/5/2024
2.1.798 32 9/5/2024
2.1.797 28 9/5/2024
2.1.796 40 9/5/2024
2.1.795 33 9/4/2024
2.1.794 30 9/4/2024
2.1.793 32 9/4/2024
2.1.792 30 9/4/2024
2.1.791 41 9/4/2024
2.1.790 45 9/4/2024
2.1.789 59 9/4/2024
2.1.788 52 9/4/2024
2.1.787 63 9/3/2024
2.1.786 59 9/3/2024
2.1.785 65 9/3/2024
2.1.784 58 9/3/2024
2.1.783 51 9/3/2024
2.1.782 62 9/3/2024
2.1.781 62 9/3/2024
2.1.780 55 9/3/2024
2.1.779 56 9/3/2024
2.1.778 63 9/3/2024
2.1.777 60 9/3/2024
2.1.776 54 9/3/2024
2.1.775 63 9/3/2024
2.1.774 54 9/3/2024
2.1.773 54 9/3/2024
2.1.772 62 9/3/2024
2.1.771 55 9/3/2024
2.1.770 73 8/30/2024
2.1.769 65 8/29/2024
2.1.768 63 8/29/2024
2.1.767 65 8/29/2024
2.1.766 61 8/29/2024
2.1.765 64 8/29/2024
2.1.764 62 8/29/2024
2.1.763 61 8/29/2024
2.1.762 59 8/29/2024
2.1.761 78 8/26/2024
2.1.760 65 8/26/2024
2.1.759 69 8/26/2024
2.1.758 68 8/26/2024
2.1.757 66 8/26/2024
2.1.756 69 8/26/2024
2.1.755 79 8/26/2024
2.1.754 62 8/26/2024
2.1.753 57 8/26/2024
2.1.752 82 8/21/2024
2.1.750 73 8/21/2024
2.1.749 75 8/21/2024
2.1.748 56 8/21/2024
2.1.747 57 8/21/2024
2.1.746 52 8/21/2024
2.1.745 78 8/21/2024
2.1.744 67 8/21/2024
2.1.743 71 8/21/2024
2.1.742 72 8/21/2024
2.1.741 66 8/21/2024
2.1.740 65 8/20/2024
2.1.739 66 8/20/2024
2.1.738 60 8/20/2024
2.1.737 64 8/20/2024
2.1.736 64 8/20/2024
2.1.735 62 8/20/2024
2.1.734 71 8/20/2024
2.1.733 65 8/20/2024
2.1.732 63 8/20/2024
2.1.731 69 8/20/2024
2.1.730 63 8/20/2024
2.1.729 60 8/20/2024
2.1.728 64 8/20/2024
2.1.727 68 8/20/2024
2.1.726 75 8/20/2024
2.1.725 73 8/20/2024
2.1.723 70 8/20/2024
2.1.722 76 8/19/2024
2.1.721 68 8/19/2024
2.1.720 66 8/19/2024
2.1.719 68 8/15/2024
2.1.718 61 8/15/2024
2.1.717 65 8/15/2024
2.1.716 69 8/15/2024
2.1.715 79 8/15/2024
2.1.714 67 8/15/2024
2.1.713 62 8/15/2024
2.1.712 68 8/15/2024
2.1.711 63 8/15/2024
2.1.710 60 8/15/2024
2.1.709 59 8/15/2024
2.1.708 71 8/14/2024
2.1.707 66 8/14/2024
2.1.706 64 8/14/2024
2.1.705 70 8/14/2024
2.1.704 68 8/13/2024
2.1.703 67 8/13/2024
2.1.702 68 8/13/2024
2.1.701 65 8/7/2024
2.1.700 67 8/7/2024
2.1.699 61 8/7/2024
2.1.698 69 8/7/2024
2.1.697 64 8/7/2024
2.1.696 70 8/7/2024
2.1.695 63 8/7/2024
2.1.694 63 8/7/2024
2.1.693 55 8/6/2024
2.1.692 53 8/6/2024
2.1.691 50 8/6/2024
2.1.690 47 8/6/2024
2.1.689 48 8/6/2024
2.1.688 46 8/6/2024
2.1.687 63 8/1/2024
2.1.686 62 8/1/2024
2.1.685 65 8/1/2024
2.1.684 63 8/1/2024
2.1.683 62 8/1/2024
2.1.682 58 8/1/2024
2.1.681 62 8/1/2024
2.1.680 58 8/1/2024
2.1.679 57 8/1/2024
2.1.678 42 7/25/2024
2.1.677 41 7/25/2024
2.1.676 45 7/25/2024
2.1.675 44 7/25/2024
2.1.674 41 7/25/2024
2.1.673 43 7/25/2024
2.1.672 47 7/25/2024
2.1.671 48 7/25/2024
2.1.670 35 7/25/2024
2.1.669 46 7/25/2024
2.1.668 50 7/24/2024
2.1.667 43 7/24/2024
2.1.666 43 7/24/2024
2.1.665 36 7/24/2024
2.1.664 38 7/24/2024
2.1.663 85 7/20/2024
2.1.660 64 7/20/2024
2.1.659 59 7/20/2024
2.1.658 70 7/20/2024
2.1.657 64 7/20/2024
2.1.656 65 7/20/2024
2.1.655 63 7/14/2024
2.1.654 65 7/14/2024
2.1.653 58 7/14/2024
2.1.652 58 7/14/2024
2.1.651 60 7/14/2024
2.1.650 63 7/14/2024
2.1.649 59 7/14/2024
2.1.648 60 7/14/2024
2.1.647 64 7/14/2024
2.1.646 58 7/14/2024
2.1.645 60 7/14/2024
2.1.644 58 7/14/2024
2.1.643 58 7/14/2024
2.1.642 53 7/14/2024
2.1.641 59 7/14/2024
2.1.640 61 7/11/2024
2.1.639 71 7/11/2024
2.1.638 62 7/10/2024
2.1.637 78 7/10/2024
2.1.636 70 7/10/2024
2.1.634 67 7/10/2024
2.1.633 70 7/10/2024
2.1.632 73 7/10/2024
2.1.631 64 7/10/2024
2.1.630 77 7/10/2024
2.1.629 78 7/10/2024
2.1.628 68 7/10/2024
2.1.627 69 7/10/2024
2.1.626 75 7/10/2024
2.1.625 72 7/10/2024
2.1.624 71 7/10/2024
2.1.623 61 7/10/2024
2.1.620 73 7/10/2024
2.1.619 60 7/10/2024
2.1.618 73 7/10/2024
2.1.617 70 7/9/2024
2.1.616 65 7/9/2024
2.1.613 65 7/9/2024
2.1.612 58 7/9/2024
2.1.611 69 7/9/2024
2.1.610 68 7/9/2024
2.1.609 55 7/9/2024
2.1.608 60 7/9/2024
2.1.607 57 7/9/2024
2.1.606 63 7/9/2024
2.1.605 71 7/9/2024
2.1.604 73 7/9/2024
2.1.603 55 7/9/2024
2.1.602 69 7/9/2024
2.1.601 82 7/9/2024
2.1.600 71 7/9/2024
2.1.599 77 7/9/2024
2.1.598 74 7/9/2024
2.1.597 69 7/9/2024
2.1.596 68 7/9/2024
2.1.595 71 7/9/2024
2.1.594 64 7/9/2024
2.1.593 75 7/9/2024
2.1.592 81 7/9/2024
2.1.591 84 7/9/2024
2.1.590 75 7/9/2024
2.1.588 67 7/8/2024
2.1.587 75 7/8/2024
2.1.586 72 7/8/2024
2.1.585 79 7/8/2024
2.1.584 76 7/8/2024
2.1.583 69 7/8/2024
2.1.582 83 7/8/2024
2.1.581 65 7/8/2024
2.1.580 68 7/8/2024
2.1.579 71 7/8/2024
2.1.578 77 7/8/2024
2.1.577 81 7/8/2024
2.1.576 83 7/8/2024
2.1.575 75 7/8/2024
2.1.574 75 7/8/2024
2.1.573 71 7/8/2024
2.1.572 82 7/8/2024
2.1.571 84 7/7/2024
2.1.570 69 7/7/2024
2.1.569 65 7/7/2024
2.1.568 74 7/7/2024
2.1.567 73 7/7/2024
2.1.566 81 7/7/2024
2.1.565 80 7/7/2024
2.1.564 67 7/7/2024
2.1.563 75 7/7/2024
2.1.562 83 7/7/2024
2.1.561 78 7/5/2024
2.1.560 84 7/4/2024
2.1.559 77 7/3/2024
2.1.558 82 7/3/2024
2.1.557 79 7/3/2024
2.1.556 76 7/3/2024
2.1.555 86 7/3/2024
2.1.554 75 7/3/2024
2.1.553 79 7/3/2024
2.1.552 75 7/3/2024
2.1.551 82 7/3/2024
2.1.550 83 7/3/2024
2.1.549 79 7/3/2024
2.1.548 80 7/3/2024
2.1.547 76 7/3/2024
2.1.546 74 7/3/2024
2.1.545 73 7/3/2024
2.1.544 82 7/2/2024
2.1.543 73 7/2/2024
2.1.542 80 6/30/2024
2.1.541 78 6/30/2024
2.1.540 72 6/28/2024
2.1.539 80 6/28/2024
2.1.538 84 6/27/2024
2.1.537 80 6/27/2024
2.1.536 80 6/27/2024
2.1.535 79 6/27/2024
2.1.534 76 6/27/2024
2.1.533 75 6/27/2024
2.1.532 80 6/27/2024
2.1.531 79 6/22/2024
2.1.530 72 6/22/2024
2.1.529 79 6/22/2024
2.1.528 89 6/22/2024
2.1.527 78 6/22/2024
2.1.526 84 6/22/2024
2.1.525 76 6/22/2024
2.1.524 84 6/22/2024
2.1.523 86 6/18/2024
2.1.522 82 6/16/2024
2.1.521 97 6/16/2024
2.1.520 83 6/16/2024
2.1.519 87 6/15/2024
2.1.518 85 6/15/2024
2.1.517 85 6/15/2024
2.1.516 84 6/15/2024
2.1.515 83 6/15/2024
2.1.514 84 6/15/2024
2.1.513 76 6/15/2024
2.1.512 87 6/15/2024
2.1.511 81 6/15/2024
2.1.510 84 6/15/2024
2.1.509 77 6/15/2024
2.1.508 83 6/15/2024
2.1.507 75 6/15/2024
2.1.506 78 6/15/2024
2.1.505 85 6/15/2024
2.1.504 81 6/15/2024
2.1.503 81 6/15/2024
2.1.502 89 6/14/2024
2.1.501 70 6/14/2024
2.1.500 82 6/14/2024
2.1.499 80 6/14/2024
2.1.498 77 6/6/2024
2.1.497 68 6/4/2024
2.1.496 66 6/4/2024
2.1.495 78 6/4/2024
2.1.494 79 6/2/2024
2.1.493 71 6/2/2024
2.1.492 75 6/2/2024
2.1.491 72 6/2/2024
2.1.490 73 6/2/2024
2.1.489 77 6/1/2024
2.1.488 74 6/1/2024
2.1.487 66 6/1/2024
2.1.486 68 6/1/2024
2.1.485 73 6/1/2024
2.1.484 68 6/1/2024
2.1.483 65 6/1/2024
2.1.482 65 6/1/2024
2.1.481 67 6/1/2024
2.1.480 62 6/1/2024
2.1.479 70 6/1/2024
2.1.478 76 6/1/2024
2.1.477 73 6/1/2024
2.1.476 70 6/1/2024
2.1.475 71 6/1/2024
2.1.474 68 6/1/2024
2.1.473 73 6/1/2024
2.1.472 71 5/31/2024
2.1.471 70 5/31/2024
2.1.470 65 5/31/2024
2.1.469 80 5/31/2024
2.1.468 73 5/31/2024
2.1.467 61 5/31/2024
2.1.466 55 5/31/2024
2.1.465 72 5/31/2024
2.1.464 69 5/31/2024
2.1.463 70 5/31/2024
2.1.462 69 5/31/2024
2.1.461 68 5/29/2024
2.1.460 84 5/29/2024
2.1.459 76 5/29/2024
2.1.458 75 5/29/2024
2.1.457 75 5/29/2024
2.1.456 79 5/29/2024
2.1.455 80 5/29/2024
2.1.454 75 5/29/2024
2.1.453 66 5/28/2024
2.1.452 71 5/28/2024
2.1.451 68 5/28/2024
2.1.450 69 5/28/2024
2.1.449 81 5/28/2024
2.1.448 72 5/28/2024
2.1.447 74 5/28/2024
2.1.446 71 5/28/2024
2.1.445 75 5/28/2024
2.1.444 75 5/28/2024
2.1.443 74 5/28/2024
2.1.442 73 5/28/2024
2.1.441 78 5/27/2024
2.1.440 71 5/27/2024
2.1.439 65 5/27/2024
2.1.438 73 5/27/2024
2.1.437 78 5/27/2024
2.1.436 78 5/27/2024
2.1.435 76 5/27/2024
2.1.434 77 5/27/2024
2.1.433 76 5/27/2024
2.1.432 77 5/27/2024
2.1.431 76 5/27/2024
2.1.430 79 5/26/2024
2.1.429 73 5/26/2024
2.1.428 81 5/26/2024
2.1.427 78 5/26/2024
2.1.426 81 5/26/2024
2.1.425 77 5/26/2024
2.1.424 80 5/26/2024
2.1.423 77 5/26/2024
2.1.422 86 5/26/2024
2.1.421 79 5/26/2024
2.1.420 95 5/26/2024
2.1.419 89 5/26/2024
2.1.418 86 5/26/2024
2.1.417 81 5/26/2024
2.1.416 76 5/26/2024
2.1.415 84 5/26/2024
2.1.414 79 5/25/2024
2.1.413 73 5/25/2024
2.1.412 76 5/25/2024
2.1.411 92 5/25/2024
2.1.410 77 5/25/2024
2.1.409 79 5/25/2024
2.1.408 83 5/25/2024
2.1.407 80 5/25/2024
2.1.406 86 5/25/2024
2.1.405 83 5/25/2024
2.1.404 84 5/25/2024
2.1.403 87 5/25/2024
2.1.402 73 5/25/2024
2.1.401 78 5/25/2024
2.1.400 83 5/25/2024
2.1.399 78 5/25/2024
2.1.398 81 5/25/2024
2.1.397 82 5/25/2024
2.1.396 86 5/24/2024
2.1.395 91 5/23/2024
2.1.394 84 5/23/2024
2.1.393 81 5/23/2024
2.1.392 86 5/23/2024
2.1.391 82 5/23/2024
2.1.390 77 5/23/2024
2.1.389 74 5/23/2024
2.1.388 66 5/23/2024
2.1.387 65 5/23/2024
2.1.386 81 5/23/2024
2.1.385 81 5/23/2024
2.1.384 81 5/23/2024
2.1.383 77 5/23/2024
2.1.382 75 5/23/2024
2.1.381 84 5/23/2024
2.1.380 77 5/23/2024
2.1.379 79 5/23/2024
2.1.378 81 5/23/2024
2.1.377 88 5/22/2024
2.1.376 86 5/22/2024
2.1.375 85 5/22/2024
2.1.374 84 5/22/2024
2.1.373 86 5/22/2024
2.1.372 83 5/22/2024
2.1.371 82 5/22/2024
2.1.370 79 5/22/2024
2.1.369 77 5/22/2024
2.1.368 76 5/22/2024
2.1.367 81 5/22/2024
2.1.366 77 5/19/2024
2.1.365 74 5/18/2024
2.1.364 77 5/18/2024
2.1.363 71 5/18/2024
2.1.362 70 5/18/2024
2.1.361 68 5/18/2024
2.1.360 72 5/18/2024
2.1.359 69 5/18/2024
2.1.358 74 5/18/2024
2.1.357 82 5/18/2024
2.1.356 79 5/17/2024
2.1.355 73 5/17/2024
2.1.354 74 5/17/2024
2.1.353 86 5/17/2024
2.1.352 76 5/17/2024
2.1.351 75 5/17/2024
2.1.350 78 5/17/2024
2.1.349 77 5/17/2024
2.1.348 81 5/16/2024
2.1.347 75 5/16/2024
2.1.346 76 5/16/2024
2.1.345 75 5/16/2024
2.1.344 74 5/16/2024
2.1.343 62 5/16/2024
2.1.342 72 5/16/2024
2.1.341 81 5/15/2024
2.1.340 76 5/15/2024
2.1.339 57 5/15/2024
2.1.338 48 5/15/2024
2.1.337 88 5/15/2024
2.1.336 82 5/14/2024
2.1.335 73 5/13/2024
2.1.334 68 5/13/2024
2.1.333 80 5/13/2024
2.1.332 71 5/13/2024
2.1.331 85 5/13/2024
2.1.330 72 5/13/2024
2.1.329 71 5/13/2024
2.1.328 79 5/13/2024
2.1.327 68 5/13/2024
2.1.326 61 5/3/2024
2.1.325 51 5/3/2024
2.1.324 97 4/30/2024
2.1.323 80 4/30/2024
2.1.322 85 4/30/2024
2.1.321 79 4/30/2024
2.1.320 85 4/30/2024
2.1.319 87 4/30/2024
2.1.318 91 4/30/2024
2.1.317 85 4/30/2024
2.1.316 86 4/30/2024
2.1.315 80 4/30/2024
2.1.314 85 4/30/2024
2.1.313 81 4/29/2024
2.1.312 79 4/29/2024
2.1.311 79 4/29/2024
2.1.310 88 4/29/2024
2.1.309 77 4/29/2024
2.1.308 84 4/29/2024
2.1.307 72 4/29/2024
2.1.306 87 4/29/2024
2.1.305 73 4/29/2024
2.1.304 79 4/29/2024
2.1.303 80 4/28/2024
2.1.302 80 4/28/2024
2.1.301 71 4/28/2024
2.1.300 87 4/28/2024
2.1.299 84 4/28/2024
2.1.298 77 4/28/2024
2.1.297 87 4/28/2024
2.1.296 81 4/28/2024
2.1.295 74 4/28/2024
2.1.294 78 4/28/2024
2.1.293 79 4/28/2024
2.1.292 73 4/28/2024
2.1.291 76 4/28/2024
2.1.290 72 4/28/2024
2.1.289 78 4/28/2024
2.1.288 80 4/28/2024
2.1.287 74 4/28/2024
2.1.286 77 4/28/2024
2.1.285 79 4/28/2024
2.1.284 75 4/28/2024
2.1.283 90 4/28/2024
2.1.282 80 4/28/2024
2.1.281 88 4/28/2024
2.1.280 78 4/28/2024
2.1.279 78 4/28/2024
2.1.278 72 4/28/2024
2.1.277 89 4/27/2024
2.1.276 74 4/27/2024
2.1.275 84 4/20/2024
2.1.274 86 4/20/2024
2.1.273 90 4/20/2024
2.1.272 83 4/20/2024
2.1.271 83 4/20/2024
2.1.270 85 4/19/2024
2.1.269 77 4/19/2024
2.1.268 79 4/19/2024
2.1.267 78 4/19/2024
2.1.266 75 4/19/2024
2.1.265 81 4/19/2024
2.1.264 82 4/19/2024
2.1.263 88 4/19/2024
2.1.262 75 4/19/2024
2.1.261 73 4/19/2024
2.1.260 88 4/19/2024
2.1.259 80 4/18/2024
2.1.258 76 4/18/2024
2.1.257 75 4/15/2024
2.1.256 93 4/14/2024
2.1.255 81 4/13/2024
2.1.254 78 4/13/2024
2.1.253 82 4/13/2024
2.1.252 84 4/13/2024
2.1.251 76 4/13/2024
2.1.250 89 4/12/2024
2.1.249 93 4/12/2024
2.1.248 80 4/12/2024
2.1.247 63 4/12/2024
2.1.246 74 4/12/2024
2.1.245 72 4/12/2024
2.1.244 81 4/12/2024
2.1.243 79 4/12/2024
2.1.242 70 4/12/2024
2.1.241 76 4/12/2024
2.1.240 72 4/12/2024
2.1.239 78 4/12/2024
2.1.238 80 4/12/2024
2.1.237 84 4/12/2024
2.1.236 86 4/12/2024
2.1.235 83 4/12/2024
2.1.234 81 4/12/2024
2.1.233 70 4/12/2024
2.1.232 89 4/12/2024
2.1.231 93 4/12/2024
2.1.230 76 4/12/2024
2.1.229 75 4/12/2024
2.1.228 78 4/11/2024
2.1.227 71 4/10/2024
2.1.226 83 4/10/2024
2.1.225 78 4/10/2024
2.1.224 65 4/10/2024
2.1.223 77 4/10/2024
2.1.222 71 4/10/2024
2.1.221 67 4/10/2024
2.1.220 72 4/10/2024
2.1.219 69 4/10/2024
2.1.218 75 4/10/2024
2.1.217 73 4/10/2024
2.1.216 72 4/4/2024
2.1.215 72 4/3/2024
2.1.214 73 4/2/2024
2.1.213 85 4/2/2024
2.1.212 88 4/2/2024
2.1.211 79 4/2/2024
2.1.210 74 4/2/2024
2.1.209 95 4/2/2024
2.1.208 87 4/2/2024
2.1.207 86 4/1/2024
2.1.206 83 4/1/2024
2.1.205 86 4/1/2024
2.1.204 94 4/1/2024
2.1.203 98 4/1/2024
2.1.202 86 3/30/2024
2.1.201 87 3/29/2024
2.1.200 84 3/29/2024
2.1.199 89 3/29/2024
2.1.198 81 3/29/2024
2.1.197 85 3/29/2024
2.1.196 89 3/25/2024
2.1.195 91 3/25/2024
2.1.194 88 3/25/2024
2.1.193 84 3/25/2024
2.1.192 76 3/25/2024
2.1.191 88 3/25/2024
2.1.190 90 3/25/2024
2.1.189 85 3/25/2024
2.1.188 92 3/25/2024
2.1.187 97 3/25/2024
2.1.186 88 3/25/2024
2.1.185 92 3/25/2024
2.1.184 105 3/21/2024
2.1.183 85 3/21/2024
2.1.182 80 3/21/2024
2.1.181 89 3/21/2024
2.1.180 100 3/20/2024
2.1.179 79 3/20/2024
2.1.178 95 3/20/2024
2.1.177 85 3/20/2024
2.1.176 86 3/19/2024
2.1.175 92 3/19/2024
2.1.174 95 3/19/2024
2.1.173 100 3/19/2024
2.1.172 94 3/19/2024
2.1.171 79 3/19/2024
2.1.170 95 3/19/2024
2.1.169 85 3/19/2024
2.1.168 89 3/19/2024
2.1.167 98 3/19/2024
2.1.166 95 3/19/2024
2.1.165 103 3/19/2024
2.1.164 99 3/19/2024
2.1.163 102 3/19/2024
2.1.162 90 3/19/2024
2.1.161 94 3/19/2024
2.1.160 87 3/18/2024
2.1.159 89 3/18/2024
2.1.158 101 3/16/2024
2.1.157 110 3/16/2024
2.1.156 104 3/16/2024
2.1.155 100 3/16/2024
2.1.154 112 3/16/2024
2.1.153 104 3/16/2024
2.1.152 103 3/15/2024
2.1.151 92 3/15/2024
2.1.150 99 3/15/2024
2.1.149 98 3/14/2024
2.1.148 88 3/13/2024
2.1.147 100 3/13/2024
2.1.146 84 3/13/2024
2.1.145 102 3/13/2024
2.1.144 99 3/13/2024
2.1.143 94 3/13/2024
2.1.142 89 3/13/2024
2.1.141 90 3/13/2024
2.1.140 95 3/13/2024
2.1.139 106 3/13/2024
2.1.138 98 3/13/2024
2.1.137 98 3/13/2024
2.1.136 96 3/13/2024
2.1.135 103 3/13/2024
2.1.134 92 3/13/2024
2.1.133 89 3/13/2024
2.1.132 97 3/13/2024
2.1.131 109 3/13/2024
2.1.130 99 3/13/2024
2.1.129 93 3/13/2024
2.1.128 104 3/13/2024
2.1.127 103 3/13/2024
2.1.126 105 3/12/2024
2.1.125 98 3/12/2024
2.1.124 111 3/12/2024
2.1.123 91 3/12/2024
2.1.122 107 3/12/2024
2.1.121 98 3/12/2024
2.1.120 93 3/12/2024
2.1.119 104 3/12/2024
2.1.118 110 3/12/2024
2.1.117 99 3/12/2024
2.1.116 99 3/11/2024
2.1.115 104 3/11/2024
2.1.114 104 3/11/2024
2.1.113 102 3/11/2024
2.1.112 99 3/11/2024
2.1.111 101 3/11/2024
2.1.110 104 3/11/2024
2.1.109 86 3/11/2024
2.1.108 89 3/11/2024
2.1.107 88 3/11/2024
2.1.106 83 3/11/2024
2.1.105 87 3/11/2024
2.1.104 106 3/10/2024
2.1.103 112 3/10/2024
2.1.102 101 3/10/2024
2.1.101 109 3/10/2024
2.1.100 102 3/10/2024
2.1.99 108 3/10/2024
2.1.98 108 3/9/2024
2.1.97 103 3/8/2024
2.1.96 100 3/8/2024
2.1.95 108 3/8/2024
2.1.94 106 3/8/2024
2.1.93 106 3/8/2024
2.1.92 101 3/8/2024
2.1.91 96 3/8/2024
2.1.90 93 3/8/2024
2.1.89 99 3/8/2024
2.1.88 102 3/8/2024
2.1.87 108 3/8/2024
2.1.86 99 3/8/2024
2.1.85 96 3/8/2024
2.1.84 103 3/8/2024
2.1.83 105 3/8/2024
2.1.82 101 3/8/2024
2.1.81 98 3/6/2024
2.1.80 101 3/6/2024
2.1.79 102 3/6/2024
2.1.78 99 3/6/2024
2.1.77 105 3/6/2024
2.1.76 97 3/6/2024
2.1.75 103 3/6/2024
2.1.74 99 3/4/2024
2.1.73 105 3/4/2024
2.1.72 96 3/4/2024
2.1.71 90 3/4/2024
2.1.70 98 3/4/2024
2.1.69 100 3/4/2024
2.1.68 102 3/4/2024
2.1.67 91 3/4/2024
2.1.66 96 3/4/2024
2.1.65 89 3/4/2024
2.1.64 96 3/4/2024
2.1.63 99 3/4/2024
2.1.62 97 3/4/2024
2.1.61 91 3/4/2024
2.1.60 107 3/3/2024
2.1.59 98 3/3/2024
2.1.58 88 3/3/2024
2.1.57 96 3/3/2024
2.1.56 97 3/3/2024
2.1.55 82 3/3/2024
2.1.54 100 3/3/2024
2.1.53 91 3/3/2024
2.1.52 92 3/2/2024
2.1.51 93 3/2/2024
2.1.50 96 3/2/2024
2.1.49 87 3/2/2024
2.1.48 100 3/2/2024
2.1.47 90 3/2/2024
2.1.46 89 3/2/2024
2.1.45 90 3/2/2024
2.1.44 80 3/2/2024
2.1.43 97 3/2/2024
2.1.42 89 3/2/2024
2.1.41 85 3/2/2024
2.1.40 89 3/2/2024
2.1.39 85 3/2/2024
2.1.38 92 3/2/2024
2.1.37 90 3/2/2024
2.1.36 95 3/2/2024
2.1.35 100 3/1/2024
2.1.34 90 2/29/2024
2.1.33 92 2/29/2024
2.1.32 88 2/29/2024
2.1.31 89 2/29/2024
2.1.30 92 2/29/2024
2.1.29 84 2/29/2024
2.1.28 84 2/29/2024
2.1.27 85 2/29/2024
2.1.26 81 2/29/2024
2.1.25 82 2/29/2024
2.1.24 87 2/29/2024
2.1.23 84 2/29/2024
2.1.22 84 2/29/2024
2.1.21 83 2/29/2024
2.1.20 86 2/29/2024
2.1.19 94 2/29/2024
2.1.18 92 2/29/2024
2.1.17 103 2/27/2024
2.1.16 87 2/27/2024
2.1.15 93 2/26/2024
2.1.14 83 2/26/2024
2.1.13 82 2/26/2024
2.1.12 82 2/26/2024
2.1.11 89 2/26/2024
2.1.10 93 2/26/2024
2.1.9 88 2/26/2024
2.1.8 89 2/26/2024
2.1.7 89 2/26/2024
2.1.6 93 2/26/2024
2.1.5 95 2/25/2024
2.1.4 95 2/25/2024
2.1.3 96 2/25/2024
2.1.2 96 2/24/2024
2.1.1 92 2/24/2024