Soenneker.Blazor.FilePond 2.1.695

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

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

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.FilePond

A Blazor interop library for the file upload library FilePond

This library simplifies the integration of FilePond 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 FilePond documentation for details.

Installation

dotnet add package Soenneker.Blazor.FilePond

1. Add the following to your _Imports.razor file

@using Soenneker.Blazor.FilePond

2. Add the following to your Startup.cs file

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

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

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/filepond@4.30.6/dist/filepond.min.css">

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

<script src="https://cdn.jsdelivr.net/npm/filepond@4.30.6/dist/filepond.min.js"></script>
<script src="_content/Soenneker.Blazor.FilePond/filepondinterop.js"></script>

Usage

<FilePond @ref="FilePond" Options="_options" OnAddFile="OnAddFile"></FilePond>

@code{
    private FilePond? FilePond { get; set; }

    private readonly FilePondOptions _options = new()
    {
        MaxFiles = 20,
        AllowMultiple = true
    };

    protected override async Task OnAfterRenderAsync(bool firstRender)
    {
        if (firstRender)
        {
            // Add any plugins you want to use
            //await FilePond!.EnablePlugins(FilePondPluginType.FileValidateType, FilePondPluginType.ImagePreview);
        }
    }

    private async Task OnAddFile((FilePondError? error, FilePondFileItem fileItem) obj)
    {
        Logger.LogInformation("OnAddFile fired: Filename: {fileName}", obj.fileItem.Filename);
        Stream? stream = await FilePond!.GetStreamForFile();
        // do something with the stream
        await stream.DisposeAsync();
    }
}

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