Soenneker.Utils.SingletonDictionary 2.1.438

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

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

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 (6)

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.526 482 10/18/2024
2.1.525 428 10/17/2024
2.1.524 2,023 10/15/2024
2.1.523 1,276 10/15/2024
2.1.522 59 10/14/2024
2.1.521 4,561 10/12/2024
2.1.520 598 10/11/2024
2.1.519 63 10/11/2024
2.1.518 426 10/11/2024
2.1.517 2,865 10/11/2024
2.1.516 6,260 10/9/2024
2.1.515 342 10/9/2024
2.1.514 58 10/9/2024
2.1.513 1,916 10/8/2024
2.1.512 99 10/8/2024
2.1.511 2,176 10/8/2024
2.1.510 102 10/8/2024
2.1.509 57 10/8/2024
2.1.508 3,878 10/8/2024
2.1.507 6,074 10/3/2024
2.1.506 64 10/3/2024
2.1.505 1,055 10/3/2024
2.1.504 1,862 10/3/2024
2.1.503 1,351 10/3/2024
2.1.502 5,667 10/2/2024
2.1.501 63 10/2/2024
2.1.500 1,765 10/2/2024
2.1.499 956 10/2/2024
2.1.498 4,123 10/1/2024
2.1.497 653 10/1/2024
2.1.496 67 10/1/2024
2.1.495 2,571 10/1/2024
2.1.494 62 10/1/2024
2.1.493 105 10/1/2024
2.1.492 5,267 9/29/2024
2.1.491 1,335 9/29/2024
2.1.490 66 9/29/2024
2.1.489 1,176 9/29/2024
2.1.488 66 9/29/2024
2.1.487 2,471 9/29/2024
2.1.486 4,738 9/27/2024
2.1.485 738 9/27/2024
2.1.484 3,075 9/27/2024
2.1.483 73 9/27/2024
2.1.482 403 9/27/2024
2.1.481 2,119 9/27/2024
2.1.480 3,105 9/26/2024
2.1.479 3,422 9/26/2024
2.1.478 2,307 9/26/2024
2.1.477 2,116 9/26/2024
2.1.476 3,723 9/26/2024
2.1.475 69 9/26/2024
2.1.474 5,443 9/23/2024
2.1.473 1,259 9/23/2024
2.1.472 897 9/23/2024
2.1.471 1,090 9/23/2024
2.1.470 59 9/23/2024
2.1.469 1,505 9/23/2024
2.1.468 63 9/23/2024
2.1.467 4,606 9/23/2024
2.1.466 70 9/23/2024
2.1.465 675 9/23/2024
2.1.464 78 9/23/2024
2.1.463 68 9/23/2024
2.1.462 838 9/23/2024
2.1.461 8,827 9/18/2024
2.1.460 214 9/17/2024
2.1.459 1,161 9/17/2024
2.1.458 1,655 9/17/2024
2.1.457 68 9/17/2024
2.1.456 1,756 9/17/2024
2.1.455 420 9/17/2024
2.1.454 3,211 9/17/2024
2.1.453 496 9/17/2024
2.1.452 161 9/17/2024
2.1.451 2,606 9/17/2024
2.1.450 7,380 9/16/2024
2.1.449 676 9/16/2024
2.1.448 4,879 9/12/2024
2.1.447 2,864 9/12/2024
2.1.446 1,272 9/11/2024
2.1.445 1,497 9/11/2024
2.1.443 3,676 9/11/2024
2.1.442 954 9/11/2024
2.1.441 924 9/11/2024
2.1.440 2,256 9/11/2024
2.1.439 8,000 9/10/2024
2.1.438 93 9/10/2024
2.1.437 1,113 9/10/2024
2.1.436 85 9/10/2024
2.1.434 2,873 9/10/2024
2.1.433 565 9/9/2024
2.1.432 1,958 9/9/2024
2.1.430 1,502 9/9/2024
2.1.428 105 9/9/2024
2.1.427 421 9/9/2024
2.1.426 13,177 9/7/2024
2.1.425 99 9/7/2024
2.1.424 4,926 9/6/2024
2.1.423 332 9/6/2024
2.1.422 2,161 9/6/2024
2.1.421 86 9/5/2024
2.1.420 97 9/5/2024
2.1.419 2,342 9/5/2024
2.1.418 1,106 9/5/2024
2.1.417 86 9/5/2024
2.1.416 1,104 9/5/2024
2.1.415 398 9/5/2024
2.1.414 86 9/5/2024
2.1.413 4,987 9/5/2024
2.1.412 165 9/5/2024
2.1.411 89 9/5/2024
2.1.410 2,201 9/4/2024
2.1.409 7,917 9/3/2024
2.1.408 79 9/3/2024
2.1.407 72 9/3/2024
2.1.406 3,957 9/3/2024
2.1.405 123 9/3/2024
2.1.404 2,438 9/3/2024
2.1.403 5,226 8/29/2024
2.1.402 2,498 8/29/2024
2.1.401 2,837 8/26/2024
2.1.400 82 8/26/2024
2.1.399 4,888 8/21/2024
2.1.398 586 8/21/2024
2.1.397 107 8/21/2024
2.1.396 2,519 8/21/2024
2.1.395 120 8/20/2024
2.1.394 108 8/20/2024
2.1.393 443 8/20/2024
2.1.392 2,919 8/20/2024
2.1.391 389 8/20/2024
2.1.390 94 8/20/2024
2.1.389 2,600 8/20/2024
2.1.388 97 8/20/2024
2.1.387 1,170 8/20/2024
2.1.386 2,854 8/19/2024
2.1.385 4,717 8/15/2024
2.1.384 2,076 8/15/2024
2.1.383 4,759 8/14/2024
2.1.382 130 8/13/2024
2.1.381 5,576 8/7/2024
2.1.380 251 8/6/2024
2.1.379 2,646 8/6/2024
2.1.378 4,877 8/1/2024
2.1.377 304 8/1/2024
2.1.376 77 8/1/2024
2.1.374 1,108 8/1/2024
2.1.373 5,742 7/25/2024
2.1.372 72 7/25/2024
2.1.371 694 7/25/2024
2.1.370 280 7/25/2024
2.1.369 330 7/25/2024
2.1.368 158 7/25/2024
2.1.367 358 7/24/2024
2.1.366 115 7/24/2024
2.1.365 177 7/24/2024
2.1.364 287 7/24/2024
2.1.363 7,679 7/20/2024
2.1.362 1,415 7/20/2024
2.1.361 4,932 7/14/2024
2.1.360 1,503 7/14/2024
2.1.359 81 7/14/2024
2.1.358 1,469 7/14/2024
2.1.357 4,257 7/10/2024
2.1.355 763 7/10/2024
2.1.354 1,155 7/10/2024
2.1.353 98 7/10/2024
2.1.352 1,877 7/10/2024
2.1.351 100 7/10/2024
2.1.350 77 7/10/2024
2.1.349 139 7/10/2024
2.1.348 83 7/10/2024
2.1.347 2,012 7/10/2024
2.1.346 97 7/10/2024
2.1.345 789 7/10/2024
2.1.344 86 7/10/2024
2.1.343 184 7/9/2024
2.1.342 76 7/9/2024
2.1.339 1,932 7/9/2024
2.1.338 463 7/9/2024
2.1.337 3,962 7/9/2024
2.1.336 1,045 7/9/2024
2.1.335 88 7/9/2024
2.1.334 2,539 7/9/2024
2.1.333 94 7/9/2024
2.1.332 2,469 7/9/2024
2.1.331 83 7/9/2024
2.1.330 2,470 7/9/2024
2.1.329 71 7/9/2024
2.1.328 1,038 7/9/2024
2.1.327 686 7/8/2024
2.1.326 936 7/8/2024
2.1.325 100 7/8/2024
2.1.324 93 7/8/2024
2.1.323 4,775 7/8/2024
2.1.322 1,585 7/8/2024
2.1.321 99 7/8/2024
2.1.320 2,241 7/7/2024
2.1.319 94 7/7/2024
2.1.318 105 7/7/2024
2.1.317 84 7/7/2024
2.1.316 1,098 7/7/2024
2.1.315 2,122 7/7/2024
2.1.314 1,816 7/7/2024
2.1.313 188 7/7/2024
2.1.312 3,325 7/5/2024
2.1.311 3,822 7/3/2024
2.1.310 2,979 7/3/2024
2.1.309 354 7/3/2024
2.1.308 3,847 7/2/2024
2.1.307 1,810 6/30/2024
2.1.306 2,200 6/28/2024
2.1.305 5,319 6/22/2024
2.1.304 4,811 6/15/2024
2.1.303 4,038 6/14/2024
2.1.302 5,804 6/1/2024
2.1.301 1,541 6/1/2024
2.1.300 558 6/1/2024
2.1.299 5,755 5/31/2024
2.1.298 3,648 5/29/2024
2.1.297 2,972 5/28/2024
2.1.296 2,396 5/27/2024
2.1.295 4,762 5/26/2024
2.1.294 1,975 5/26/2024
2.1.293 445 5/26/2024
2.1.292 2,465 5/25/2024
2.1.291 1,323 5/25/2024
2.1.290 104 5/25/2024
2.1.289 97 5/25/2024
2.1.288 642 5/25/2024
2.1.287 98 5/25/2024
2.1.286 372 5/25/2024
2.1.285 108 5/25/2024
2.1.284 98 5/25/2024
2.1.283 7,302 5/23/2024
2.1.282 491 5/23/2024
2.1.281 233 5/22/2024
2.1.280 3,570 5/22/2024
2.1.279 92 5/22/2024
2.1.278 104 5/22/2024
2.1.277 107 5/22/2024
2.1.276 2,067 5/22/2024
2.1.275 3,324 5/18/2024
2.1.274 1,843 5/18/2024
2.1.273 1,761 5/17/2024
2.1.272 87 5/17/2024
2.1.271 2,669 5/16/2024
2.1.270 401 5/15/2024
2.1.269 2,689 5/15/2024
2.1.268 4,378 5/12/2024
2.1.267 2,679 5/3/2024
2.1.266 1,106 4/30/2024
2.1.265 1,709 4/29/2024
2.1.264 1,853 4/29/2024
2.1.263 2,584 4/28/2024
2.1.262 1,431 4/28/2024
2.1.261 1,054 4/28/2024
2.1.260 1,705 4/28/2024
2.1.259 852 4/28/2024
2.1.258 88 4/28/2024
2.1.257 4,090 4/27/2024
2.1.256 97 4/27/2024
2.1.255 4,324 4/19/2024
2.1.254 3,992 4/18/2024
2.1.253 3,364 4/12/2024
2.1.252 1,098 4/12/2024
2.1.251 685 4/12/2024
2.1.250 827 4/12/2024
2.1.249 155 4/12/2024
2.1.248 85 4/12/2024
2.1.247 955 4/12/2024
2.1.246 273 4/12/2024
2.1.245 1,604 4/11/2024
2.1.244 3,634 4/10/2024
2.1.243 1,081 4/9/2024
2.1.242 3,085 4/2/2024
2.1.241 865 4/1/2024
2.1.240 2,027 3/29/2024
2.1.239 1,778 3/25/2024
2.1.238 264 3/25/2024
2.1.237 3,243 3/20/2024
2.1.236 2,098 3/19/2024
2.1.235 488 3/19/2024
2.1.234 2,256 3/18/2024
2.1.233 1,357 3/18/2024
2.1.232 1,338 3/15/2024
2.1.231 2,275 3/13/2024
2.1.230 1,057 3/13/2024
2.1.229 620 3/13/2024
2.1.228 721 3/13/2024
2.1.227 105 3/13/2024
2.1.226 512 3/13/2024
2.1.225 116 3/13/2024
2.1.224 121 3/13/2024
2.1.223 1,607 3/12/2024
2.1.222 2,768 3/11/2024
2.1.221 2,392 3/11/2024
2.1.220 1,559 3/10/2024
2.1.219 1,831 3/8/2024
2.1.218 1,012 3/8/2024
2.1.217 1,506 3/8/2024
2.1.216 2,036 3/6/2024
2.1.215 1,946 3/4/2024
2.1.214 1,360 3/4/2024
2.1.213 2,494 3/2/2024
2.1.212 1,162 3/2/2024
2.1.211 374 3/2/2024
2.1.210 323 3/2/2024
2.1.209 435 3/2/2024
2.1.208 3,359 2/29/2024
2.1.207 609 2/29/2024
2.1.206 310 2/29/2024
2.1.205 3,242 2/26/2024
2.1.204 1,449 2/25/2024
2.1.203 2,546 2/23/2024
2.1.202 1,846 2/22/2024
2.1.201 908 2/22/2024
2.1.200 386 2/21/2024
2.1.199 1,149 2/21/2024
2.1.198 257 2/21/2024
2.1.197 722 2/21/2024
2.1.196 103 2/21/2024
2.1.195 1,191 2/21/2024
2.1.194 373 2/21/2024
2.1.193 110 2/21/2024
2.1.192 103 2/21/2024
2.1.191 560 2/21/2024
2.1.190 86 2/21/2024
2.1.189 2,551 2/20/2024
2.1.188 676 2/20/2024
2.1.187 602 2/20/2024
2.1.186 718 2/20/2024
2.1.185 2,037 2/19/2024
2.1.184 1,821 2/17/2024
2.1.183 852 2/16/2024
2.1.182 812 2/16/2024
2.1.181 1,282 2/16/2024
2.1.180 92 2/16/2024
2.1.179 590 2/16/2024
2.1.178 99 2/16/2024
2.1.177 102 2/16/2024
2.1.176 506 2/16/2024
2.1.175 89 2/16/2024
2.1.174 3,232 2/13/2024
2.1.173 1,325 2/13/2024
2.1.172 1,042 2/13/2024
2.1.171 426 2/13/2024
2.1.170 596 2/13/2024
2.1.169 1,879 2/12/2024
2.1.168 470 2/11/2024
2.1.167 1,469 2/11/2024
2.1.166 809 2/11/2024
2.1.165 2,675 2/10/2024
2.1.164 515 2/9/2024
2.1.163 113 2/9/2024
2.1.162 1,512 2/9/2024
2.1.161 1,615 2/9/2024
2.1.160 356 2/8/2024
2.1.159 1,145 2/8/2024
2.1.158 805 2/8/2024
2.1.157 1,399 2/8/2024
2.1.156 99 2/8/2024
2.1.155 1,798 2/7/2024
2.1.154 418 2/7/2024
2.1.153 572 2/7/2024
2.1.152 1,226 2/7/2024
2.1.151 346 2/6/2024
2.1.150 110 2/6/2024
2.1.149 102 2/6/2024
2.1.148 2,706 2/5/2024
2.1.147 1,479 2/4/2024
2.1.146 2,032 2/2/2024
2.1.145 1,862 1/31/2024
2.1.144 2,088 1/29/2024
2.1.143 1,316 1/29/2024
2.1.142 323 1/29/2024
2.1.141 1,438 1/28/2024
2.1.140 420 1/28/2024
2.1.139 279 1/28/2024
2.1.138 512 1/28/2024
2.1.137 1,873 1/28/2024
2.1.136 895 1/28/2024
2.1.135 260 1/27/2024
2.1.134 887 1/27/2024
2.1.133 1,130 1/27/2024
2.1.132 1,137 1/27/2024
2.1.131 132 1/27/2024
2.1.130 673 1/27/2024
2.1.129 1,023 1/26/2024
2.1.128 192 1/26/2024
2.1.127 843 1/26/2024
2.1.126 1,093 1/26/2024
2.1.125 1,580 1/26/2024
2.1.124 851 1/25/2024
2.1.123 1,059 1/25/2024
2.1.122 426 1/25/2024
2.1.121 884 1/25/2024
2.1.120 493 1/25/2024
2.1.119 2,529 1/19/2024
2.1.118 2,168 1/15/2024
2.1.117 472 1/15/2024
2.1.116 1,182 1/15/2024
2.1.115 107 1/15/2024
2.1.114 537 1/15/2024
2.1.113 1,329 1/15/2024
2.1.112 2,502 1/14/2024
2.1.111 1,572 1/13/2024
2.1.110 1,791 1/12/2024
2.1.109 2,007 1/11/2024
2.1.108 2,591 1/7/2024
2.1.107 2,054 1/5/2024
2.1.106 457 1/5/2024
2.1.105 118 1/5/2024
2.1.104 124 1/5/2024
2.1.103 1,442 1/5/2024
2.1.102 124 1/5/2024
2.1.101 2,701 1/1/2024
2.1.100 2,181 12/28/2023
2.1.99 715 12/28/2023
2.1.98 476 12/28/2023
2.1.97 114 12/28/2023
2.1.96 112 12/28/2023
2.1.95 692 12/27/2023
2.1.94 122 12/27/2023
2.1.93 447 12/27/2023
2.1.92 115 12/27/2023
2.1.91 118 12/27/2023
2.1.90 2,179 12/25/2023
2.1.89 332 12/25/2023
2.1.88 751 12/25/2023
2.1.87 119 12/25/2023
2.1.86 595 12/25/2023
2.1.85 112 12/25/2023
2.1.84 545 12/25/2023
2.1.83 118 12/25/2023
2.1.82 1,606 12/24/2023
2.1.81 1,041 12/23/2023
2.1.80 835 12/23/2023
2.1.79 288 12/23/2023
2.1.78 523 12/23/2023
2.1.77 111 12/23/2023
2.1.76 101 12/23/2023
2.1.75 1,052 12/23/2023
2.1.74 103 12/23/2023
2.1.73 1,362 12/19/2023
2.1.72 194 12/19/2023
2.1.71 3,003 12/11/2023
2.1.70 700 12/10/2023
2.1.69 100 12/10/2023
2.1.68 457 12/10/2023
2.1.67 1,382 12/10/2023
2.1.66 352 12/9/2023
2.1.65 343 12/9/2023
2.1.64 274 12/9/2023
2.1.63 107 12/9/2023
2.1.62 243 12/9/2023
2.1.61 180 12/9/2023
2.1.60 112 12/9/2023
2.1.59 1,049 12/9/2023
2.1.58 108 12/9/2023
2.1.57 1,472 12/6/2023
2.1.56 373 12/6/2023
2.1.55 226 12/6/2023
2.1.54 254 12/6/2023
2.1.53 897 12/5/2023
2.1.52 363 12/5/2023
2.1.51 327 12/5/2023
2.1.50 366 12/5/2023
2.1.49 114 12/5/2023
2.1.48 320 12/5/2023
2.1.47 262 12/5/2023
2.1.46 114 12/4/2023
2.1.45 117 12/4/2023
2.1.44 312 12/4/2023
2.1.43 128 12/4/2023
2.1.42 981 12/4/2023
2.1.41 98 12/4/2023
2.1.40 1,139 11/27/2023
2.1.39 490 11/26/2023
2.1.38 194 11/26/2023
2.1.37 603 11/23/2023
2.1.36 666 11/23/2023
2.1.35 615 11/23/2023
2.1.34 116 11/23/2023
2.1.33 378 11/23/2023
2.1.32 122 11/23/2023
2.1.31 1,056 11/20/2023
2.1.30 1,021 11/20/2023
2.1.29 760 11/19/2023
2.1.28 240 11/19/2023
2.1.27 438 11/19/2023
2.1.26 471 11/19/2023
2.1.25 473 11/19/2023
2.1.24 104 11/19/2023
2.1.23 199 11/18/2023
2.1.22 957 11/18/2023
2.1.21 356 11/18/2023
2.1.20 505 11/18/2023
2.1.19 114 11/18/2023
2.1.18 288 11/18/2023
2.1.17 112 11/18/2023
2.1.16 573 11/17/2023
2.1.15 497 11/17/2023
2.1.14 109 11/17/2023
2.1.13 398 11/17/2023
2.1.12 280 11/17/2023
2.1.11 466 11/17/2023
2.1.10 110 11/17/2023
2.1.9 493 11/17/2023
2.1.8 107 11/17/2023
2.1.7 127 11/17/2023
2.1.6 304 11/17/2023
2.1.5 355 11/16/2023
2.0.101 2,045 11/15/2023
2.0.100 105 11/15/2023
2.0.99 111 11/15/2023
2.0.4 109 11/16/2023
2.0.3 119 11/16/2023
2.0.2 108 11/16/2023
2.0.1 106 11/16/2023
1.0.98 593 11/14/2023
1.0.97 730 11/13/2023
1.0.96 101 11/13/2023
1.0.95 552 11/10/2023
1.0.94 103 11/10/2023
1.0.93 899 11/9/2023
1.0.92 110 11/9/2023
1.0.91 987 11/7/2023
1.0.90 102 11/7/2023
1.0.89 487 11/6/2023
1.0.88 110 11/6/2023
1.0.87 578 11/3/2023
1.0.86 116 11/3/2023
1.0.85 857 11/2/2023
1.0.84 107 11/2/2023
1.0.83 583 11/1/2023
1.0.82 1,412 10/26/2023
1.0.81 1,268 10/19/2023
1.0.80 122 10/19/2023
1.0.79 746 10/18/2023
1.0.78 141 10/18/2023
1.0.77 705 10/17/2023
1.0.76 130 10/17/2023
1.0.75 619 10/16/2023
1.0.74 133 10/16/2023
1.0.73 674 10/13/2023
1.0.72 318 10/12/2023
1.0.71 1,705 9/20/2023
1.0.70 643 9/19/2023
1.0.69 656 9/18/2023
1.0.68 122 9/18/2023
1.0.67 870 9/14/2023
1.0.66 1,475 8/31/2023
1.0.65 130 8/31/2023
1.0.64 769 8/30/2023
1.0.63 138 8/30/2023
1.0.62 140 8/30/2023
1.0.61 810 8/28/2023
1.0.60 663 8/25/2023
1.0.59 130 8/25/2023
1.0.58 462 8/24/2023
1.0.57 1,406 8/21/2023
1.0.56 765 8/18/2023
1.0.55 724 8/17/2023
1.0.54 133 8/17/2023
1.0.53 1,877 8/10/2023
1.0.52 544 8/9/2023
1.0.51 646 8/8/2023
1.0.50 623 8/7/2023
1.0.49 157 8/7/2023
1.0.48 2,419 7/13/2023
1.0.47 851 7/11/2023
1.0.46 701 7/10/2023
1.0.45 663 7/7/2023
1.0.44 152 7/7/2023
1.0.43 2,072 6/30/2023
1.0.42 1,025 6/29/2023
1.0.41 576 6/28/2023
1.0.40 1,461 6/26/2023
1.0.39 749 6/23/2023
1.0.38 1,058 6/21/2023
1.0.37 1,385 6/15/2023
1.0.36 451 6/14/2023
1.0.35 1,721 6/9/2023
1.0.34 790 6/8/2023
1.0.33 1,548 6/7/2023
1.0.32 150 6/7/2023
1.0.31 1,179 6/6/2023
1.0.30 1,115 6/5/2023
1.0.29 1,314 6/2/2023
1.0.28 134 6/2/2023
1.0.27 1,199 6/1/2023
1.0.26 579 5/31/2023
1.0.25 463 5/31/2023
1.0.24 144 5/31/2023
1.0.23 1,432 5/30/2023
1.0.22 1,499 5/26/2023
1.0.21 653 5/25/2023
1.0.20 132 5/25/2023
1.0.19 803 5/24/2023
1.0.18 140 5/24/2023
1.0.17 426 5/23/2023
1.0.13 1,439 5/22/2023
1.0.12 1,160 5/18/2023
1.0.11 572 5/17/2023
1.0.10 1,522 5/1/2023
1.0.9 1,005 4/25/2023
1.0.8 453 4/24/2023
1.0.7 979 4/21/2023
1.0.6 1,938 4/13/2023
1.0.5 568 4/12/2023
1.0.4 995 4/8/2023
1.0.3 170 4/8/2023
1.0.2 566 4/8/2023
1.0.1 173 4/8/2023