Soenneker.Utils.SingletonDictionary 2.1.102

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.102                
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 2.1.102                
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.102" />                
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.102                
#r "nuget: Soenneker.Utils.SingletonDictionary, 2.1.102"                
#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.102

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

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
2.1.542 3,636 11/1/2024
2.1.541 412 11/1/2024
2.1.540 6,712 10/29/2024
2.1.539 691 10/29/2024
2.1.538 2,789 10/29/2024
2.1.537 586 10/29/2024
2.1.536 5,503 10/28/2024
2.1.535 1,800 10/28/2024
2.1.534 3,773 10/26/2024
2.1.533 662 10/26/2024
2.1.532 6,265 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,102 10/15/2024
2.1.523 1,557 10/15/2024
2.1.522 68 10/14/2024
2.1.521 5,076 10/12/2024
2.1.520 610 10/11/2024
2.1.519 71 10/11/2024
2.1.518 438 10/11/2024
2.1.517 2,878 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,095 10/3/2024
2.1.506 73 10/3/2024
2.1.505 1,068 10/3/2024
2.1.504 1,873 10/3/2024
2.1.503 1,361 10/3/2024
2.1.502 5,675 10/2/2024
2.1.501 71 10/2/2024
2.1.500 1,774 10/2/2024
2.1.499 965 10/2/2024
2.1.498 4,130 10/1/2024
2.1.497 661 10/1/2024
2.1.496 75 10/1/2024
2.1.495 2,579 10/1/2024
2.1.494 70 10/1/2024
2.1.493 113 10/1/2024
2.1.492 5,273 9/29/2024
2.1.491 1,341 9/29/2024
2.1.490 72 9/29/2024
2.1.489 1,182 9/29/2024
2.1.488 72 9/29/2024
2.1.487 2,477 9/29/2024
2.1.486 4,793 9/27/2024
2.1.485 744 9/27/2024
2.1.484 3,086 9/27/2024
2.1.483 80 9/27/2024
2.1.482 409 9/27/2024
2.1.481 2,125 9/27/2024
2.1.480 3,112 9/26/2024
2.1.479 3,428 9/26/2024
2.1.478 2,313 9/26/2024
2.1.477 2,122 9/26/2024
2.1.476 3,734 9/26/2024
2.1.475 75 9/26/2024
2.1.474 5,480 9/23/2024
2.1.473 1,265 9/23/2024
2.1.472 910 9/23/2024
2.1.471 1,096 9/23/2024
2.1.470 65 9/23/2024
2.1.469 1,512 9/23/2024
2.1.468 69 9/23/2024
2.1.467 4,612 9/23/2024
2.1.466 76 9/23/2024
2.1.465 681 9/23/2024
2.1.464 85 9/23/2024
2.1.463 74 9/23/2024
2.1.462 844 9/23/2024
2.1.461 8,964 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 502 9/17/2024
2.1.452 167 9/17/2024
2.1.451 2,612 9/17/2024
2.1.450 7,398 9/16/2024
2.1.449 687 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,015 9/10/2024
2.1.438 99 9/10/2024
2.1.437 1,121 9/10/2024
2.1.436 91 9/10/2024
2.1.434 2,879 9/10/2024
2.1.433 571 9/9/2024
2.1.432 1,968 9/9/2024
2.1.430 1,512 9/9/2024
2.1.428 111 9/9/2024
2.1.427 427 9/9/2024
2.1.426 13,192 9/7/2024
2.1.425 108 9/7/2024
2.1.424 4,940 9/6/2024
2.1.423 338 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,993 9/5/2024
2.1.412 171 9/5/2024
2.1.411 95 9/5/2024
2.1.410 2,207 9/4/2024
2.1.409 7,929 9/3/2024
2.1.408 84 9/3/2024
2.1.407 77 9/3/2024
2.1.406 3,968 9/3/2024
2.1.405 128 9/3/2024
2.1.404 2,443 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,890 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 122 8/20/2024
2.1.394 110 8/20/2024
2.1.393 445 8/20/2024
2.1.392 2,930 8/20/2024
2.1.391 391 8/20/2024
2.1.390 96 8/20/2024
2.1.389 2,616 8/20/2024
2.1.388 99 8/20/2024
2.1.387 1,177 8/20/2024
2.1.386 2,856 8/19/2024
2.1.385 4,719 8/15/2024
2.1.384 2,078 8/15/2024
2.1.383 4,762 8/14/2024
2.1.382 133 8/13/2024
2.1.381 5,588 8/7/2024
2.1.380 254 8/6/2024
2.1.379 2,649 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,751 7/25/2024
2.1.372 76 7/25/2024
2.1.371 697 7/25/2024
2.1.370 283 7/25/2024
2.1.369 333 7/25/2024
2.1.368 161 7/25/2024
2.1.367 361 7/24/2024
2.1.366 118 7/24/2024
2.1.365 180 7/24/2024
2.1.364 290 7/24/2024
2.1.363 7,715 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 2,972 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,068 5/22/2024
2.1.275 3,325 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,685 5/3/2024
2.1.266 1,107 4/30/2024
2.1.265 1,710 4/29/2024
2.1.264 1,854 4/29/2024
2.1.263 2,590 4/28/2024
2.1.262 1,432 4/28/2024
2.1.261 1,055 4/28/2024
2.1.260 1,712 4/28/2024
2.1.259 859 4/28/2024
2.1.258 89 4/28/2024
2.1.257 4,091 4/27/2024
2.1.256 104 4/27/2024
2.1.255 4,325 4/19/2024
2.1.254 4,003 4/18/2024
2.1.253 3,375 4/12/2024
2.1.252 1,104 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 956 4/12/2024
2.1.246 279 4/12/2024
2.1.245 1,610 4/11/2024
2.1.244 3,646 4/10/2024
2.1.243 1,085 4/9/2024
2.1.242 3,097 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,254 3/20/2024
2.1.236 2,106 3/19/2024
2.1.235 494 3/19/2024
2.1.234 2,270 3/18/2024
2.1.233 1,360 3/18/2024
2.1.232 1,346 3/15/2024
2.1.231 2,286 3/13/2024
2.1.230 1,058 3/13/2024
2.1.229 626 3/13/2024
2.1.228 722 3/13/2024
2.1.227 112 3/13/2024
2.1.226 513 3/13/2024
2.1.225 117 3/13/2024
2.1.224 122 3/13/2024
2.1.223 1,618 3/12/2024
2.1.222 2,779 3/11/2024
2.1.221 2,398 3/11/2024
2.1.220 1,560 3/10/2024
2.1.219 1,832 3/8/2024
2.1.218 1,021 3/8/2024
2.1.217 1,516 3/8/2024
2.1.216 2,042 3/6/2024
2.1.215 1,960 3/4/2024
2.1.214 1,361 3/4/2024
2.1.213 2,504 3/2/2024
2.1.212 1,168 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,365 2/29/2024
2.1.207 610 2/29/2024
2.1.206 311 2/29/2024
2.1.205 3,249 2/26/2024
2.1.204 1,455 2/25/2024
2.1.203 2,547 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,155 2/21/2024
2.1.198 264 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 111 2/21/2024
2.1.192 110 2/21/2024
2.1.191 561 2/21/2024
2.1.190 87 2/21/2024
2.1.189 2,576 2/20/2024
2.1.188 677 2/20/2024
2.1.187 603 2/20/2024
2.1.186 719 2/20/2024
2.1.185 2,048 2/19/2024
2.1.184 1,832 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 93 2/16/2024
2.1.179 596 2/16/2024
2.1.178 100 2/16/2024
2.1.177 103 2/16/2024
2.1.176 514 2/16/2024
2.1.175 90 2/16/2024
2.1.174 3,238 2/13/2024
2.1.173 1,331 2/13/2024
2.1.172 1,052 2/13/2024
2.1.171 427 2/13/2024
2.1.170 597 2/13/2024
2.1.169 1,884 2/12/2024
2.1.168 471 2/11/2024
2.1.167 1,476 2/11/2024
2.1.166 810 2/11/2024
2.1.165 2,676 2/10/2024
2.1.164 516 2/9/2024
2.1.163 114 2/9/2024
2.1.162 1,513 2/9/2024
2.1.161 1,620 2/9/2024
2.1.160 357 2/8/2024
2.1.159 1,146 2/8/2024
2.1.158 806 2/8/2024
2.1.157 1,405 2/8/2024
2.1.156 100 2/8/2024
2.1.155 1,814 2/7/2024
2.1.154 419 2/7/2024
2.1.153 575 2/7/2024
2.1.152 1,227 2/7/2024
2.1.151 351 2/6/2024
2.1.150 115 2/6/2024
2.1.149 107 2/6/2024
2.1.148 2,707 2/5/2024
2.1.147 1,482 2/4/2024
2.1.146 2,033 2/2/2024
2.1.145 1,867 1/31/2024
2.1.144 2,098 1/29/2024
2.1.143 1,317 1/29/2024
2.1.142 324 1/29/2024
2.1.141 1,439 1/28/2024
2.1.140 426 1/28/2024
2.1.139 283 1/28/2024
2.1.138 513 1/28/2024
2.1.137 1,876 1/28/2024
2.1.136 901 1/28/2024
2.1.135 265 1/27/2024
2.1.134 888 1/27/2024
2.1.133 1,131 1/27/2024
2.1.132 1,144 1/27/2024
2.1.131 133 1/27/2024
2.1.130 674 1/27/2024
2.1.129 1,024 1/26/2024
2.1.128 198 1/26/2024
2.1.127 845 1/26/2024
2.1.126 1,095 1/26/2024
2.1.125 1,593 1/26/2024
2.1.124 853 1/25/2024
2.1.123 1,061 1/25/2024
2.1.122 427 1/25/2024
2.1.121 885 1/25/2024
2.1.120 494 1/25/2024
2.1.119 2,534 1/19/2024
2.1.118 2,174 1/15/2024
2.1.117 477 1/15/2024
2.1.116 1,183 1/15/2024
2.1.115 108 1/15/2024
2.1.114 538 1/15/2024
2.1.113 1,335 1/15/2024
2.1.112 2,503 1/14/2024
2.1.111 1,573 1/13/2024
2.1.110 1,792 1/12/2024
2.1.109 2,008 1/11/2024
2.1.108 2,592 1/7/2024
2.1.107 2,055 1/5/2024
2.1.106 463 1/5/2024
2.1.105 119 1/5/2024
2.1.104 125 1/5/2024
2.1.103 1,448 1/5/2024
2.1.102 125 1/5/2024
2.1.101 2,702 1/1/2024
2.1.100 2,182 12/28/2023
2.1.99 716 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 693 12/27/2023
2.1.94 123 12/27/2023
2.1.93 448 12/27/2023
2.1.92 116 12/27/2023
2.1.91 119 12/27/2023
2.1.90 2,180 12/25/2023
2.1.89 333 12/25/2023
2.1.88 752 12/25/2023
2.1.87 120 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,043 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 112 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,369 12/19/2023
2.1.72 195 12/19/2023
2.1.71 3,008 12/11/2023
2.1.70 701 12/10/2023
2.1.69 101 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 244 12/9/2023
2.1.61 181 12/9/2023
2.1.60 113 12/9/2023
2.1.59 1,050 12/9/2023
2.1.58 109 12/9/2023
2.1.57 1,478 12/6/2023
2.1.56 374 12/6/2023
2.1.55 227 12/6/2023
2.1.54 255 12/6/2023
2.1.53 900 12/5/2023
2.1.52 364 12/5/2023
2.1.51 328 12/5/2023
2.1.50 367 12/5/2023
2.1.49 115 12/5/2023
2.1.48 325 12/5/2023
2.1.47 263 12/5/2023
2.1.46 115 12/4/2023
2.1.45 118 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 195 11/26/2023
2.1.37 610 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 379 11/23/2023
2.1.32 123 11/23/2023
2.1.31 1,057 11/20/2023
2.1.30 1,022 11/20/2023
2.1.29 769 11/19/2023
2.1.28 241 11/19/2023
2.1.27 439 11/19/2023
2.1.26 477 11/19/2023
2.1.25 474 11/19/2023
2.1.24 105 11/19/2023
2.1.23 205 11/18/2023
2.1.22 958 11/18/2023
2.1.21 357 11/18/2023
2.1.20 516 11/18/2023
2.1.19 115 11/18/2023
2.1.18 289 11/18/2023
2.1.17 113 11/18/2023
2.1.16 574 11/17/2023
2.1.15 498 11/17/2023
2.1.14 110 11/17/2023
2.1.13 404 11/17/2023
2.1.12 281 11/17/2023
2.1.11 472 11/17/2023
2.1.10 111 11/17/2023
2.1.9 494 11/17/2023
2.1.8 108 11/17/2023
2.1.7 128 11/17/2023
2.1.6 305 11/17/2023
2.1.5 356 11/16/2023
2.0.101 2,046 11/15/2023
2.0.100 106 11/15/2023
2.0.99 112 11/15/2023
2.0.4 110 11/16/2023
2.0.3 120 11/16/2023
2.0.2 109 11/16/2023
2.0.1 107 11/16/2023
1.0.98 594 11/14/2023
1.0.97 731 11/13/2023
1.0.96 102 11/13/2023
1.0.95 553 11/10/2023
1.0.94 104 11/10/2023
1.0.93 900 11/9/2023
1.0.92 111 11/9/2023
1.0.91 995 11/7/2023
1.0.90 103 11/7/2023
1.0.89 488 11/6/2023
1.0.88 111 11/6/2023
1.0.87 579 11/3/2023
1.0.86 117 11/3/2023
1.0.85 865 11/2/2023
1.0.84 108 11/2/2023
1.0.83 584 11/1/2023
1.0.82 1,418 10/26/2023
1.0.81 1,276 10/19/2023
1.0.80 123 10/19/2023
1.0.79 760 10/18/2023
1.0.78 142 10/18/2023
1.0.77 710 10/17/2023
1.0.76 131 10/17/2023
1.0.75 620 10/16/2023
1.0.74 134 10/16/2023
1.0.73 681 10/13/2023
1.0.72 319 10/12/2023
1.0.71 1,706 9/20/2023
1.0.70 644 9/19/2023
1.0.69 657 9/18/2023
1.0.68 123 9/18/2023
1.0.67 871 9/14/2023
1.0.66 1,476 8/31/2023
1.0.65 131 8/31/2023
1.0.64 770 8/30/2023
1.0.63 139 8/30/2023
1.0.62 141 8/30/2023
1.0.61 818 8/28/2023
1.0.60 664 8/25/2023
1.0.59 131 8/25/2023
1.0.58 463 8/24/2023
1.0.57 1,421 8/21/2023
1.0.56 774 8/18/2023
1.0.55 725 8/17/2023
1.0.54 134 8/17/2023
1.0.53 1,878 8/10/2023
1.0.52 545 8/9/2023
1.0.51 647 8/8/2023
1.0.50 624 8/7/2023
1.0.49 158 8/7/2023
1.0.48 2,420 7/13/2023
1.0.47 852 7/11/2023
1.0.46 702 7/10/2023
1.0.45 664 7/7/2023
1.0.44 153 7/7/2023
1.0.43 2,073 6/30/2023
1.0.42 1,033 6/29/2023
1.0.41 577 6/28/2023
1.0.40 1,483 6/26/2023
1.0.39 750 6/23/2023
1.0.38 1,059 6/21/2023
1.0.37 1,386 6/15/2023
1.0.36 452 6/14/2023
1.0.35 1,722 6/9/2023
1.0.34 791 6/8/2023
1.0.33 1,556 6/7/2023
1.0.32 151 6/7/2023
1.0.31 1,181 6/6/2023
1.0.30 1,116 6/5/2023
1.0.29 1,315 6/2/2023
1.0.28 135 6/2/2023
1.0.27 1,206 6/1/2023
1.0.26 580 5/31/2023
1.0.25 464 5/31/2023
1.0.24 146 5/31/2023
1.0.23 1,433 5/30/2023
1.0.22 1,500 5/26/2023
1.0.21 654 5/25/2023
1.0.20 133 5/25/2023
1.0.19 811 5/24/2023
1.0.18 141 5/24/2023
1.0.17 427 5/23/2023
1.0.13 1,447 5/22/2023
1.0.12 1,168 5/18/2023
1.0.11 573 5/17/2023
1.0.10 1,530 5/1/2023
1.0.9 1,006 4/25/2023
1.0.8 456 4/24/2023
1.0.7 980 4/21/2023
1.0.6 1,939 4/13/2023
1.0.5 571 4/12/2023
1.0.4 996 4/8/2023
1.0.3 171 4/8/2023
1.0.2 569 4/8/2023
1.0.1 174 4/8/2023