Soenneker.Utils.SingletonDictionary 2.1.471

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.SingletonDictionary --version 2.1.471                
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 2.1.471                
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.SingletonDictionary" Version="2.1.471" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Utils.SingletonDictionary --version 2.1.471                
#r "nuget: Soenneker.Utils.SingletonDictionary, 2.1.471"                
#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.SingletonDictionary as a Cake Addin
#addin nuget:?package=Soenneker.Utils.SingletonDictionary&version=2.1.471

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

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.SingletonDictionary

An externally initializing singleton dictionary that uses double-check asynchronous locking, with optional async and sync disposal

Installation

dotnet add package Soenneker.Utils.SingletonDictionary

Example

Below is a long-living HttpClient implementation using SingletonDictionary with different settings. It guarantees only one instance of a particular key is instantiated due to the locking.

public class HttpRequester : IDisposable, IAsyncDisposable
{
    private readonly SingletonDictionary<HttpClient> _clients;

    public HttpRequester()
    {
        // This func will lazily execute once it's retrieved the first time.
        // Other threads calling this at the same moment will asynchronously wait,
        // and then utilize the HttpClient that was created from the first caller.
        _clients = new SingletonDictionary<HttpClient>((args) =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

            HttpClient client = new HttpClient(socketsHandler);
            client.Timeout = TimeSpan.FromSeconds((int)args[0]);

            return client;
        });
    }

    public async ValueTask Get()
    {
        // retrieve the singleton async, thus not blocking the calling thread
        await (await _client.Get("100", 100)).GetAsync("https://google.com");
    }

    // Disposal is not necessary for AsyncSingleton unless the type used is IDisposable/IAsyncDisposable
    public ValueTask DisposeAsync()
    {
        GC.SuppressFinalize(false);

        return _client.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(false);
        
        _client.Dispose();
    }
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

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

Package Downloads
Soenneker.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Soenneker.Cosmos.Database

A utility library for storing Azure Cosmos databases

Soenneker.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

Soenneker.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.576 592 11/14/2024
3.0.575 50 11/14/2024
3.0.574 177 11/14/2024
3.0.573 985 11/14/2024
3.0.572 273 11/14/2024
3.0.571 45 11/14/2024
3.0.570 33 11/14/2024
3.0.569 1,845 11/14/2024
3.0.568 38 11/14/2024
3.0.567 33 11/14/2024
3.0.566 1,456 11/14/2024
3.0.565 45 11/14/2024
3.0.564 52 11/14/2024
3.0.563 55 11/14/2024
2.1.562 3,165 11/13/2024
2.1.561 784 11/13/2024
2.1.560 1,715 11/13/2024
2.1.559 67 11/13/2024
2.1.558 788 11/12/2024
2.1.557 259 11/12/2024
2.1.556 6,551 11/9/2024
2.1.555 320 11/9/2024
2.1.554 62 11/9/2024
2.1.553 1,685 11/9/2024
2.1.552 66 11/9/2024
2.1.551 909 11/8/2024
2.1.550 69 11/8/2024
2.1.549 67 11/8/2024
2.1.548 66 11/8/2024
2.1.547 380 11/8/2024
2.1.546 1,841 11/8/2024
2.1.545 62 11/8/2024
2.1.544 5,406 11/8/2024
2.1.543 60 11/8/2024
2.1.542 11,493 11/1/2024
2.1.541 415 11/1/2024
2.1.540 6,713 10/29/2024
2.1.539 692 10/29/2024
2.1.538 2,793 10/29/2024
2.1.537 588 10/29/2024
2.1.536 5,505 10/28/2024
2.1.535 1,802 10/28/2024
2.1.534 3,921 10/26/2024
2.1.533 663 10/26/2024
2.1.532 6,511 10/22/2024
2.1.531 218 10/22/2024
2.1.530 514 10/22/2024
2.1.529 841 10/22/2024
2.1.528 52 10/22/2024
2.1.527 446 10/22/2024
2.1.526 6,437 10/18/2024
2.1.525 1,051 10/17/2024
2.1.524 4,105 10/15/2024
2.1.523 1,558 10/15/2024
2.1.522 69 10/14/2024
2.1.521 5,077 10/12/2024
2.1.520 611 10/11/2024
2.1.519 72 10/11/2024
2.1.518 439 10/11/2024
2.1.517 2,879 10/11/2024
2.1.516 6,280 10/9/2024
2.1.515 350 10/9/2024
2.1.514 66 10/9/2024
2.1.513 1,924 10/8/2024
2.1.512 107 10/8/2024
2.1.511 2,184 10/8/2024
2.1.510 110 10/8/2024
2.1.509 65 10/8/2024
2.1.508 3,893 10/8/2024
2.1.507 6,096 10/3/2024
2.1.506 74 10/3/2024
2.1.505 1,068 10/3/2024
2.1.504 1,873 10/3/2024
2.1.503 1,362 10/3/2024
2.1.502 5,676 10/2/2024
2.1.501 72 10/2/2024
2.1.500 1,775 10/2/2024
2.1.499 966 10/2/2024
2.1.498 4,130 10/1/2024
2.1.497 662 10/1/2024
2.1.496 76 10/1/2024
2.1.495 2,580 10/1/2024
2.1.494 71 10/1/2024
2.1.493 114 10/1/2024
2.1.492 5,274 9/29/2024
2.1.491 1,342 9/29/2024
2.1.490 73 9/29/2024
2.1.489 1,183 9/29/2024
2.1.488 73 9/29/2024
2.1.487 2,477 9/29/2024
2.1.486 4,820 9/27/2024
2.1.485 744 9/27/2024
2.1.484 3,087 9/27/2024
2.1.483 81 9/27/2024
2.1.482 415 9/27/2024
2.1.481 2,126 9/27/2024
2.1.480 3,113 9/26/2024
2.1.479 3,429 9/26/2024
2.1.478 2,314 9/26/2024
2.1.477 2,124 9/26/2024
2.1.476 3,735 9/26/2024
2.1.475 76 9/26/2024
2.1.474 5,482 9/23/2024
2.1.473 1,265 9/23/2024
2.1.472 910 9/23/2024
2.1.471 1,097 9/23/2024
2.1.470 67 9/23/2024
2.1.469 1,513 9/23/2024
2.1.468 70 9/23/2024
2.1.467 4,613 9/23/2024
2.1.466 77 9/23/2024
2.1.465 682 9/23/2024
2.1.464 86 9/23/2024
2.1.463 75 9/23/2024
2.1.462 845 9/23/2024
2.1.461 8,974 9/18/2024
2.1.460 223 9/17/2024
2.1.459 1,171 9/17/2024
2.1.458 1,673 9/17/2024
2.1.457 78 9/17/2024
2.1.456 1,766 9/17/2024
2.1.455 429 9/17/2024
2.1.454 3,217 9/17/2024
2.1.453 507 9/17/2024
2.1.452 167 9/17/2024
2.1.451 2,612 9/17/2024
2.1.450 7,399 9/16/2024
2.1.449 688 9/16/2024
2.1.448 4,910 9/12/2024
2.1.447 2,880 9/12/2024
2.1.446 1,277 9/11/2024
2.1.445 1,502 9/11/2024
2.1.443 3,686 9/11/2024
2.1.442 960 9/11/2024
2.1.441 930 9/11/2024
2.1.440 2,262 9/11/2024
2.1.439 8,021 9/10/2024
2.1.438 100 9/10/2024
2.1.437 1,122 9/10/2024
2.1.436 92 9/10/2024
2.1.434 2,880 9/10/2024
2.1.433 572 9/9/2024
2.1.432 1,969 9/9/2024
2.1.430 1,513 9/9/2024
2.1.428 112 9/9/2024
2.1.427 428 9/9/2024
2.1.426 13,192 9/7/2024
2.1.425 108 9/7/2024
2.1.424 4,946 9/6/2024
2.1.423 339 9/6/2024
2.1.422 2,167 9/6/2024
2.1.421 92 9/5/2024
2.1.420 103 9/5/2024
2.1.419 2,353 9/5/2024
2.1.418 1,112 9/5/2024
2.1.417 92 9/5/2024
2.1.416 1,115 9/5/2024
2.1.415 404 9/5/2024
2.1.414 92 9/5/2024
2.1.413 4,994 9/5/2024
2.1.412 172 9/5/2024
2.1.411 96 9/5/2024
2.1.410 2,208 9/4/2024
2.1.409 7,930 9/3/2024
2.1.408 85 9/3/2024
2.1.407 77 9/3/2024
2.1.406 3,968 9/3/2024
2.1.405 129 9/3/2024
2.1.404 2,444 9/3/2024
2.1.403 5,228 8/29/2024
2.1.402 2,500 8/29/2024
2.1.401 2,840 8/26/2024
2.1.400 85 8/26/2024
2.1.399 4,893 8/21/2024
2.1.398 588 8/21/2024
2.1.397 109 8/21/2024
2.1.396 2,522 8/21/2024
2.1.395 123 8/20/2024
2.1.394 111 8/20/2024
2.1.393 445 8/20/2024
2.1.392 2,931 8/20/2024
2.1.391 392 8/20/2024
2.1.390 97 8/20/2024
2.1.389 2,617 8/20/2024
2.1.388 99 8/20/2024
2.1.387 1,178 8/20/2024
2.1.386 2,857 8/19/2024
2.1.385 4,720 8/15/2024
2.1.384 2,079 8/15/2024
2.1.383 4,763 8/14/2024
2.1.382 134 8/13/2024
2.1.381 5,606 8/7/2024
2.1.380 254 8/6/2024
2.1.379 2,650 8/6/2024
2.1.378 4,887 8/1/2024
2.1.377 305 8/1/2024
2.1.376 78 8/1/2024
2.1.374 1,111 8/1/2024
2.1.373 5,752 7/25/2024
2.1.372 76 7/25/2024
2.1.371 698 7/25/2024
2.1.370 284 7/25/2024
2.1.369 334 7/25/2024
2.1.368 162 7/25/2024
2.1.367 362 7/24/2024
2.1.366 119 7/24/2024
2.1.365 181 7/24/2024
2.1.364 291 7/24/2024
2.1.363 7,740 7/20/2024
2.1.362 1,418 7/20/2024
2.1.361 4,934 7/14/2024
2.1.360 1,505 7/14/2024
2.1.359 83 7/14/2024
2.1.358 1,471 7/14/2024
2.1.357 4,259 7/10/2024
2.1.355 765 7/10/2024
2.1.354 1,157 7/10/2024
2.1.353 100 7/10/2024
2.1.352 1,878 7/10/2024
2.1.351 101 7/10/2024
2.1.350 79 7/10/2024
2.1.349 141 7/10/2024
2.1.348 84 7/10/2024
2.1.347 2,014 7/10/2024
2.1.346 100 7/10/2024
2.1.345 790 7/10/2024
2.1.344 88 7/10/2024
2.1.343 186 7/9/2024
2.1.342 78 7/9/2024
2.1.339 1,934 7/9/2024
2.1.338 465 7/9/2024
2.1.337 3,964 7/9/2024
2.1.336 1,048 7/9/2024
2.1.335 91 7/9/2024
2.1.334 2,540 7/9/2024
2.1.333 95 7/9/2024
2.1.332 3,260 7/9/2024
2.1.331 84 7/9/2024
2.1.330 2,471 7/9/2024
2.1.329 72 7/9/2024
2.1.328 1,039 7/9/2024
2.1.327 687 7/8/2024
2.1.326 937 7/8/2024
2.1.325 101 7/8/2024
2.1.324 94 7/8/2024
2.1.323 4,785 7/8/2024
2.1.322 1,586 7/8/2024
2.1.321 100 7/8/2024
2.1.320 2,242 7/7/2024
2.1.319 95 7/7/2024
2.1.318 106 7/7/2024
2.1.317 86 7/7/2024
2.1.316 1,099 7/7/2024
2.1.315 2,123 7/7/2024
2.1.314 1,817 7/7/2024
2.1.313 189 7/7/2024
2.1.312 3,326 7/5/2024
2.1.311 3,828 7/3/2024
2.1.310 2,980 7/3/2024
2.1.309 355 7/3/2024
2.1.308 3,848 7/2/2024
2.1.307 1,811 6/30/2024
2.1.306 2,201 6/28/2024
2.1.305 5,332 6/22/2024
2.1.304 4,817 6/15/2024
2.1.303 4,039 6/14/2024
2.1.302 5,806 6/1/2024
2.1.301 1,542 6/1/2024
2.1.300 559 6/1/2024
2.1.299 5,760 5/31/2024
2.1.298 3,649 5/29/2024
2.1.297 2,977 5/28/2024
2.1.296 2,397 5/27/2024
2.1.295 4,763 5/26/2024
2.1.294 1,982 5/26/2024
2.1.293 452 5/26/2024
2.1.292 2,466 5/25/2024
2.1.291 1,337 5/25/2024
2.1.290 105 5/25/2024
2.1.289 98 5/25/2024
2.1.288 649 5/25/2024
2.1.287 99 5/25/2024
2.1.286 374 5/25/2024
2.1.285 109 5/25/2024
2.1.284 99 5/25/2024
2.1.283 7,303 5/23/2024
2.1.282 502 5/23/2024
2.1.281 239 5/22/2024
2.1.280 3,577 5/22/2024
2.1.279 93 5/22/2024
2.1.278 105 5/22/2024
2.1.277 108 5/22/2024
2.1.276 2,078 5/22/2024
2.1.275 3,330 5/18/2024
2.1.274 1,854 5/18/2024
2.1.273 1,762 5/17/2024
2.1.272 88 5/17/2024
2.1.271 2,681 5/16/2024
2.1.270 402 5/15/2024
2.1.269 2,690 5/15/2024
2.1.268 4,389 5/12/2024
2.1.267 2,687 5/3/2024
2.1.266 1,108 4/30/2024
2.1.265 1,711 4/29/2024
2.1.264 1,855 4/29/2024
2.1.263 2,596 4/28/2024
2.1.262 1,433 4/28/2024
2.1.261 1,060 4/28/2024
2.1.260 1,713 4/28/2024
2.1.259 860 4/28/2024
2.1.258 90 4/28/2024
2.1.257 4,091 4/27/2024
2.1.256 105 4/27/2024
2.1.255 4,325 4/19/2024
2.1.254 4,004 4/18/2024
2.1.253 3,375 4/12/2024
2.1.252 1,107 4/12/2024
2.1.251 697 4/12/2024
2.1.250 828 4/12/2024
2.1.249 166 4/12/2024
2.1.248 86 4/12/2024
2.1.247 958 4/12/2024
2.1.246 279 4/12/2024
2.1.245 1,610 4/11/2024
2.1.244 3,647 4/10/2024
2.1.243 1,086 4/9/2024
2.1.242 3,098 4/2/2024
2.1.241 866 4/1/2024
2.1.240 2,029 3/29/2024
2.1.239 1,781 3/25/2024
2.1.238 267 3/25/2024
2.1.237 3,259 3/20/2024
2.1.236 2,106 3/19/2024
2.1.235 495 3/19/2024
2.1.234 2,270 3/18/2024
2.1.233 1,361 3/18/2024
2.1.232 1,346 3/15/2024
2.1.231 2,286 3/13/2024
2.1.230 1,059 3/13/2024
2.1.229 626 3/13/2024
2.1.228 723 3/13/2024
2.1.227 113 3/13/2024
2.1.226 514 3/13/2024
2.1.225 118 3/13/2024
2.1.224 123 3/13/2024
2.1.223 1,618 3/12/2024
2.1.222 2,780 3/11/2024
2.1.221 2,408 3/11/2024
2.1.220 1,561 3/10/2024
2.1.219 1,834 3/8/2024
2.1.218 1,022 3/8/2024
2.1.217 1,516 3/8/2024
2.1.216 2,043 3/6/2024
2.1.215 1,960 3/4/2024
2.1.214 1,362 3/4/2024
2.1.213 2,504 3/2/2024
2.1.212 1,169 3/2/2024
2.1.211 380 3/2/2024
2.1.210 324 3/2/2024
2.1.209 436 3/2/2024
2.1.208 3,366 2/29/2024
2.1.207 611 2/29/2024
2.1.206 312 2/29/2024
2.1.205 3,250 2/26/2024
2.1.204 1,456 2/25/2024
2.1.203 2,548 2/23/2024
2.1.202 1,852 2/22/2024
2.1.201 913 2/22/2024
2.1.200 392 2/21/2024
2.1.199 1,156 2/21/2024
2.1.198 265 2/21/2024
2.1.197 732 2/21/2024
2.1.196 104 2/21/2024
2.1.195 1,198 2/21/2024
2.1.194 379 2/21/2024
2.1.193 112 2/21/2024
2.1.192 111 2/21/2024
2.1.191 561 2/21/2024
2.1.190 87 2/21/2024
2.1.189 2,577 2/20/2024
2.1.188 677 2/20/2024
2.1.187 604 2/20/2024
2.1.186 719 2/20/2024
2.1.185 2,048 2/19/2024
2.1.184 1,833 2/17/2024
2.1.183 858 2/16/2024
2.1.182 818 2/16/2024
2.1.181 1,289 2/16/2024
2.1.180 94 2/16/2024
2.1.179 597 2/16/2024
2.1.178 101 2/16/2024
2.1.177 104 2/16/2024
2.1.176 514 2/16/2024
2.1.175 90 2/16/2024
2.1.174 3,241 2/13/2024
2.1.173 1,333 2/13/2024
2.1.172 1,054 2/13/2024
2.1.171 429 2/13/2024
2.1.170 599 2/13/2024
2.1.169 1,886 2/12/2024
2.1.168 476 2/11/2024
2.1.167 1,476 2/11/2024
2.1.166 811 2/11/2024
2.1.165 2,681 2/10/2024
2.1.164 517 2/9/2024
2.1.163 115 2/9/2024
2.1.162 1,515 2/9/2024
2.1.161 1,621 2/9/2024
2.1.160 357 2/8/2024
2.1.159 1,147 2/8/2024
2.1.158 807 2/8/2024
2.1.157 1,405 2/8/2024
2.1.156 100 2/8/2024
2.1.155 1,815 2/7/2024
2.1.154 419 2/7/2024
2.1.153 575 2/7/2024
2.1.152 1,229 2/7/2024
2.1.151 352 2/6/2024
2.1.150 115 2/6/2024
2.1.149 108 2/6/2024
2.1.148 2,710 2/5/2024
2.1.147 1,484 2/4/2024
2.1.146 2,035 2/2/2024
2.1.145 1,872 1/31/2024
2.1.144 2,099 1/29/2024
2.1.143 1,324 1/29/2024
2.1.142 325 1/29/2024
2.1.141 1,439 1/28/2024
2.1.140 428 1/28/2024
2.1.139 284 1/28/2024
2.1.138 513 1/28/2024
2.1.137 1,877 1/28/2024
2.1.136 901 1/28/2024
2.1.135 266 1/27/2024
2.1.134 890 1/27/2024
2.1.133 1,132 1/27/2024
2.1.132 1,144 1/27/2024
2.1.131 134 1/27/2024
2.1.130 674 1/27/2024
2.1.129 1,027 1/26/2024
2.1.128 199 1/26/2024
2.1.127 846 1/26/2024
2.1.126 1,095 1/26/2024
2.1.125 1,596 1/26/2024
2.1.124 855 1/25/2024
2.1.123 1,062 1/25/2024
2.1.122 428 1/25/2024
2.1.121 888 1/25/2024
2.1.120 497 1/25/2024
2.1.119 2,536 1/19/2024
2.1.118 2,175 1/15/2024
2.1.117 477 1/15/2024
2.1.116 1,185 1/15/2024
2.1.115 108 1/15/2024
2.1.114 539 1/15/2024
2.1.113 1,336 1/15/2024
2.1.112 2,509 1/14/2024
2.1.111 1,573 1/13/2024
2.1.110 1,793 1/12/2024
2.1.109 2,009 1/11/2024
2.1.108 2,592 1/7/2024
2.1.107 2,056 1/5/2024
2.1.106 464 1/5/2024
2.1.105 121 1/5/2024
2.1.104 126 1/5/2024
2.1.103 1,448 1/5/2024
2.1.102 126 1/5/2024
2.1.101 2,707 1/1/2024
2.1.100 2,183 12/28/2023
2.1.99 717 12/28/2023
2.1.98 477 12/28/2023
2.1.97 115 12/28/2023
2.1.96 113 12/28/2023
2.1.95 694 12/27/2023
2.1.94 123 12/27/2023
2.1.93 449 12/27/2023
2.1.92 119 12/27/2023
2.1.91 119 12/27/2023
2.1.90 2,180 12/25/2023
2.1.89 334 12/25/2023
2.1.88 753 12/25/2023
2.1.87 121 12/25/2023
2.1.86 600 12/25/2023
2.1.85 113 12/25/2023
2.1.84 546 12/25/2023
2.1.83 119 12/25/2023
2.1.82 1,612 12/24/2023
2.1.81 1,044 12/23/2023
2.1.80 836 12/23/2023
2.1.79 289 12/23/2023
2.1.78 524 12/23/2023
2.1.77 113 12/23/2023
2.1.76 102 12/23/2023
2.1.75 1,053 12/23/2023
2.1.74 104 12/23/2023
2.1.73 1,370 12/19/2023
2.1.72 195 12/19/2023
2.1.71 3,008 12/11/2023
2.1.70 702 12/10/2023
2.1.69 102 12/10/2023
2.1.68 464 12/10/2023
2.1.67 1,383 12/10/2023
2.1.66 353 12/9/2023
2.1.65 344 12/9/2023
2.1.64 275 12/9/2023
2.1.63 114 12/9/2023
2.1.62 245 12/9/2023
2.1.61 182 12/9/2023
2.1.60 114 12/9/2023
2.1.59 1,050 12/9/2023
2.1.58 109 12/9/2023
2.1.57 1,479 12/6/2023
2.1.56 375 12/6/2023
2.1.55 228 12/6/2023
2.1.54 255 12/6/2023
2.1.53 901 12/5/2023
2.1.52 364 12/5/2023
2.1.51 329 12/5/2023
2.1.50 368 12/5/2023
2.1.49 116 12/5/2023
2.1.48 326 12/5/2023
2.1.47 263 12/5/2023
2.1.46 116 12/4/2023
2.1.45 119 12/4/2023
2.1.44 313 12/4/2023
2.1.43 129 12/4/2023
2.1.42 982 12/4/2023
2.1.41 99 12/4/2023
2.1.40 1,148 11/27/2023
2.1.39 496 11/26/2023
2.1.38 196 11/26/2023
2.1.37 611 11/23/2023
2.1.36 667 11/23/2023
2.1.35 617 11/23/2023
2.1.34 117 11/23/2023
2.1.33 380 11/23/2023
2.1.32 124 11/23/2023
2.1.31 1,057 11/20/2023
2.1.30 1,022 11/20/2023
2.1.29 770 11/19/2023
2.1.28 242 11/19/2023
2.1.27 440 11/19/2023
2.1.26 478 11/19/2023
2.1.25 475 11/19/2023
2.1.24 106 11/19/2023
2.1.23 206 11/18/2023
2.1.22 959 11/18/2023
2.1.21 358 11/18/2023
2.1.20 517 11/18/2023
2.1.19 116 11/18/2023
2.1.18 289 11/18/2023
2.1.17 113 11/18/2023
2.1.16 575 11/17/2023
2.1.15 499 11/17/2023
2.1.14 111 11/17/2023
2.1.13 405 11/17/2023
2.1.12 282 11/17/2023
2.1.11 472 11/17/2023
2.1.10 112 11/17/2023
2.1.9 495 11/17/2023
2.1.8 109 11/17/2023
2.1.7 129 11/17/2023
2.1.6 306 11/17/2023
2.1.5 356 11/16/2023
2.0.101 2,047 11/15/2023
2.0.100 107 11/15/2023
2.0.99 113 11/15/2023
2.0.4 111 11/16/2023
2.0.3 121 11/16/2023
2.0.2 110 11/16/2023
2.0.1 108 11/16/2023
1.0.98 595 11/14/2023
1.0.97 734 11/13/2023
1.0.96 103 11/13/2023
1.0.95 556 11/10/2023
1.0.94 106 11/10/2023
1.0.93 906 11/9/2023
1.0.92 112 11/9/2023
1.0.91 1,003 11/7/2023
1.0.90 104 11/7/2023
1.0.89 489 11/6/2023
1.0.88 112 11/6/2023
1.0.87 580 11/3/2023
1.0.86 118 11/3/2023
1.0.85 866 11/2/2023
1.0.84 109 11/2/2023
1.0.83 585 11/1/2023
1.0.82 1,419 10/26/2023
1.0.81 1,277 10/19/2023
1.0.80 124 10/19/2023
1.0.79 761 10/18/2023
1.0.78 143 10/18/2023
1.0.77 711 10/17/2023
1.0.76 132 10/17/2023
1.0.75 621 10/16/2023
1.0.74 135 10/16/2023
1.0.73 682 10/13/2023
1.0.72 320 10/12/2023
1.0.71 1,707 9/20/2023
1.0.70 645 9/19/2023
1.0.69 658 9/18/2023
1.0.68 123 9/18/2023
1.0.67 872 9/14/2023
1.0.66 1,477 8/31/2023
1.0.65 132 8/31/2023
1.0.64 771 8/30/2023
1.0.63 139 8/30/2023
1.0.62 142 8/30/2023
1.0.61 819 8/28/2023
1.0.60 665 8/25/2023
1.0.59 132 8/25/2023
1.0.58 464 8/24/2023
1.0.57 1,422 8/21/2023
1.0.56 775 8/18/2023
1.0.55 726 8/17/2023
1.0.54 135 8/17/2023
1.0.53 1,879 8/10/2023
1.0.52 546 8/9/2023
1.0.51 648 8/8/2023
1.0.50 625 8/7/2023
1.0.49 159 8/7/2023
1.0.48 2,420 7/13/2023
1.0.47 853 7/11/2023
1.0.46 704 7/10/2023
1.0.45 665 7/7/2023
1.0.44 153 7/7/2023
1.0.43 2,074 6/30/2023
1.0.42 1,036 6/29/2023
1.0.41 578 6/28/2023
1.0.40 1,484 6/26/2023
1.0.39 750 6/23/2023
1.0.38 1,059 6/21/2023
1.0.37 1,387 6/15/2023
1.0.36 453 6/14/2023
1.0.35 1,723 6/9/2023
1.0.34 794 6/8/2023
1.0.33 1,564 6/7/2023
1.0.32 152 6/7/2023
1.0.31 1,182 6/6/2023
1.0.30 1,117 6/5/2023
1.0.29 1,318 6/2/2023
1.0.28 136 6/2/2023
1.0.27 1,206 6/1/2023
1.0.26 581 5/31/2023
1.0.25 465 5/31/2023
1.0.24 147 5/31/2023
1.0.23 1,436 5/30/2023
1.0.22 1,501 5/26/2023
1.0.21 655 5/25/2023
1.0.20 134 5/25/2023
1.0.19 812 5/24/2023
1.0.18 142 5/24/2023
1.0.17 428 5/23/2023
1.0.13 1,448 5/22/2023
1.0.12 1,169 5/18/2023
1.0.11 573 5/17/2023
1.0.10 1,531 5/1/2023
1.0.9 1,006 4/25/2023
1.0.8 457 4/24/2023
1.0.7 981 4/21/2023
1.0.6 1,940 4/13/2023
1.0.5 572 4/12/2023
1.0.4 998 4/8/2023
1.0.3 172 4/8/2023
1.0.2 570 4/8/2023
1.0.1 175 4/8/2023