Soenneker.Blazor.Utils.ResourceLoader 2.1.459

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Blazor.Utils.ResourceLoader --version 2.1.459
                    
NuGet\Install-Package Soenneker.Blazor.Utils.ResourceLoader -Version 2.1.459
                    
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.Utils.ResourceLoader" Version="2.1.459" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Blazor.Utils.ResourceLoader" Version="2.1.459" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Blazor.Utils.ResourceLoader" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Blazor.Utils.ResourceLoader --version 2.1.459
                    
#r "nuget: Soenneker.Blazor.Utils.ResourceLoader, 2.1.459"
                    
#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.
#:package Soenneker.Blazor.Utils.ResourceLoader@2.1.459
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Blazor.Utils.ResourceLoader&version=2.1.459
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Blazor.Utils.ResourceLoader&version=2.1.459
                    
Install as a Cake Tool

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.Utils.ResourceLoader

A Blazor JavaScript interop for dynamically loading scripts, styles, and modules

Overview

The ResourceLoader class is designed to manage the loading and initialization of scripts, styles, and JavaScript modules in a Blazor application. It provides methods to asynchronously load scripts and styles, wait for variables to be available, and manage the lifecycle of JavaScript modules.

It ensures that each resource is only loaded once (through this interop), even with multiple concurrent calls.

Table of Contents

Installation

dotnet add package Soenneker.Blazor.Utils.ResourceLoader

Usage

Loading Scripts

To load a script, use the LoadScript method. It injects the file into the DOM.

await resourceLoader.LoadScript("https://example.com/script.js");

LoadScriptAndWaitForVariable is also available. It waits for a specified JavaScript variable to be available:

await resourceLoader.LoadScriptAndWaitForVariable("https://example.com/script.js", "variableName");

Loading Styles

To load a style, use the LoadStyle method. It injects the file into the DOM.

await resourceLoader.LoadStyle("https://example.com/style.css");

Importing Modules

To import a JavaScript module, use the ImportModule method:

var module = await resourceLoader.ImportModule("moduleName");

You probably want ImportModuleAndWaitUntilAvailable, as that waits until the module is loaded, and accessible:

// 'ResourceLoader' is the name of the export class
var module = await resourceLoader.ImportModuleAndWaitUntilAvailable("Soenneker.Blazor.Utils.ResourceLoader/resourceloader.js", "ResourceLoader");

Waiting for Variables

To wait for a JavaScript variable to be available, use the WaitForVariable method:

await resourceLoader.WaitForVariable("variableName");

Disposing Modules

Be sure to dispose of a module after you're done interacting with it. To dispose of a JavaScript module, use the DisposeModule method:

await resourceLoader.DisposeModule("moduleName");
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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (28)

Showing the top 5 NuGet packages that depend on Soenneker.Blazor.Utils.ResourceLoader:

Package Downloads
Soenneker.Blazor.TomSelect

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

Soenneker.Blazor.FilePond

A Blazor interop library for the file upload library FilePond

Soenneker.Blazor.Clarity

A small Blazor interop library that sets up Microsoft Clarity

Soenneker.Blazor.Masonry

A lightweight, responsive **Blazor** component for Masonry (the cascading grid layout library) — perfect for image grids, cards, and dynamic content.

Soenneker.Blazor.LogJson

A Blazor interop library that logs JSON (like HTTP requests/responses) within the browser

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1503 4,646 9/9/2025
3.0.1502 422 9/9/2025
3.0.1501 177 9/9/2025
3.0.1500 495 9/9/2025
3.0.1499 1,364 9/6/2025
3.0.1498 320 9/6/2025
3.0.1497 127 9/6/2025
3.0.1496 1,771 9/3/2025
3.0.1495 511 9/3/2025
3.0.1494 720 9/3/2025
3.0.1493 1,950 8/15/2025
3.0.1492 975 8/12/2025
3.0.1491 427 8/11/2025
3.0.1490 285 8/11/2025
3.0.1489 519 8/11/2025
3.0.1488 274 8/11/2025
3.0.1487 658 8/11/2025
3.0.1486 1,259 8/6/2025
3.0.1485 905 8/5/2025
3.0.1484 689 8/5/2025
3.0.1483 348 8/5/2025
3.0.1482 1,527 7/23/2025
3.0.1481 1,811 7/9/2025
3.0.1480 473 7/9/2025
3.0.1479 1,776 7/3/2025
3.0.1478 149 7/3/2025
3.0.1477 635 7/1/2025
3.0.1476 584 6/28/2025
3.0.1475 228 6/28/2025
3.0.1474 437 6/28/2025
3.0.1473 339 6/27/2025
3.0.1472 133 6/27/2025
3.0.1471 413 6/27/2025
3.0.1470 2,799 6/11/2025
3.0.1469 765 6/10/2025
3.0.1468 1,648 6/3/2025
3.0.1467 984 5/28/2025
3.0.1466 298 5/27/2025
3.0.1465 384 5/27/2025
3.0.1464 342 5/27/2025
3.0.1463 334 5/27/2025
3.0.1462 716 5/27/2025
3.0.1461 1,347 5/23/2025
3.0.1460 475 5/23/2025
3.0.1459 320 5/23/2025
3.0.1458 554 5/22/2025
3.0.1457 414 5/22/2025
3.0.1456 1,135 5/18/2025
3.0.1455 337 5/18/2025
3.0.1454 419 5/18/2025
3.0.1453 926 5/14/2025
3.0.1452 516 5/14/2025
3.0.1451 2,314 5/8/2025
3.0.1450 369 5/8/2025
3.0.1449 368 5/8/2025
3.0.1448 364 5/8/2025
3.0.1447 549 5/7/2025
3.0.1446 505 5/7/2025
3.0.1445 1,236 5/5/2025
3.0.1444 386 5/5/2025
3.0.1443 161 5/5/2025
3.0.1442 269 5/5/2025
3.0.1441 324 5/5/2025
3.0.1440 495 5/5/2025
3.0.1439 459 5/5/2025
3.0.1438 981 5/5/2025
3.0.1437 2,622 4/9/2025
3.0.1436 471 4/9/2025
3.0.1435 337 4/9/2025
3.0.1434 312 4/8/2025
3.0.1433 391 4/8/2025
3.0.1432 157 4/8/2025
3.0.1431 176 4/8/2025
3.0.1430 663 4/8/2025
3.0.1429 450 4/8/2025
3.0.1428 246 4/8/2025
3.0.1427 234 4/8/2025
3.0.1426 220 4/8/2025
3.0.1425 234 4/8/2025
3.0.1424 220 4/8/2025
3.0.1423 221 4/8/2025
3.0.1422 235 4/8/2025
3.0.1421 182 4/7/2025
3.0.1420 213 4/7/2025
3.0.1419 178 4/7/2025
3.0.1418 275 4/7/2025
3.0.1417 2,410 4/7/2025
3.0.1416 183 4/7/2025
3.0.1415 941 4/7/2025
3.0.1414 171 4/7/2025
3.0.1413 209 4/7/2025
3.0.1412 190 4/7/2025
3.0.1411 800 4/7/2025
3.0.1410 188 4/7/2025
3.0.1409 212 4/7/2025
3.0.1408 166 4/7/2025
3.0.1407 461 4/7/2025
3.0.1406 172 4/7/2025
3.0.1405 448 4/7/2025
3.0.1404 587 4/7/2025
3.0.1403 345 4/7/2025
3.0.1402 427 4/7/2025
3.0.1401 440 4/7/2025
3.0.1400 375 4/6/2025
3.0.1399 322 4/6/2025
3.0.1398 274 4/6/2025
3.0.1397 313 4/6/2025
3.0.1396 535 4/6/2025
3.0.1395 431 4/6/2025
3.0.1394 191 4/6/2025
3.0.1393 231 4/6/2025
3.0.1392 120 4/6/2025
3.0.1391 554 4/6/2025
3.0.1390 113 4/6/2025
3.0.1389 670 4/5/2025
3.0.1388 529 4/5/2025
3.0.1387 193 4/5/2025
3.0.1386 146 4/5/2025
3.0.1385 187 4/5/2025
3.0.1384 228 4/5/2025
3.0.1383 190 4/5/2025
3.0.1382 120 4/5/2025
3.0.1381 294 4/5/2025
3.0.1380 100 4/5/2025
3.0.1379 132 4/5/2025
3.0.1378 137 4/5/2025
3.0.1377 1,285 4/4/2025
3.0.1376 174 4/4/2025
3.0.1375 2,134 4/4/2025
3.0.1374 245 4/4/2025
3.0.1373 449 4/4/2025
3.0.1372 164 4/4/2025
3.0.1371 491 4/3/2025
3.0.1370 614 4/1/2025
3.0.1369 272 4/1/2025
3.0.1368 277 4/1/2025
3.0.1367 163 4/1/2025
3.0.1366 312 4/1/2025
3.0.1365 153 4/1/2025
3.0.1364 424 4/1/2025
3.0.1363 572 4/1/2025
3.0.1362 526 4/1/2025
3.0.1361 281 4/1/2025
3.0.1360 334 4/1/2025
3.0.1359 261 4/1/2025
3.0.1358 410 4/1/2025
3.0.1357 171 4/1/2025
3.0.1356 324 3/31/2025
3.0.1355 169 3/31/2025
3.0.1354 480 3/31/2025
3.0.1353 171 3/31/2025
3.0.1352 625 3/31/2025
3.0.1351 538 3/31/2025
3.0.1350 540 3/29/2025
3.0.1349 246 3/29/2025
3.0.1348 248 3/29/2025
3.0.1347 263 3/29/2025
3.0.1346 95 3/29/2025
3.0.1345 252 3/29/2025
3.0.1344 109 3/29/2025
3.0.1343 780 3/27/2025
3.0.1342 844 3/26/2025
3.0.1341 645 3/25/2025
3.0.1340 586 3/25/2025
3.0.1339 475 3/25/2025
3.0.1338 666 3/25/2025
3.0.1337 472 3/25/2025
3.0.1336 748 3/25/2025
3.0.1335 497 3/25/2025
3.0.1334 1,190 3/22/2025
3.0.1333 250 3/21/2025
3.0.1332 265 3/21/2025
3.0.1331 122 3/21/2025
3.0.1330 324 3/21/2025
3.0.1329 131 3/21/2025
3.0.1328 298 3/21/2025
3.0.1327 474 3/21/2025
3.0.1326 613 3/18/2025
3.0.1325 331 3/18/2025
3.0.1324 259 3/18/2025
3.0.1323 300 3/18/2025
3.0.1322 250 3/18/2025
3.0.1321 159 3/18/2025
3.0.1320 564 3/18/2025
3.0.1319 292 3/18/2025
3.0.1318 159 3/18/2025
3.0.1317 392 3/18/2025
3.0.1316 163 3/18/2025
3.0.1315 570 3/15/2025
3.0.1314 182 3/15/2025
3.0.1313 209 3/15/2025
3.0.1312 88 3/15/2025
3.0.1311 277 3/15/2025
3.0.1310 90 3/15/2025
3.0.1309 411 3/15/2025
3.0.1308 134 3/15/2025
3.0.1307 95 3/15/2025
3.0.1306 960 3/12/2025
3.0.1305 343 3/12/2025
3.0.1304 315 3/12/2025
3.0.1303 173 3/12/2025
3.0.1302 295 3/12/2025
3.0.1301 252 3/12/2025
3.0.1300 451 3/12/2025
3.0.1299 181 3/12/2025
3.0.1298 452 3/12/2025
3.0.1297 219 3/12/2025
3.0.1296 162 3/12/2025
3.0.1295 496 3/11/2025
3.0.1294 185 3/11/2025
3.0.1293 570 3/11/2025
3.0.1292 180 3/11/2025
3.0.1291 603 3/11/2025
3.0.1290 188 3/11/2025
3.0.1289 187 3/11/2025
3.0.1288 685 3/11/2025
3.0.1287 181 3/11/2025
3.0.1286 502 3/11/2025
3.0.1285 706 3/11/2025
3.0.1284 179 3/11/2025
3.0.1283 516 3/11/2025
3.0.1282 191 3/11/2025
3.0.1281 646 3/7/2025
3.0.1280 407 3/7/2025
3.0.1279 329 3/7/2025
3.0.1278 232 3/7/2025
3.0.1277 449 3/7/2025
3.0.1276 230 3/7/2025
3.0.1275 495 3/7/2025
3.0.1274 423 3/7/2025
3.0.1273 510 3/7/2025
3.0.1272 677 3/2/2025
3.0.1271 237 3/2/2025
3.0.1270 353 3/2/2025
3.0.1269 133 3/2/2025
3.0.1268 265 3/2/2025
3.0.1267 180 3/2/2025
3.0.1266 337 3/2/2025
3.0.1265 117 3/2/2025
3.0.1264 577 3/2/2025
3.0.1263 117 3/2/2025
3.0.1262 550 3/2/2025
3.0.1261 122 3/2/2025
3.0.1260 284 3/2/2025
3.0.1259 116 3/2/2025
3.0.1258 593 3/1/2025
3.0.1257 372 3/1/2025
3.0.1256 110 3/1/2025
3.0.1255 360 3/1/2025
3.0.1254 161 3/1/2025
3.0.1253 118 3/1/2025
3.0.1252 217 3/1/2025
3.0.1251 119 3/1/2025
3.0.1250 552 3/1/2025
3.0.1249 119 3/1/2025
3.0.1248 98 3/1/2025
3.0.1247 772 3/1/2025
3.0.1246 109 3/1/2025
3.0.1245 771 2/26/2025
3.0.1244 161 2/26/2025
3.0.1243 112 2/26/2025
3.0.1242 247 2/26/2025
3.0.1241 104 2/26/2025
3.0.1240 328 2/25/2025
3.0.1239 95 2/25/2025
3.0.1238 303 2/25/2025
3.0.1237 106 2/25/2025
3.0.1236 532 2/25/2025
3.0.1235 113 2/25/2025
3.0.1234 453 2/25/2025
3.0.1233 105 2/25/2025
3.0.1232 307 2/25/2025
3.0.1231 400 2/24/2025
3.0.1230 813 2/23/2025
3.0.1229 397 2/23/2025
3.0.1228 130 2/23/2025
3.0.1227 201 2/23/2025
3.0.1226 117 2/23/2025
3.0.1225 303 2/22/2025
3.0.1224 118 2/22/2025
3.0.1223 480 2/22/2025
3.0.1222 105 2/22/2025
3.0.1221 230 2/22/2025
3.0.1220 664 2/22/2025
3.0.1219 276 2/22/2025
3.0.1218 114 2/22/2025
3.0.1217 223 2/22/2025
3.0.1216 107 2/22/2025
3.0.1215 454 2/22/2025
3.0.1214 217 2/22/2025
3.0.1213 222 2/22/2025
3.0.1212 350 2/22/2025
3.0.1211 114 2/22/2025
3.0.1210 278 2/22/2025
3.0.1209 296 2/22/2025
3.0.1208 294 2/21/2025
3.0.1207 101 2/21/2025
3.0.1206 113 2/21/2025
3.0.1205 432 2/21/2025
3.0.1204 116 2/21/2025
3.0.1203 274 2/21/2025
3.0.1202 112 2/21/2025
3.0.1201 310 2/21/2025
3.0.1200 1,045 2/19/2025
3.0.1199 343 2/19/2025
3.0.1198 130 2/19/2025
3.0.1197 213 2/19/2025
3.0.1196 112 2/19/2025
3.0.1195 193 2/19/2025
3.0.1194 124 2/19/2025
3.0.1193 222 2/19/2025
3.0.1192 115 2/19/2025
3.0.1191 258 2/19/2025
3.0.1190 112 2/19/2025
3.0.1189 308 2/19/2025
3.0.1188 255 2/18/2025
3.0.1187 106 2/18/2025
3.0.1186 714 2/18/2025
3.0.1185 148 2/18/2025
3.0.1184 125 2/18/2025
3.0.1183 697 2/18/2025
3.0.1182 107 2/18/2025
3.0.1181 291 2/18/2025
3.0.1180 108 2/18/2025
3.0.1179 1,109 2/16/2025
3.0.1178 465 2/14/2025
3.0.1177 243 2/14/2025
3.0.1176 120 2/14/2025
3.0.1175 292 2/14/2025
3.0.1174 224 2/14/2025
3.0.1173 118 2/14/2025
3.0.1172 733 2/13/2025
3.0.1171 117 2/13/2025
3.0.1170 249 2/13/2025
3.0.1169 978 2/13/2025
3.0.1168 378 2/12/2025
3.0.1167 241 2/12/2025
3.0.1166 305 2/12/2025
3.0.1165 126 2/12/2025
3.0.1164 218 2/12/2025
3.0.1163 122 2/12/2025
3.0.1162 467 2/12/2025
3.0.1161 125 2/12/2025
3.0.1160 219 2/12/2025
3.0.1159 114 2/12/2025
3.0.1158 314 2/12/2025
3.0.1157 123 2/12/2025
3.0.1156 355 2/12/2025
3.0.1155 118 2/12/2025
3.0.1154 323 2/12/2025
3.0.1153 110 2/12/2025
3.0.1152 279 2/12/2025
3.0.1151 106 2/12/2025
3.0.1150 358 2/11/2025
3.0.1149 112 2/11/2025
3.0.1148 572 2/11/2025
3.0.1147 490 2/11/2025
3.0.1146 116 2/11/2025
3.0.1145 109 2/11/2025
3.0.1144 422 2/11/2025
3.0.1143 120 2/11/2025
3.0.1142 306 2/11/2025
3.0.1141 805 2/11/2025
3.0.1140 131 2/11/2025
3.0.1139 292 2/11/2025
3.0.1138 126 2/11/2025
3.0.1137 234 2/11/2025
3.0.1136 120 2/11/2025
3.0.1135 232 2/11/2025
3.0.1134 101 2/11/2025
3.0.1133 322 2/10/2025
3.0.1132 118 2/10/2025
3.0.1131 222 2/10/2025
3.0.1130 125 2/10/2025
3.0.1129 453 2/10/2025
3.0.1128 106 2/10/2025
3.0.1127 116 2/10/2025
3.0.1126 237 2/10/2025
3.0.1125 334 2/10/2025
3.0.1124 469 2/10/2025
3.0.1123 201 2/9/2025
3.0.1122 489 2/9/2025
3.0.1121 170 2/9/2025
3.0.1120 120 2/9/2025
3.0.1119 440 2/9/2025
3.0.1118 106 2/9/2025
3.0.1117 1,174 2/7/2025
3.0.1116 111 2/7/2025
3.0.1115 481 2/7/2025
3.0.1114 108 2/7/2025
3.0.1113 323 2/7/2025
3.0.1112 287 2/7/2025
3.0.1111 109 2/7/2025
3.0.1110 275 2/7/2025
3.0.1109 124 2/7/2025
3.0.1108 224 2/7/2025
3.0.1107 179 2/7/2025
3.0.1106 1,111 2/7/2025
3.0.1105 204 2/7/2025
3.0.1104 242 2/7/2025
3.0.1103 111 2/7/2025
3.0.1102 195 2/6/2025
3.0.1101 786 2/5/2025
3.0.1100 308 2/5/2025
3.0.1099 142 2/5/2025
3.0.1098 244 2/5/2025
3.0.1097 138 2/5/2025
3.0.1096 225 2/5/2025
3.0.1095 408 2/5/2025
3.0.1094 303 2/5/2025
3.0.1093 118 2/5/2025
3.0.1092 158 2/5/2025
3.0.1091 99 2/5/2025
3.0.1090 358 2/5/2025
3.0.1089 105 2/5/2025
3.0.1088 191 2/5/2025
3.0.1087 107 2/5/2025
3.0.1086 119 2/5/2025
3.0.1085 293 2/5/2025
3.0.1084 112 2/5/2025
3.0.1083 312 2/5/2025
3.0.1082 204 2/5/2025
3.0.1081 525 2/5/2025
3.0.1080 107 2/5/2025
3.0.1079 204 2/5/2025
3.0.1078 1,028 1/28/2025
3.0.1077 168 1/28/2025
3.0.1076 209 1/28/2025
3.0.1075 104 1/28/2025
3.0.1074 208 1/28/2025
3.0.1073 112 1/28/2025
3.0.1072 190 1/28/2025
3.0.1071 112 1/28/2025
3.0.1070 294 1/28/2025
3.0.1069 106 1/28/2025
3.0.1068 273 1/28/2025
3.0.1067 89 1/28/2025
3.0.1066 328 1/28/2025
3.0.1065 100 1/28/2025
3.0.1064 282 1/28/2025
3.0.1063 108 1/28/2025
3.0.1062 219 1/28/2025
3.0.1061 414 1/28/2025
3.0.1060 108 1/28/2025
3.0.1059 423 1/28/2025
3.0.1058 112 1/28/2025
3.0.1057 245 1/27/2025
3.0.1056 90 1/27/2025
3.0.1055 335 1/27/2025
3.0.1054 263 1/27/2025
3.0.1053 280 1/27/2025
3.0.1052 101 1/27/2025
3.0.1051 200 1/27/2025
3.0.1050 652 1/26/2025
3.0.1049 200 1/26/2025
3.0.1048 241 1/26/2025
3.0.1047 274 1/26/2025
3.0.1046 110 1/26/2025
3.0.1045 179 1/26/2025
3.0.1044 116 1/26/2025
3.0.1043 256 1/26/2025
3.0.1042 110 1/26/2025
3.0.1041 119 1/26/2025
3.0.1040 97 1/26/2025
3.0.1039 325 1/26/2025
3.0.1038 107 1/26/2025
3.0.1037 295 1/26/2025
3.0.1036 111 1/26/2025
3.0.1035 397 1/26/2025
3.0.1034 111 1/26/2025
3.0.1033 311 1/25/2025
3.0.1032 461 1/25/2025
3.0.1031 111 1/25/2025
3.0.1030 412 1/25/2025
3.0.1029 109 1/25/2025
3.0.1028 303 1/25/2025
3.0.1027 110 1/25/2025
3.0.1026 95 1/25/2025
3.0.1025 541 1/25/2025
3.0.1024 94 1/25/2025
3.0.1023 253 1/25/2025
3.0.1022 683 1/24/2025
3.0.1021 229 1/24/2025
3.0.1020 263 1/24/2025
3.0.1019 153 1/24/2025
3.0.1018 103 1/24/2025
3.0.1017 184 1/24/2025
3.0.1016 107 1/24/2025
3.0.1015 515 1/24/2025
3.0.1014 91 1/24/2025
3.0.1013 169 1/24/2025
3.0.1012 111 1/24/2025
3.0.1011 322 1/24/2025
3.0.1010 101 1/24/2025
3.0.1009 794 1/23/2025
3.0.1008 237 1/23/2025
3.0.1007 230 1/23/2025
3.0.1006 214 1/23/2025
3.0.1005 98 1/23/2025
3.0.1004 167 1/23/2025
3.0.1003 572 1/22/2025
3.0.1002 287 1/22/2025
3.0.1001 180 1/22/2025
3.0.1000 102 1/22/2025
3.0.999 114 1/22/2025
3.0.998 232 1/22/2025
3.0.997 514 1/21/2025
3.0.996 202 1/21/2025
3.0.995 113 1/21/2025
3.0.994 389 1/21/2025
3.0.993 401 1/21/2025
3.0.992 359 1/21/2025
3.0.991 107 1/21/2025
3.0.990 616 1/21/2025
3.0.989 107 1/21/2025
3.0.988 601 1/21/2025
3.0.987 160 1/20/2025
3.0.986 175 1/20/2025
3.0.985 107 1/20/2025
3.0.984 387 1/20/2025
3.0.983 89 1/20/2025
3.0.982 437 1/20/2025
3.0.981 107 1/20/2025
3.0.980 562 1/20/2025
3.0.979 109 1/20/2025
3.0.978 355 1/20/2025
3.0.977 105 1/20/2025
3.0.976 104 1/20/2025
3.0.975 310 1/19/2025
3.0.974 113 1/19/2025
3.0.973 575 1/19/2025
3.0.972 99 1/19/2025
3.0.971 281 1/19/2025
3.0.970 107 1/19/2025
3.0.969 539 1/19/2025
3.0.968 93 1/19/2025
3.0.967 262 1/19/2025
3.0.966 103 1/19/2025
3.0.965 99 1/19/2025
3.0.964 550 1/19/2025
3.0.963 103 1/19/2025
3.0.962 351 1/18/2025
3.0.961 114 1/18/2025
3.0.960 143 1/18/2025
3.0.959 199 1/18/2025
3.0.958 121 1/18/2025
3.0.957 414 1/18/2025
3.0.956 310 1/18/2025
3.0.955 150 1/18/2025
3.0.954 103 1/18/2025
3.0.953 328 1/17/2025
3.0.952 194 1/17/2025
3.0.951 105 1/17/2025
3.0.950 148 1/17/2025
3.0.949 129 1/17/2025
3.0.948 207 1/17/2025
3.0.947 106 1/17/2025
3.0.946 432 1/17/2025
3.0.945 121 1/17/2025
3.0.944 111 1/17/2025
3.0.943 553 1/17/2025
3.0.942 99 1/17/2025
3.0.941 384 1/16/2025
3.0.940 99 1/16/2025
3.0.939 261 1/16/2025
3.0.938 286 1/16/2025
3.0.937 328 1/16/2025
3.0.936 131 1/16/2025
3.0.935 146 1/16/2025
3.0.934 464 1/16/2025
3.0.933 103 1/16/2025
3.0.932 135 1/16/2025
3.0.931 197 1/16/2025
3.0.930 104 1/16/2025
3.0.929 312 1/16/2025
3.0.928 243 1/16/2025
3.0.927 201 1/16/2025
3.0.926 542 1/15/2025
3.0.925 108 1/15/2025
3.0.924 134 1/15/2025
3.0.923 101 1/15/2025
3.0.922 190 1/15/2025
3.0.921 307 1/15/2025
3.0.920 99 1/15/2025
3.0.919 183 1/15/2025
3.0.918 352 1/15/2025
3.0.917 231 1/15/2025
3.0.916 104 1/15/2025
3.0.915 320 1/15/2025
3.0.914 203 1/15/2025
3.0.913 113 1/15/2025
3.0.912 291 1/15/2025
3.0.911 89 1/15/2025
3.0.910 247 1/15/2025
3.0.909 79 1/15/2025
3.0.908 164 1/15/2025
3.0.907 62 1/15/2025
3.0.906 75 1/15/2025
3.0.905 352 1/14/2025
3.0.904 937 1/14/2025
3.0.903 67 1/14/2025
3.0.902 380 1/14/2025
3.0.901 87 1/14/2025
3.0.900 394 1/14/2025
3.0.899 212 1/14/2025
3.0.898 303 1/13/2025
3.0.897 196 1/13/2025
3.0.896 90 1/13/2025
3.0.895 283 1/13/2025
3.0.894 89 1/13/2025
3.0.893 222 1/13/2025
3.0.892 110 1/13/2025
3.0.891 95 1/13/2025
3.0.890 308 1/13/2025
3.0.889 95 1/13/2025
3.0.888 291 1/13/2025
3.0.887 92 1/13/2025
3.0.886 278 1/12/2025
3.0.885 419 1/12/2025
3.0.884 229 1/11/2025
3.0.883 97 1/11/2025
3.0.882 222 1/11/2025
3.0.881 108 1/11/2025
3.0.880 103 1/11/2025
3.0.879 290 1/11/2025
3.0.878 376 1/11/2025
3.0.877 96 1/11/2025
3.0.876 177 1/11/2025
3.0.875 99 1/11/2025
3.0.874 255 1/10/2025
3.0.873 98 1/10/2025
3.0.872 517 1/10/2025
3.0.871 113 1/10/2025
3.0.870 256 1/10/2025
3.0.869 100 1/10/2025
3.0.868 117 1/10/2025
3.0.867 739 1/8/2025
3.0.866 406 1/3/2025
3.0.865 340 1/3/2025
3.0.864 139 1/3/2025
3.0.863 340 1/3/2025
3.0.862 140 1/3/2025
3.0.861 333 1/3/2025
3.0.860 177 1/3/2025
3.0.859 126 1/3/2025
3.0.858 460 1/3/2025
3.0.857 159 1/3/2025
3.0.856 97 1/3/2025
3.0.855 343 1/2/2025
3.0.854 110 1/2/2025
3.0.853 298 1/2/2025
3.0.852 114 1/2/2025
3.0.851 114 1/2/2025
3.0.850 107 1/2/2025
3.0.849 372 1/2/2025
3.0.848 855 1/2/2025
3.0.847 109 1/2/2025
3.0.846 264 1/1/2025
3.0.845 115 1/1/2025
3.0.844 299 1/1/2025
3.0.843 121 1/1/2025
3.0.842 251 1/1/2025
3.0.841 264 1/1/2025
3.0.840 119 1/1/2025
3.0.839 380 1/1/2025
3.0.838 133 1/1/2025
3.0.837 124 1/1/2025
3.0.836 322 1/1/2025
3.0.835 141 1/1/2025
3.0.834 301 1/1/2025
3.0.833 113 1/1/2025
3.0.832 265 12/31/2024
3.0.831 111 12/31/2024
3.0.830 120 12/31/2024
3.0.829 181 12/31/2024
3.0.828 127 12/31/2024
3.0.827 112 12/31/2024
3.0.826 272 12/31/2024
3.0.825 247 12/31/2024
3.0.824 239 12/31/2024
3.0.823 201 12/31/2024
3.0.822 122 12/31/2024
3.0.821 591 12/31/2024
3.0.820 135 12/31/2024
3.0.819 709 12/31/2024
3.0.818 129 12/31/2024
3.0.817 175 12/31/2024
3.0.816 107 12/31/2024
3.0.815 549 12/31/2024
3.0.814 336 12/31/2024
3.0.813 92 12/31/2024
3.0.812 276 12/31/2024
3.0.811 117 12/31/2024
3.0.810 108 12/31/2024
3.0.809 113 12/31/2024
3.0.808 919 12/28/2024
3.0.807 203 12/28/2024
3.0.806 192 12/28/2024
3.0.805 106 12/28/2024
3.0.804 375 12/28/2024
3.0.803 113 12/28/2024
3.0.802 219 12/28/2024
3.0.801 105 12/28/2024
3.0.800 568 12/27/2024
3.0.799 192 12/27/2024
3.0.798 107 12/27/2024
3.0.797 672 12/25/2024
3.0.796 188 12/25/2024
3.0.795 209 12/25/2024
3.0.794 173 12/24/2024
3.0.793 337 12/24/2024
3.0.792 110 12/24/2024
3.0.791 167 12/24/2024
3.0.790 469 12/24/2024
3.0.789 107 12/24/2024
3.0.788 267 12/24/2024
3.0.787 108 12/24/2024
3.0.786 409 12/24/2024
3.0.785 99 12/24/2024
3.0.784 343 12/24/2024
3.0.783 106 12/24/2024
3.0.782 416 12/24/2024
3.0.781 195 12/24/2024
3.0.780 318 12/24/2024
3.0.779 108 12/24/2024
3.0.778 103 12/24/2024
3.0.777 112 12/24/2024
3.0.776 107 12/24/2024
3.0.775 337 12/24/2024
3.0.774 100 12/24/2024
3.0.773 277 12/23/2024
3.0.772 109 12/23/2024
3.0.771 288 12/23/2024
3.0.770 110 12/23/2024
3.0.769 145 12/23/2024
3.0.768 323 12/23/2024
3.0.767 110 12/23/2024
3.0.766 375 12/23/2024
3.0.765 113 12/23/2024
3.0.764 269 12/23/2024
3.0.763 205 12/23/2024
3.0.762 126 12/23/2024
3.0.761 524 12/23/2024
3.0.760 176 12/22/2024
3.0.759 108 12/22/2024
3.0.758 296 12/22/2024
3.0.757 137 12/22/2024
3.0.756 298 12/22/2024
3.0.755 117 12/22/2024
3.0.754 214 12/22/2024
3.0.753 355 12/22/2024
3.0.752 115 12/22/2024
3.0.751 295 12/22/2024
3.0.750 113 12/22/2024
3.0.749 504 12/22/2024
3.0.748 142 12/22/2024
3.0.747 116 12/22/2024
3.0.746 351 12/21/2024
3.0.745 197 12/21/2024
3.0.744 116 12/21/2024
3.0.743 194 12/21/2024
3.0.742 114 12/21/2024
3.0.741 211 12/21/2024
3.0.740 115 12/21/2024
3.0.739 159 12/21/2024
3.0.738 117 12/21/2024
3.0.737 405 12/21/2024
3.0.736 175 12/21/2024
3.0.735 111 12/21/2024
3.0.734 466 12/21/2024
3.0.733 116 12/21/2024
3.0.732 107 12/21/2024
3.0.731 236 12/20/2024
3.0.730 114 12/20/2024
3.0.729 227 12/20/2024
3.0.728 146 12/20/2024
3.0.727 197 12/20/2024
3.0.726 107 12/20/2024
3.0.725 184 12/20/2024
3.0.724 112 12/20/2024
3.0.723 389 12/20/2024
3.0.722 120 12/20/2024
3.0.721 362 12/19/2024
3.0.720 136 12/19/2024
3.0.719 112 12/19/2024
3.0.718 252 12/19/2024
3.0.717 227 12/19/2024
3.0.716 106 12/19/2024
3.0.715 313 12/19/2024
3.0.714 96 12/19/2024
3.0.713 247 12/18/2024
3.0.712 1,902 12/17/2024
3.0.711 229 12/17/2024
3.0.709 285 12/17/2024
3.0.708 255 12/17/2024
3.0.707 228 12/17/2024
3.0.706 244 12/16/2024
3.0.705 194 12/16/2024
3.0.704 130 12/16/2024
3.0.703 552 12/10/2024
3.0.702 247 12/10/2024
3.0.701 127 12/10/2024
3.0.700 212 12/10/2024
3.0.699 331 12/10/2024
3.0.698 178 12/9/2024
3.0.697 112 12/9/2024
3.0.696 358 12/9/2024
3.0.695 104 12/9/2024
3.0.694 485 12/9/2024
3.0.693 275 12/9/2024
3.0.692 108 12/9/2024
3.0.691 282 12/9/2024
3.0.690 110 12/9/2024
3.0.689 311 12/9/2024
3.0.688 514 12/7/2024
3.0.687 208 12/7/2024
3.0.686 217 12/6/2024
3.0.685 114 12/6/2024
3.0.684 233 12/6/2024
3.0.683 123 12/6/2024
3.0.682 158 12/6/2024
3.0.681 221 12/6/2024
3.0.680 309 12/6/2024
3.0.679 121 12/6/2024
3.0.678 278 12/6/2024
3.0.677 235 12/6/2024
3.0.676 115 12/6/2024
3.0.675 244 12/6/2024
3.0.674 111 12/6/2024
3.0.673 230 12/6/2024
3.0.672 266 12/6/2024
3.0.671 209 12/6/2024
3.0.670 329 12/6/2024
3.0.669 118 12/6/2024
3.0.668 310 12/6/2024
3.0.667 119 12/6/2024
3.0.666 347 12/6/2024
3.0.665 108 12/6/2024
3.0.664 153 12/6/2024
3.0.663 226 12/6/2024
3.0.662 108 12/6/2024
3.0.661 271 12/6/2024
3.0.660 120 12/6/2024
3.0.659 249 12/6/2024
3.0.658 239 12/5/2024
3.0.657 123 12/5/2024
3.0.656 311 12/5/2024
3.0.655 117 12/5/2024
3.0.654 340 12/5/2024
3.0.653 123 12/5/2024
3.0.652 1,120 12/5/2024
3.0.651 335 12/5/2024
3.0.650 369 12/5/2024
3.0.649 489 12/5/2024
3.0.648 502 12/4/2024
3.0.647 203 12/4/2024
3.0.646 477 12/4/2024
3.0.645 263 12/4/2024
3.0.644 430 12/4/2024
3.0.643 216 12/4/2024
3.0.642 320 12/3/2024
3.0.641 499 12/3/2024
3.0.640 110 12/3/2024
3.0.639 164 12/3/2024
3.0.638 110 12/3/2024
3.0.637 474 12/3/2024
3.0.636 111 12/3/2024
3.0.635 544 12/3/2024
3.0.634 233 12/3/2024
3.0.633 114 12/3/2024
3.0.632 181 12/2/2024
3.0.631 316 12/2/2024
3.0.630 194 12/2/2024
3.0.629 110 12/2/2024
3.0.628 297 12/2/2024
3.0.627 254 12/2/2024
3.0.626 124 12/2/2024
3.0.625 453 12/2/2024
3.0.624 181 12/2/2024
3.0.623 127 12/2/2024
3.0.622 321 12/2/2024
3.0.621 106 12/2/2024
3.0.620 244 12/1/2024
3.0.619 181 12/1/2024
3.0.618 121 12/1/2024
3.0.617 773 12/1/2024
3.0.616 174 12/1/2024
3.0.615 331 12/1/2024
3.0.614 443 11/29/2024
3.0.613 179 11/29/2024
3.0.612 247 11/29/2024
3.0.611 116 11/29/2024
3.0.610 183 11/29/2024
3.0.609 280 11/29/2024
3.0.608 122 11/29/2024
3.0.607 400 11/29/2024
3.0.606 501 11/21/2024
3.0.605 270 11/21/2024
3.0.604 193 11/21/2024
3.0.603 129 11/21/2024
3.0.602 255 11/21/2024
3.0.601 115 11/21/2024
3.0.600 763 11/20/2024
3.0.599 123 11/20/2024
3.0.598 348 11/20/2024
3.0.597 219 11/20/2024
3.0.596 188 11/20/2024
3.0.595 231 11/20/2024
3.0.594 395 11/20/2024
3.0.593 376 11/20/2024
3.0.592 122 11/20/2024
3.0.591 305 11/20/2024
3.0.590 356 11/19/2024
3.0.589 118 11/19/2024
3.0.588 233 11/19/2024
3.0.587 119 11/19/2024
3.0.586 104 11/19/2024
3.0.585 477 11/19/2024
3.0.584 388 11/19/2024
3.0.583 348 11/19/2024
3.0.582 305 11/19/2024
3.0.581 117 11/19/2024
3.0.580 119 11/19/2024
3.0.579 703 11/15/2024
3.0.578 150 11/15/2024
3.0.577 277 11/15/2024
3.0.576 108 11/15/2024
3.0.575 184 11/14/2024
3.0.574 113 11/14/2024
3.0.573 258 11/14/2024
3.0.572 123 11/14/2024
3.0.571 200 11/14/2024
3.0.570 123 11/14/2024
3.0.569 313 11/14/2024
3.0.568 126 11/14/2024
3.0.567 315 11/14/2024
3.0.566 362 11/14/2024
3.0.565 121 11/14/2024
3.0.564 278 11/14/2024
3.0.563 251 11/14/2024
3.0.561 541 11/14/2024
3.0.560 115 11/14/2024
3.0.559 335 11/14/2024
3.0.558 202 11/14/2024
3.0.557 123 11/14/2024
3.0.556 209 11/14/2024
3.0.555 125 11/14/2024
3.0.554 225 11/14/2024
3.0.553 123 11/14/2024
3.0.552 246 11/14/2024
2.1.551 2,276 11/13/2024
2.1.550 382 11/13/2024
2.1.549 406 11/13/2024
2.1.548 263 11/13/2024
2.1.547 465 11/13/2024
2.1.546 114 11/13/2024
2.1.545 294 11/13/2024
2.1.544 120 11/13/2024
2.1.543 801 11/12/2024
2.1.542 121 11/12/2024
2.1.541 1,254 11/9/2024
2.1.540 331 11/9/2024
2.1.539 117 11/9/2024
2.1.538 277 11/9/2024
2.1.537 113 11/9/2024
2.1.536 546 11/9/2024
2.1.535 104 11/9/2024
2.1.534 674 11/8/2024
2.1.533 119 11/8/2024
2.1.532 399 11/8/2024
2.1.531 228 11/8/2024
2.1.530 125 11/8/2024
2.1.529 378 11/8/2024
2.1.528 113 11/8/2024
2.1.527 697 11/8/2024
2.1.526 511 11/8/2024
2.1.525 129 11/8/2024
2.1.524 250 11/8/2024
2.1.523 892 11/6/2024
2.1.522 288 11/6/2024
2.1.521 607 11/1/2024
2.1.520 354 11/1/2024
2.1.519 313 11/1/2024
2.1.518 125 11/1/2024
2.1.517 458 11/1/2024
2.1.516 117 11/1/2024
2.1.515 304 11/1/2024
2.1.514 663 10/29/2024
2.1.513 209 10/29/2024
2.1.512 191 10/29/2024
2.1.511 112 10/29/2024
2.1.510 107 10/29/2024
2.1.509 561 10/29/2024
2.1.508 320 10/29/2024
2.1.507 105 10/29/2024
2.1.506 454 10/29/2024
2.1.505 114 10/29/2024
2.1.504 123 10/29/2024
2.1.503 264 10/29/2024
2.1.502 117 10/29/2024
2.1.501 723 10/29/2024
2.1.500 561 10/29/2024
2.1.499 120 10/29/2024
2.1.498 589 10/28/2024
2.1.497 101 10/28/2024
2.1.496 1,000 10/26/2024
2.1.495 183 10/26/2024
2.1.494 225 10/26/2024
2.1.493 110 10/26/2024
2.1.492 1,144 10/22/2024
2.1.491 295 10/22/2024
2.1.490 104 10/22/2024
2.1.489 342 10/22/2024
2.1.488 104 10/22/2024
2.1.487 529 10/22/2024
2.1.486 152 10/22/2024
2.1.485 458 10/22/2024
2.1.484 103 10/22/2024
2.1.483 527 10/22/2024
2.1.482 1,113 10/18/2024
2.1.481 459 10/17/2024
2.1.480 115 10/17/2024
2.1.479 361 10/17/2024
2.1.478 117 10/17/2024
2.1.477 1,118 10/15/2024
2.1.476 281 10/15/2024
2.1.475 373 10/15/2024
2.1.474 106 10/15/2024
2.1.473 686 10/14/2024
2.1.472 582 10/12/2024
2.1.471 214 10/12/2024
2.1.470 252 10/12/2024
2.1.469 123 10/12/2024
2.1.468 330 10/12/2024
2.1.467 133 10/12/2024
2.1.466 464 10/11/2024
2.1.465 121 10/11/2024
2.1.464 394 10/11/2024
2.1.463 123 10/11/2024
2.1.462 785 10/9/2024
2.1.461 225 10/9/2024
2.1.460 207 10/9/2024
2.1.459 118 10/9/2024
2.1.458 451 10/9/2024
2.1.457 129 10/9/2024
2.1.456 351 10/9/2024
2.1.455 125 10/9/2024
2.1.454 204 10/9/2024
2.1.453 234 10/9/2024
2.1.452 126 10/9/2024
2.1.451 632 10/8/2024
2.1.450 127 10/8/2024
2.1.449 581 10/8/2024
2.1.448 265 10/8/2024
2.1.447 130 10/8/2024
2.1.446 461 10/8/2024
2.1.445 138 10/8/2024
2.1.444 288 10/8/2024
2.1.443 167 10/8/2024
2.1.442 119 10/8/2024
2.1.441 589 10/8/2024
2.1.440 118 10/8/2024
2.1.439 671 10/3/2024
2.1.438 200 10/3/2024
2.1.437 345 10/3/2024
2.1.436 128 10/3/2024
2.1.435 329 10/3/2024
2.1.434 323 10/3/2024
2.1.433 122 10/3/2024
2.1.432 212 10/3/2024
2.1.431 221 10/3/2024
2.1.430 126 10/3/2024
2.1.429 395 10/3/2024
2.1.428 776 10/2/2024
2.1.427 139 10/2/2024
2.1.426 225 10/2/2024
2.1.425 130 10/2/2024
2.1.424 238 10/2/2024
2.1.423 328 10/2/2024
2.1.422 236 10/2/2024
2.1.421 136 10/2/2024
2.1.420 389 10/2/2024
2.1.419 120 10/2/2024
2.1.418 583 10/2/2024
2.1.417 131 10/2/2024
2.1.416 291 10/1/2024
2.1.415 465 10/1/2024
2.1.414 129 10/1/2024
2.1.413 244 10/1/2024
2.1.412 121 10/1/2024
2.1.411 429 10/1/2024
2.1.410 142 10/1/2024
2.1.409 463 10/1/2024
2.1.408 126 10/1/2024
2.1.407 509 9/29/2024
2.1.406 247 9/29/2024
2.1.405 176 9/29/2024
2.1.404 277 9/29/2024
2.1.403 116 9/29/2024
2.1.402 289 9/29/2024
2.1.401 274 9/29/2024
2.1.400 109 9/29/2024
2.1.399 405 9/29/2024
2.1.398 129 9/29/2024
2.1.397 623 9/27/2024
2.1.396 254 9/27/2024
2.1.395 278 9/27/2024
2.1.394 113 9/27/2024
2.1.393 240 9/27/2024
2.1.392 108 9/27/2024
2.1.391 405 9/27/2024
2.1.390 292 9/27/2024
2.1.389 121 9/27/2024
2.1.388 506 9/27/2024
2.1.387 119 9/27/2024
2.1.386 238 9/27/2024
2.1.385 188 9/27/2024
2.1.384 122 9/27/2024
2.1.383 621 9/27/2024
2.1.382 224 9/27/2024
2.1.381 256 9/26/2024
2.1.380 129 9/26/2024
2.1.379 290 9/26/2024
2.1.378 284 9/26/2024
2.1.377 137 9/26/2024
2.1.376 382 9/26/2024
2.1.375 222 9/26/2024
2.1.374 221 9/26/2024
2.1.373 135 9/26/2024
2.1.372 558 9/26/2024
2.1.371 131 9/26/2024
2.1.370 287 9/26/2024
2.1.369 317 9/26/2024
2.1.368 207 9/26/2024
2.1.367 207 9/26/2024
2.1.366 133 9/26/2024
2.1.365 248 9/26/2024
2.1.364 768 9/24/2024
2.1.363 228 9/23/2024
2.1.362 136 9/23/2024
2.1.361 94 9/23/2024
2.1.360 221 9/23/2024
2.1.359 239 9/23/2024
2.1.358 104 9/23/2024
2.1.357 348 9/23/2024
2.1.356 229 9/23/2024
2.1.355 121 9/23/2024
2.1.354 212 9/23/2024
2.1.353 510 9/23/2024
2.1.352 108 9/23/2024
2.1.351 105 9/23/2024
2.1.350 513 9/23/2024
2.1.349 114 9/23/2024
2.1.348 295 9/23/2024
2.1.347 213 9/23/2024
2.1.346 501 9/23/2024
2.1.345 112 9/23/2024
2.1.344 147 9/23/2024
2.1.343 402 9/23/2024
2.1.342 116 9/23/2024
2.1.341 280 9/23/2024
2.1.340 115 9/23/2024
2.1.339 198 9/23/2024
2.1.338 99 9/23/2024
2.1.337 1,249 9/18/2024
2.1.336 99 9/18/2024
2.1.335 225 9/18/2024
2.1.334 183 9/18/2024
2.1.333 115 9/18/2024
2.1.332 373 9/18/2024
2.1.331 282 9/18/2024
2.1.330 135 9/18/2024
2.1.329 262 9/18/2024
2.1.328 122 9/18/2024
2.1.327 284 9/18/2024
2.1.326 123 9/18/2024
2.1.325 148 9/17/2024
2.1.324 144 9/17/2024
2.1.323 131 9/17/2024
2.1.322 235 9/17/2024
2.1.321 261 9/17/2024
2.1.320 128 9/17/2024
2.1.319 290 9/17/2024
2.1.318 142 9/17/2024
2.1.317 127 9/17/2024
2.1.316 288 9/17/2024
2.1.315 146 9/17/2024
2.1.314 307 9/17/2024
2.1.313 143 9/17/2024
2.1.312 289 9/17/2024
2.1.311 140 9/17/2024
2.1.310 316 9/17/2024
2.1.309 195 9/17/2024
2.1.308 224 9/17/2024
2.1.307 730 9/17/2024
2.1.306 138 9/17/2024
2.1.305 393 9/16/2024
2.1.304 329 9/16/2024
2.1.303 232 9/16/2024
2.1.302 238 9/16/2024
2.1.301 113 9/16/2024
2.1.300 274 9/16/2024
2.1.299 1,031 9/12/2024
2.1.298 278 9/12/2024
2.1.297 134 9/12/2024
2.1.296 315 9/12/2024
2.1.295 115 9/12/2024
2.1.294 420 9/12/2024
2.1.293 140 9/12/2024
2.1.292 260 9/12/2024
2.1.291 284 9/12/2024
2.1.290 152 9/12/2024
2.1.289 334 9/12/2024
2.1.288 152 9/12/2024
2.1.287 300 9/11/2024
2.1.286 131 9/11/2024
2.1.285 251 9/11/2024
2.1.284 145 9/11/2024
2.1.282 492 9/11/2024
2.1.281 139 9/11/2024
2.1.280 389 9/11/2024
2.1.279 133 9/11/2024
2.1.278 415 9/11/2024
2.1.277 432 9/11/2024
2.1.276 138 9/11/2024
2.1.275 283 9/11/2024
2.1.274 610 9/11/2024
2.1.273 236 9/10/2024
2.1.272 132 9/10/2024
2.1.271 229 9/10/2024
2.1.270 505 9/10/2024
2.1.269 156 9/10/2024
2.1.268 291 9/10/2024
2.1.267 137 9/10/2024
2.1.266 408 9/10/2024
2.1.265 340 9/10/2024
2.1.263 380 9/10/2024
2.1.262 205 9/10/2024
2.1.261 135 9/9/2024
2.1.260 403 9/9/2024
2.1.259 338 9/9/2024
2.1.258 342 9/9/2024
2.1.257 466 9/9/2024
2.1.255 311 9/9/2024
2.1.254 130 9/9/2024
2.1.253 311 9/9/2024
2.1.252 116 9/9/2024
2.1.251 800 9/7/2024
2.1.250 347 9/7/2024
2.1.249 133 9/7/2024
2.1.248 142 9/7/2024
2.1.247 346 9/7/2024
2.1.246 131 9/7/2024
2.1.245 436 9/6/2024
2.1.244 197 9/6/2024
2.1.243 139 9/6/2024
2.1.242 331 9/6/2024
2.1.241 140 9/6/2024
2.1.240 417 9/6/2024
2.1.239 170 9/6/2024
2.1.238 216 9/6/2024
2.1.237 128 9/6/2024
2.1.236 473 9/5/2024
2.1.235 163 9/5/2024
2.1.234 139 9/5/2024
2.1.233 271 9/5/2024
2.1.232 116 9/5/2024
2.1.231 413 9/5/2024
2.1.230 111 9/5/2024
2.1.229 252 9/5/2024
2.1.228 144 9/5/2024
2.1.227 141 9/5/2024
2.1.226 728 9/5/2024
2.1.225 141 9/5/2024
2.1.224 236 9/5/2024
2.1.223 145 9/5/2024
2.1.222 778 9/4/2024
2.1.221 141 9/4/2024
2.1.220 414 9/4/2024
2.1.219 270 9/4/2024
2.1.218 150 9/4/2024
2.1.217 209 9/4/2024
2.1.216 235 9/3/2024
2.1.215 152 9/3/2024
2.1.214 360 9/3/2024
2.1.213 118 9/3/2024
2.1.212 373 9/3/2024
2.1.211 129 9/3/2024
2.1.210 349 9/3/2024
2.1.209 131 9/3/2024
2.1.207 432 9/3/2024
2.1.206 725 8/29/2024
2.1.205 145 8/29/2024
2.1.204 228 8/29/2024
2.1.203 129 8/29/2024
2.1.202 367 8/29/2024
2.1.201 533 8/26/2024
2.1.200 236 8/26/2024
2.1.199 240 8/26/2024
2.1.197 201 8/26/2024
2.1.196 539 8/26/2024
2.1.195 145 8/26/2024
2.1.194 470 8/21/2024
2.1.193 259 8/21/2024
2.1.192 160 8/21/2024
2.1.191 327 8/21/2024
2.1.190 156 8/21/2024
2.1.189 428 8/21/2024
2.1.188 128 8/21/2024
2.1.187 325 8/21/2024
2.1.186 133 8/21/2024
2.1.185 376 8/20/2024
2.1.184 146 8/20/2024
2.1.183 460 8/20/2024
2.1.182 147 8/20/2024
2.1.181 391 8/20/2024
2.1.180 134 8/20/2024
2.1.179 336 8/20/2024
2.1.178 571 8/20/2024
2.1.177 272 8/19/2024
2.1.176 144 8/19/2024
2.1.175 476 8/15/2024
2.1.174 220 8/15/2024
2.1.173 201 8/15/2024
2.1.172 134 8/15/2024
2.1.171 246 8/15/2024
2.1.170 222 8/15/2024
2.1.169 344 8/15/2024
2.1.168 129 8/15/2024
2.1.167 378 8/15/2024
2.1.166 496 8/14/2024
2.1.165 309 8/14/2024
2.1.164 161 8/14/2024
2.1.163 289 8/14/2024
2.1.162 146 8/14/2024
2.1.161 255 8/13/2024
2.1.160 476 8/13/2024
2.1.159 508 8/7/2024
2.1.158 213 8/7/2024
2.1.157 189 8/7/2024
2.1.156 219 8/7/2024
2.1.155 125 8/7/2024
2.1.154 241 8/7/2024
2.1.153 111 8/7/2024
2.1.152 247 8/6/2024
2.1.151 111 8/6/2024
2.1.150 216 8/6/2024
2.1.149 693 8/1/2024
2.1.148 278 8/1/2024
2.1.147 125 8/1/2024
2.1.146 257 8/1/2024
2.1.145 117 8/1/2024
2.1.144 185 8/1/2024
2.1.143 126 8/1/2024
2.1.142 360 8/1/2024
2.1.141 131 8/1/2024
2.1.140 141 8/1/2024
2.1.139 113 8/1/2024
2.1.138 206 8/1/2024
2.1.137 627 7/25/2024
2.1.136 264 7/25/2024
2.1.135 149 7/25/2024
2.1.134 151 7/25/2024
2.1.133 173 7/25/2024
2.1.132 90 7/25/2024
2.1.131 184 7/25/2024
2.1.130 86 7/25/2024
2.1.129 171 7/25/2024
2.1.128 103 7/25/2024
2.1.127 197 7/25/2024
2.1.126 148 7/25/2024
2.1.125 109 7/25/2024
2.1.124 206 7/25/2024
2.1.123 195 7/25/2024
2.1.122 101 7/25/2024
2.1.121 215 7/24/2024
2.1.120 179 7/24/2024
2.1.119 184 7/24/2024
2.1.118 1,123 7/20/2024
2.1.117 162 7/20/2024
2.1.116 146 7/20/2024
2.1.115 139 7/20/2024
2.1.114 130 7/20/2024
2.1.113 209 7/20/2024
2.1.112 142 7/20/2024
2.1.111 214 7/20/2024
2.1.110 647 7/17/2024
2.1.109 210 7/17/2024
2.1.108 190 7/17/2024
2.1.107 331 7/14/2024
2.1.106 128 7/14/2024
2.1.105 282 7/14/2024
2.1.104 278 7/14/2024
2.1.103 125 7/14/2024
2.1.102 115 7/14/2024
2.1.101 396 7/14/2024
2.1.100 134 7/14/2024
2.1.99 263 7/14/2024
2.1.98 483 7/11/2024
2.1.97 275 7/10/2024
2.1.96 145 7/10/2024
2.1.95 343 7/10/2024
2.1.94 396 7/10/2024
2.1.93 135 7/10/2024
2.1.92 161 7/10/2024
2.1.91 195 7/10/2024
2.1.90 210 7/10/2024
2.1.89 179 7/10/2024
2.1.88 102 7/10/2024
2.1.87 226 7/10/2024
2.1.86 112 7/10/2024
2.1.85 196 7/10/2024
2.1.84 132 7/10/2024
2.1.83 152 7/10/2024
2.1.82 127 7/10/2024
2.1.81 174 7/10/2024
2.1.80 135 7/10/2024
2.1.79 215 7/10/2024
2.1.78 126 7/10/2024
2.1.77 215 7/9/2024
2.1.75 179 7/9/2024
2.1.74 112 7/9/2024
2.1.73 238 7/9/2024
2.1.72 117 7/9/2024
2.1.71 820 7/9/2024
2.1.70 107 7/9/2024
2.1.69 10,190 7/9/2024
2.1.68 232 7/9/2024
2.1.67 129 7/9/2024
2.1.66 431 7/9/2024
2.1.65 129 7/9/2024
2.1.64 431 7/9/2024
2.1.63 220 7/9/2024
2.1.62 144 7/9/2024
2.1.61 150 7/8/2024
2.1.60 520 7/8/2024
2.1.59 148 7/8/2024
2.1.58 116 7/8/2024
2.1.57 230 7/8/2024
2.1.56 334 7/8/2024
2.1.55 348 7/8/2024
2.1.54 178 7/8/2024
2.1.53 285 7/8/2024
2.1.52 144 7/8/2024
2.1.51 381 7/8/2024
2.1.50 125 7/8/2024
2.1.49 270 7/7/2024
2.1.48 277 7/7/2024
2.1.47 129 7/7/2024
2.1.46 187 7/7/2024
2.1.45 214 7/7/2024
2.1.44 141 7/7/2024
2.1.43 447 7/7/2024
2.1.42 229 7/7/2024
2.1.41 477 7/5/2024
2.1.40 348 7/4/2024
2.1.39 345 7/3/2024
2.1.38 242 7/3/2024
2.1.37 215 7/3/2024
2.1.36 229 7/3/2024
2.1.35 213 7/3/2024
2.1.34 258 7/3/2024
2.1.33 137 7/3/2024
2.1.32 262 7/3/2024
2.1.31 141 7/3/2024
2.1.30 216 7/3/2024
2.1.29 440 7/3/2024
2.1.28 134 7/3/2024
2.1.27 351 7/3/2024
2.1.26 249 7/3/2024
2.1.25 125 7/3/2024
2.1.24 471 7/3/2024
2.1.23 335 6/30/2024
2.1.22 249 6/30/2024
2.1.21 144 6/30/2024
2.1.20 138 6/30/2024
2.1.19 137 6/30/2024
2.1.18 129 6/30/2024
2.1.17 191 6/30/2024
2.1.16 202 6/30/2024
2.1.15 215 6/29/2024
2.1.14 131 6/29/2024
2.1.13 151 6/29/2024
2.1.12 146 6/29/2024
2.1.11 139 6/29/2024
2.1.10 138 6/29/2024
2.1.9 150 6/29/2024
2.1.8 234 6/28/2024
2.1.7 474 6/27/2024
2.1.6 398 6/27/2024
2.1.5 348 6/24/2024
2.1.4 150 6/24/2024
2.1.3 143 6/24/2024
2.1.2 145 6/24/2024
2.1.1 154 6/24/2024