Soenneker.Blazor.FilePond 2.1.680

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.680
NuGet\Install-Package Soenneker.Blazor.FilePond -Version 2.1.680
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.680" />
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.680
#r "nuget: Soenneker.Blazor.FilePond, 2.1.680"
#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.680

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

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.680 0 4/29/2024
2.1.679 21 4/29/2024
2.1.678 22 4/29/2024
2.1.677 29 4/29/2024
2.1.676 23 4/29/2024
2.1.675 27 4/29/2024
2.1.674 26 4/29/2024
2.1.673 30 4/28/2024
2.1.672 26 4/28/2024
2.1.671 31 4/28/2024
2.1.670 34 4/28/2024
2.1.669 35 4/28/2024
2.1.668 33 4/28/2024
2.1.667 31 4/28/2024
2.1.666 33 4/28/2024
2.1.665 31 4/28/2024
2.1.664 33 4/28/2024
2.1.663 35 4/28/2024
2.1.662 33 4/28/2024
2.1.661 35 4/28/2024
2.1.660 37 4/28/2024
2.1.659 30 4/28/2024
2.1.658 36 4/27/2024
2.1.657 34 4/27/2024
2.1.656 76 4/20/2024
2.1.655 71 4/20/2024
2.1.654 81 4/20/2024
2.1.653 82 4/20/2024
2.1.652 77 4/20/2024
2.1.651 70 4/20/2024
2.1.650 71 4/20/2024
2.1.649 68 4/20/2024
2.1.648 67 4/20/2024
2.1.647 70 4/19/2024
2.1.646 62 4/19/2024
2.1.645 56 4/19/2024
2.1.644 66 4/19/2024
2.1.643 57 4/19/2024
2.1.642 59 4/19/2024
2.1.641 65 4/19/2024
2.1.640 59 4/19/2024
2.1.639 62 4/19/2024
2.1.638 64 4/19/2024
2.1.637 68 4/19/2024
2.1.636 70 4/19/2024
2.1.635 66 4/19/2024
2.1.634 65 4/19/2024
2.1.633 64 4/15/2024
2.1.632 63 4/15/2024
2.1.631 82 4/13/2024
2.1.630 97 4/13/2024
2.1.629 70 4/13/2024
2.1.628 66 4/13/2024
2.1.627 66 4/13/2024
2.1.626 60 4/13/2024
2.1.625 64 4/13/2024
2.1.624 72 4/13/2024
2.1.623 65 4/13/2024
2.1.622 67 4/13/2024
2.1.621 60 4/12/2024
2.1.620 58 4/12/2024
2.1.619 63 4/12/2024
2.1.618 62 4/12/2024
2.1.617 61 4/12/2024
2.1.616 57 4/12/2024
2.1.615 65 4/12/2024
2.1.614 62 4/12/2024
2.1.613 63 4/12/2024
2.1.612 61 4/12/2024
2.1.611 66 4/12/2024
2.1.610 65 4/12/2024
2.1.609 67 4/12/2024
2.1.608 63 4/12/2024
2.1.607 69 4/12/2024
2.1.606 68 4/12/2024
2.1.605 65 4/11/2024
2.1.604 73 4/11/2024
2.1.603 76 4/10/2024
2.1.602 66 4/10/2024
2.1.601 71 4/10/2024
2.1.600 69 4/10/2024
2.1.599 66 4/10/2024
2.1.598 66 4/10/2024
2.1.597 69 4/10/2024
2.1.596 65 4/10/2024
2.1.595 64 4/10/2024
2.1.594 67 4/10/2024
2.1.593 65 4/10/2024
2.1.592 71 4/9/2024
2.1.591 72 4/9/2024
2.1.590 77 4/9/2024
2.1.589 77 4/9/2024
2.1.588 82 4/8/2024
2.1.587 86 4/4/2024
2.1.586 84 4/4/2024
2.1.585 74 4/3/2024
2.1.584 60 4/3/2024
2.1.583 72 4/2/2024
2.1.582 66 4/2/2024
2.1.581 65 4/2/2024
2.1.580 68 4/2/2024
2.1.579 66 4/2/2024
2.1.578 60 4/2/2024
2.1.577 49 4/2/2024
2.1.576 67 4/2/2024
2.1.575 55 4/2/2024
2.1.574 76 4/1/2024
2.1.573 66 4/1/2024
2.1.572 69 4/1/2024
2.1.571 217 3/30/2024
2.1.570 75 3/30/2024
2.1.569 67 3/30/2024
2.1.568 74 3/30/2024
2.1.567 63 3/30/2024
2.1.566 66 3/29/2024
2.1.565 71 3/29/2024
2.1.564 70 3/29/2024
2.1.563 75 3/29/2024
2.1.562 70 3/27/2024
2.1.561 84 3/26/2024
2.1.560 77 3/26/2024
2.1.559 79 3/26/2024
2.1.558 81 3/25/2024
2.1.557 78 3/25/2024
2.1.556 80 3/25/2024
2.1.555 77 3/25/2024
2.1.554 82 3/25/2024
2.1.553 77 3/25/2024
2.1.552 73 3/25/2024
2.1.551 71 3/25/2024
2.1.550 79 3/25/2024
2.1.549 70 3/25/2024
2.1.548 81 3/24/2024
2.1.547 79 3/23/2024
2.1.546 80 3/21/2024
2.1.545 78 3/21/2024
2.1.544 86 3/21/2024
2.1.543 85 3/21/2024
2.1.542 85 3/21/2024
2.1.541 88 3/21/2024
2.1.540 87 3/21/2024
2.1.539 87 3/20/2024
2.1.538 78 3/20/2024
2.1.537 83 3/20/2024
2.1.536 84 3/20/2024
2.1.535 87 3/20/2024
2.1.534 94 3/20/2024
2.1.533 78 3/20/2024
2.1.532 77 3/20/2024
2.1.531 90 3/19/2024
2.1.530 80 3/19/2024
2.1.529 79 3/19/2024
2.1.528 82 3/19/2024
2.1.527 71 3/19/2024
2.1.526 62 3/19/2024
2.1.525 79 3/19/2024
2.1.524 87 3/19/2024
2.1.523 81 3/19/2024
2.1.522 75 3/19/2024
2.1.521 82 3/18/2024
2.1.520 77 3/18/2024
2.1.519 85 3/18/2024
2.1.518 76 3/16/2024
2.1.517 89 3/16/2024
2.1.516 95 3/16/2024
2.1.515 88 3/16/2024
2.1.514 77 3/16/2024
2.1.513 82 3/16/2024
2.1.512 84 3/16/2024
2.1.511 91 3/16/2024
2.1.510 82 3/16/2024
2.1.509 67 3/15/2024
2.1.508 82 3/15/2024
2.1.507 79 3/14/2024
2.1.506 86 3/14/2024
2.1.505 81 3/14/2024
2.1.504 84 3/14/2024
2.1.503 87 3/13/2024
2.1.502 88 3/13/2024
2.1.501 88 3/13/2024
2.1.500 88 3/13/2024
2.1.499 85 3/13/2024
2.1.498 97 3/13/2024
2.1.497 93 3/13/2024
2.1.496 95 3/13/2024
2.1.495 90 3/13/2024
2.1.494 68 3/13/2024
2.1.493 91 3/13/2024
2.1.492 84 3/13/2024
2.1.491 80 3/13/2024
2.1.490 84 3/13/2024
2.1.489 81 3/13/2024
2.1.488 87 3/13/2024
2.1.487 75 3/13/2024
2.1.486 70 3/12/2024
2.1.485 86 3/12/2024
2.1.484 88 3/12/2024
2.1.483 83 3/12/2024
2.1.482 75 3/12/2024
2.1.481 80 3/12/2024
2.1.480 77 3/12/2024
2.1.479 78 3/12/2024
2.1.478 87 3/12/2024
2.1.477 78 3/12/2024
2.1.476 72 3/12/2024
2.1.475 77 3/12/2024
2.1.474 83 3/12/2024
2.1.473 82 3/12/2024
2.1.472 96 3/11/2024
2.1.471 91 3/11/2024
2.1.470 91 3/11/2024
2.1.469 84 3/11/2024
2.1.468 84 3/11/2024
2.1.467 80 3/11/2024
2.1.466 74 3/11/2024
2.1.465 71 3/11/2024
2.1.464 88 3/11/2024
2.1.463 71 3/11/2024
2.1.462 93 3/10/2024
2.1.461 90 3/10/2024
2.1.460 86 3/10/2024
2.1.459 98 3/10/2024
2.1.458 82 3/10/2024
2.1.457 95 3/10/2024
2.1.456 91 3/10/2024
2.1.455 95 3/10/2024
2.1.454 91 3/10/2024
2.1.453 88 3/9/2024
2.1.452 90 3/9/2024
2.1.451 94 3/9/2024
2.1.450 95 3/9/2024
2.1.449 96 3/8/2024
2.1.448 88 3/8/2024
2.1.447 91 3/8/2024
2.1.446 90 3/8/2024
2.1.445 89 3/8/2024
2.1.444 83 3/8/2024
2.1.443 83 3/8/2024
2.1.442 84 3/8/2024
2.1.441 92 3/8/2024
2.1.440 89 3/8/2024
2.1.439 92 3/8/2024
2.1.438 91 3/8/2024
2.1.437 86 3/7/2024
2.1.436 102 3/6/2024
2.1.435 76 3/6/2024
2.1.434 71 3/6/2024
2.1.433 83 3/6/2024
2.1.432 81 3/6/2024
2.1.431 88 3/6/2024
2.1.430 89 3/6/2024
2.1.429 73 3/4/2024
2.1.428 82 3/4/2024
2.1.427 79 3/4/2024
2.1.426 61 3/4/2024
2.1.425 77 3/4/2024
2.1.424 78 3/4/2024
2.1.423 78 3/4/2024
2.1.422 76 3/4/2024
2.1.421 77 3/4/2024
2.1.420 76 3/4/2024
2.1.419 74 3/4/2024
2.1.418 74 3/4/2024
2.1.417 73 3/4/2024
2.1.416 74 3/3/2024
2.1.415 72 3/3/2024
2.1.414 83 3/3/2024
2.1.413 74 3/3/2024
2.1.412 79 3/3/2024
2.1.411 73 3/3/2024
2.1.410 80 3/3/2024
2.1.409 66 3/3/2024
2.1.408 75 3/3/2024
2.1.407 80 3/3/2024
2.1.406 76 3/2/2024
2.1.405 72 3/2/2024
2.1.404 77 3/2/2024
2.1.403 72 3/2/2024
2.1.402 74 3/2/2024
2.1.401 79 3/2/2024
2.1.400 75 3/2/2024
2.1.399 69 3/2/2024
2.1.398 76 3/2/2024
2.1.397 69 3/2/2024
2.1.396 83 3/2/2024
2.1.395 68 3/2/2024
2.1.394 79 3/2/2024
2.1.393 65 3/2/2024
2.1.392 77 3/1/2024
2.1.391 71 3/1/2024
2.1.390 75 3/1/2024
2.1.389 67 2/29/2024
2.1.388 76 2/29/2024
2.1.387 69 2/29/2024
2.1.386 71 2/29/2024
2.1.385 69 2/29/2024
2.1.384 71 2/29/2024
2.1.383 69 2/29/2024
2.1.382 69 2/29/2024
2.1.381 70 2/29/2024
2.1.380 66 2/29/2024
2.1.379 78 2/29/2024
2.1.378 66 2/29/2024
2.1.377 65 2/29/2024
2.1.376 71 2/29/2024
2.1.375 74 2/29/2024
2.1.374 81 2/27/2024
2.1.373 80 2/27/2024
2.1.372 80 2/27/2024
2.1.371 86 2/27/2024
2.1.370 79 2/26/2024
2.1.369 80 2/26/2024
2.1.368 82 2/26/2024
2.1.367 76 2/26/2024
2.1.366 77 2/26/2024
2.1.365 79 2/26/2024
2.1.364 74 2/25/2024
2.1.363 80 2/25/2024
2.1.362 75 2/25/2024
2.1.361 78 2/25/2024
2.1.360 81 2/25/2024
2.1.359 76 2/25/2024
2.1.358 65 2/25/2024
2.1.357 78 2/25/2024
2.1.356 81 2/25/2024
2.1.355 75 2/25/2024
2.1.354 83 2/24/2024
2.1.353 84 2/24/2024
2.1.352 78 2/24/2024
2.1.351 75 2/24/2024
2.1.350 76 2/23/2024
2.1.349 79 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 70 1/26/2024
2.1.49 73 1/26/2024
2.1.48 68 1/26/2024
2.1.47 75 1/26/2024
2.1.46 70 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