Soenneker.Blazor.Utils.ResourceLoader 3.0.1507

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 3.0.1507
                    
NuGet\Install-Package Soenneker.Blazor.Utils.ResourceLoader -Version 3.0.1507
                    
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="3.0.1507" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Blazor.Utils.ResourceLoader" Version="3.0.1507" />
                    
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 3.0.1507
                    
#r "nuget: Soenneker.Blazor.Utils.ResourceLoader, 3.0.1507"
                    
#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@3.0.1507
                    
#: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=3.0.1507
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Blazor.Utils.ResourceLoader&version=3.0.1507
                    
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 net9.0 is compatible.  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 (24)

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