Soenneker.Utils.AutoBogus 3.0.524

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.AutoBogus --version 3.0.524                
NuGet\Install-Package Soenneker.Utils.AutoBogus -Version 3.0.524                
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.Utils.AutoBogus" Version="3.0.524" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Utils.AutoBogus --version 3.0.524                
#r "nuget: Soenneker.Utils.AutoBogus, 3.0.524"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Soenneker.Utils.AutoBogus as a Cake Addin
#addin nuget:?package=Soenneker.Utils.AutoBogus&version=3.0.524

// Install Soenneker.Utils.AutoBogus as a Cake Tool
#tool nuget:?package=Soenneker.Utils.AutoBogus&version=3.0.524                

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

The .NET Autogenerator

This project is an automatic creator and populator for the fake data generator Bogus. It's a replacement for the abandoned AutoBogus library.

The goals:

  • Be fast
  • Support the latest types in .NET

It uses the fastest .NET Reflection cache: soenneker.reflection.cache. Bogus updates are automatically integrated.

.NET 8+ is supported.

Installation

dotnet add package Soenneker.Utils.AutoBogus

Usage

  • Create an AutoFaker instance:
var optionalConfig = new AutoFakerConfig();
var autoFaker = new AutoFaker(optionalConfig);
  • Call Generate<>() on any type you want:
var randomWord = autoFaker.Generate<string>();
var dictionary = autoFaker.Generate<Dictionary<int, string>>();
var order = autoFaker.Generate<Order>();
  • It's also possible to generate types via an argument:
var randomWord = autoFaker.Generate(typeof(string));
  • Set a faker, configuration, rules, etc:
autoFaker.Config.Faker = new Faker("de");
autoFaker.Config.RepeatCount = 3;
...

AutoFakerOverride

This is the recommended way for controlling type customization:

public class OrderOverride : AutoFakerOverride<Order>
{
    public override void Generate(AutoFakerOverrideContext context)
    {
        var target = (context.Instance as Order)!;
        target.Id = 123;
        
        // Faker is available
        target.Name = context.Faker.Random.Word();

        // AutoFaker is also available
        target.Customer = context.AutoFaker.Generate<Customer>();
     }
}

Then just add AutoFakerOverride to the AutoFaker.Config instance:

autoFaker.Config.Overrides = new List<AutoFakerGeneratorOverride>();
autoFaker.Config.Overrides.Add(new OrderOverride());

AutoFaker<T>

This inherits from Bogus.Faker, and can be used to designate rules specific to the AutoFaker instance.

var autoFaker = new AutoFaker<Order>();
autoFaker.RuleFor(x => x.Id, f => f.Random.Number());
var order = autoFaker.Generate();

Interfaces/Abstracts

The base library does not generate interfaces or abstract objects, but these enable you to generate mocks of them:

Tips

  • ⚠️ Instantiating an AutoFaker takes a non-trivial amount of time because of Bogus Faker initialization (almost 1ms). It's recommended that a single instance be used if possible.
  • AutoFaker.GenerateStatic<T>() is also available, but should be avoided (as it creates a new AutoFaker/Faker on each call).

Notes

  • Some patterns that existed in AutoBogus have been removed due to the complexity and performance impact.
  • This is a work in progress. Contribution is welcomed.

Benchmarks

Soenneker.Utils.AutoBogus - AutoFaker

Method Mean Error StdDev
Generate_int 79.40 ns 0.635 ns 0.563 ns
Generate_string 241.35 ns 3.553 ns 3.324 ns
Generate_complex 6,782.34 ns 43.811 ns 38.837 ns

Soenneker.Utils.AutoBogus - AutoFaker<T>

Method Mean Error StdDev
Generate_string 283.6 ns 3.28 ns 3.07 ns
Generate_complex 8,504.0 ns 76.58 ns 67.89 ns

AutoBogus

Method Mean Error StdDev
Generate_int 1.17 ms 0.033 ms 0.026 ms
Generate_complex 10.91 ms 0.181 ms 0.236 ms

Bogus

Method Mean Error StdDev
Bogus_int 19.70 ns 0.176 ns 0.165 ns
Bogus_string 171.75 ns 2.763 ns 2.585 ns
Bogus_ctor 730,669.06 ns 8,246.622 ns 7,310.416 ns
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 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (9)

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

Package Downloads
Soenneker.Tests.Unit

A base test providing faker and autofaker capabilities

Soenneker.Fixtures.Unit

A base xUnit fixture providing injectable log output, DI mechanisms like IServiceCollection and ServiceProvider, and AutoFaker/Faker for generating test data.

Soenneker.AutoFaker.Overrides.IdNamePair

An AutoFaker (AutoBogus) override for the DTO IdNamePair

Soenneker.Utils.AutoBogus.NSubstitute

An AutoFakerBinder for interfaces and abstract objects using NSubstitute

Soenneker.Utils.AutoBogus.FakeItEasy

An AutoFakerBinder for interfaces and abstract objects using FakeItEasy

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.559 0 1/3/2025
3.0.558 0 1/3/2025
3.0.557 0 1/3/2025
3.0.556 5 1/2/2025
3.0.555 3 1/2/2025
3.0.554 129 1/2/2025
3.0.553 20 1/2/2025
3.0.552 22 1/2/2025
3.0.551 96 1/2/2025
3.0.550 25 1/2/2025
3.0.549 52 1/2/2025
3.0.548 5,885 1/1/2025
3.0.547 1,217 1/1/2025
3.0.546 37 1/1/2025
3.0.545 2,553 1/1/2025
3.0.544 37 1/1/2025
3.0.543 36 1/1/2025
3.0.542 44 1/1/2025
3.0.541 39 1/1/2025
3.0.538 82 12/31/2024
3.0.537 79 12/31/2024
3.0.536 113 12/31/2024
3.0.535 38 12/31/2024
3.0.534 95 12/31/2024
3.0.533 4,596 12/31/2024
3.0.532 8,363 12/31/2024
3.0.531 2,731 12/31/2024
3.0.530 36 12/31/2024
3.0.529 329 12/31/2024
3.0.528 51 12/31/2024
3.0.527 738 12/31/2024
3.0.526 37 12/31/2024
3.0.525 3,743 12/31/2024
3.0.524 40 12/31/2024
3.0.523 150 12/31/2024
3.0.522 37 12/31/2024
3.0.521 8,856 12/27/2024
3.0.520 6,929 12/24/2024
3.0.519 71 12/24/2024
3.0.518 955 12/24/2024
3.0.517 119 12/24/2024
3.0.515 1,993 12/24/2024
3.0.514 70 12/24/2024
3.0.513 107 12/24/2024
3.0.512 2,760 12/23/2024
3.0.511 76 12/23/2024
3.0.510 3,022 12/23/2024
3.0.509 70 12/23/2024
3.0.508 2,010 12/23/2024
3.0.507 1,388 12/23/2024
3.0.506 3,973 12/23/2024
3.0.505 1,247 12/23/2024
3.0.504 2,462 12/23/2024
3.0.503 74 12/23/2024
3.0.502 2,836 12/22/2024
3.0.501 66 12/22/2024
3.0.500 4,236 12/22/2024
3.0.499 2,932 12/22/2024
3.0.497 7,391 12/22/2024
3.0.495 2,572 12/22/2024
3.0.494 182 12/21/2024
3.0.493 3,179 12/21/2024
3.0.492 72 12/21/2024
3.0.491 449 12/21/2024
3.0.490 66 12/21/2024
3.0.489 856 12/21/2024
3.0.488 4,086 12/21/2024
3.0.487 72 12/21/2024
3.0.486 1,395 12/21/2024
3.0.485 1,463 12/21/2024
3.0.484 75 12/21/2024
3.0.483 789 12/21/2024
3.0.482 73 12/21/2024
3.0.481 4,223 12/20/2024
3.0.480 5,020 12/20/2024
3.0.479 74 12/20/2024
3.0.478 2,054 12/20/2024
3.0.477 74 12/20/2024
3.0.476 434 12/19/2024
3.0.475 3,494 12/19/2024
3.0.474 82 12/19/2024
3.0.473 2,217 12/18/2024
3.0.472 73 12/18/2024
3.0.471 74 12/18/2024
3.0.470 90 12/18/2024
3.0.469 4,175 12/17/2024
3.0.468 1,611 12/17/2024
3.0.467 109 12/17/2024
3.0.466 1,501 12/16/2024
3.0.465 739 12/16/2024
3.0.464 74 12/16/2024
3.0.463 74 12/16/2024
3.0.462 11,786 12/9/2024
3.0.461 2,074 12/9/2024
3.0.460 4,115 12/9/2024
3.0.459 6,521 12/6/2024
3.0.458 2,322 12/6/2024
3.0.457 103 12/6/2024
3.0.456 3,945 12/6/2024
3.0.455 634 12/6/2024
3.0.454 2,455 12/6/2024
3.0.453 2,080 12/6/2024
3.0.452 3,277 12/5/2024
3.0.451 3,740 12/5/2024
3.0.450 5,763 12/5/2024
3.0.449 716 12/5/2024
3.0.448 1,432 12/5/2024
3.0.447 3,264 12/4/2024
3.0.446 81 12/4/2024
3.0.445 1,475 12/4/2024
3.0.444 5,262 12/4/2024
3.0.443 80 12/4/2024
3.0.442 4,111 12/3/2024
3.0.441 239 12/3/2024
3.0.440 1,390 12/3/2024
3.0.439 82 12/3/2024
3.0.438 2,638 12/3/2024
3.0.437 82 12/3/2024
3.0.436 2,381 12/3/2024
3.0.435 81 12/3/2024
3.0.434 2,095 12/3/2024
3.0.433 1,889 12/2/2024
3.0.432 5,004 12/2/2024
3.0.431 75 12/2/2024
3.0.430 2,575 12/1/2024
3.0.429 86 12/1/2024
3.0.428 3,310 12/1/2024
3.0.427 447 12/1/2024
3.0.426 3,824 11/30/2024
3.0.425 3,870 11/29/2024
3.0.424 5,709 11/20/2024
3.0.422 4,158 11/20/2024
3.0.420 940 11/20/2024
3.0.419 5,050 11/19/2024
3.0.418 80 11/19/2024
3.0.417 147 11/19/2024
3.0.416 77 11/19/2024
3.0.415 680 11/19/2024
3.0.414 2,137 11/19/2024
3.0.413 78 11/19/2024
3.0.412 73 11/19/2024
3.0.411 77 11/19/2024
3.0.410 11,122 11/14/2024
3.0.409 3,652 11/14/2024
3.0.408 77 11/14/2024
3.0.407 3,680 11/14/2024
3.0.406 3,243 11/14/2024
3.0.405 79 11/14/2024
3.0.404 1,205 11/14/2024
3.0.403 83 11/14/2024
3.0.402 527 11/14/2024
3.0.401 143 11/14/2024
3.0.400 81 11/14/2024
3.0.399 88 11/14/2024
2.1.398 1,191 11/13/2024
2.1.397 8,879 11/12/2024
2.1.396 3,296 11/12/2024
2.1.395 5,560 11/9/2024
2.1.394 1,640 11/8/2024
2.1.393 806 11/8/2024
2.1.392 2,160 11/8/2024
2.1.391 1,064 11/8/2024
2.1.390 3,890 11/8/2024
2.1.389 3,141 11/8/2024
2.1.388 7,038 10/31/2024
2.1.387 5,494 10/29/2024
2.1.386 2,905 10/28/2024
2.1.385 6,170 10/26/2024
2.1.383 6,861 10/22/2024
2.1.382 1,760 10/22/2024
2.1.381 5,857 10/17/2024
2.1.380 4,645 10/14/2024
2.1.379 362 10/14/2024
2.1.378 3,954 10/11/2024
2.1.377 624 10/11/2024
2.1.376 6,018 10/8/2024
2.1.375 5,330 10/8/2024
2.1.374 7,142 10/3/2024
2.1.373 77 10/3/2024
2.1.372 78 10/3/2024
2.1.371 1,129 10/3/2024
2.1.370 1,747 10/3/2024
2.1.369 6,091 10/2/2024
2.1.368 88 10/2/2024
2.1.367 5,609 10/1/2024
2.1.366 1,466 10/1/2024
2.1.365 4,706 9/29/2024
2.1.364 1,164 9/29/2024
2.1.363 90 9/29/2024
2.1.362 4,846 9/27/2024
2.1.361 88 9/27/2024
2.1.360 184 9/27/2024
2.1.359 83 9/27/2024
2.1.358 2,596 9/27/2024
2.1.357 87 9/27/2024
2.1.356 80 9/27/2024
2.1.355 3,613 9/27/2024
2.1.354 3,866 9/26/2024
2.1.353 147 9/26/2024
2.1.351 4,873 9/26/2024
2.1.350 2,192 9/25/2024
2.1.349 89 9/25/2024
2.1.348 93 9/25/2024
2.1.347 4,389 9/23/2024
2.1.346 1,992 9/23/2024
2.1.345 1,815 9/23/2024
2.1.344 93 9/23/2024
2.1.343 125 9/23/2024
2.1.342 3,663 9/23/2024
2.1.341 86 9/23/2024
2.1.340 94 9/23/2024
2.1.339 1,357 9/23/2024
2.1.338 85 9/23/2024
2.1.337 1,411 9/22/2024
2.1.336 6,917 9/17/2024
2.1.335 93 9/17/2024
2.1.334 3,231 9/17/2024
2.1.333 2,172 9/17/2024
2.1.332 97 9/17/2024
2.1.331 91 9/17/2024
2.1.330 159 9/17/2024
2.1.328 15,543 9/12/2024
2.1.327 2,620 9/11/2024
2.1.326 905 9/11/2024
2.1.325 2,664 9/11/2024
2.1.324 106 9/11/2024
2.1.323 6,957 9/10/2024
2.1.322 1,227 9/10/2024
2.1.320 2,117 9/9/2024
2.1.319 1,333 9/9/2024
2.1.318 1,814 9/9/2024
2.1.317 4,999 9/9/2024
2.1.316 101 9/9/2024
2.1.315 2,802 9/9/2024
2.1.314 3,797 9/6/2024
2.1.313 2,944 9/6/2024
2.1.312 2,041 9/5/2024
2.1.311 109 9/5/2024
2.1.310 405 9/5/2024
2.1.309 99 9/5/2024
2.1.308 1,672 9/5/2024
2.1.307 102 9/5/2024
2.1.306 113 9/5/2024
2.1.305 104 9/5/2024
2.1.304 113 9/5/2024
2.1.303 113 9/5/2024
2.1.302 6,144 9/4/2024
2.1.301 1,057 9/4/2024
2.1.300 4,307 9/3/2024
2.1.299 2,634 9/3/2024
2.1.298 3,026 9/3/2024
2.1.297 450 9/2/2024
2.1.296 4,544 8/29/2024
2.1.295 3,366 8/25/2024
2.1.294 4,320 8/21/2024
2.1.293 111 8/21/2024
2.1.292 110 8/21/2024
2.1.291 954 8/20/2024
2.1.290 124 8/20/2024
2.1.289 877 8/20/2024
2.1.288 122 8/20/2024
2.1.287 1,924 8/20/2024
2.1.286 113 8/20/2024
2.1.285 112 8/20/2024
2.1.284 6,199 8/19/2024
2.1.283 6,115 8/13/2024
2.1.282 8,016 8/6/2024
2.1.281 1,012 8/6/2024
2.1.280 5,617 8/1/2024
2.1.279 2,935 7/31/2024
2.1.278 5,678 7/25/2024
2.1.277 81 7/25/2024
2.1.276 1,893 7/24/2024
2.1.275 662 7/24/2024
2.1.274 10,225 7/19/2024
2.1.273 3,566 7/14/2024
2.1.272 1,872 7/14/2024
2.1.271 4,849 7/10/2024
2.1.270 2,572 7/10/2024
2.1.269 907 7/10/2024
2.1.268 99 7/10/2024
2.1.267 416 7/10/2024
2.1.266 654 7/10/2024
2.1.265 101 7/10/2024
2.1.264 1,643 7/9/2024
2.1.261 180 7/9/2024
2.1.260 4,660 7/9/2024
2.1.259 3,248 7/9/2024
2.1.258 100 7/9/2024
2.1.257 705 7/9/2024
2.1.256 111 7/9/2024
2.1.255 1,729 7/9/2024
2.1.254 103 7/9/2024
2.1.253 2,430 7/9/2024
2.1.252 106 7/9/2024
2.1.251 573 7/9/2024
2.1.249 108 7/8/2024
2.1.248 117 7/8/2024
2.1.247 104 7/8/2024
2.1.246 637 7/8/2024
2.1.245 118 7/8/2024
2.1.244 110 7/8/2024
2.1.243 6,118 7/7/2024
2.1.242 1,087 7/7/2024
2.1.241 1,046 7/7/2024
2.1.240 615 7/7/2024
2.1.239 9,214 7/3/2024
2.1.238 854 7/3/2024
2.1.237 8,696 6/21/2024
2.1.236 3,685 6/15/2024
2.1.235 1,628 6/15/2024
2.1.234 8,338 6/1/2024
2.1.233 344 6/1/2024
2.1.232 106 6/1/2024
2.1.231 2,593 6/1/2024
2.1.230 2,991 5/31/2024
2.1.229 2,771 5/29/2024
2.1.228 109 5/29/2024
2.1.227 2,938 5/28/2024
2.1.226 95 5/28/2024
2.1.225 2,023 5/27/2024
2.1.224 101 5/27/2024
2.1.223 3,909 5/26/2024
2.1.221 2,588 5/26/2024
2.1.220 106 5/26/2024
2.1.219 1,819 5/25/2024
2.1.218 98 5/25/2024
2.1.215 894 5/25/2024
2.1.214 107 5/25/2024
2.1.213 2,727 5/25/2024
2.1.212 103 5/25/2024
2.1.211 102 5/25/2024
2.1.210 135 5/25/2024
2.1.208 16,280 5/23/2024
2.1.207 167 5/23/2024
2.1.206 105 5/23/2024
2.1.205 1,298 5/23/2024
2.1.204 108 5/23/2024
2.1.203 1,349 5/22/2024
2.1.202 124 5/22/2024
2.1.201 105 5/22/2024
2.1.200 105 5/22/2024
2.1.199 2,425 5/22/2024
2.1.197 615 5/22/2024
2.1.196 4,734 5/17/2024
2.1.195 1,805 5/17/2024
2.1.194 5,553 5/14/2024
2.1.193 122 5/14/2024
2.1.192 3,275 5/12/2024
2.1.191 10,208 4/29/2024
2.1.190 139 4/29/2024
2.1.189 127 4/29/2024
2.1.188 496 4/29/2024
2.1.187 107 4/29/2024
2.1.186 3,136 4/28/2024
2.1.185 123 4/28/2024
2.1.184 2,144 4/28/2024
2.1.183 852 4/28/2024
2.1.182 2,341 4/28/2024
2.1.181 103 4/28/2024
2.1.180 104 4/28/2024
2.1.179 1,592 4/28/2024
2.1.178 133 4/27/2024
2.1.177 93 4/27/2024
2.1.176 5,949 4/19/2024
2.1.175 2,159 4/18/2024
2.1.174 4,238 4/12/2024
2.1.173 1,719 4/12/2024
2.1.172 574 4/12/2024
2.1.171 439 4/12/2024
2.1.170 117 4/12/2024
2.1.169 120 4/12/2024
2.1.168 2,077 4/12/2024
2.1.167 117 4/12/2024
2.1.166 130 4/12/2024
2.1.165 108 4/12/2024
2.1.164 99 4/12/2024
2.1.163 6,045 4/9/2024
2.1.162 3,304 4/1/2024
2.1.161 118 4/1/2024
2.1.160 7,281 3/25/2024
2.1.159 106 3/25/2024
2.1.158 2,349 3/20/2024
2.1.157 2,141 3/19/2024
2.1.156 1,232 3/19/2024
2.1.155 3,351 3/15/2024
2.1.154 2,119 3/13/2024
2.1.153 890 3/13/2024
2.1.152 400 3/13/2024
2.1.151 125 3/13/2024
2.1.150 118 3/13/2024
2.1.149 121 3/13/2024
2.1.148 138 3/13/2024
2.1.147 2,779 3/12/2024
2.1.146 3,481 3/11/2024
2.1.145 119 3/11/2024
2.1.144 1,281 3/11/2024
2.1.143 1,762 3/9/2024
2.1.142 1,976 3/8/2024
2.1.141 1,300 3/8/2024
2.1.140 2,869 3/6/2024
2.1.139 130 3/6/2024
2.1.138 1,994 3/4/2024
2.1.137 111 3/4/2024
2.1.136 2,719 3/2/2024
2.1.135 1,231 3/2/2024
2.1.134 120 3/2/2024
2.1.133 1,566 3/2/2024
2.1.132 842 3/2/2024
2.1.131 1,819 2/29/2024
2.1.130 1,546 2/29/2024
2.1.129 1,810 2/26/2024
2.1.128 1,618 2/25/2024
2.1.127 115 2/25/2024
2.1.126 2,226 2/23/2024
2.1.125 2,082 2/22/2024
2.1.124 1,123 2/21/2024
2.1.123 1,444 2/21/2024
2.1.122 353 2/21/2024
2.1.121 362 2/21/2024
2.1.120 119 2/21/2024
2.1.119 1,368 2/21/2024
2.1.118 121 2/21/2024
2.1.117 118 2/21/2024
2.1.116 675 2/21/2024
2.1.115 1,031 2/21/2024
2.1.114 126 2/21/2024
2.1.113 121 2/21/2024
2.1.112 121 2/21/2024
2.1.111 830 2/21/2024
2.1.110 123 2/21/2024
2.1.109 2,678 2/20/2024
2.1.108 114 2/20/2024
2.1.107 2,658 2/19/2024
2.1.106 309 2/19/2024
2.1.104 2,902 2/17/2024
2.1.103 1,458 2/16/2024
2.1.102 108 2/16/2024
2.1.101 765 2/16/2024
2.1.100 1,218 2/16/2024
2.1.99 118 2/16/2024
2.1.98 112 2/16/2024
2.1.97 745 2/16/2024
2.1.96 117 2/16/2024
2.1.95 109 2/16/2024
2.1.94 1,469 2/16/2024
2.1.93 117 2/16/2024
2.1.92 2,146 2/13/2024
2.1.91 2,147 2/13/2024
2.1.90 829 2/13/2024
2.1.89 112 2/13/2024
2.1.88 699 2/13/2024
2.1.87 2,126 2/11/2024
2.1.86 828 2/11/2024
2.1.85 133 2/11/2024
2.1.84 1,551 2/11/2024
2.1.83 125 2/11/2024
2.1.82 1,147 2/11/2024
2.1.81 127 2/11/2024
2.1.80 120 2/11/2024
2.1.79 129 2/11/2024
2.1.78 124 2/11/2024
2.1.76 2,470 2/9/2024
2.1.75 124 2/9/2024
2.1.74 1,514 2/9/2024
2.1.73 134 2/9/2024
2.1.72 995 2/8/2024
2.1.71 130 2/8/2024
2.1.70 123 2/8/2024
2.1.69 495 2/8/2024
2.1.68 1,158 2/8/2024
2.1.67 127 2/8/2024
2.1.66 121 2/8/2024
2.1.65 1,153 2/8/2024
2.1.64 117 2/8/2024
2.1.63 820 2/8/2024
2.1.62 2,141 2/7/2024
2.1.61 1,109 2/6/2024
2.1.60 129 2/6/2024
2.1.59 1,424 2/6/2024
2.1.58 130 2/6/2024
2.1.57 908 2/6/2024
2.1.54 122 2/5/2024
2.1.53 122 2/5/2024
2.1.52 2,901 2/4/2024
2.1.51 1,319 2/2/2024
2.1.49 111 2/1/2024
2.1.48 1,717 1/31/2024
2.1.47 1,386 1/29/2024
2.1.46 1,398 1/29/2024
2.1.45 652 1/29/2024
2.1.44 881 1/28/2024
2.1.43 112 1/28/2024
2.1.42 904 1/28/2024
2.1.41 95 1/28/2024
2.1.40 113 1/28/2024
2.1.39 754 1/28/2024
2.1.38 959 1/28/2024
2.1.37 720 1/28/2024
2.1.36 99 1/28/2024
2.1.35 107 1/28/2024
2.1.34 108 1/28/2024
2.1.33 953 1/27/2024
2.1.31 340 1/27/2024
2.1.30 1,074 1/27/2024
2.1.29 994 1/27/2024
2.1.27 546 1/27/2024
2.1.26 1,045 1/27/2024
2.1.25 754 1/26/2024
2.1.24 109 1/26/2024
2.1.23 113 1/26/2024
2.1.22 104 1/26/2024
2.1.21 703 1/26/2024
2.1.20 684 1/26/2024
2.1.19 748 1/26/2024
2.1.18 740 1/26/2024
2.1.17 833 1/26/2024
2.1.16 817 1/26/2024
2.1.15 337 1/25/2024
2.1.14 904 1/25/2024
2.1.13 886 1/25/2024
2.1.12 109 1/25/2024
2.1.11 805 1/25/2024
2.1.10 777 1/25/2024
2.1.9 829 1/25/2024
2.1.7 5,239 1/15/2024
2.1.6 1,202 1/14/2024
2.1.5 1,475 1/14/2024
2.1.4 1,411 1/13/2024
2.1.3 1,409 1/5/2024
2.1.2 150 1/2/2024
2.1.1 220 12/29/2023