Soenneker.Blazor.FilePond 2.1.1030

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Blazor.FilePond --version 2.1.1030                
NuGet\Install-Package Soenneker.Blazor.FilePond -Version 2.1.1030                
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.1030" />                
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.1030                
#r "nuget: Soenneker.Blazor.FilePond, 2.1.1030"                
#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.1030

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

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

Add the following to your Startup.cs file

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

⚠ Do not include styles or scripts on the page as they get lazily injected automatically, including most plugins.

Usage

@using Soenneker.Blazor.FilePond

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

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

    private readonly FilePondOptions _options = new()
    {
        MaxFiles = 20,
        AllowMultiple = true,
        EnabledPlugins = [FilePondPluginType.ImagePreview]
    };

    protected override async Task OnAfterRenderAsync(bool firstRender)
    {
        if (firstRender)
        {
            await FilePond.AddFile("https://picsum.photos/500/500");
        }
    }

    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();
    }
}
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.1215 30 8/30/2024
2.1.1214 33 8/30/2024
2.1.1213 34 8/30/2024
2.1.1212 34 8/29/2024
2.1.1211 29 8/29/2024
2.1.1210 30 8/29/2024
2.1.1209 27 8/29/2024
2.1.1208 30 8/29/2024
2.1.1207 27 8/29/2024
2.1.1206 28 8/29/2024
2.1.1205 24 8/29/2024
2.1.1204 29 8/29/2024
2.1.1203 75 8/26/2024
2.1.1202 72 8/26/2024
2.1.1201 67 8/26/2024
2.1.1200 63 8/26/2024
2.1.1199 68 8/26/2024
2.1.1198 61 8/26/2024
2.1.1197 71 8/26/2024
2.1.1196 62 8/26/2024
2.1.1195 65 8/26/2024
2.1.1194 59 8/26/2024
2.1.1193 55 8/26/2024
2.1.1192 72 8/22/2024
2.1.1191 70 8/22/2024
2.1.1190 76 8/21/2024
2.1.1189 61 8/21/2024
2.1.1188 68 8/21/2024
2.1.1187 64 8/21/2024
2.1.1186 68 8/21/2024
2.1.1185 65 8/21/2024
2.1.1184 66 8/21/2024
2.1.1183 65 8/21/2024
2.1.1182 49 8/21/2024
2.1.1181 45 8/21/2024
2.1.1180 46 8/21/2024
2.1.1179 67 8/21/2024
2.1.1178 66 8/21/2024
2.1.1177 61 8/21/2024
2.1.1176 67 8/21/2024
2.1.1175 64 8/21/2024
2.1.1174 69 8/20/2024
2.1.1173 64 8/20/2024
2.1.1172 76 8/20/2024
2.1.1171 65 8/20/2024
2.1.1170 59 8/20/2024
2.1.1169 60 8/20/2024
2.1.1168 63 8/20/2024
2.1.1167 57 8/20/2024
2.1.1166 64 8/20/2024
2.1.1165 61 8/20/2024
2.1.1164 57 8/20/2024
2.1.1163 62 8/20/2024
2.1.1162 55 8/20/2024
2.1.1161 61 8/20/2024
2.1.1160 67 8/20/2024
2.1.1159 70 8/20/2024
2.1.1158 67 8/19/2024
2.1.1157 63 8/19/2024
2.1.1156 66 8/19/2024
2.1.1155 85 8/15/2024
2.1.1154 64 8/15/2024
2.1.1153 61 8/15/2024
2.1.1152 66 8/15/2024
2.1.1151 57 8/15/2024
2.1.1150 68 8/15/2024
2.1.1149 64 8/15/2024
2.1.1148 63 8/15/2024
2.1.1147 71 8/15/2024
2.1.1146 71 8/15/2024
2.1.1145 66 8/15/2024
2.1.1144 66 8/15/2024
2.1.1143 57 8/15/2024
2.1.1142 64 8/15/2024
2.1.1141 64 8/15/2024
2.1.1140 59 8/15/2024
2.1.1139 72 8/15/2024
2.1.1138 68 8/14/2024
2.1.1137 70 8/14/2024
2.1.1136 70 8/14/2024
2.1.1135 74 8/14/2024
2.1.1134 66 8/14/2024
2.1.1133 62 8/14/2024
2.1.1132 72 8/14/2024
2.1.1131 71 8/14/2024
2.1.1130 70 8/13/2024
2.1.1129 74 8/13/2024
2.1.1128 71 8/13/2024
2.1.1127 63 8/7/2024
2.1.1126 58 8/7/2024
2.1.1125 59 8/7/2024
2.1.1124 62 8/7/2024
2.1.1123 56 8/7/2024
2.1.1122 64 8/7/2024
2.1.1121 63 8/7/2024
2.1.1120 60 8/7/2024
2.1.1119 60 8/7/2024
2.1.1118 57 8/7/2024
2.1.1117 58 8/6/2024
2.1.1116 55 8/6/2024
2.1.1115 55 8/6/2024
2.1.1114 47 8/6/2024
2.1.1113 47 8/6/2024
2.1.1112 50 8/6/2024
2.1.1111 70 8/1/2024
2.1.1110 64 8/1/2024
2.1.1109 60 8/1/2024
2.1.1108 61 8/1/2024
2.1.1107 58 8/1/2024
2.1.1106 60 8/1/2024
2.1.1105 60 8/1/2024
2.1.1104 61 8/1/2024
2.1.1103 54 8/1/2024
2.1.1102 63 8/1/2024
2.1.1101 57 8/1/2024
2.1.1100 58 8/1/2024
2.1.1099 61 8/1/2024
2.1.1098 57 8/1/2024
2.1.1097 60 8/1/2024
2.1.1096 58 8/1/2024
2.1.1095 57 8/1/2024
2.1.1094 57 8/1/2024
2.1.1093 59 8/1/2024
2.1.1092 43 7/31/2024
2.1.1091 37 7/31/2024
2.1.1090 59 7/25/2024
2.1.1089 55 7/25/2024
2.1.1088 52 7/25/2024
2.1.1087 54 7/25/2024
2.1.1086 52 7/25/2024
2.1.1085 48 7/25/2024
2.1.1084 51 7/25/2024
2.1.1083 50 7/25/2024
2.1.1082 50 7/25/2024
2.1.1081 55 7/25/2024
2.1.1080 55 7/25/2024
2.1.1079 52 7/25/2024
2.1.1078 52 7/25/2024
2.1.1077 55 7/25/2024
2.1.1076 44 7/25/2024
2.1.1075 59 7/25/2024
2.1.1074 53 7/25/2024
2.1.1073 52 7/25/2024
2.1.1072 58 7/25/2024
2.1.1071 52 7/25/2024
2.1.1070 59 7/25/2024
2.1.1069 76 7/24/2024
2.1.1068 70 7/24/2024
2.1.1067 70 7/24/2024
2.1.1066 60 7/24/2024
2.1.1065 70 7/24/2024
2.1.1064 110 7/23/2024
2.1.1063 78 7/23/2024
2.1.1062 89 7/20/2024
2.1.1061 79 7/20/2024
2.1.1060 90 7/20/2024
2.1.1059 67 7/20/2024
2.1.1058 71 7/20/2024
2.1.1057 82 7/20/2024
2.1.1056 78 7/20/2024
2.1.1055 78 7/20/2024
2.1.1054 81 7/20/2024
2.1.1053 78 7/20/2024
2.1.1052 82 7/20/2024
2.1.1051 77 7/20/2024
2.1.1050 84 7/20/2024
2.1.1049 70 7/17/2024
2.1.1048 64 7/17/2024
2.1.1047 62 7/17/2024
2.1.1046 56 7/17/2024
2.1.1045 49 7/17/2024
2.1.1044 69 7/15/2024
2.1.1043 65 7/15/2024
2.1.1042 69 7/15/2024
2.1.1041 70 7/14/2024
2.1.1040 74 7/14/2024
2.1.1039 74 7/14/2024
2.1.1038 64 7/14/2024
2.1.1037 73 7/14/2024
2.1.1036 66 7/14/2024
2.1.1035 72 7/14/2024
2.1.1034 70 7/14/2024
2.1.1033 63 7/14/2024
2.1.1032 71 7/14/2024
2.1.1031 66 7/14/2024
2.1.1030 61 7/14/2024
2.1.1029 62 7/14/2024
2.1.1028 64 7/14/2024
2.1.1027 67 7/14/2024
2.1.1026 64 7/14/2024
2.1.1025 75 7/12/2024
2.1.1024 74 7/11/2024
2.1.1023 91 7/11/2024
2.1.1022 79 7/11/2024
2.1.1021 80 7/11/2024
2.1.1020 82 7/10/2024
2.1.1019 83 7/10/2024
2.1.1018 73 7/10/2024
2.1.1017 76 7/10/2024
2.1.1016 79 7/10/2024
2.1.1015 74 7/10/2024
2.1.1014 75 7/10/2024
2.1.1013 65 7/10/2024
2.1.1012 60 7/10/2024
2.1.1011 74 7/10/2024
2.1.1010 70 7/10/2024
2.1.1009 73 7/10/2024
2.1.1008 71 7/10/2024
2.1.1007 68 7/10/2024
2.1.1006 62 7/10/2024
2.1.1005 63 7/10/2024
2.1.1004 72 7/10/2024
2.1.1003 69 7/10/2024
2.1.1002 74 7/10/2024
2.1.1001 63 7/10/2024
2.1.1000 77 7/10/2024
2.1.999 73 7/10/2024
2.1.998 73 7/10/2024
2.1.997 78 7/10/2024
2.1.994 78 7/10/2024
2.1.993 82 7/10/2024
2.1.992 82 7/10/2024
2.1.991 87 7/10/2024
2.1.990 79 7/9/2024
2.1.989 68 7/9/2024
2.1.986 67 7/9/2024
2.1.985 75 7/9/2024
2.1.984 62 7/9/2024
2.1.983 67 7/9/2024
2.1.982 61 7/9/2024
2.1.981 76 7/9/2024
2.1.980 83 7/9/2024
2.1.979 79 7/9/2024
2.1.978 71 7/9/2024
2.1.977 69 7/9/2024
2.1.976 80 7/9/2024
2.1.975 73 7/9/2024
2.1.974 75 7/9/2024
2.1.973 71 7/9/2024
2.1.972 69 7/9/2024
2.1.971 66 7/9/2024
2.1.970 57 7/9/2024
2.1.969 75 7/9/2024
2.1.968 73 7/9/2024
2.1.967 82 7/9/2024
2.1.966 77 7/9/2024
2.1.965 75 7/9/2024
2.1.964 74 7/8/2024
2.1.962 76 7/8/2024
2.1.961 72 7/8/2024
2.1.960 76 7/8/2024
2.1.959 80 7/8/2024
2.1.958 78 7/8/2024
2.1.957 85 7/8/2024
2.1.956 99 7/8/2024
2.1.955 84 7/8/2024
2.1.954 81 7/8/2024
2.1.953 73 7/8/2024
2.1.952 90 7/8/2024
2.1.951 77 7/8/2024
2.1.950 78 7/8/2024
2.1.949 79 7/8/2024
2.1.948 74 7/8/2024
2.1.947 73 7/8/2024
2.1.946 84 7/8/2024
2.1.945 87 7/7/2024
2.1.944 70 7/7/2024
2.1.943 79 7/7/2024
2.1.942 75 7/7/2024
2.1.941 73 7/7/2024
2.1.940 86 7/7/2024
2.1.939 78 7/7/2024
2.1.938 75 7/7/2024
2.1.937 72 7/7/2024
2.1.936 81 7/7/2024
2.1.935 77 7/7/2024
2.1.934 78 7/7/2024
2.1.933 88 7/7/2024
2.1.932 80 7/7/2024
2.1.931 78 7/7/2024
2.1.930 83 7/6/2024
2.1.929 85 7/6/2024
2.1.928 77 7/4/2024
2.1.927 86 7/4/2024
2.1.926 74 7/4/2024
2.1.925 96 7/4/2024
2.1.924 93 7/4/2024
2.1.923 72 7/3/2024
2.1.922 87 7/3/2024
2.1.921 73 7/3/2024
2.1.920 74 7/3/2024
2.1.919 67 7/3/2024
2.1.918 79 7/3/2024
2.1.917 75 7/3/2024
2.1.916 81 7/3/2024
2.1.915 81 7/3/2024
2.1.914 82 7/3/2024
2.1.913 82 7/3/2024
2.1.912 78 7/3/2024
2.1.911 80 7/3/2024
2.1.910 69 7/3/2024
2.1.909 48 7/3/2024
2.1.908 69 7/3/2024
2.1.907 84 7/3/2024
2.1.906 82 7/3/2024
2.1.905 75 7/3/2024
2.1.904 84 7/3/2024
2.1.903 75 7/2/2024
2.1.901 82 7/1/2024
2.1.900 71 7/1/2024
2.1.899 85 7/1/2024
2.1.898 81 6/30/2024
2.1.897 84 6/30/2024
2.1.896 75 6/30/2024
2.1.895 73 6/30/2024
2.1.894 73 6/29/2024
2.1.893 87 6/29/2024
2.1.892 92 6/29/2024
2.1.891 87 6/28/2024
2.1.890 78 6/28/2024
2.1.889 88 6/28/2024
2.1.888 80 6/28/2024
2.1.887 80 6/28/2024
2.1.886 68 6/27/2024
2.1.885 88 6/27/2024
2.1.884 76 6/27/2024
2.1.883 72 6/27/2024
2.1.882 76 6/27/2024
2.1.881 75 6/27/2024
2.1.880 74 6/27/2024
2.1.879 76 6/27/2024
2.1.878 70 6/27/2024
2.1.877 75 6/27/2024
2.1.876 81 6/24/2024
2.1.875 80 6/24/2024
2.1.874 78 6/22/2024
2.1.873 84 6/22/2024
2.1.872 77 6/22/2024
2.1.871 78 6/22/2024
2.1.870 79 6/22/2024
2.1.869 85 6/22/2024
2.1.868 80 6/22/2024
2.1.867 86 6/20/2024
2.1.866 88 6/20/2024
2.1.865 82 6/16/2024
2.1.864 83 6/16/2024
2.1.863 80 6/16/2024
2.1.862 89 6/15/2024
2.1.861 93 6/15/2024
2.1.860 77 6/15/2024
2.1.859 85 6/15/2024
2.1.858 82 6/15/2024
2.1.857 82 6/15/2024
2.1.856 81 6/15/2024
2.1.855 84 6/15/2024
2.1.854 77 6/15/2024
2.1.853 83 6/15/2024
2.1.852 88 6/15/2024
2.1.851 84 6/15/2024
2.1.850 84 6/15/2024
2.1.849 89 6/15/2024
2.1.848 88 6/15/2024
2.1.847 87 6/14/2024
2.1.846 88 6/14/2024
2.1.845 75 6/12/2024
2.1.844 81 6/9/2024
2.1.843 71 6/7/2024
2.1.842 82 6/4/2024
2.1.841 80 6/4/2024
2.1.840 78 6/4/2024
2.1.839 85 6/4/2024
2.1.838 95 6/4/2024
2.1.837 83 6/3/2024
2.1.836 85 6/3/2024
2.1.835 93 6/2/2024
2.1.834 87 6/2/2024
2.1.833 86 6/2/2024
2.1.832 81 6/2/2024
2.1.831 83 6/2/2024
2.1.830 88 6/2/2024
2.1.829 88 6/2/2024
2.1.828 85 6/1/2024
2.1.827 86 6/1/2024
2.1.826 85 6/1/2024
2.1.825 83 5/31/2024
2.1.824 83 5/31/2024
2.1.823 80 5/31/2024
2.1.822 87 5/31/2024
2.1.821 79 5/31/2024
2.1.820 84 5/31/2024
2.1.819 80 5/31/2024
2.1.818 82 5/31/2024
2.1.817 75 5/31/2024
2.1.816 82 5/29/2024
2.1.815 76 5/29/2024
2.1.814 89 5/29/2024
2.1.813 78 5/29/2024
2.1.812 75 5/29/2024
2.1.811 78 5/29/2024
2.1.810 82 5/29/2024
2.1.809 81 5/29/2024
2.1.808 77 5/29/2024
2.1.807 88 5/28/2024
2.1.806 81 5/28/2024
2.1.805 73 5/28/2024
2.1.804 66 5/28/2024
2.1.803 82 5/28/2024
2.1.802 77 5/28/2024
2.1.801 76 5/28/2024
2.1.800 80 5/28/2024
2.1.799 76 5/28/2024
2.1.798 77 5/28/2024
2.1.797 79 5/28/2024
2.1.796 76 5/28/2024
2.1.795 86 5/28/2024
2.1.794 77 5/28/2024
2.1.793 86 5/27/2024
2.1.792 76 5/27/2024
2.1.791 81 5/27/2024
2.1.790 79 5/27/2024
2.1.789 85 5/27/2024
2.1.788 82 5/27/2024
2.1.787 89 5/27/2024
2.1.786 81 5/27/2024
2.1.785 81 5/27/2024
2.1.784 83 5/27/2024
2.1.783 84 5/26/2024
2.1.782 79 5/26/2024
2.1.781 82 5/26/2024
2.1.780 90 5/26/2024
2.1.779 88 5/26/2024
2.1.778 88 5/26/2024
2.1.777 85 5/26/2024
2.1.776 89 5/26/2024
2.1.775 85 5/26/2024
2.1.774 93 5/26/2024
2.1.773 87 5/26/2024
2.1.772 97 5/26/2024
2.1.771 82 5/26/2024
2.1.770 92 5/25/2024
2.1.769 81 5/25/2024
2.1.768 88 5/25/2024
2.1.767 85 5/25/2024
2.1.766 85 5/25/2024
2.1.765 86 5/25/2024
2.1.764 95 5/25/2024
2.1.763 94 5/25/2024
2.1.762 91 5/25/2024
2.1.761 82 5/25/2024
2.1.760 93 5/25/2024
2.1.759 81 5/25/2024
2.1.758 87 5/25/2024
2.1.757 90 5/24/2024
2.1.756 93 5/24/2024
2.1.755 83 5/24/2024
2.1.754 91 5/23/2024
2.1.753 84 5/23/2024
2.1.752 88 5/23/2024
2.1.751 87 5/23/2024
2.1.750 81 5/23/2024
2.1.749 80 5/23/2024
2.1.748 65 5/23/2024
2.1.747 63 5/23/2024
2.1.746 77 5/23/2024
2.1.745 77 5/23/2024
2.1.744 83 5/23/2024
2.1.743 77 5/23/2024
2.1.742 83 5/22/2024
2.1.741 77 5/22/2024
2.1.740 76 5/22/2024
2.1.739 81 5/22/2024
2.1.738 71 5/22/2024
2.1.737 90 5/22/2024
2.1.736 73 5/22/2024
2.1.735 71 5/22/2024
2.1.734 83 5/19/2024
2.1.733 75 5/19/2024
2.1.732 69 5/18/2024
2.1.731 79 5/18/2024
2.1.730 72 5/18/2024
2.1.729 73 5/18/2024
2.1.728 71 5/18/2024
2.1.727 78 5/18/2024
2.1.726 76 5/18/2024
2.1.725 81 5/18/2024
2.1.724 76 5/18/2024
2.1.723 85 5/17/2024
2.1.722 79 5/17/2024
2.1.721 79 5/17/2024
2.1.720 78 5/17/2024
2.1.719 63 5/17/2024
2.1.718 78 5/16/2024
2.1.717 85 5/16/2024
2.1.716 80 5/16/2024
2.1.715 75 5/16/2024
2.1.714 91 5/15/2024
2.1.713 79 5/15/2024
2.1.712 83 5/15/2024
2.1.711 79 5/15/2024
2.1.710 85 5/15/2024
2.1.709 75 5/15/2024
2.1.708 72 5/14/2024
2.1.707 71 5/14/2024
2.1.706 80 5/14/2024
2.1.705 70 5/14/2024
2.1.704 80 5/13/2024
2.1.703 74 5/13/2024
2.1.702 73 5/13/2024
2.1.701 79 5/13/2024
2.1.700 71 5/13/2024
2.1.699 81 5/13/2024
2.1.698 71 5/13/2024
2.1.697 95 5/7/2024
2.1.696 62 5/3/2024
2.1.695 67 5/1/2024
2.1.694 53 5/1/2024
2.1.693 66 5/1/2024
2.1.692 79 4/30/2024
2.1.691 76 4/30/2024
2.1.690 77 4/30/2024
2.1.689 58 4/30/2024
2.1.688 82 4/30/2024
2.1.687 70 4/30/2024
2.1.686 76 4/30/2024
2.1.685 71 4/30/2024
2.1.684 136 4/30/2024
2.1.683 72 4/30/2024
2.1.682 87 4/29/2024
2.1.681 70 4/29/2024
2.1.680 76 4/29/2024
2.1.679 69 4/29/2024
2.1.678 64 4/29/2024
2.1.677 74 4/29/2024
2.1.676 65 4/29/2024
2.1.675 65 4/29/2024
2.1.674 66 4/29/2024
2.1.673 72 4/28/2024
2.1.672 66 4/28/2024
2.1.671 75 4/28/2024
2.1.670 84 4/28/2024
2.1.669 78 4/28/2024
2.1.668 70 4/28/2024
2.1.667 72 4/28/2024
2.1.666 71 4/28/2024
2.1.665 63 4/28/2024
2.1.664 66 4/28/2024
2.1.663 70 4/28/2024
2.1.662 72 4/28/2024
2.1.661 74 4/28/2024
2.1.660 63 4/28/2024
2.1.659 65 4/28/2024
2.1.658 78 4/27/2024
2.1.657 67 4/27/2024
2.1.656 88 4/20/2024
2.1.655 86 4/20/2024
2.1.654 96 4/20/2024
2.1.653 98 4/20/2024
2.1.652 87 4/20/2024
2.1.651 80 4/20/2024
2.1.650 81 4/20/2024
2.1.649 84 4/20/2024
2.1.648 78 4/20/2024
2.1.647 80 4/19/2024
2.1.646 72 4/19/2024
2.1.645 72 4/19/2024
2.1.644 76 4/19/2024
2.1.643 68 4/19/2024
2.1.642 75 4/19/2024
2.1.641 82 4/19/2024
2.1.640 70 4/19/2024
2.1.639 73 4/19/2024
2.1.638 75 4/19/2024
2.1.637 85 4/19/2024
2.1.636 87 4/19/2024
2.1.635 77 4/19/2024
2.1.634 76 4/19/2024
2.1.633 73 4/15/2024
2.1.632 78 4/15/2024
2.1.631 93 4/13/2024
2.1.630 108 4/13/2024
2.1.629 87 4/13/2024
2.1.628 83 4/13/2024
2.1.627 83 4/13/2024
2.1.626 71 4/13/2024
2.1.625 75 4/13/2024
2.1.624 83 4/13/2024
2.1.623 76 4/13/2024
2.1.622 84 4/13/2024
2.1.621 71 4/12/2024
2.1.620 69 4/12/2024
2.1.619 78 4/12/2024
2.1.618 79 4/12/2024
2.1.617 72 4/12/2024
2.1.616 68 4/12/2024
2.1.615 76 4/12/2024
2.1.614 74 4/12/2024
2.1.613 80 4/12/2024
2.1.612 72 4/12/2024
2.1.611 83 4/12/2024
2.1.610 84 4/12/2024
2.1.609 78 4/12/2024
2.1.608 79 4/12/2024
2.1.607 85 4/12/2024
2.1.606 77 4/12/2024
2.1.605 74 4/11/2024
2.1.604 256 4/11/2024
2.1.603 86 4/10/2024
2.1.602 76 4/10/2024
2.1.601 81 4/10/2024
2.1.600 79 4/10/2024
2.1.599 80 4/10/2024
2.1.598 81 4/10/2024
2.1.597 84 4/10/2024
2.1.596 81 4/10/2024
2.1.595 74 4/10/2024
2.1.594 77 4/10/2024
2.1.593 81 4/10/2024
2.1.592 81 4/9/2024
2.1.591 82 4/9/2024
2.1.590 93 4/9/2024
2.1.589 87 4/9/2024
2.1.588 90 4/8/2024
2.1.587 100 4/4/2024
2.1.586 92 4/4/2024
2.1.585 83 4/3/2024
2.1.584 67 4/3/2024
2.1.583 81 4/2/2024
2.1.582 76 4/2/2024
2.1.581 73 4/2/2024
2.1.580 77 4/2/2024
2.1.579 76 4/2/2024
2.1.578 68 4/2/2024
2.1.577 57 4/2/2024
2.1.576 77 4/2/2024
2.1.575 64 4/2/2024
2.1.574 86 4/1/2024
2.1.573 76 4/1/2024
2.1.572 79 4/1/2024
2.1.571 226 3/30/2024
2.1.570 85 3/30/2024
2.1.569 75 3/30/2024
2.1.568 82 3/30/2024
2.1.567 71 3/30/2024
2.1.566 74 3/29/2024
2.1.565 79 3/29/2024
2.1.564 78 3/29/2024
2.1.563 83 3/29/2024
2.1.562 86 3/27/2024
2.1.561 95 3/26/2024
2.1.560 87 3/26/2024
2.1.559 89 3/26/2024
2.1.558 91 3/25/2024
2.1.557 88 3/25/2024
2.1.556 96 3/25/2024
2.1.555 87 3/25/2024
2.1.554 92 3/25/2024
2.1.553 87 3/25/2024
2.1.552 89 3/25/2024
2.1.551 81 3/25/2024
2.1.550 89 3/25/2024
2.1.549 85 3/25/2024
2.1.548 97 3/24/2024
2.1.547 89 3/23/2024
2.1.546 90 3/21/2024
2.1.545 88 3/21/2024
2.1.544 96 3/21/2024
2.1.543 95 3/21/2024
2.1.542 95 3/21/2024
2.1.541 98 3/21/2024
2.1.540 97 3/21/2024
2.1.539 97 3/20/2024
2.1.538 88 3/20/2024
2.1.537 93 3/20/2024
2.1.536 94 3/20/2024
2.1.535 97 3/20/2024
2.1.534 103 3/20/2024
2.1.533 88 3/20/2024
2.1.532 87 3/20/2024
2.1.531 100 3/19/2024
2.1.530 90 3/19/2024
2.1.529 89 3/19/2024
2.1.528 92 3/19/2024
2.1.527 81 3/19/2024
2.1.526 72 3/19/2024
2.1.525 89 3/19/2024
2.1.524 98 3/19/2024
2.1.523 92 3/19/2024
2.1.522 85 3/19/2024
2.1.521 92 3/18/2024
2.1.520 87 3/18/2024
2.1.519 95 3/18/2024
2.1.518 86 3/16/2024
2.1.517 99 3/16/2024
2.1.516 105 3/16/2024
2.1.515 99 3/16/2024
2.1.514 87 3/16/2024
2.1.513 92 3/16/2024
2.1.512 94 3/16/2024
2.1.511 101 3/16/2024
2.1.510 92 3/16/2024
2.1.509 83 3/15/2024
2.1.508 92 3/15/2024
2.1.507 92 3/14/2024
2.1.506 96 3/14/2024
2.1.505 92 3/14/2024
2.1.504 96 3/14/2024
2.1.503 97 3/13/2024
2.1.502 103 3/13/2024
2.1.501 101 3/13/2024
2.1.500 99 3/13/2024
2.1.499 96 3/13/2024
2.1.498 109 3/13/2024
2.1.497 105 3/13/2024
2.1.496 105 3/13/2024
2.1.495 100 3/13/2024
2.1.494 79 3/13/2024
2.1.493 103 3/13/2024
2.1.492 102 3/13/2024
2.1.491 92 3/13/2024
2.1.490 96 3/13/2024
2.1.489 93 3/13/2024
2.1.488 101 3/13/2024
2.1.487 89 3/13/2024
2.1.486 84 3/12/2024
2.1.485 100 3/12/2024
2.1.484 101 3/12/2024
2.1.483 97 3/12/2024
2.1.482 86 3/12/2024
2.1.481 92 3/12/2024
2.1.480 89 3/12/2024
2.1.479 90 3/12/2024
2.1.478 99 3/12/2024
2.1.477 90 3/12/2024
2.1.476 84 3/12/2024
2.1.475 89 3/12/2024
2.1.474 100 3/12/2024
2.1.473 94 3/12/2024
2.1.472 108 3/11/2024
2.1.471 103 3/11/2024
2.1.470 103 3/11/2024
2.1.469 96 3/11/2024
2.1.468 96 3/11/2024
2.1.467 93 3/11/2024
2.1.466 93 3/11/2024
2.1.465 84 3/11/2024
2.1.464 101 3/11/2024
2.1.463 84 3/11/2024
2.1.462 106 3/10/2024
2.1.461 103 3/10/2024
2.1.460 104 3/10/2024
2.1.459 112 3/10/2024
2.1.458 95 3/10/2024
2.1.457 108 3/10/2024
2.1.456 105 3/10/2024
2.1.455 108 3/10/2024
2.1.454 103 3/10/2024
2.1.453 100 3/9/2024
2.1.452 103 3/9/2024
2.1.451 108 3/9/2024
2.1.450 107 3/9/2024
2.1.449 112 3/8/2024
2.1.448 101 3/8/2024
2.1.447 105 3/8/2024
2.1.446 104 3/8/2024
2.1.445 101 3/8/2024
2.1.444 101 3/8/2024
2.1.443 97 3/8/2024
2.1.442 98 3/8/2024
2.1.441 104 3/8/2024
2.1.440 101 3/8/2024
2.1.439 104 3/8/2024
2.1.438 103 3/8/2024
2.1.437 97 3/7/2024
2.1.436 121 3/6/2024
2.1.435 91 3/6/2024
2.1.434 82 3/6/2024
2.1.433 99 3/6/2024
2.1.432 90 3/6/2024
2.1.431 101 3/6/2024
2.1.430 101 3/6/2024
2.1.429 87 3/4/2024
2.1.428 95 3/4/2024
2.1.427 92 3/4/2024
2.1.426 74 3/4/2024
2.1.425 90 3/4/2024
2.1.424 90 3/4/2024
2.1.423 89 3/4/2024
2.1.422 88 3/4/2024
2.1.421 91 3/4/2024
2.1.420 88 3/4/2024
2.1.419 87 3/4/2024
2.1.418 89 3/4/2024
2.1.417 87 3/4/2024
2.1.416 85 3/3/2024
2.1.415 86 3/3/2024
2.1.414 95 3/3/2024
2.1.413 86 3/3/2024
2.1.412 91 3/3/2024
2.1.411 87 3/3/2024
2.1.410 93 3/3/2024
2.1.409 78 3/3/2024
2.1.408 89 3/3/2024
2.1.407 93 3/3/2024
2.1.406 91 3/2/2024
2.1.405 85 3/2/2024
2.1.404 90 3/2/2024
2.1.403 86 3/2/2024
2.1.402 87 3/2/2024
2.1.401 92 3/2/2024
2.1.400 89 3/2/2024
2.1.399 83 3/2/2024
2.1.398 90 3/2/2024
2.1.397 83 3/2/2024
2.1.396 97 3/2/2024
2.1.395 82 3/2/2024
2.1.394 92 3/2/2024
2.1.393 78 3/2/2024
2.1.392 89 3/1/2024
2.1.391 83 3/1/2024
2.1.390 87 3/1/2024
2.1.389 79 2/29/2024
2.1.388 87 2/29/2024
2.1.387 78 2/29/2024
2.1.386 80 2/29/2024
2.1.385 77 2/29/2024
2.1.384 80 2/29/2024
2.1.383 78 2/29/2024
2.1.382 83 2/29/2024
2.1.381 85 2/29/2024
2.1.380 75 2/29/2024
2.1.379 87 2/29/2024
2.1.378 75 2/29/2024
2.1.377 74 2/29/2024
2.1.376 79 2/29/2024
2.1.375 82 2/29/2024
2.1.374 90 2/27/2024
2.1.373 89 2/27/2024
2.1.372 89 2/27/2024
2.1.371 101 2/27/2024
2.1.370 88 2/26/2024
2.1.369 97 2/26/2024
2.1.368 93 2/26/2024
2.1.367 93 2/26/2024
2.1.366 88 2/26/2024
2.1.365 90 2/26/2024
2.1.364 85 2/25/2024
2.1.363 91 2/25/2024
2.1.362 86 2/25/2024
2.1.361 89 2/25/2024
2.1.360 92 2/25/2024
2.1.359 87 2/25/2024
2.1.358 76 2/25/2024
2.1.357 89 2/25/2024
2.1.356 92 2/25/2024
2.1.355 86 2/25/2024
2.1.354 94 2/24/2024
2.1.353 95 2/24/2024
2.1.352 89 2/24/2024
2.1.351 86 2/24/2024
2.1.350 87 2/23/2024
2.1.349 90 2/23/2024
2.1.348 91 2/23/2024
2.1.347 101 2/22/2024
2.1.346 90 2/22/2024
2.1.345 94 2/22/2024
2.1.344 87 2/22/2024
2.1.343 91 2/22/2024
2.1.342 90 2/22/2024
2.1.341 86 2/22/2024
2.1.340 83 2/22/2024
2.1.339 86 2/22/2024
2.1.338 77 2/22/2024
2.1.337 75 2/22/2024
2.1.336 100 2/22/2024
2.1.335 90 2/22/2024
2.1.334 100 2/22/2024
2.1.333 97 2/22/2024
2.1.332 91 2/21/2024
2.1.331 93 2/21/2024
2.1.330 95 2/21/2024
2.1.329 90 2/21/2024
2.1.328 104 2/21/2024
2.1.327 92 2/21/2024
2.1.326 96 2/21/2024
2.1.325 93 2/21/2024
2.1.324 98 2/21/2024
2.1.323 100 2/21/2024
2.1.322 86 2/21/2024
2.1.321 79 2/21/2024
2.1.320 91 2/21/2024
2.1.319 87 2/21/2024
2.1.318 102 2/21/2024
2.1.317 92 2/21/2024
2.1.316 83 2/21/2024
2.1.315 92 2/20/2024
2.1.314 86 2/20/2024
2.1.313 91 2/20/2024
2.1.312 87 2/20/2024
2.1.311 100 2/20/2024
2.1.310 93 2/20/2024
2.1.309 95 2/20/2024
2.1.308 90 2/20/2024
2.1.307 92 2/20/2024
2.1.306 91 2/20/2024
2.1.305 96 2/20/2024
2.1.304 93 2/20/2024
2.1.303 89 2/20/2024
2.1.302 84 2/20/2024
2.1.301 85 2/19/2024
2.1.300 90 2/19/2024
2.1.299 84 2/19/2024
2.1.298 95 2/19/2024
2.1.297 86 2/19/2024
2.1.296 87 2/19/2024
2.1.295 97 2/19/2024
2.1.294 86 2/19/2024
2.1.293 99 2/19/2024
2.1.292 87 2/19/2024
2.1.291 93 2/17/2024
2.1.290 91 2/17/2024
2.1.289 85 2/17/2024
2.1.288 83 2/17/2024
2.1.287 91 2/17/2024
2.1.286 89 2/17/2024
2.1.285 97 2/17/2024
2.1.284 95 2/17/2024
2.1.283 86 2/17/2024
2.1.282 92 2/17/2024
2.1.281 92 2/17/2024
2.1.280 91 2/17/2024
2.1.279 96 2/17/2024
2.1.278 96 2/16/2024
2.1.277 89 2/16/2024
2.1.276 91 2/16/2024
2.1.275 90 2/16/2024
2.1.274 90 2/16/2024
2.1.273 98 2/16/2024
2.1.272 92 2/16/2024
2.1.271 86 2/16/2024
2.1.270 90 2/16/2024
2.1.269 89 2/16/2024
2.1.268 90 2/16/2024
2.1.267 87 2/16/2024
2.1.266 94 2/16/2024
2.1.265 87 2/16/2024
2.1.264 88 2/14/2024
2.1.263 90 2/14/2024
2.1.262 89 2/14/2024
2.1.261 91 2/14/2024
2.1.260 86 2/14/2024
2.1.259 88 2/14/2024
2.1.258 85 2/14/2024
2.1.257 96 2/14/2024
2.1.256 90 2/14/2024
2.1.255 90 2/13/2024
2.1.254 89 2/13/2024
2.1.253 86 2/13/2024
2.1.252 89 2/13/2024
2.1.251 104 2/13/2024
2.1.250 96 2/13/2024
2.1.249 94 2/13/2024
2.1.248 100 2/13/2024
2.1.247 87 2/13/2024
2.1.246 89 2/13/2024
2.1.245 95 2/13/2024
2.1.244 98 2/13/2024
2.1.243 82 2/13/2024
2.1.242 89 2/13/2024
2.1.241 100 2/13/2024
2.1.240 96 2/12/2024
2.1.239 92 2/12/2024
2.1.238 84 2/12/2024
2.1.237 87 2/12/2024
2.1.236 86 2/12/2024
2.1.235 91 2/12/2024
2.1.234 89 2/12/2024
2.1.233 96 2/12/2024
2.1.232 90 2/12/2024
2.1.231 91 2/11/2024
2.1.230 93 2/11/2024
2.1.229 89 2/11/2024
2.1.228 94 2/11/2024
2.1.227 91 2/11/2024
2.1.226 86 2/11/2024
2.1.225 89 2/11/2024
2.1.224 91 2/11/2024
2.1.223 90 2/11/2024
2.1.222 88 2/11/2024
2.1.221 88 2/11/2024
2.1.220 92 2/11/2024
2.1.219 91 2/10/2024
2.1.218 90 2/10/2024
2.1.217 92 2/10/2024
2.1.216 95 2/10/2024
2.1.215 99 2/10/2024
2.1.214 90 2/10/2024
2.1.213 94 2/10/2024
2.1.212 92 2/10/2024
2.1.211 94 2/10/2024
2.1.210 88 2/10/2024
2.1.209 93 2/9/2024
2.1.208 87 2/9/2024
2.1.207 85 2/9/2024
2.1.206 93 2/9/2024
2.1.205 89 2/9/2024
2.1.204 90 2/9/2024
2.1.203 85 2/9/2024
2.1.202 88 2/9/2024
2.1.201 92 2/9/2024
2.1.200 93 2/9/2024
2.1.199 85 2/9/2024
2.1.198 91 2/9/2024
2.1.197 86 2/9/2024
2.1.196 87 2/9/2024
2.1.195 82 2/9/2024
2.1.194 94 2/8/2024
2.1.193 91 2/8/2024
2.1.192 95 2/8/2024
2.1.191 87 2/8/2024
2.1.190 82 2/8/2024
2.1.189 91 2/8/2024
2.1.188 88 2/8/2024
2.1.187 94 2/8/2024
2.1.186 92 2/8/2024
2.1.185 89 2/8/2024
2.1.184 90 2/8/2024
2.1.183 91 2/8/2024
2.1.182 92 2/8/2024
2.1.181 84 2/7/2024
2.1.180 78 2/7/2024
2.1.179 96 2/7/2024
2.1.178 85 2/7/2024
2.1.177 88 2/7/2024
2.1.176 88 2/7/2024
2.1.175 87 2/7/2024
2.1.174 84 2/7/2024
2.1.173 85 2/7/2024
2.1.172 84 2/7/2024
2.1.171 86 2/7/2024
2.1.170 86 2/7/2024
2.1.169 84 2/7/2024
2.1.168 87 2/7/2024
2.1.167 89 2/7/2024
2.1.166 91 2/6/2024
2.1.165 89 2/6/2024
2.1.164 90 2/6/2024
2.1.163 86 2/6/2024
2.1.162 84 2/6/2024
2.1.161 77 2/5/2024
2.1.160 81 2/5/2024
2.1.159 80 2/5/2024
2.1.158 77 2/5/2024
2.1.157 77 2/5/2024
2.1.156 83 2/5/2024
2.1.155 83 2/5/2024
2.1.154 81 2/5/2024
2.1.153 83 2/4/2024
2.1.152 83 2/4/2024
2.1.151 85 2/4/2024
2.1.150 79 2/4/2024
2.1.149 85 2/4/2024
2.1.148 84 2/4/2024
2.1.147 88 2/4/2024
2.1.146 82 2/4/2024
2.1.145 76 2/4/2024
2.1.144 84 2/4/2024
2.1.143 82 2/4/2024
2.1.142 93 2/3/2024
2.1.141 92 2/3/2024
2.1.140 84 2/3/2024
2.1.139 97 2/3/2024
2.1.138 94 2/3/2024
2.1.137 81 2/3/2024
2.1.136 80 2/3/2024
2.1.135 84 2/3/2024
2.1.134 85 2/3/2024
2.1.133 83 2/3/2024
2.1.132 86 2/3/2024
2.1.131 87 2/2/2024
2.1.130 85 1/31/2024
2.1.129 79 1/31/2024
2.1.128 87 1/31/2024
2.1.127 79 1/31/2024
2.1.126 80 1/31/2024
2.1.125 86 1/31/2024
2.1.124 75 1/31/2024
2.1.123 85 1/31/2024
2.1.122 80 1/31/2024
2.1.121 80 1/31/2024
2.1.120 79 1/31/2024
2.1.119 79 1/31/2024
2.1.118 91 1/30/2024
2.1.117 85 1/30/2024
2.1.116 83 1/30/2024
2.1.115 81 1/30/2024
2.1.114 85 1/30/2024
2.1.113 83 1/30/2024
2.1.112 83 1/30/2024
2.1.111 77 1/30/2024
2.1.110 82 1/30/2024
2.1.109 86 1/30/2024
2.1.108 81 1/29/2024
2.1.107 79 1/29/2024
2.1.106 78 1/29/2024
2.1.105 78 1/29/2024
2.1.104 80 1/29/2024
2.1.103 83 1/29/2024
2.1.102 77 1/29/2024
2.1.101 75 1/29/2024
2.1.100 77 1/29/2024
2.1.99 81 1/29/2024
2.1.98 78 1/29/2024
2.1.97 83 1/29/2024
2.1.96 77 1/29/2024
2.1.95 82 1/29/2024
2.1.94 84 1/28/2024
2.1.93 76 1/28/2024
2.1.92 78 1/28/2024
2.1.91 84 1/28/2024
2.1.90 82 1/28/2024
2.1.89 79 1/28/2024
2.1.88 83 1/28/2024
2.1.87 80 1/28/2024
2.1.86 84 1/28/2024
2.1.85 80 1/28/2024
2.1.84 87 1/28/2024
2.1.83 76 1/28/2024
2.1.82 76 1/28/2024
2.1.81 85 1/28/2024
2.1.80 79 1/28/2024
2.1.79 83 1/28/2024
2.1.78 77 1/28/2024
2.1.77 82 1/27/2024
2.1.76 78 1/27/2024
2.1.75 85 1/27/2024
2.1.74 78 1/27/2024
2.1.73 79 1/27/2024
2.1.72 80 1/27/2024
2.1.71 83 1/27/2024
2.1.70 84 1/27/2024
2.1.69 75 1/27/2024
2.1.68 80 1/27/2024
2.1.67 87 1/27/2024
2.1.66 80 1/27/2024
2.1.65 79 1/27/2024
2.1.64 78 1/27/2024
2.1.63 78 1/27/2024
2.1.62 89 1/27/2024
2.1.61 82 1/27/2024
2.1.60 78 1/27/2024
2.1.59 80 1/26/2024
2.1.58 78 1/26/2024
2.1.57 82 1/26/2024
2.1.56 82 1/26/2024
2.1.55 83 1/26/2024
2.1.54 79 1/26/2024
2.1.53 80 1/26/2024
2.1.52 84 1/26/2024
2.1.51 82 1/26/2024
2.1.50 80 1/26/2024
2.1.49 83 1/26/2024
2.1.48 85 1/26/2024
2.1.47 91 1/26/2024
2.1.46 80 1/26/2024
2.1.45 86 1/26/2024
2.1.44 83 1/25/2024
2.1.43 88 1/25/2024
2.1.42 83 1/25/2024
2.1.41 87 1/25/2024
2.1.40 82 1/25/2024
2.1.39 80 1/25/2024
2.1.38 81 1/25/2024
2.1.37 96 1/25/2024
2.1.36 79 1/25/2024
2.1.35 89 1/19/2024
2.1.34 88 1/19/2024
2.1.33 83 1/19/2024
2.1.32 93 1/19/2024
2.1.31 86 1/19/2024
2.1.30 91 1/19/2024
2.1.29 81 1/19/2024
2.1.28 90 1/19/2024
2.1.27 92 1/17/2024
2.1.26 85 1/17/2024
2.1.25 93 1/17/2024
2.1.24 86 1/17/2024
2.1.23 95 1/17/2024
2.1.22 87 1/16/2024
2.1.21 94 1/16/2024
2.1.20 94 1/16/2024
2.1.19 93 1/16/2024
2.1.18 102 1/16/2024
2.1.17 98 1/16/2024
2.1.16 88 1/16/2024
2.1.15 94 1/16/2024
2.1.14 91 1/16/2024
2.1.13 90 1/16/2024
2.1.12 90 1/15/2024
2.1.11 88 1/15/2024
2.1.10 100 1/15/2024
2.1.9 92 1/15/2024
2.1.8 103 1/15/2024
2.1.7 101 1/15/2024
2.1.6 89 1/15/2024
2.1.5 104 1/14/2024
2.1.4 100 1/13/2024
2.1.3 101 1/13/2024
2.1.2 96 1/13/2024
2.1.1 99 1/13/2024