Soenneker.Blazor.Utils.ResourceLoader 2.1.353

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.353
                    
NuGet\Install-Package Soenneker.Blazor.Utils.ResourceLoader -Version 2.1.353
                    
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.353" />
                    
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.353" />
                    
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.353
                    
#r "nuget: Soenneker.Blazor.Utils.ResourceLoader, 2.1.353"
                    
#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.353
                    
#: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.353
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Blazor.Utils.ResourceLoader&version=2.1.353
                    
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.LogJson

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

Soenneker.Blazor.Masonry

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

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1503 6,219 9/9/2025
3.0.1502 457 9/9/2025
3.0.1501 177 9/9/2025
3.0.1500 536 9/9/2025
3.0.1499 1,442 9/6/2025
3.0.1498 353 9/6/2025
3.0.1497 127 9/6/2025
3.0.1496 1,896 9/3/2025
3.0.1495 553 9/3/2025
3.0.1494 781 9/3/2025
3.0.1493 2,074 8/15/2025
3.0.1492 1,039 8/12/2025
3.0.1491 470 8/11/2025
3.0.1490 292 8/11/2025
3.0.1489 552 8/11/2025
3.0.1488 291 8/11/2025
3.0.1487 723 8/11/2025
3.0.1486 1,324 8/6/2025
3.0.1485 930 8/5/2025
3.0.1484 701 8/5/2025
3.0.1483 351 8/5/2025
3.0.1482 1,569 7/23/2025
3.0.1481 1,826 7/9/2025
3.0.1480 479 7/9/2025
3.0.1479 1,807 7/3/2025
3.0.1478 149 7/3/2025
3.0.1477 644 7/1/2025
3.0.1476 590 6/28/2025
3.0.1475 234 6/28/2025
3.0.1474 446 6/28/2025
3.0.1473 342 6/27/2025
3.0.1472 133 6/27/2025
3.0.1471 431 6/27/2025
3.0.1470 2,836 6/11/2025
3.0.1469 778 6/10/2025
3.0.1468 1,669 6/3/2025
3.0.1467 993 5/28/2025
3.0.1466 306 5/27/2025
3.0.1465 390 5/27/2025
3.0.1464 342 5/27/2025
3.0.1463 342 5/27/2025
3.0.1462 722 5/27/2025
3.0.1461 1,368 5/23/2025
3.0.1460 484 5/23/2025
3.0.1459 323 5/23/2025
3.0.1458 576 5/22/2025
3.0.1457 417 5/22/2025
3.0.1456 1,157 5/18/2025
3.0.1455 339 5/18/2025
3.0.1454 425 5/18/2025
3.0.1453 935 5/14/2025
3.0.1452 523 5/14/2025
3.0.1451 2,342 5/8/2025
3.0.1450 379 5/8/2025
3.0.1449 374 5/8/2025
3.0.1448 370 5/8/2025
3.0.1447 563 5/7/2025
3.0.1446 509 5/7/2025
3.0.1445 1,259 5/5/2025
3.0.1444 386 5/5/2025
3.0.1443 161 5/5/2025
3.0.1442 277 5/5/2025
3.0.1441 326 5/5/2025
3.0.1440 514 5/5/2025
3.0.1439 459 5/5/2025
3.0.1438 986 5/5/2025
3.0.1437 2,660 4/9/2025
3.0.1436 479 4/9/2025
3.0.1435 343 4/9/2025
3.0.1434 318 4/8/2025
3.0.1433 392 4/8/2025
3.0.1432 157 4/8/2025
3.0.1431 177 4/8/2025
3.0.1430 693 4/8/2025
3.0.1429 451 4/8/2025
3.0.1428 246 4/8/2025
3.0.1427 235 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 183 4/7/2025
3.0.1420 214 4/7/2025
3.0.1419 178 4/7/2025
3.0.1418 275 4/7/2025
3.0.1417 2,572 4/7/2025
3.0.1416 183 4/7/2025
3.0.1415 945 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 831 4/7/2025
3.0.1410 190 4/7/2025
3.0.1409 218 4/7/2025
3.0.1408 166 4/7/2025
3.0.1407 464 4/7/2025
3.0.1406 172 4/7/2025
3.0.1405 474 4/7/2025
3.0.1404 593 4/7/2025
3.0.1403 375 4/7/2025
3.0.1402 433 4/7/2025
3.0.1401 472 4/7/2025
3.0.1400 384 4/6/2025
3.0.1399 334 4/6/2025
3.0.1398 274 4/6/2025
3.0.1397 324 4/6/2025
3.0.1396 543 4/6/2025
3.0.1395 431 4/6/2025
3.0.1394 191 4/6/2025
3.0.1393 244 4/6/2025
3.0.1392 120 4/6/2025
3.0.1391 572 4/6/2025
3.0.1390 113 4/6/2025
3.0.1389 671 4/5/2025
3.0.1388 534 4/5/2025
3.0.1387 194 4/5/2025
3.0.1386 146 4/5/2025
3.0.1385 187 4/5/2025
3.0.1384 229 4/5/2025
3.0.1383 190 4/5/2025
3.0.1382 121 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,318 4/4/2025
3.0.1376 174 4/4/2025
3.0.1375 2,146 4/4/2025
3.0.1374 248 4/4/2025
3.0.1373 452 4/4/2025
3.0.1372 164 4/4/2025
3.0.1371 499 4/3/2025
3.0.1370 617 4/1/2025
3.0.1369 275 4/1/2025
3.0.1368 280 4/1/2025
3.0.1367 163 4/1/2025
3.0.1366 319 4/1/2025
3.0.1365 153 4/1/2025
3.0.1364 430 4/1/2025
3.0.1363 575 4/1/2025
3.0.1362 529 4/1/2025
3.0.1361 284 4/1/2025
3.0.1360 337 4/1/2025
3.0.1359 264 4/1/2025
3.0.1358 413 4/1/2025
3.0.1357 171 4/1/2025
3.0.1356 327 3/31/2025
3.0.1355 169 3/31/2025
3.0.1354 488 3/31/2025
3.0.1353 171 3/31/2025
3.0.1352 628 3/31/2025
3.0.1351 545 3/31/2025
3.0.1350 543 3/29/2025
3.0.1349 249 3/29/2025
3.0.1348 251 3/29/2025
3.0.1347 266 3/29/2025
3.0.1346 95 3/29/2025
3.0.1345 255 3/29/2025
3.0.1344 109 3/29/2025
3.0.1343 782 3/27/2025
3.0.1342 847 3/26/2025
3.0.1341 648 3/25/2025
3.0.1340 592 3/25/2025
3.0.1339 475 3/25/2025
3.0.1338 669 3/25/2025
3.0.1337 472 3/25/2025
3.0.1336 756 3/25/2025
3.0.1335 498 3/25/2025
3.0.1334 1,202 3/22/2025
3.0.1333 253 3/21/2025
3.0.1332 268 3/21/2025
3.0.1331 122 3/21/2025
3.0.1330 333 3/21/2025
3.0.1329 132 3/21/2025
3.0.1328 298 3/21/2025
3.0.1327 483 3/21/2025
3.0.1326 613 3/18/2025
3.0.1325 334 3/18/2025
3.0.1324 262 3/18/2025
3.0.1323 303 3/18/2025
3.0.1322 250 3/18/2025
3.0.1321 159 3/18/2025
3.0.1320 570 3/18/2025
3.0.1319 301 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 577 3/15/2025
3.0.1314 186 3/15/2025
3.0.1313 212 3/15/2025
3.0.1312 88 3/15/2025
3.0.1311 280 3/15/2025
3.0.1310 90 3/15/2025
3.0.1309 420 3/15/2025
3.0.1308 135 3/15/2025
3.0.1307 95 3/15/2025
3.0.1306 966 3/12/2025
3.0.1305 346 3/12/2025
3.0.1304 318 3/12/2025
3.0.1303 173 3/12/2025
3.0.1302 301 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 461 3/12/2025
3.0.1297 219 3/12/2025
3.0.1296 162 3/12/2025
3.0.1295 499 3/11/2025
3.0.1294 186 3/11/2025
3.0.1293 576 3/11/2025
3.0.1292 180 3/11/2025
3.0.1291 612 3/11/2025
3.0.1290 188 3/11/2025
3.0.1289 187 3/11/2025
3.0.1288 689 3/11/2025
3.0.1287 182 3/11/2025
3.0.1286 502 3/11/2025
3.0.1285 726 3/11/2025
3.0.1284 179 3/11/2025
3.0.1283 525 3/11/2025
3.0.1282 191 3/11/2025
3.0.1281 652 3/7/2025
3.0.1280 410 3/7/2025
3.0.1279 332 3/7/2025
3.0.1278 232 3/7/2025
3.0.1277 455 3/7/2025
3.0.1276 231 3/7/2025
3.0.1275 501 3/7/2025
3.0.1274 429 3/7/2025
3.0.1273 513 3/7/2025
3.0.1272 696 3/2/2025
3.0.1271 240 3/2/2025
3.0.1270 356 3/2/2025
3.0.1269 133 3/2/2025
3.0.1268 271 3/2/2025
3.0.1267 180 3/2/2025
3.0.1266 344 3/2/2025
3.0.1265 117 3/2/2025
3.0.1264 587 3/2/2025
3.0.1263 117 3/2/2025
3.0.1262 556 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 596 3/1/2025
3.0.1257 372 3/1/2025
3.0.1256 111 3/1/2025
3.0.1255 366 3/1/2025
3.0.1254 161 3/1/2025
3.0.1253 118 3/1/2025
3.0.1252 222 3/1/2025
3.0.1251 120 3/1/2025
3.0.1250 561 3/1/2025
3.0.1249 119 3/1/2025
3.0.1248 98 3/1/2025
3.0.1247 773 3/1/2025
3.0.1246 109 3/1/2025
3.0.1245 783 2/26/2025
3.0.1244 164 2/26/2025
3.0.1243 112 2/26/2025
3.0.1242 253 2/26/2025
3.0.1241 104 2/26/2025
3.0.1240 334 2/25/2025
3.0.1239 96 2/25/2025
3.0.1238 306 2/25/2025
3.0.1237 107 2/25/2025
3.0.1236 541 2/25/2025
3.0.1235 113 2/25/2025
3.0.1234 457 2/25/2025
3.0.1233 105 2/25/2025
3.0.1232 316 2/25/2025
3.0.1231 400 2/24/2025
3.0.1230 825 2/23/2025
3.0.1229 400 2/23/2025
3.0.1228 130 2/23/2025
3.0.1227 202 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 496 2/22/2025
3.0.1222 105 2/22/2025
3.0.1221 234 2/22/2025
3.0.1220 670 2/22/2025
3.0.1219 280 2/22/2025
3.0.1218 114 2/22/2025
3.0.1217 226 2/22/2025
3.0.1216 107 2/22/2025
3.0.1215 460 2/22/2025
3.0.1214 217 2/22/2025
3.0.1213 231 2/22/2025
3.0.1212 350 2/22/2025
3.0.1211 114 2/22/2025
3.0.1210 284 2/22/2025
3.0.1209 299 2/22/2025
3.0.1208 300 2/21/2025
3.0.1207 102 2/21/2025
3.0.1206 113 2/21/2025
3.0.1205 441 2/21/2025
3.0.1204 116 2/21/2025
3.0.1203 275 2/21/2025
3.0.1202 112 2/21/2025
3.0.1201 316 2/21/2025
3.0.1200 1,051 2/19/2025
3.0.1199 346 2/19/2025
3.0.1198 130 2/19/2025
3.0.1197 216 2/19/2025
3.0.1196 113 2/19/2025
3.0.1195 199 2/19/2025
3.0.1194 124 2/19/2025
3.0.1193 228 2/19/2025
3.0.1192 118 2/19/2025
3.0.1191 258 2/19/2025
3.0.1190 112 2/19/2025
3.0.1189 314 2/19/2025
3.0.1188 261 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 126 2/18/2025
3.0.1183 703 2/18/2025
3.0.1182 107 2/18/2025
3.0.1181 298 2/18/2025
3.0.1180 108 2/18/2025
3.0.1179 1,115 2/16/2025
3.0.1178 469 2/14/2025
3.0.1177 246 2/14/2025
3.0.1176 120 2/14/2025
3.0.1175 295 2/14/2025
3.0.1174 227 2/14/2025
3.0.1173 119 2/14/2025
3.0.1172 742 2/13/2025
3.0.1171 117 2/13/2025
3.0.1170 258 2/13/2025
3.0.1169 988 2/13/2025
3.0.1168 387 2/12/2025
3.0.1167 244 2/12/2025
3.0.1166 311 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 225 2/12/2025
3.0.1159 114 2/12/2025
3.0.1158 320 2/12/2025
3.0.1157 125 2/12/2025
3.0.1156 365 2/12/2025
3.0.1155 118 2/12/2025
3.0.1154 329 2/12/2025
3.0.1153 111 2/12/2025
3.0.1152 284 2/12/2025
3.0.1151 106 2/12/2025
3.0.1150 363 2/11/2025
3.0.1149 113 2/11/2025
3.0.1148 578 2/11/2025
3.0.1147 496 2/11/2025
3.0.1146 116 2/11/2025
3.0.1145 109 2/11/2025
3.0.1144 428 2/11/2025
3.0.1143 120 2/11/2025
3.0.1142 306 2/11/2025
3.0.1141 820 2/11/2025
3.0.1140 132 2/11/2025
3.0.1139 299 2/11/2025
3.0.1138 126 2/11/2025
3.0.1137 235 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 223 2/10/2025
3.0.1130 125 2/10/2025
3.0.1129 471 2/10/2025
3.0.1128 106 2/10/2025
3.0.1127 117 2/10/2025
3.0.1126 237 2/10/2025
3.0.1125 334 2/10/2025
3.0.1124 478 2/10/2025
3.0.1123 202 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 450 2/9/2025
3.0.1118 106 2/9/2025
3.0.1117 1,197 2/7/2025
3.0.1116 111 2/7/2025
3.0.1115 493 2/7/2025
3.0.1114 108 2/7/2025
3.0.1113 323 2/7/2025
3.0.1112 297 2/7/2025
3.0.1111 109 2/7/2025
3.0.1110 278 2/7/2025
3.0.1109 125 2/7/2025
3.0.1108 233 2/7/2025
3.0.1107 180 2/7/2025
3.0.1106 1,128 2/7/2025
3.0.1105 207 2/7/2025
3.0.1104 242 2/7/2025
3.0.1103 111 2/7/2025
3.0.1102 198 2/6/2025
3.0.1101 798 2/5/2025
3.0.1100 311 2/5/2025
3.0.1099 146 2/5/2025
3.0.1098 244 2/5/2025
3.0.1097 138 2/5/2025
3.0.1096 228 2/5/2025
3.0.1095 415 2/5/2025
3.0.1094 306 2/5/2025
3.0.1093 118 2/5/2025
3.0.1092 168 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 194 2/5/2025
3.0.1087 107 2/5/2025
3.0.1086 121 2/5/2025
3.0.1085 302 2/5/2025
3.0.1084 112 2/5/2025
3.0.1083 315 2/5/2025
3.0.1082 204 2/5/2025
3.0.1081 528 2/5/2025
3.0.1080 107 2/5/2025
3.0.1079 207 2/5/2025
3.0.1078 1,037 1/28/2025
3.0.1077 168 1/28/2025
3.0.1076 213 1/28/2025
3.0.1075 105 1/28/2025
3.0.1074 215 1/28/2025
3.0.1073 112 1/28/2025
3.0.1072 193 1/28/2025
3.0.1071 112 1/28/2025
3.0.1070 300 1/28/2025
3.0.1069 106 1/28/2025
3.0.1068 280 1/28/2025
3.0.1067 90 1/28/2025
3.0.1066 331 1/28/2025
3.0.1065 101 1/28/2025
3.0.1064 291 1/28/2025
3.0.1063 108 1/28/2025
3.0.1062 222 1/28/2025
3.0.1061 424 1/28/2025
3.0.1060 108 1/28/2025
3.0.1059 427 1/28/2025
3.0.1058 112 1/28/2025
3.0.1057 251 1/27/2025
3.0.1056 90 1/27/2025
3.0.1055 347 1/27/2025
3.0.1054 269 1/27/2025
3.0.1053 281 1/27/2025
3.0.1052 101 1/27/2025
3.0.1051 200 1/27/2025
3.0.1050 658 1/26/2025
3.0.1049 203 1/26/2025
3.0.1048 244 1/26/2025
3.0.1047 278 1/26/2025
3.0.1046 110 1/26/2025
3.0.1045 182 1/26/2025
3.0.1044 116 1/26/2025
3.0.1043 262 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 332 1/26/2025
3.0.1038 107 1/26/2025
3.0.1037 298 1/26/2025
3.0.1036 112 1/26/2025
3.0.1035 402 1/26/2025
3.0.1034 111 1/26/2025
3.0.1033 318 1/25/2025
3.0.1032 479 1/25/2025
3.0.1031 111 1/25/2025
3.0.1030 415 1/25/2025
3.0.1029 109 1/25/2025
3.0.1028 309 1/25/2025
3.0.1027 110 1/25/2025
3.0.1026 95 1/25/2025
3.0.1025 547 1/25/2025
3.0.1024 94 1/25/2025
3.0.1023 256 1/25/2025
3.0.1022 686 1/24/2025
3.0.1021 232 1/24/2025
3.0.1020 267 1/24/2025
3.0.1019 157 1/24/2025
3.0.1018 103 1/24/2025
3.0.1017 187 1/24/2025
3.0.1016 108 1/24/2025
3.0.1015 527 1/24/2025
3.0.1014 91 1/24/2025
3.0.1013 169 1/24/2025
3.0.1012 112 1/24/2025
3.0.1011 330 1/24/2025
3.0.1010 101 1/24/2025
3.0.1009 800 1/23/2025
3.0.1008 237 1/23/2025
3.0.1007 243 1/23/2025
3.0.1006 217 1/23/2025
3.0.1005 98 1/23/2025
3.0.1004 167 1/23/2025
3.0.1003 578 1/22/2025
3.0.1002 289 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 236 1/22/2025
3.0.997 520 1/21/2025
3.0.996 209 1/21/2025
3.0.995 113 1/21/2025
3.0.994 389 1/21/2025
3.0.993 422 1/21/2025
3.0.992 362 1/21/2025
3.0.991 108 1/21/2025
3.0.990 628 1/21/2025
3.0.989 107 1/21/2025
3.0.988 613 1/21/2025
3.0.987 161 1/20/2025
3.0.986 181 1/20/2025
3.0.985 107 1/20/2025
3.0.984 402 1/20/2025
3.0.983 89 1/20/2025
3.0.982 447 1/20/2025
3.0.981 107 1/20/2025
3.0.980 578 1/20/2025
3.0.979 109 1/20/2025
3.0.978 361 1/20/2025
3.0.977 105 1/20/2025
3.0.976 104 1/20/2025
3.0.975 313 1/19/2025
3.0.974 113 1/19/2025
3.0.973 576 1/19/2025
3.0.972 99 1/19/2025
3.0.971 288 1/19/2025
3.0.970 107 1/19/2025
3.0.969 549 1/19/2025
3.0.968 95 1/19/2025
3.0.967 268 1/19/2025
3.0.966 103 1/19/2025
3.0.965 99 1/19/2025
3.0.964 561 1/19/2025
3.0.963 103 1/19/2025
3.0.962 366 1/18/2025
3.0.961 115 1/18/2025
3.0.960 147 1/18/2025
3.0.959 199 1/18/2025
3.0.958 121 1/18/2025
3.0.957 426 1/18/2025
3.0.956 324 1/18/2025
3.0.955 150 1/18/2025
3.0.954 103 1/18/2025
3.0.953 338 1/17/2025
3.0.952 197 1/17/2025
3.0.951 105 1/17/2025
3.0.950 154 1/17/2025
3.0.949 130 1/17/2025
3.0.948 216 1/17/2025
3.0.947 107 1/17/2025
3.0.946 441 1/17/2025
3.0.945 122 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 390 1/16/2025
3.0.940 100 1/16/2025
3.0.939 261 1/16/2025
3.0.938 292 1/16/2025
3.0.937 331 1/16/2025
3.0.936 131 1/16/2025
3.0.935 146 1/16/2025
3.0.934 473 1/16/2025
3.0.933 103 1/16/2025
3.0.932 141 1/16/2025
3.0.931 203 1/16/2025
3.0.930 104 1/16/2025
3.0.929 315 1/16/2025
3.0.928 253 1/16/2025
3.0.927 201 1/16/2025
3.0.926 548 1/15/2025
3.0.925 108 1/15/2025
3.0.924 134 1/15/2025
3.0.923 102 1/15/2025
3.0.922 199 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 365 1/15/2025
3.0.917 231 1/15/2025
3.0.916 105 1/15/2025
3.0.915 320 1/15/2025
3.0.914 210 1/15/2025
3.0.913 113 1/15/2025
3.0.912 304 1/15/2025
3.0.911 89 1/15/2025
3.0.910 248 1/15/2025
3.0.909 79 1/15/2025
3.0.908 179 1/15/2025
3.0.907 62 1/15/2025
3.0.906 75 1/15/2025
3.0.905 369 1/14/2025
3.0.904 937 1/14/2025
3.0.903 67 1/14/2025
3.0.902 401 1/14/2025
3.0.901 88 1/14/2025
3.0.900 403 1/14/2025
3.0.899 215 1/14/2025
3.0.898 309 1/13/2025
3.0.897 199 1/13/2025
3.0.896 90 1/13/2025
3.0.895 289 1/13/2025
3.0.894 89 1/13/2025
3.0.893 228 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 304 1/13/2025
3.0.887 92 1/13/2025
3.0.886 280 1/12/2025
3.0.885 430 1/12/2025
3.0.884 239 1/11/2025
3.0.883 97 1/11/2025
3.0.882 226 1/11/2025
3.0.881 108 1/11/2025
3.0.880 103 1/11/2025
3.0.879 295 1/11/2025
3.0.878 386 1/11/2025
3.0.877 96 1/11/2025
3.0.876 180 1/11/2025
3.0.875 99 1/11/2025
3.0.874 260 1/10/2025
3.0.873 98 1/10/2025
3.0.872 523 1/10/2025
3.0.871 113 1/10/2025
3.0.870 263 1/10/2025
3.0.869 100 1/10/2025
3.0.868 117 1/10/2025
3.0.867 755 1/8/2025
3.0.866 408 1/3/2025
3.0.865 346 1/3/2025
3.0.864 139 1/3/2025
3.0.863 343 1/3/2025
3.0.862 141 1/3/2025
3.0.861 339 1/3/2025
3.0.860 177 1/3/2025
3.0.859 126 1/3/2025
3.0.858 472 1/3/2025
3.0.857 160 1/3/2025
3.0.856 97 1/3/2025
3.0.855 346 1/2/2025
3.0.854 111 1/2/2025
3.0.853 303 1/2/2025
3.0.852 114 1/2/2025
3.0.851 115 1/2/2025
3.0.850 107 1/2/2025
3.0.849 387 1/2/2025
3.0.848 864 1/2/2025
3.0.847 109 1/2/2025
3.0.846 270 1/1/2025
3.0.845 115 1/1/2025
3.0.844 305 1/1/2025
3.0.843 121 1/1/2025
3.0.842 251 1/1/2025
3.0.841 270 1/1/2025
3.0.840 119 1/1/2025
3.0.839 386 1/1/2025
3.0.838 133 1/1/2025
3.0.837 124 1/1/2025
3.0.836 328 1/1/2025
3.0.835 143 1/1/2025
3.0.834 317 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 279 12/31/2024
3.0.825 251 12/31/2024
3.0.824 249 12/31/2024
3.0.823 201 12/31/2024
3.0.822 122 12/31/2024
3.0.821 596 12/31/2024
3.0.820 135 12/31/2024
3.0.819 714 12/31/2024
3.0.818 130 12/31/2024
3.0.817 176 12/31/2024
3.0.816 107 12/31/2024
3.0.815 549 12/31/2024
3.0.814 351 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 938 12/28/2024
3.0.807 207 12/28/2024
3.0.806 192 12/28/2024
3.0.805 106 12/28/2024
3.0.804 381 12/28/2024
3.0.803 113 12/28/2024
3.0.802 225 12/28/2024
3.0.801 105 12/28/2024
3.0.800 576 12/27/2024
3.0.799 193 12/27/2024
3.0.798 107 12/27/2024
3.0.797 678 12/25/2024
3.0.796 191 12/25/2024
3.0.795 212 12/25/2024
3.0.794 177 12/24/2024
3.0.793 340 12/24/2024
3.0.792 111 12/24/2024
3.0.791 171 12/24/2024
3.0.790 477 12/24/2024
3.0.789 107 12/24/2024
3.0.788 268 12/24/2024
3.0.787 108 12/24/2024
3.0.786 413 12/24/2024
3.0.785 99 12/24/2024
3.0.784 346 12/24/2024
3.0.783 106 12/24/2024
3.0.782 422 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 344 12/24/2024
3.0.774 101 12/24/2024
3.0.773 283 12/23/2024
3.0.772 109 12/23/2024
3.0.771 291 12/23/2024
3.0.770 111 12/23/2024
3.0.769 145 12/23/2024
3.0.768 329 12/23/2024
3.0.767 111 12/23/2024
3.0.766 381 12/23/2024
3.0.765 113 12/23/2024
3.0.764 274 12/23/2024
3.0.763 212 12/23/2024
3.0.762 126 12/23/2024
3.0.761 531 12/23/2024
3.0.760 176 12/22/2024
3.0.759 109 12/22/2024
3.0.758 302 12/22/2024
3.0.757 137 12/22/2024
3.0.756 308 12/22/2024
3.0.755 117 12/22/2024
3.0.754 214 12/22/2024
3.0.753 358 12/22/2024
3.0.752 116 12/22/2024
3.0.751 316 12/22/2024
3.0.750 114 12/22/2024
3.0.749 510 12/22/2024
3.0.748 143 12/22/2024
3.0.747 116 12/22/2024
3.0.746 369 12/21/2024
3.0.745 197 12/21/2024
3.0.744 117 12/21/2024
3.0.743 200 12/21/2024
3.0.742 114 12/21/2024
3.0.741 221 12/21/2024
3.0.740 115 12/21/2024
3.0.739 165 12/21/2024
3.0.738 117 12/21/2024
3.0.737 406 12/21/2024
3.0.736 184 12/21/2024
3.0.735 112 12/21/2024
3.0.734 469 12/21/2024
3.0.733 118 12/21/2024
3.0.732 107 12/21/2024
3.0.731 242 12/20/2024
3.0.730 114 12/20/2024
3.0.729 234 12/20/2024
3.0.728 147 12/20/2024
3.0.727 200 12/20/2024
3.0.726 107 12/20/2024
3.0.725 193 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 371 12/19/2024
3.0.720 142 12/19/2024
3.0.719 112 12/19/2024
3.0.718 252 12/19/2024
3.0.717 233 12/19/2024
3.0.716 107 12/19/2024
3.0.715 319 12/19/2024
3.0.714 96 12/19/2024
3.0.713 253 12/18/2024
3.0.712 1,905 12/17/2024
3.0.711 232 12/17/2024
3.0.709 288 12/17/2024
3.0.708 258 12/17/2024
3.0.707 231 12/17/2024
3.0.706 250 12/16/2024
3.0.705 194 12/16/2024
3.0.704 130 12/16/2024
3.0.703 561 12/10/2024
3.0.702 250 12/10/2024
3.0.701 127 12/10/2024
3.0.700 218 12/10/2024
3.0.699 337 12/10/2024
3.0.698 178 12/9/2024
3.0.697 112 12/9/2024
3.0.696 364 12/9/2024
3.0.695 104 12/9/2024
3.0.694 492 12/9/2024
3.0.693 278 12/9/2024
3.0.692 108 12/9/2024
3.0.691 285 12/9/2024
3.0.690 110 12/9/2024
3.0.689 320 12/9/2024
3.0.688 522 12/7/2024
3.0.687 211 12/7/2024
3.0.686 223 12/6/2024
3.0.685 114 12/6/2024
3.0.684 239 12/6/2024
3.0.683 124 12/6/2024
3.0.682 158 12/6/2024
3.0.681 227 12/6/2024
3.0.680 315 12/6/2024
3.0.679 121 12/6/2024
3.0.678 284 12/6/2024
3.0.677 238 12/6/2024
3.0.676 115 12/6/2024
3.0.675 250 12/6/2024
3.0.674 111 12/6/2024
3.0.673 233 12/6/2024
3.0.672 272 12/6/2024
3.0.671 212 12/6/2024
3.0.670 335 12/6/2024
3.0.669 118 12/6/2024
3.0.668 316 12/6/2024
3.0.667 119 12/6/2024
3.0.666 359 12/6/2024
3.0.665 108 12/6/2024
3.0.664 154 12/6/2024
3.0.663 229 12/6/2024
3.0.662 108 12/6/2024
3.0.661 278 12/6/2024
3.0.660 120 12/6/2024
3.0.659 255 12/6/2024
3.0.658 242 12/5/2024
3.0.657 123 12/5/2024
3.0.656 317 12/5/2024
3.0.655 117 12/5/2024
3.0.654 346 12/5/2024
3.0.653 124 12/5/2024
3.0.652 1,130 12/5/2024
3.0.651 341 12/5/2024
3.0.650 376 12/5/2024
3.0.649 498 12/5/2024
3.0.648 517 12/4/2024
3.0.647 203 12/4/2024
3.0.646 486 12/4/2024
3.0.645 269 12/4/2024
3.0.644 439 12/4/2024
3.0.643 220 12/4/2024
3.0.642 328 12/3/2024
3.0.641 507 12/3/2024
3.0.640 110 12/3/2024
3.0.639 170 12/3/2024
3.0.638 111 12/3/2024
3.0.637 477 12/3/2024
3.0.636 111 12/3/2024
3.0.635 550 12/3/2024
3.0.634 233 12/3/2024
3.0.633 114 12/3/2024
3.0.632 190 12/2/2024
3.0.631 319 12/2/2024
3.0.630 198 12/2/2024
3.0.629 110 12/2/2024
3.0.628 303 12/2/2024
3.0.627 260 12/2/2024
3.0.626 124 12/2/2024
3.0.625 458 12/2/2024
3.0.624 181 12/2/2024
3.0.623 127 12/2/2024
3.0.622 327 12/2/2024
3.0.621 106 12/2/2024
3.0.620 250 12/1/2024
3.0.619 187 12/1/2024
3.0.618 121 12/1/2024
3.0.617 782 12/1/2024
3.0.616 177 12/1/2024
3.0.615 331 12/1/2024
3.0.614 446 11/29/2024
3.0.613 183 11/29/2024
3.0.612 253 11/29/2024
3.0.611 117 11/29/2024
3.0.610 184 11/29/2024
3.0.609 286 11/29/2024
3.0.608 122 11/29/2024
3.0.607 403 11/29/2024
3.0.606 506 11/21/2024
3.0.605 276 11/21/2024
3.0.604 193 11/21/2024
3.0.603 129 11/21/2024
3.0.602 258 11/21/2024
3.0.601 116 11/21/2024
3.0.600 769 11/20/2024
3.0.599 123 11/20/2024
3.0.598 351 11/20/2024
3.0.597 225 11/20/2024
3.0.596 188 11/20/2024
3.0.595 234 11/20/2024
3.0.594 399 11/20/2024
3.0.593 379 11/20/2024
3.0.592 122 11/20/2024
3.0.591 308 11/20/2024
3.0.590 362 11/19/2024
3.0.589 118 11/19/2024
3.0.588 239 11/19/2024
3.0.587 119 11/19/2024
3.0.586 104 11/19/2024
3.0.585 486 11/19/2024
3.0.584 395 11/19/2024
3.0.583 357 11/19/2024
3.0.582 305 11/19/2024
3.0.581 117 11/19/2024
3.0.580 120 11/19/2024
3.0.579 715 11/15/2024
3.0.578 153 11/15/2024
3.0.577 283 11/15/2024
3.0.576 109 11/15/2024
3.0.575 184 11/14/2024
3.0.574 113 11/14/2024
3.0.573 263 11/14/2024
3.0.572 123 11/14/2024
3.0.571 203 11/14/2024
3.0.570 123 11/14/2024
3.0.569 322 11/14/2024
3.0.568 126 11/14/2024
3.0.567 318 11/14/2024
3.0.566 368 11/14/2024
3.0.565 121 11/14/2024
3.0.564 278 11/14/2024
3.0.563 257 11/14/2024
3.0.561 551 11/14/2024
3.0.560 115 11/14/2024
3.0.559 344 11/14/2024
3.0.558 202 11/14/2024
3.0.557 124 11/14/2024
3.0.556 209 11/14/2024
3.0.555 125 11/14/2024
3.0.554 238 11/14/2024
3.0.553 123 11/14/2024
3.0.552 252 11/14/2024
2.1.551 2,292 11/13/2024
2.1.550 386 11/13/2024
2.1.549 410 11/13/2024
2.1.548 267 11/13/2024
2.1.547 465 11/13/2024
2.1.546 115 11/13/2024
2.1.545 305 11/13/2024
2.1.544 121 11/13/2024
2.1.543 811 11/12/2024
2.1.542 121 11/12/2024
2.1.541 1,277 11/9/2024
2.1.540 338 11/9/2024
2.1.539 117 11/9/2024
2.1.538 285 11/9/2024
2.1.537 113 11/9/2024
2.1.536 559 11/9/2024
2.1.535 104 11/9/2024
2.1.534 681 11/8/2024
2.1.533 120 11/8/2024
2.1.532 403 11/8/2024
2.1.531 232 11/8/2024
2.1.530 125 11/8/2024
2.1.529 390 11/8/2024
2.1.528 113 11/8/2024
2.1.527 709 11/8/2024
2.1.526 516 11/8/2024
2.1.525 129 11/8/2024
2.1.524 254 11/8/2024
2.1.523 908 11/6/2024
2.1.522 292 11/6/2024
2.1.521 614 11/1/2024
2.1.520 359 11/1/2024
2.1.519 318 11/1/2024
2.1.518 125 11/1/2024
2.1.517 462 11/1/2024
2.1.516 117 11/1/2024
2.1.515 314 11/1/2024
2.1.514 663 10/29/2024
2.1.513 214 10/29/2024
2.1.512 199 10/29/2024
2.1.511 112 10/29/2024
2.1.510 108 10/29/2024
2.1.509 565 10/29/2024
2.1.508 324 10/29/2024
2.1.507 105 10/29/2024
2.1.506 461 10/29/2024
2.1.505 114 10/29/2024
2.1.504 123 10/29/2024
2.1.503 272 10/29/2024
2.1.502 117 10/29/2024
2.1.501 733 10/29/2024
2.1.500 562 10/29/2024
2.1.499 120 10/29/2024
2.1.498 597 10/28/2024
2.1.497 101 10/28/2024
2.1.496 1,011 10/26/2024
2.1.495 189 10/26/2024
2.1.494 229 10/26/2024
2.1.493 110 10/26/2024
2.1.492 1,155 10/22/2024
2.1.491 299 10/22/2024
2.1.490 104 10/22/2024
2.1.489 350 10/22/2024
2.1.488 104 10/22/2024
2.1.487 534 10/22/2024
2.1.486 152 10/22/2024
2.1.485 466 10/22/2024
2.1.484 103 10/22/2024
2.1.483 531 10/22/2024
2.1.482 1,130 10/18/2024
2.1.481 463 10/17/2024
2.1.480 115 10/17/2024
2.1.479 374 10/17/2024
2.1.478 117 10/17/2024
2.1.477 1,126 10/15/2024
2.1.476 281 10/15/2024
2.1.475 377 10/15/2024
2.1.474 107 10/15/2024
2.1.473 686 10/14/2024
2.1.472 590 10/12/2024
2.1.471 218 10/12/2024
2.1.470 256 10/12/2024
2.1.469 123 10/12/2024
2.1.468 337 10/12/2024
2.1.467 133 10/12/2024
2.1.466 468 10/11/2024
2.1.465 121 10/11/2024
2.1.464 398 10/11/2024
2.1.463 124 10/11/2024
2.1.462 789 10/9/2024
2.1.461 229 10/9/2024
2.1.460 212 10/9/2024
2.1.459 118 10/9/2024
2.1.458 459 10/9/2024
2.1.457 130 10/9/2024
2.1.456 355 10/9/2024
2.1.455 126 10/9/2024
2.1.454 213 10/9/2024
2.1.453 234 10/9/2024
2.1.452 126 10/9/2024
2.1.451 640 10/8/2024
2.1.450 127 10/8/2024
2.1.449 595 10/8/2024
2.1.448 269 10/8/2024
2.1.447 130 10/8/2024
2.1.446 471 10/8/2024
2.1.445 138 10/8/2024
2.1.444 292 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 695 10/3/2024
2.1.438 204 10/3/2024
2.1.437 349 10/3/2024
2.1.436 128 10/3/2024
2.1.435 337 10/3/2024
2.1.434 328 10/3/2024
2.1.433 122 10/3/2024
2.1.432 213 10/3/2024
2.1.431 222 10/3/2024
2.1.430 127 10/3/2024
2.1.429 407 10/3/2024
2.1.428 784 10/2/2024
2.1.427 139 10/2/2024
2.1.426 229 10/2/2024
2.1.425 131 10/2/2024
2.1.424 245 10/2/2024
2.1.423 332 10/2/2024
2.1.422 237 10/2/2024
2.1.421 137 10/2/2024
2.1.420 402 10/2/2024
2.1.419 120 10/2/2024
2.1.418 596 10/2/2024
2.1.417 131 10/2/2024
2.1.416 299 10/1/2024
2.1.415 473 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 437 10/1/2024
2.1.410 143 10/1/2024
2.1.409 475 10/1/2024
2.1.408 126 10/1/2024
2.1.407 521 9/29/2024
2.1.406 251 9/29/2024
2.1.405 176 9/29/2024
2.1.404 285 9/29/2024
2.1.403 116 9/29/2024
2.1.402 293 9/29/2024
2.1.401 286 9/29/2024
2.1.400 109 9/29/2024
2.1.399 414 9/29/2024
2.1.398 130 9/29/2024
2.1.397 634 9/27/2024
2.1.396 258 9/27/2024
2.1.395 283 9/27/2024
2.1.394 113 9/27/2024
2.1.393 249 9/27/2024
2.1.392 108 9/27/2024
2.1.391 409 9/27/2024
2.1.390 297 9/27/2024
2.1.389 121 9/27/2024
2.1.388 514 9/27/2024
2.1.387 119 9/27/2024
2.1.386 255 9/27/2024
2.1.385 188 9/27/2024
2.1.384 122 9/27/2024
2.1.383 630 9/27/2024
2.1.382 224 9/27/2024
2.1.381 261 9/26/2024
2.1.380 130 9/26/2024
2.1.379 296 9/26/2024
2.1.378 288 9/26/2024
2.1.377 138 9/26/2024
2.1.376 386 9/26/2024
2.1.375 227 9/26/2024
2.1.374 226 9/26/2024
2.1.373 135 9/26/2024
2.1.372 564 9/26/2024
2.1.371 131 9/26/2024
2.1.370 296 9/26/2024
2.1.369 321 9/26/2024
2.1.368 214 9/26/2024
2.1.367 211 9/26/2024
2.1.366 134 9/26/2024
2.1.365 257 9/26/2024
2.1.364 777 9/24/2024
2.1.363 232 9/23/2024
2.1.362 137 9/23/2024
2.1.361 94 9/23/2024
2.1.360 228 9/23/2024
2.1.359 244 9/23/2024
2.1.358 104 9/23/2024
2.1.357 356 9/23/2024
2.1.356 234 9/23/2024
2.1.355 121 9/23/2024
2.1.354 220 9/23/2024
2.1.353 514 9/23/2024
2.1.352 108 9/23/2024
2.1.351 105 9/23/2024
2.1.350 521 9/23/2024
2.1.349 114 9/23/2024
2.1.348 311 9/23/2024
2.1.347 217 9/23/2024
2.1.346 509 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 281 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,304 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 116 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 149 9/17/2024
2.1.324 146 9/17/2024
2.1.323 131 9/17/2024
2.1.322 235 9/17/2024
2.1.321 262 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 290 9/17/2024
2.1.311 140 9/17/2024
2.1.310 316 9/17/2024
2.1.309 196 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 279 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 421 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 335 9/12/2024
2.1.288 153 9/12/2024
2.1.287 301 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 140 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 341 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 343 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 312 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 217 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 141 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 237 9/5/2024
2.1.223 146 9/5/2024
2.1.222 785 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 119 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 202 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 260 8/21/2024
2.1.192 161 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 148 8/20/2024
2.1.181 391 8/20/2024
2.1.180 135 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 145 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 223 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 497 8/14/2024
2.1.165 309 8/14/2024
2.1.164 161 8/14/2024
2.1.163 292 8/14/2024
2.1.162 147 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 242 8/7/2024
2.1.153 111 8/7/2024
2.1.152 248 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 258 8/1/2024
2.1.145 117 8/1/2024
2.1.144 185 8/1/2024
2.1.143 127 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 628 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 174 7/25/2024
2.1.132 90 7/25/2024
2.1.131 185 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 198 7/25/2024
2.1.126 149 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 216 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 140 7/20/2024
2.1.114 130 7/20/2024
2.1.113 209 7/20/2024
2.1.112 143 7/20/2024
2.1.111 215 7/20/2024
2.1.110 647 7/17/2024
2.1.109 211 7/17/2024
2.1.108 190 7/17/2024
2.1.107 332 7/14/2024
2.1.106 128 7/14/2024
2.1.105 283 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 264 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 344 7/10/2024
2.1.94 396 7/10/2024
2.1.93 136 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 180 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 216 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 239 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,235 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 149 7/8/2024
2.1.58 116 7/8/2024
2.1.57 231 7/8/2024
2.1.56 334 7/8/2024
2.1.55 350 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 126 7/8/2024
2.1.49 270 7/7/2024
2.1.48 278 7/7/2024
2.1.47 129 7/7/2024
2.1.46 188 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 245 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 441 7/3/2024
2.1.28 135 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 130 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 132 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 151 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 145 6/24/2024
2.1.2 146 6/24/2024
2.1.1 155 6/24/2024