Soenneker.Extensions.String 3.0.540

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

A highly optimized library of string extension methods designed to improve performance, readability, and efficiency in .NET applications. This library is ideal for developers looking to streamline common string operations while adhering to best practices and achieving maximum performance.

Features

  • High Performance: All methods are optimized for speed and low memory usage, ensuring top-notch performance in critical applications.
  • Comprehensive Functionality: Includes a wide range of utility methods for common string operations, such as trimming, splitting, joining, and formatting.
  • Readability-First: Enhances code clarity with intuitive method names and streamlined syntax.
  • Error-Resilient: Methods are built to handle edge cases gracefully, minimizing potential bugs and exceptions.
  • Lightweight: Minimal overhead and dependencies, making it perfect for high-performance applications.

Installation

dotnet add package Soenneker.Extensions.String

Usage

Truncate()

string longString = "This is a long string that needs to be truncated";
string truncatedString = longString.Truncate(10);
// truncatedString = "This is a ..."

IsAlphaNumeric()

string alphanumeric = "abc123";
bool isAlphanumeric = alphanumeric.IsAlphaNumeric();
// isAlphanumeric = true

string nonAlphanumeric = "abc123!";
bool isNonAlphanumeric = nonAlphanumeric.IsAlphaNumeric();
// isNonAlphanumeric = false

Slugify()

string test = "this string&is%bad#for\\urls"

test.Slugify() // "this-string-is-bad-for-urls"

ToDouble()

string numericString = "3.14";
double? doubleValue = numericString.ToDouble();
// doubleValue = 3.14

string nonNumericString = "abc";
double? nonDoubleValue = nonNumericString.ToDouble();
// nonDoubleValue = null

RemoveNonDigits()

string stringWithNonDigits = "abc123xyz456";
string digitsOnly = stringWithNonDigits.RemoveNonDigits();
// digitsOnly = "123456"

Shuffle()

string originalString = "hello";
string shuffledString = originalString.Shuffle();
// shuffledString = "olhel"

... and more

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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 (64)

Showing the top 5 NuGet packages that depend on Soenneker.Extensions.String:

Package Downloads
Soenneker.Extensions.Configuration

A collection of helpful IConfiguration extension methods

Soenneker.Utils.MemoryStream

An easy modern MemoryStream utility

Soenneker.Utils.Runtime

A collection of helpful runtime-based operations

Soenneker.Extensions.Enumerable.String

A collection of helpful enumerable string extension methods

Soenneker.Extensions.Type

An extension library for useful Type operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.549 19 8/16/2025
3.0.548 101 8/11/2025
3.0.547 87 8/11/2025
3.0.546 86 8/11/2025
3.0.545 91 8/11/2025
3.0.544 88 8/11/2025
3.0.543 88 8/11/2025
3.0.542 95 8/10/2025
3.0.541 6,522 8/5/2025
3.0.540 7,678 7/29/2025
3.0.539 17,208 7/8/2025
3.0.538 38,140 6/28/2025
3.0.537 4,278 6/27/2025
3.0.536 66 6/27/2025
3.0.535 6,203 6/27/2025
3.0.534 83 6/27/2025
3.0.533 304 6/27/2025
3.0.532 20,163 6/24/2025
3.0.531 16,315 6/11/2025
3.0.530 10,897 6/10/2025
3.0.529 20,402 6/2/2025
3.0.528 11,685 5/27/2025
3.0.527 2,180 5/27/2025
3.0.526 147 5/27/2025
3.0.525 3,093 5/27/2025
3.0.524 148 5/27/2025
3.0.523 157 5/27/2025
3.0.522 3,984 5/27/2025
3.0.521 18,611 5/25/2025
3.0.520 11,036 5/23/2025
3.0.519 3,800 5/23/2025
3.0.518 147 5/23/2025
3.0.517 139 5/23/2025
3.0.516 2,427 5/22/2025
3.0.515 153 5/22/2025
3.0.514 4,155 5/22/2025
3.0.513 29,431 5/14/2025
3.0.512 17,730 5/8/2025
3.0.511 4,242 5/8/2025
3.0.510 167 5/8/2025
3.0.509 912 5/8/2025
3.0.508 254 5/7/2025
3.0.507 161 5/7/2025
3.0.506 3,634 5/7/2025
3.0.505 20,323 5/5/2025
3.0.504 3,030 5/5/2025
3.0.503 242 5/5/2025
3.0.502 158 5/5/2025
3.0.501 5,100 5/5/2025
3.0.500 1,126 5/5/2025
3.0.499 169 5/5/2025
3.0.498 239 5/5/2025
3.0.497 159 5/5/2025
3.0.496 325 5/5/2025
3.0.495 8,395 5/5/2025
3.0.494 159 5/5/2025
3.0.493 27,313 4/27/2025
3.0.492 113 4/27/2025
3.0.491 5,509 4/26/2025
3.0.490 11,968 4/8/2025
3.0.489 2,393 4/8/2025
3.0.488 173 4/8/2025
3.0.487 180 4/8/2025
3.0.486 3,080 4/8/2025
3.0.485 263 4/8/2025
3.0.484 1,136 4/8/2025
3.0.483 2,721 4/8/2025
3.0.482 28,220 4/8/2025
3.0.481 501 4/8/2025
3.0.480 56,354 4/6/2025
3.0.479 8,562 4/6/2025
3.0.478 3,011 4/6/2025
3.0.477 3,449 4/6/2025
3.0.476 2,710 4/6/2025
3.0.475 158 4/6/2025
3.0.474 165 4/6/2025
3.0.473 8,682 4/6/2025
3.0.472 146 4/6/2025
3.0.471 157 4/6/2025
3.0.470 3,554 4/5/2025
3.0.469 127 4/5/2025
3.0.468 34,679 4/4/2025
3.0.467 115 4/4/2025
3.0.466 207 4/4/2025
3.0.465 9,273 4/4/2025
3.0.464 149,210 3/11/2025
3.0.463 12,014 3/11/2025
3.0.462 179 3/11/2025
3.0.461 8,695 3/11/2025
3.0.460 186 3/11/2025
3.0.459 55,455 3/1/2025
3.0.458 6,584 3/1/2025
3.0.457 118 3/1/2025
3.0.456 4,348 3/1/2025
3.0.455 120 3/1/2025
3.0.454 120 3/1/2025
3.0.453 2,236 3/1/2025
3.0.452 123 3/1/2025
3.0.451 121 3/1/2025
3.0.450 123 3/1/2025
3.0.449 121 3/1/2025
3.0.448 38,586 2/24/2025
3.0.447 1,736 2/24/2025
3.0.446 36,558 2/21/2025
3.0.445 27,775 2/18/2025
3.0.444 1,622 2/18/2025
3.0.443 134 2/18/2025
3.0.442 127 2/18/2025
3.0.441 28,067 2/13/2025
3.0.440 21,478 2/11/2025
3.0.439 4,148 2/11/2025
3.0.438 7,180 2/11/2025
3.0.437 5,575 2/11/2025
3.0.436 3,409 2/10/2025
3.0.435 146 2/10/2025
3.0.434 2,973 2/10/2025
3.0.433 12,541 2/10/2025
3.0.432 5,949 2/10/2025
3.0.431 324 2/10/2025
3.0.430 126 2/10/2025
3.0.429 18,118 2/10/2025
3.0.428 138 2/10/2025
3.0.427 27,577 2/8/2025
3.0.426 2,451 2/7/2025
3.0.425 128 2/7/2025
3.0.424 9,001 2/7/2025
3.0.423 3,196 2/7/2025
3.0.422 2,427 2/7/2025
3.0.421 128 2/7/2025
3.0.420 129 2/7/2025
3.0.419 2,489 2/7/2025
3.0.418 144 2/7/2025
3.0.417 125 2/7/2025
3.0.416 133 2/7/2025
3.0.415 5,327 2/7/2025
3.0.414 156 2/7/2025
3.0.413 128 2/7/2025
3.0.412 64,718 1/27/2025
3.0.411 2,959 1/27/2025
3.0.410 169 1/27/2025
3.0.409 6,390 1/27/2025
3.0.408 1,437 1/27/2025
3.0.407 131 1/27/2025
3.0.406 123 1/27/2025
3.0.405 24,533 1/25/2025
3.0.404 20,800 1/24/2025
3.0.403 19,299 1/24/2025
3.0.402 510 1/24/2025
3.0.401 6,616 1/23/2025
3.0.400 121 1/23/2025
3.0.398 7,083 1/23/2025
3.0.397 22,286 1/21/2025
3.0.396 132 1/21/2025
3.0.395 182 1/21/2025
3.0.394 19,203 1/20/2025
3.0.393 4,581 1/20/2025
3.0.392 1,837 1/20/2025
3.0.391 135 1/20/2025
3.0.390 10,581 1/20/2025
3.0.389 121 1/20/2025
3.0.388 4,076 1/20/2025
3.0.387 137 1/20/2025
3.0.386 123 1/20/2025
3.0.385 8,845 1/20/2025
3.0.384 125 1/20/2025
3.0.383 124 1/20/2025
3.0.382 117 1/20/2025
3.0.381 27,748 1/19/2025
3.0.380 333 1/19/2025
3.0.379 108 1/19/2025
3.0.378 16,082 1/18/2025
3.0.377 15,137 1/16/2025
3.0.376 17,188 1/16/2025
3.0.375 14,362 1/16/2025
3.0.374 12,853 1/15/2025
3.0.373 5,040 1/15/2025
3.0.372 3,767 1/15/2025
3.0.371 7,098 1/15/2025
3.0.370 5,710 1/15/2025
3.0.369 3,085 1/14/2025
3.0.368 1,235 1/14/2025
3.0.367 708 1/14/2025
3.0.366 258 1/14/2025
3.0.365 115 1/14/2025
3.0.364 3,617 1/14/2025
3.0.363 2,198 1/14/2025
3.0.362 117 1/14/2025
3.0.361 5,250 1/14/2025
3.0.360 22,962 1/12/2025
3.0.359 15,993 1/10/2025
3.0.358 4,590 1/10/2025
3.0.357 124 1/10/2025
3.0.356 126 1/10/2025
3.0.355 3,950 1/10/2025
3.0.354 130 1/10/2025
3.0.353 158 1/10/2025
3.0.352 128 1/10/2025
3.0.351 25,671 1/2/2025
3.0.350 184 1/2/2025
3.0.349 140 1/2/2025
3.0.348 6,620 1/2/2025
3.0.347 153 1/2/2025
3.0.346 154 1/2/2025
3.0.345 1,657 1/2/2025
3.0.344 17,080 1/1/2025
3.0.343 166 1/1/2025
3.0.342 169 1/1/2025
3.0.341 598 12/31/2024
3.0.340 146 12/31/2024
3.0.339 155 12/31/2024
3.0.338 2,156 12/31/2024
3.0.337 168 12/31/2024
3.0.336 152 12/31/2024
3.0.335 177 12/31/2024
3.0.334 8,169 12/31/2024
3.0.333 22,099 12/31/2024
3.0.332 130 12/31/2024
3.0.331 159 12/31/2024
3.0.330 9,814 12/31/2024
3.0.329 154 12/31/2024
3.0.328 138 12/31/2024
3.0.327 4,324 12/31/2024
3.0.326 40,285 12/24/2024
3.0.325 129 12/24/2024
3.0.324 135 12/24/2024
3.0.323 6,833 12/24/2024
3.0.322 147 12/24/2024
3.0.321 144 12/24/2024
3.0.320 1,642 12/24/2024
3.0.319 40,536 12/22/2024
3.0.318 508 12/22/2024
3.0.317 147 12/22/2024
3.0.316 6,747 12/21/2024
3.0.315 128 12/21/2024
3.0.314 1,068 12/21/2024
3.0.313 9,799 12/21/2024
3.0.312 133 12/21/2024
3.0.311 3,424 12/21/2024
3.0.310 5,091 12/21/2024
3.0.309 156 12/21/2024
3.0.308 7,260 12/21/2024
3.0.307 145 12/21/2024
3.0.306 649 12/21/2024
3.0.305 5,136 12/21/2024
3.0.304 136 12/21/2024
3.0.303 7,320 12/20/2024
3.0.302 3,842 12/20/2024
3.0.301 142 12/20/2024
3.0.300 14,645 12/19/2024
3.0.299 1,505 12/19/2024
3.0.298 690 12/18/2024
3.0.297 133 12/18/2024
3.0.296 270 12/18/2024
3.0.295 25,176 12/17/2024
3.0.294 3,916 12/17/2024
3.0.293 167 12/17/2024
3.0.292 406 12/16/2024
3.0.291 145 12/16/2024
3.0.290 136 12/16/2024
3.0.289 143 12/16/2024
3.0.288 56,420 12/5/2024
3.0.287 24,302 12/4/2024
3.0.286 8,602 12/4/2024
3.0.285 5,693 12/4/2024
3.0.284 3,408 12/4/2024
3.0.283 7,077 12/4/2024
3.0.282 232 12/4/2024
3.0.281 14,270 12/3/2024
3.0.280 163 12/3/2024
3.0.279 6,830 12/3/2024
3.0.278 4,143 12/2/2024
3.0.277 144 12/2/2024
3.0.276 6,168 12/2/2024
3.0.275 14,545 12/1/2024
3.0.274 5,922 12/1/2024
3.0.273 164 12/1/2024
3.0.272 162 12/1/2024
3.0.271 40,806 11/19/2024
3.0.270 160 11/19/2024
3.0.269 5,438 11/19/2024
3.0.268 172 11/19/2024
3.0.267 145 11/19/2024
3.0.266 14,358 11/19/2024
3.0.265 3,798 11/19/2024
3.0.264 28,254 11/14/2024
3.0.263 170 11/14/2024
3.0.262 3,023 11/14/2024
3.0.261 155 11/14/2024
3.0.260 149 11/14/2024
3.0.259 1,845 11/13/2024
3.0.258 168 11/13/2024
2.1.257 52,284 11/8/2024
2.1.256 14,348 11/8/2024
2.1.255 130 11/8/2024
2.1.254 122 11/8/2024
2.1.253 48,380 10/28/2024
2.1.252 114,291 10/1/2024
2.1.251 16,956 9/30/2024
2.1.250 30,193 9/27/2024
2.1.249 142 9/27/2024
2.1.248 133 9/27/2024
2.1.247 2,853 9/27/2024
2.1.246 123 9/27/2024
2.1.245 125 9/27/2024
2.1.244 126 9/27/2024
2.1.243 54,755 9/23/2024
2.1.242 833 9/23/2024
2.1.241 3,784 9/23/2024
2.1.240 134 9/23/2024
2.1.239 1,329 9/23/2024
2.1.238 159 9/23/2024
2.1.237 7,400 9/22/2024
2.1.236 28,418 9/17/2024
2.1.235 272 9/17/2024
2.1.234 146 9/17/2024
2.1.233 238 9/17/2024
2.1.232 168 9/17/2024
2.1.231 4,227 9/17/2024
2.1.230 176 9/17/2024
2.1.229 50,236 9/11/2024
2.1.228 17,121 9/11/2024
2.1.227 23,613 9/9/2024
2.1.226 9,724 9/9/2024
2.1.225 5,954 9/9/2024
2.1.224 8,375 9/9/2024
2.1.223 9,010 9/9/2024
2.1.222 146 9/9/2024
2.1.221 177 9/9/2024
2.1.220 36,632 9/5/2024
2.1.219 7,238 9/5/2024
2.1.218 148 9/5/2024
2.1.217 159 9/5/2024
2.1.216 1,252 9/5/2024
2.1.215 170 9/5/2024
2.1.214 3,940 9/5/2024
2.1.213 20,914 9/4/2024
2.1.212 49,870 8/20/2024
2.1.211 5,709 8/20/2024
2.1.210 151 8/20/2024
2.1.209 152 8/20/2024
2.1.208 5,055 8/20/2024
2.1.207 158 8/20/2024
2.1.206 152 8/20/2024
2.1.205 73,135 7/24/2024
2.1.204 5,851 7/24/2024
2.1.203 123 7/24/2024
2.1.202 28,171 7/13/2024
2.1.201 158 7/13/2024
2.1.200 15,802 7/10/2024
2.1.199 4,681 7/10/2024
2.1.198 180 7/10/2024
2.1.196 4,339 7/9/2024
2.1.194 3,395 7/9/2024
2.1.193 19,623 7/9/2024
2.1.192 5,991 7/9/2024
2.1.191 694 7/9/2024
2.1.190 148 7/9/2024
2.1.189 9,267 7/9/2024
2.1.188 2,851 7/8/2024
2.1.187 143 7/8/2024
2.1.186 162 7/8/2024
2.1.185 132 7/8/2024
2.1.184 134 7/8/2024
2.1.183 5,470 7/8/2024
2.1.182 155 7/8/2024
2.1.181 144 7/8/2024
2.1.180 605 7/8/2024
2.1.179 24,981 7/7/2024
2.1.178 3,296 7/7/2024
2.1.177 22,209 7/3/2024
2.1.176 37,596 6/14/2024
2.1.174 43,445 5/27/2024
2.1.173 3,128 5/27/2024
2.1.172 129 5/27/2024
2.1.171 20,381 5/25/2024
2.1.170 7,523 5/25/2024
2.1.169 152 5/25/2024
2.1.168 149 5/25/2024
2.1.167 4,462 5/25/2024
2.1.166 154 5/25/2024
2.1.165 176 5/25/2024
2.1.164 161 5/25/2024
2.1.163 4,148 5/25/2024
2.1.162 137 5/25/2024
2.1.161 19,037 5/22/2024
2.1.160 4,812 5/22/2024
2.1.159 2,443 5/22/2024
2.1.158 146 5/22/2024
2.1.157 149 5/22/2024
2.1.156 155 5/22/2024
2.1.155 9,885 5/22/2024
2.1.154 16,437 5/16/2024
2.1.153 47,359 4/28/2024
2.1.152 136 4/28/2024
2.1.151 7,441 4/28/2024
2.1.150 134 4/28/2024
2.1.149 152 4/28/2024
2.1.148 714 4/28/2024
2.1.147 144 4/28/2024
2.1.146 156 4/28/2024
2.1.145 5,249 4/27/2024
2.1.144 178 4/27/2024
2.1.143 144 4/27/2024
2.1.142 38,157 4/12/2024
2.1.141 185 4/12/2024
2.1.140 4,860 4/12/2024
2.1.139 175 4/12/2024
2.1.138 155 4/12/2024
2.1.137 3,174 4/12/2024
2.1.136 172 4/12/2024
2.1.135 160 4/12/2024
2.1.134 148 4/12/2024
2.1.133 27,665 4/1/2024
2.1.132 18,650 3/25/2024
2.1.131 20,259 3/18/2024
2.1.130 235 3/18/2024
2.1.129 394 3/18/2024
2.1.128 18,981 3/13/2024
2.1.127 223 3/13/2024
2.1.126 209 3/13/2024
2.1.125 1,717 3/13/2024
2.1.124 207 3/13/2024
2.1.123 219 3/13/2024
2.1.122 38,040 3/8/2024
2.1.121 15,964 3/3/2024
2.1.120 13,388 3/2/2024
2.1.119 2,099 3/1/2024
2.1.117 12,192 2/28/2024
2.1.116 23,145 2/25/2024
2.1.115 257 2/25/2024
2.1.114 18,612 2/21/2024
2.1.113 4,749 2/21/2024
2.1.112 2,856 2/21/2024
2.1.111 1,926 2/21/2024
2.1.110 276 2/21/2024
2.1.109 6,059 2/21/2024
2.1.108 267 2/21/2024
2.1.107 288 2/21/2024
2.1.106 15,026 2/20/2024
2.1.105 1,679 2/20/2024
2.1.104 10,073 2/19/2024
2.1.103 10,297 2/16/2024
2.1.102 7,012 2/16/2024
2.1.101 271 2/16/2024
2.1.100 6,655 2/16/2024
2.1.99 40,419 2/9/2024
2.1.98 36,512 2/7/2024
2.1.97 4,631 2/6/2024
2.1.96 2,831 2/6/2024
2.1.95 495 2/6/2024
2.1.94 296 2/6/2024
2.1.93 13,543 2/4/2024
2.1.92 99,000 1/15/2024
2.1.91 5,392 1/15/2024
2.1.90 408 1/15/2024
2.1.89 3,165 1/15/2024
2.1.88 354 1/15/2024
2.1.87 37,562 1/7/2024
2.1.86 7,413 1/5/2024
2.1.85 4,505 1/5/2024
2.1.84 383 1/5/2024
2.1.83 409 1/5/2024
2.1.82 5,113 1/5/2024
2.1.81 12,815 1/1/2024
2.1.80 461 1/1/2024
2.1.79 8,401 12/28/2023
2.1.78 4,290 12/28/2023
2.1.77 4,178 12/27/2023
2.1.76 434 12/27/2023
2.1.75 438 12/27/2023
2.1.74 5,041 12/27/2023
2.1.73 411 12/27/2023
2.1.72 451 12/27/2023
2.1.71 15,804 12/25/2023
2.1.70 920 12/25/2023
2.1.69 448 12/25/2023
2.1.68 454 12/25/2023
2.1.67 4,785 12/25/2023
2.1.66 12,828 12/24/2023
2.1.65 7,745 12/23/2023
2.1.64 2,099 12/23/2023
2.1.63 422 12/23/2023
2.1.62 5,564 12/23/2023
2.1.61 461 12/23/2023
2.1.60 412 12/23/2023
2.1.59 1,865 12/23/2023
2.1.58 415 12/23/2023
2.1.57 13,803 12/19/2023
2.1.56 4,624 12/18/2023
2.1.55 12,928 12/10/2023
2.1.51 6,333 12/10/2023
2.1.50 11,118 12/9/2023
2.1.49 461 12/9/2023
2.1.48 546 12/9/2023
2.1.47 473 12/9/2023
2.1.46 478 12/9/2023
2.1.45 496 12/9/2023
2.1.44 7,514 12/9/2023
2.1.43 11,663 12/6/2023
2.1.42 9,368 12/4/2023
2.1.41 5,977 12/4/2023
2.1.40 512 12/4/2023
2.1.39 915 12/4/2023
2.1.38 550 12/4/2023
2.1.37 15,805 11/23/2023
2.1.36 458 11/23/2023
2.1.35 845 11/23/2023
2.1.34 482 11/23/2023
2.1.33 2,073 11/23/2023
2.1.32 3,243 11/23/2023
2.1.31 9,580 11/20/2023
2.1.30 3,888 11/20/2023
2.1.29 6,849 11/19/2023
2.1.28 1,199 11/19/2023
2.1.27 484 11/19/2023
2.1.26 476 11/19/2023
2.1.25 462 11/19/2023
2.1.24 2,368 11/19/2023
2.1.23 10,086 11/18/2023
2.1.22 510 11/18/2023
2.1.21 3,357 11/18/2023
2.1.20 2,279 11/18/2023
2.1.19 494 11/18/2023
2.1.18 5,850 11/17/2023
2.1.17 1,491 11/17/2023
2.1.16 500 11/17/2023
2.1.15 484 11/17/2023
2.1.14 1,912 11/17/2023
2.1.13 8,025 11/17/2023
2.1.12 2,138 11/17/2023
2.1.11 479 11/17/2023
2.1.10 521 11/17/2023
2.1.9 529 11/17/2023
2.1.8 3,722 11/17/2023
2.1.7 1,690 11/16/2023
2.1.6 448 11/16/2023
2.1.5 937 11/16/2023
2.1.4 471 11/16/2023
2.0.140 5,596 11/15/2023
2.0.139 503 11/15/2023
2.0.138 479 11/15/2023
2.0.137 490 11/15/2023
2.0.136 485 11/15/2023
2.0.3 474 11/16/2023
2.0.2 487 11/16/2023
2.0.1 439 11/16/2023
1.0.135 12,306 11/10/2023
1.0.134 510 11/10/2023
1.0.133 5,869 11/9/2023
1.0.132 456 11/9/2023
1.0.131 505 11/9/2023
1.0.130 2,128 11/8/2023
1.0.129 10,600 11/6/2023
1.0.128 484 11/6/2023
1.0.127 511 11/6/2023
1.0.126 510 11/6/2023
1.0.125 3,951 11/3/2023
1.0.124 7,129 11/2/2023
1.0.123 531 11/2/2023
1.0.122 514 11/2/2023
1.0.121 479 11/2/2023
1.0.120 3,814 11/1/2023
1.0.119 19,841 10/18/2023
1.0.118 547 10/18/2023
1.0.117 552 10/18/2023
1.0.116 519 10/18/2023
1.0.115 4,288 10/17/2023
1.0.114 5,004 10/16/2023
1.0.113 545 10/16/2023
1.0.112 534 10/16/2023
1.0.111 561 10/16/2023
1.0.110 7,444 10/13/2023
1.0.109 582 10/13/2023
1.0.108 13,961 9/19/2023
1.0.107 574 9/19/2023
1.0.106 587 9/19/2023
1.0.105 532 9/19/2023
1.0.104 6,679 9/18/2023
1.0.103 579 9/18/2023
1.0.102 16,324 8/30/2023
1.0.101 650 8/30/2023
1.0.100 598 8/30/2023
1.0.99 599 8/30/2023
1.0.98 611 8/30/2023
1.0.97 12,191 8/25/2023
1.0.96 5,554 8/24/2023
1.0.95 611 8/24/2023
1.0.94 10,797 8/18/2023
1.0.93 631 8/18/2023
1.0.92 5,006 8/17/2023
1.0.91 602 8/17/2023
1.0.90 621 8/17/2023
1.0.89 18,516 8/8/2023
1.0.88 665 8/8/2023
1.0.87 6,027 8/7/2023
1.0.86 676 8/7/2023
1.0.85 658 8/7/2023
1.0.84 22,460 7/10/2023
1.0.83 721 7/10/2023
1.0.82 735 7/10/2023
1.0.81 747 7/10/2023
1.0.80 5,110 7/7/2023
1.0.79 694 7/7/2023
1.0.78 16,703 6/29/2023
1.0.77 4,645 6/28/2023
1.0.76 722 6/28/2023
1.0.75 744 6/28/2023
1.0.74 48,098 6/7/2023
1.0.73 6,172 6/7/2023
1.0.72 757 6/7/2023
1.0.71 752 6/7/2023
1.0.70 7,497 6/6/2023
1.0.69 741 6/6/2023
1.0.68 2,902 6/5/2023
1.0.67 735 6/5/2023
1.0.66 7,325 6/2/2023
1.0.65 764 6/2/2023
1.0.64 745 6/2/2023
1.0.63 28,885 5/30/2023
1.0.62 738 5/30/2023
1.0.61 8,395 5/29/2023
1.0.60 747 5/29/2023
1.0.59 6,685 5/26/2023
1.0.58 12,470 5/25/2023
1.0.57 750 5/25/2023
1.0.56 6,435 5/24/2023
1.0.55 770 5/24/2023
1.0.54 765 5/24/2023
1.0.53 744 5/24/2023
1.0.52 851 5/24/2023
1.0.51 4,300 5/23/2023
1.0.50 750 5/23/2023
1.0.49 756 5/23/2023
1.0.46 13,565 5/22/2023
1.0.45 11,082 5/18/2023
1.0.44 6,638 5/17/2023
1.0.43 738 5/17/2023
1.0.42 724 5/17/2023
1.0.41 716 5/17/2023
1.0.40 17,494 4/24/2023
1.0.39 2,458 4/24/2023
1.0.38 798 4/24/2023
1.0.37 4,124 4/21/2023
1.0.36 746 4/21/2023
1.0.35 762 4/21/2023
1.0.34 4,572 4/20/2023
1.0.33 941 4/20/2023
1.0.32 879 4/20/2023
1.0.31 4,225 4/19/2023
1.0.30 1,957 4/18/2023
1.0.29 787 4/18/2023
1.0.28 1,929 4/18/2023
1.0.27 3,414 4/17/2023
1.0.26 863 4/16/2023
1.0.25 806 4/16/2023
1.0.24 3,564 4/14/2023
1.0.23 2,607 4/13/2023
1.0.22 2,510 4/12/2023
1.0.21 788 4/12/2023
1.0.20 784 4/12/2023
1.0.19 1,807 4/11/2023
1.0.18 855 4/11/2023
1.0.17 2,654 4/11/2023
1.0.16 3,041 4/7/2023
1.0.15 3,877 4/3/2023
1.0.14 826 4/3/2023
1.0.13 817 4/3/2023
1.0.12 776 4/3/2023
1.0.11 2,106 4/1/2023
1.0.10 1,211 3/30/2023
1.0.9 957 3/26/2023
1.0.7 4,046 2/27/2023
1.0.6 866 2/26/2023
1.0.5 839 2/22/2023
1.0.4 1,037 2/22/2023
1.0.3 871 2/22/2023
1.0.2 1,416 2/12/2023
1.0.1 1,070 2/12/2023