Soenneker.Twilio.RestClient 2.1.595

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.595                
NuGet\Install-Package Soenneker.Twilio.RestClient -Version 2.1.595                
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.595" />                
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.595                
#r "nuget: Soenneker.Twilio.RestClient, 2.1.595"                
#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.595

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

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.687 31 8/1/2024
2.1.686 29 8/1/2024
2.1.685 32 8/1/2024
2.1.684 31 8/1/2024
2.1.683 28 8/1/2024
2.1.682 28 8/1/2024
2.1.681 29 8/1/2024
2.1.680 26 8/1/2024
2.1.679 25 8/1/2024
2.1.678 32 7/25/2024
2.1.677 31 7/25/2024
2.1.676 34 7/25/2024
2.1.675 33 7/25/2024
2.1.674 30 7/25/2024
2.1.673 33 7/25/2024
2.1.672 37 7/25/2024
2.1.671 37 7/25/2024
2.1.670 25 7/25/2024
2.1.669 35 7/25/2024
2.1.668 40 7/24/2024
2.1.667 33 7/24/2024
2.1.666 33 7/24/2024
2.1.665 24 7/24/2024
2.1.664 27 7/24/2024
2.1.663 78 7/20/2024
2.1.660 57 7/20/2024
2.1.659 53 7/20/2024
2.1.658 64 7/20/2024
2.1.657 58 7/20/2024
2.1.656 59 7/20/2024
2.1.655 57 7/14/2024
2.1.654 58 7/14/2024
2.1.653 52 7/14/2024
2.1.652 51 7/14/2024
2.1.651 53 7/14/2024
2.1.650 56 7/14/2024
2.1.649 53 7/14/2024
2.1.648 53 7/14/2024
2.1.647 58 7/14/2024
2.1.646 53 7/14/2024
2.1.645 54 7/14/2024
2.1.644 53 7/14/2024
2.1.643 52 7/14/2024
2.1.642 48 7/14/2024
2.1.641 53 7/14/2024
2.1.640 55 7/11/2024
2.1.639 66 7/11/2024
2.1.638 57 7/10/2024
2.1.637 73 7/10/2024
2.1.636 65 7/10/2024
2.1.634 61 7/10/2024
2.1.633 64 7/10/2024
2.1.632 67 7/10/2024
2.1.631 58 7/10/2024
2.1.630 71 7/10/2024
2.1.629 72 7/10/2024
2.1.628 62 7/10/2024
2.1.627 63 7/10/2024
2.1.626 68 7/10/2024
2.1.625 65 7/10/2024
2.1.624 62 7/10/2024
2.1.623 54 7/10/2024
2.1.620 65 7/10/2024
2.1.619 52 7/10/2024
2.1.618 65 7/10/2024
2.1.617 64 7/9/2024
2.1.616 58 7/9/2024
2.1.613 59 7/9/2024
2.1.612 52 7/9/2024
2.1.611 63 7/9/2024
2.1.610 62 7/9/2024
2.1.609 49 7/9/2024
2.1.608 55 7/9/2024
2.1.607 51 7/9/2024
2.1.606 56 7/9/2024
2.1.605 64 7/9/2024
2.1.604 65 7/9/2024
2.1.603 48 7/9/2024
2.1.602 62 7/9/2024
2.1.601 75 7/9/2024
2.1.600 63 7/9/2024
2.1.599 69 7/9/2024
2.1.598 67 7/9/2024
2.1.597 61 7/9/2024
2.1.596 60 7/9/2024
2.1.595 64 7/9/2024
2.1.594 56 7/9/2024
2.1.593 68 7/9/2024
2.1.592 74 7/9/2024
2.1.591 76 7/9/2024
2.1.590 67 7/9/2024
2.1.588 62 7/8/2024
2.1.587 69 7/8/2024
2.1.586 67 7/8/2024
2.1.585 74 7/8/2024
2.1.584 71 7/8/2024
2.1.583 63 7/8/2024
2.1.582 78 7/8/2024
2.1.581 60 7/8/2024
2.1.580 63 7/8/2024
2.1.579 66 7/8/2024
2.1.578 71 7/8/2024
2.1.577 76 7/8/2024
2.1.576 78 7/8/2024
2.1.575 69 7/8/2024
2.1.574 69 7/8/2024
2.1.573 66 7/8/2024
2.1.572 76 7/8/2024
2.1.571 79 7/7/2024
2.1.570 63 7/7/2024
2.1.569 60 7/7/2024
2.1.568 69 7/7/2024
2.1.567 67 7/7/2024
2.1.566 76 7/7/2024
2.1.565 74 7/7/2024
2.1.564 61 7/7/2024
2.1.563 70 7/7/2024
2.1.562 77 7/7/2024
2.1.561 72 7/5/2024
2.1.560 78 7/4/2024
2.1.559 72 7/3/2024
2.1.558 76 7/3/2024
2.1.557 74 7/3/2024
2.1.556 70 7/3/2024
2.1.555 81 7/3/2024
2.1.554 69 7/3/2024
2.1.553 74 7/3/2024
2.1.552 69 7/3/2024
2.1.551 77 7/3/2024
2.1.550 78 7/3/2024
2.1.549 72 7/3/2024
2.1.548 74 7/3/2024
2.1.547 71 7/3/2024
2.1.546 69 7/3/2024
2.1.545 67 7/3/2024
2.1.544 76 7/2/2024
2.1.543 66 7/2/2024
2.1.542 76 6/30/2024
2.1.541 74 6/30/2024
2.1.540 69 6/28/2024
2.1.539 77 6/28/2024
2.1.538 80 6/27/2024
2.1.537 76 6/27/2024
2.1.536 76 6/27/2024
2.1.535 75 6/27/2024
2.1.534 73 6/27/2024
2.1.533 72 6/27/2024
2.1.532 76 6/27/2024
2.1.531 76 6/22/2024
2.1.530 68 6/22/2024
2.1.529 75 6/22/2024
2.1.528 85 6/22/2024
2.1.527 74 6/22/2024
2.1.526 80 6/22/2024
2.1.525 72 6/22/2024
2.1.524 80 6/22/2024
2.1.523 85 6/18/2024
2.1.522 80 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 76 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 66 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 82 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 74 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 73 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 78 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 79 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 78 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 70 4/28/2024
2.1.288 80 4/28/2024
2.1.287 74 4/28/2024
2.1.286 72 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 80 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 80 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 82 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 88 4/12/2024
2.1.248 75 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 75 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 75 4/12/2024
2.1.237 84 4/12/2024
2.1.236 86 4/12/2024
2.1.235 77 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 69 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 72 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 88 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 94 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 104 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 97 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 92 3/13/2024
2.1.136 90 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 103 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 88 3/11/2024
2.1.107 86 3/11/2024
2.1.106 82 3/11/2024
2.1.105 86 3/11/2024
2.1.104 105 3/10/2024
2.1.103 111 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 102 3/8/2024
2.1.96 100 3/8/2024
2.1.95 102 3/8/2024
2.1.94 106 3/8/2024
2.1.93 100 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 96 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 99 3/8/2024
2.1.82 101 3/8/2024
2.1.81 98 3/6/2024
2.1.80 100 3/6/2024
2.1.79 101 3/6/2024
2.1.78 98 3/6/2024
2.1.77 104 3/6/2024
2.1.76 96 3/6/2024
2.1.75 102 3/6/2024
2.1.74 98 3/4/2024
2.1.73 104 3/4/2024
2.1.72 95 3/4/2024
2.1.71 89 3/4/2024
2.1.70 97 3/4/2024
2.1.69 99 3/4/2024
2.1.68 101 3/4/2024
2.1.67 90 3/4/2024
2.1.66 95 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 81 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 82 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 92 2/26/2024
2.1.9 88 2/26/2024
2.1.8 89 2/26/2024
2.1.7 88 2/26/2024
2.1.6 92 2/26/2024
2.1.5 94 2/25/2024
2.1.4 95 2/25/2024
2.1.3 90 2/25/2024
2.1.2 91 2/24/2024
2.1.1 92 2/24/2024