Soenneker.Blazor.TomSelect 2.1.641

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Blazor.TomSelect --version 2.1.641
NuGet\Install-Package Soenneker.Blazor.TomSelect -Version 2.1.641
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.Blazor.TomSelect" Version="2.1.641" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Blazor.TomSelect --version 2.1.641
#r "nuget: Soenneker.Blazor.TomSelect, 2.1.641"
#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.Blazor.TomSelect as a Cake Addin
#addin nuget:?package=Soenneker.Blazor.TomSelect&version=2.1.641

// Install Soenneker.Blazor.TomSelect as a Cake Tool
#tool nuget:?package=Soenneker.Blazor.TomSelect&version=2.1.641

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.Blazor.TomSelect

A Blazor interop library for the select user control library, Tom Select

This library simplifies the integration of Tom Select into Blazor applications, providing access to options, methods, plugins, and events. A demo project showcasing common usages is included.

Diligence was taken to align the Blazor API with JS. Refer to the Tom Select documentation for details.

Installation

dotnet add package Soenneker.Blazor.TomSelect

1. Add the following to your _Imports.razor file

@using Soenneker.Blazor.TomSelect

2. Add the following to your Startup.cs file

public void ConfigureServices(IServiceCollection services)
{
    services.AddTomSelect();
}

3. Add the stylesheet to your wwwroot/index.html file

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tom-select/dist/css/tom-select.bootstrap5.min.css">

4. Add the scripts to your wwwroot/index.html file

<script src="https://cdn.jsdelivr.net/npm/tom-select/dist/js/tom-select.complete.min.js"></script>
<script src="_content/Soenneker.Blazor.TomSelect/tomselectinterop.js"></script>

Usage

<TomSelect
    TItem="Country" TType="string" OnItemAdd="OnItemAdd"
    Data="@_countries"
    TextField="@(item => item.Name)"
    ValueField="@(item => item.Id.ToString())" @ref="_tomSelect" Items="_selectedCountries">
</TomSelect>

@code{
    private TomSelect<Country, string> _tomSelect = default!;

    private List<Country>? _selectedCountries;
    private List<Country>? _countries;

    protected override async Task OnInitializedAsync()
    {
        _countries = await Http.GetFromJsonAsync<List<Country>>("sample-data/countries.json");
    }

    private void OnItemAdd((string str, TomSelectOption obj) result)
    {
        Logger.LogInformation("OnItemAdd fired: Value: {value}", str);
    }

    private void LogSelectedItems()
    {
        foreach (Country item in _tomSelect.Items)
        {
            Logger.LogInformation("Selected item: {0}", item.Name);
        }
    }
}

⚠️ While a lot of the Tom Select library has been implemented, there are features not yet supported. If you need assistance or want to request a new feature, please open an issue or submit a pull request.

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.664 0 6/28/2024
2.1.663 0 6/28/2024
2.1.662 18 6/28/2024
2.1.661 21 6/28/2024
2.1.660 29 6/27/2024
2.1.659 35 6/27/2024
2.1.658 38 6/27/2024
2.1.657 28 6/27/2024
2.1.656 32 6/27/2024
2.1.655 39 6/27/2024
2.1.654 30 6/27/2024
2.1.653 26 6/27/2024
2.1.652 31 6/27/2024
2.1.651 31 6/27/2024
2.1.650 29 6/27/2024
2.1.649 40 6/27/2024
2.1.648 32 6/27/2024
2.1.647 29 6/27/2024
2.1.646 27 6/27/2024
2.1.645 76 6/24/2024
2.1.644 59 6/24/2024
2.1.643 66 6/22/2024
2.1.642 70 6/22/2024
2.1.641 69 6/22/2024
2.1.640 66 6/22/2024
2.1.639 68 6/22/2024
2.1.638 63 6/22/2024
2.1.637 66 6/22/2024
2.1.636 70 6/22/2024
2.1.635 66 6/22/2024
2.1.634 68 6/22/2024
2.1.633 68 6/22/2024
2.1.632 72 6/21/2024
2.1.631 100 6/17/2024
2.1.630 75 6/16/2024
2.1.629 78 6/16/2024
2.1.628 77 6/16/2024
2.1.627 72 6/16/2024
2.1.626 79 6/15/2024
2.1.625 70 6/15/2024
2.1.624 70 6/15/2024
2.1.623 80 6/15/2024
2.1.622 77 6/15/2024
2.1.621 74 6/15/2024
2.1.620 74 6/15/2024
2.1.619 73 6/15/2024
2.1.618 75 6/15/2024
2.1.617 69 6/15/2024
2.1.616 73 6/15/2024
2.1.615 65 6/15/2024
2.1.614 75 6/15/2024
2.1.613 63 6/15/2024
2.1.612 63 6/15/2024
2.1.611 78 6/15/2024
2.1.610 73 6/15/2024
2.1.609 72 6/15/2024
2.1.608 66 6/15/2024
2.1.607 72 6/15/2024
2.1.606 74 6/15/2024
2.1.605 69 6/15/2024
2.1.604 78 6/14/2024
2.1.603 78 6/14/2024
2.1.602 68 6/14/2024
2.1.601 71 6/14/2024
2.1.600 74 6/14/2024
2.1.599 69 6/12/2024
2.1.598 89 6/4/2024
2.1.597 75 6/4/2024
2.1.596 72 6/4/2024
2.1.595 70 6/4/2024
2.1.594 71 6/4/2024
2.1.593 75 6/4/2024
2.1.592 84 6/4/2024
2.1.591 74 6/4/2024
2.1.590 88 6/3/2024
2.1.589 75 6/3/2024
2.1.588 76 6/3/2024
2.1.587 87 6/2/2024
2.1.586 79 6/2/2024
2.1.585 86 6/2/2024
2.1.584 74 6/2/2024
2.1.583 77 6/2/2024
2.1.582 85 6/2/2024
2.1.581 76 6/2/2024
2.1.580 78 6/2/2024
2.1.579 80 6/1/2024
2.1.578 79 6/1/2024
2.1.577 78 6/1/2024
2.1.576 83 6/1/2024
2.1.575 79 6/1/2024
2.1.574 81 6/1/2024
2.1.573 85 6/1/2024
2.1.572 79 6/1/2024
2.1.571 78 6/1/2024
2.1.570 83 6/1/2024
2.1.569 78 6/1/2024
2.1.568 78 6/1/2024
2.1.567 71 6/1/2024
2.1.566 85 6/1/2024
2.1.565 76 6/1/2024
2.1.564 75 6/1/2024
2.1.563 73 6/1/2024
2.1.562 73 6/1/2024
2.1.561 81 6/1/2024
2.1.560 77 6/1/2024
2.1.559 73 6/1/2024
2.1.558 76 6/1/2024
2.1.557 82 5/31/2024
2.1.556 75 5/31/2024
2.1.555 81 5/31/2024
2.1.554 74 5/31/2024
2.1.553 79 5/31/2024
2.1.552 89 5/31/2024
2.1.551 63 5/31/2024
2.1.550 63 5/31/2024
2.1.549 60 5/31/2024
2.1.548 77 5/31/2024
2.1.547 79 5/31/2024
2.1.546 82 5/31/2024
2.1.545 80 5/31/2024
2.1.544 78 5/31/2024
2.1.543 78 5/31/2024
2.1.542 76 5/29/2024
2.1.541 83 5/29/2024
2.1.540 84 5/29/2024
2.1.539 74 5/29/2024
2.1.538 81 5/29/2024
2.1.537 79 5/29/2024
2.1.536 73 5/29/2024
2.1.535 72 5/29/2024
2.1.534 76 5/29/2024
2.1.533 74 5/29/2024
2.1.532 73 5/29/2024
2.1.531 80 5/29/2024
2.1.530 69 5/29/2024
2.1.529 82 5/29/2024
2.1.528 79 5/28/2024
2.1.527 72 5/28/2024
2.1.526 62 5/28/2024
2.1.525 61 5/28/2024
2.1.524 76 5/28/2024
2.1.523 71 5/28/2024
2.1.522 67 5/28/2024
2.1.521 91 5/28/2024
2.1.520 71 5/28/2024
2.1.519 66 5/28/2024
2.1.518 69 5/28/2024
2.1.517 70 5/28/2024
2.1.516 71 5/28/2024
2.1.515 72 5/28/2024
2.1.514 69 5/28/2024
2.1.513 73 5/28/2024
2.1.512 66 5/28/2024
2.1.511 66 5/28/2024
2.1.510 73 5/28/2024
2.1.509 69 5/28/2024
2.1.508 69 5/28/2024
2.1.507 69 5/27/2024
2.1.506 68 5/27/2024
2.1.505 68 5/27/2024
2.1.504 75 5/27/2024
2.1.503 75 5/27/2024
2.1.502 82 5/27/2024
2.1.501 75 5/27/2024
2.1.500 76 5/27/2024
2.1.499 76 5/27/2024
2.1.498 79 5/27/2024
2.1.497 76 5/27/2024
2.1.496 73 5/27/2024
2.1.495 79 5/26/2024
2.1.494 75 5/26/2024
2.1.493 78 5/26/2024
2.1.492 72 5/26/2024
2.1.491 74 5/26/2024
2.1.490 76 5/26/2024
2.1.489 84 5/26/2024
2.1.488 82 5/26/2024
2.1.487 78 5/26/2024
2.1.486 88 5/26/2024
2.1.485 85 5/26/2024
2.1.484 77 5/26/2024
2.1.483 89 5/26/2024
2.1.482 77 5/26/2024
2.1.481 83 5/26/2024
2.1.480 93 5/26/2024
2.1.479 74 5/26/2024
2.1.478 74 5/26/2024
2.1.477 83 5/25/2024
2.1.476 73 5/25/2024
2.1.475 75 5/25/2024
2.1.474 71 5/25/2024
2.1.473 83 5/25/2024
2.1.472 77 5/25/2024
2.1.471 76 5/25/2024
2.1.470 76 5/25/2024
2.1.469 88 5/25/2024
2.1.468 83 5/25/2024
2.1.467 77 5/25/2024
2.1.466 84 5/25/2024
2.1.465 74 5/25/2024
2.1.464 76 5/25/2024
2.1.463 82 5/25/2024
2.1.462 81 5/25/2024
2.1.461 76 5/25/2024
2.1.460 82 5/25/2024
2.1.459 78 5/25/2024
2.1.458 85 5/24/2024
2.1.457 77 5/24/2024
2.1.456 75 5/23/2024
2.1.455 81 5/23/2024
2.1.454 75 5/23/2024
2.1.453 74 5/23/2024
2.1.452 80 5/23/2024
2.1.451 80 5/23/2024
2.1.450 85 5/23/2024
2.1.449 75 5/23/2024
2.1.448 76 5/23/2024
2.1.447 74 5/23/2024
2.1.446 77 5/23/2024
2.1.445 70 5/23/2024
2.1.444 72 5/23/2024
2.1.443 79 5/23/2024
2.1.442 82 5/23/2024
2.1.441 79 5/23/2024
2.1.440 80 5/23/2024
2.1.439 78 5/23/2024
2.1.438 74 5/23/2024
2.1.437 83 5/22/2024
2.1.436 75 5/22/2024
2.1.435 81 5/22/2024
2.1.434 75 5/22/2024
2.1.433 82 5/22/2024
2.1.432 78 5/22/2024
2.1.431 88 5/22/2024
2.1.430 81 5/22/2024
2.1.429 91 5/22/2024
2.1.428 80 5/22/2024
2.1.427 74 5/22/2024
2.1.426 79 5/22/2024
2.1.425 81 5/22/2024
2.1.424 80 5/22/2024
2.1.423 71 5/22/2024
2.1.422 81 5/19/2024
2.1.421 81 5/19/2024
2.1.420 86 5/18/2024
2.1.419 72 5/18/2024
2.1.418 78 5/18/2024
2.1.417 81 5/18/2024
2.1.416 79 5/18/2024
2.1.415 83 5/18/2024
2.1.414 81 5/18/2024
2.1.413 73 5/18/2024
2.1.412 73 5/18/2024
2.1.411 94 5/18/2024
2.1.410 80 5/18/2024
2.1.409 75 5/18/2024
2.1.408 98 5/17/2024
2.1.407 86 5/17/2024
2.1.406 90 5/17/2024
2.1.405 85 5/17/2024
2.1.404 85 5/17/2024
2.1.403 81 5/17/2024
2.1.402 102 5/17/2024
2.1.401 80 5/17/2024
2.1.400 84 5/17/2024
2.1.399 78 5/17/2024
2.1.398 69 5/17/2024
2.1.397 67 5/17/2024
2.1.396 104 5/16/2024
2.1.395 80 5/16/2024
2.1.394 77 5/16/2024
2.1.393 90 5/16/2024
2.1.392 81 5/16/2024
2.1.391 82 5/16/2024
2.1.390 91 5/15/2024
2.1.389 85 5/15/2024
2.1.388 79 5/15/2024
2.1.387 81 5/15/2024
2.1.386 73 5/15/2024
2.1.385 72 5/15/2024
2.1.384 64 5/15/2024
2.1.383 63 5/15/2024
2.1.382 66 5/15/2024
2.1.381 68 5/14/2024
2.1.380 53 5/14/2024
2.1.379 61 5/14/2024
2.1.378 58 5/14/2024
2.1.377 70 5/13/2024
2.1.376 65 5/13/2024
2.1.375 67 5/13/2024
2.1.374 67 5/13/2024
2.1.373 61 5/13/2024
2.1.372 69 5/13/2024
2.1.371 61 5/13/2024
2.1.370 54 5/13/2024
2.1.369 68 5/13/2024
2.1.368 63 5/13/2024
2.1.367 63 5/13/2024
2.1.366 62 5/3/2024
2.1.365 69 5/1/2024
2.1.364 68 5/1/2024
2.1.363 82 4/30/2024
2.1.362 87 4/30/2024
2.1.361 96 4/30/2024
2.1.360 88 4/30/2024
2.1.359 94 4/30/2024
2.1.358 87 4/30/2024
2.1.357 90 4/30/2024
2.1.356 90 4/30/2024
2.1.355 84 4/30/2024
2.1.354 86 4/30/2024
2.1.353 91 4/30/2024
2.1.352 85 4/30/2024
2.1.351 83 4/30/2024
2.1.350 85 4/30/2024
2.1.349 84 4/30/2024
2.1.348 98 4/30/2024
2.1.347 81 4/30/2024
2.1.346 94 4/29/2024
2.1.345 79 4/29/2024
2.1.344 86 4/29/2024
2.1.343 79 4/29/2024
2.1.342 80 4/29/2024
2.1.341 87 4/29/2024
2.1.340 85 4/29/2024
2.1.339 86 4/29/2024
2.1.338 85 4/29/2024
2.1.337 85 4/29/2024
2.1.336 80 4/29/2024
2.1.335 84 4/29/2024
2.1.334 88 4/29/2024
2.1.333 88 4/28/2024
2.1.332 82 4/28/2024
2.1.331 78 4/28/2024
2.1.330 85 4/28/2024
2.1.329 92 4/28/2024
2.1.328 83 4/28/2024
2.1.327 93 4/28/2024
2.1.326 77 4/28/2024
2.1.325 77 4/28/2024
2.1.324 79 4/28/2024
2.1.323 93 4/28/2024
2.1.322 83 4/28/2024
2.1.321 79 4/28/2024
2.1.320 91 4/28/2024
2.1.319 87 4/28/2024
2.1.318 81 4/28/2024
2.1.317 78 4/28/2024
2.1.316 76 4/28/2024
2.1.315 84 4/28/2024
2.1.314 91 4/28/2024
2.1.313 78 4/28/2024
2.1.312 88 4/28/2024
2.1.311 89 4/28/2024
2.1.310 92 4/28/2024
2.1.309 80 4/28/2024
2.1.308 86 4/28/2024
2.1.307 86 4/27/2024
2.1.306 76 4/27/2024
2.1.305 80 4/27/2024
2.1.304 91 4/27/2024
2.1.303 86 4/22/2024
2.1.302 95 4/20/2024
2.1.301 86 4/20/2024
2.1.300 88 4/20/2024
2.1.299 91 4/20/2024
2.1.298 78 4/20/2024
2.1.297 82 4/20/2024
2.1.296 76 4/20/2024
2.1.295 80 4/20/2024
2.1.294 79 4/20/2024
2.1.293 83 4/19/2024
2.1.292 78 4/19/2024
2.1.291 86 4/19/2024
2.1.290 74 4/19/2024
2.1.289 78 4/19/2024
2.1.288 73 4/19/2024
2.1.287 75 4/19/2024
2.1.286 85 4/19/2024
2.1.285 81 4/19/2024
2.1.284 83 4/19/2024
2.1.283 82 4/19/2024
2.1.282 74 4/19/2024
2.1.281 81 4/19/2024
2.1.280 77 4/19/2024
2.1.279 80 4/19/2024
2.1.278 78 4/19/2024
2.1.277 73 4/19/2024
2.1.276 77 4/19/2024
2.1.275 81 4/18/2024
2.1.274 69 4/18/2024
2.1.273 108 4/15/2024
2.1.272 95 4/13/2024
2.1.271 79 4/13/2024
2.1.270 77 4/13/2024
2.1.269 68 4/13/2024
2.1.268 71 4/13/2024
2.1.267 73 4/13/2024
2.1.266 80 4/13/2024
2.1.265 78 4/13/2024
2.1.264 72 4/13/2024
2.1.263 77 4/13/2024
2.1.262 76 4/13/2024
2.1.261 78 4/13/2024
2.1.260 72 4/13/2024
2.1.259 72 4/13/2024
2.1.258 77 4/12/2024
2.1.257 59 4/12/2024
2.1.256 75 4/12/2024
2.1.255 74 4/12/2024
2.1.254 71 4/12/2024
2.1.253 68 4/12/2024
2.1.252 73 4/12/2024
2.1.251 70 4/12/2024
2.1.250 65 4/12/2024
2.1.249 77 4/12/2024
2.1.248 70 4/12/2024
2.1.247 69 4/12/2024
2.1.246 71 4/12/2024
2.1.245 75 4/12/2024
2.1.244 73 4/12/2024
2.1.243 77 4/12/2024
2.1.242 77 4/12/2024
2.1.241 74 4/12/2024
2.1.240 76 4/12/2024
2.1.239 83 4/12/2024
2.1.238 76 4/12/2024
2.1.237 77 4/12/2024
2.1.236 79 4/12/2024
2.1.235 79 4/12/2024
2.1.234 76 4/12/2024
2.1.233 70 4/12/2024
2.1.232 78 4/12/2024
2.1.231 133 4/11/2024
2.1.230 81 4/11/2024
2.1.229 84 4/10/2024
2.1.228 77 4/10/2024
2.1.227 77 4/10/2024
2.1.226 73 4/10/2024
2.1.225 70 4/10/2024
2.1.224 73 4/10/2024
2.1.223 72 4/10/2024
2.1.222 58 4/10/2024
2.1.221 60 4/10/2024
2.1.220 67 4/10/2024
2.1.219 73 4/10/2024
2.1.218 71 4/10/2024
2.1.217 72 4/10/2024
2.1.216 68 4/10/2024
2.1.215 66 4/10/2024
2.1.214 69 4/10/2024
2.1.213 81 4/9/2024
2.1.212 77 4/9/2024
2.1.211 80 4/9/2024
2.1.210 75 4/9/2024
2.1.209 91 4/8/2024
2.1.208 122 4/5/2024
2.1.207 72 4/4/2024
2.1.206 85 4/4/2024
2.1.205 77 4/4/2024
2.1.204 97 4/3/2024
2.1.203 83 4/3/2024
2.1.202 78 4/3/2024
2.1.201 76 4/3/2024
2.1.200 82 4/2/2024
2.1.199 73 4/2/2024
2.1.198 89 4/2/2024
2.1.197 86 4/2/2024
2.1.196 60 4/2/2024
2.1.195 85 4/2/2024
2.1.194 81 4/2/2024
2.1.193 88 4/2/2024
2.1.192 78 4/2/2024
2.1.191 65 4/2/2024
2.1.190 71 4/2/2024
2.1.189 79 4/1/2024
2.1.188 69 4/1/2024
2.1.187 76 4/1/2024
2.1.186 74 4/1/2024
2.1.185 71 4/1/2024
2.1.184 95 3/30/2024
2.1.183 82 3/30/2024
2.1.182 92 3/30/2024
2.1.181 79 3/30/2024
2.1.180 80 3/29/2024
2.1.179 80 3/29/2024
2.1.178 84 3/29/2024
2.1.177 75 3/29/2024
2.1.176 68 3/27/2024
2.1.175 83 3/26/2024
2.1.174 73 3/26/2024
2.1.173 69 3/25/2024
2.1.172 73 3/25/2024
2.1.171 63 3/25/2024
2.1.170 65 3/25/2024
2.1.169 75 3/25/2024
2.1.168 66 3/25/2024
2.1.167 82 3/25/2024
2.1.166 84 3/25/2024
2.1.165 75 3/25/2024
2.1.164 60 3/25/2024
2.1.163 78 3/25/2024
2.1.162 71 3/25/2024
2.1.161 85 3/24/2024
2.1.160 69 3/23/2024
2.1.159 97 3/21/2024
2.1.158 70 3/21/2024
2.1.157 87 3/21/2024
2.1.156 86 3/21/2024
2.1.155 80 3/21/2024
2.1.154 78 3/21/2024
2.1.153 80 3/21/2024
2.1.152 83 3/21/2024
2.1.151 86 3/21/2024
2.1.150 84 3/20/2024
2.1.149 71 3/20/2024
2.1.148 95 3/20/2024
2.1.147 95 3/20/2024
2.1.146 90 3/20/2024
2.1.145 97 3/20/2024
2.1.144 99 3/20/2024
2.1.143 92 3/20/2024
2.1.142 95 3/20/2024
2.1.141 78 3/19/2024
2.1.140 79 3/19/2024
2.1.139 97 3/19/2024
2.1.138 91 3/19/2024
2.1.137 84 3/19/2024
2.1.136 87 3/19/2024
2.1.135 90 3/19/2024
2.1.134 81 3/19/2024
2.1.133 104 3/19/2024
2.1.132 92 3/19/2024
2.1.131 99 3/19/2024
2.1.130 89 3/19/2024
2.1.129 90 3/19/2024
2.1.128 102 3/19/2024
2.1.127 76 3/19/2024
2.1.126 100 3/19/2024
2.1.125 93 3/18/2024
2.1.124 94 3/18/2024
2.1.123 83 3/18/2024
2.1.122 124 3/18/2024
2.1.121 101 3/16/2024
2.1.120 89 3/16/2024
2.1.119 101 3/16/2024
2.1.118 98 3/16/2024
2.1.117 93 3/16/2024
2.1.116 99 3/16/2024
2.1.115 98 3/16/2024
2.1.114 90 3/16/2024
2.1.113 94 3/16/2024
2.1.112 83 3/15/2024
2.1.111 84 3/15/2024
2.1.110 102 3/15/2024
2.1.109 92 3/15/2024
2.1.108 96 3/14/2024
2.1.107 102 3/14/2024
2.1.106 97 3/14/2024
2.1.105 70 3/14/2024
2.1.104 92 3/14/2024
2.1.103 107 3/13/2024
2.1.102 98 3/13/2024
2.1.101 96 3/13/2024
2.1.100 92 3/13/2024
2.1.99 94 3/13/2024
2.1.98 99 3/13/2024
2.1.97 96 3/13/2024
2.1.96 86 3/13/2024
2.1.95 91 3/13/2024
2.1.94 80 3/13/2024
2.1.93 106 3/13/2024
2.1.92 94 3/13/2024
2.1.91 104 3/13/2024
2.1.90 103 3/13/2024
2.1.89 98 3/13/2024
2.1.88 97 3/13/2024
2.1.87 87 3/13/2024
2.1.86 103 3/13/2024
2.1.85 83 3/13/2024
2.1.84 84 3/13/2024
2.1.83 101 3/13/2024
2.1.82 91 3/13/2024
2.1.81 90 3/13/2024
2.1.80 98 3/12/2024
2.1.79 100 3/12/2024
2.1.78 107 3/12/2024
2.1.77 91 3/12/2024
2.1.76 86 3/12/2024
2.1.75 90 3/12/2024
2.1.74 79 3/12/2024
2.1.73 97 3/12/2024
2.1.72 98 3/12/2024
2.1.71 82 3/12/2024
2.1.70 101 3/12/2024
2.1.69 77 3/12/2024
2.1.68 83 3/12/2024
2.1.67 87 3/12/2024
2.1.66 99 3/12/2024
2.1.65 99 3/11/2024
2.1.64 98 3/11/2024
2.1.63 120 3/11/2024
2.1.62 80 3/11/2024
2.1.61 108 3/11/2024
2.1.60 81 3/11/2024
2.1.59 92 3/11/2024
2.1.58 103 3/11/2024
2.1.57 85 3/11/2024
2.1.56 99 3/11/2024
2.1.55 91 3/11/2024
2.1.54 93 3/11/2024
2.1.53 101 3/11/2024
2.1.52 105 3/10/2024
2.1.51 96 3/10/2024
2.1.50 108 3/10/2024
2.1.49 104 3/10/2024
2.1.48 101 3/10/2024
2.1.47 87 3/10/2024
2.1.46 97 3/10/2024
2.1.45 95 3/10/2024
2.1.44 102 3/10/2024
2.1.43 97 3/10/2024
2.1.42 89 3/10/2024
2.1.41 101 3/9/2024
2.1.40 97 3/9/2024
2.1.39 99 3/9/2024
2.1.38 108 3/9/2024
2.1.37 112 3/9/2024
2.1.36 88 3/9/2024
2.1.35 101 3/8/2024
2.1.34 95 3/8/2024
2.1.33 98 3/8/2024
2.1.32 104 3/8/2024
2.1.31 100 3/8/2024
2.1.30 98 3/8/2024
2.1.29 90 3/8/2024
2.1.28 102 3/8/2024
2.1.27 88 3/8/2024
2.1.26 107 3/8/2024
2.1.25 85 3/8/2024
2.1.24 98 3/8/2024
2.1.23 90 3/8/2024
2.1.22 81 3/8/2024
2.1.21 110 3/8/2024
2.1.20 115 3/7/2024
2.1.19 100 3/7/2024
2.1.18 91 3/7/2024
2.1.17 94 3/6/2024
2.1.16 86 3/6/2024
2.1.15 102 3/6/2024
2.1.14 100 3/6/2024
2.1.13 102 3/6/2024
2.1.12 97 3/6/2024
2.1.11 99 3/6/2024
2.1.10 96 3/6/2024
2.1.9 101 3/6/2024
2.1.8 96 3/6/2024
2.1.7 91 3/6/2024
2.1.6 109 3/6/2024
2.1.5 106 3/6/2024
2.1.4 91 3/5/2024
2.1.3 102 3/5/2024