Soenneker.Utils.String.Trie 3.0.485

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

A utility library for comparing strings via trie (prefix tree) similarity

Installation

dotnet add package Soenneker.Utils.String.Trie

Why?

Imagine you have two strings. Trie-based matching helps you figure out how similar they are by looking at the prefixes they share. Here's why it's handy:

Easy to Understand:

Trie-based matching is straightforward. It helps identify common prefixes between two strings, providing an intuitive measure of similarity.

Not Bothered by Length:

Whether a string is long or short doesn't throw off trie-based matching. It cares more about the common prefixes than the total length of the strings.

Efficient for Big Tasks:

When you're dealing with lots of strings or large texts, trie-based matching is efficient. It quickly identifies common prefixes without getting bogged down by complicated calculations, making it a practical choice for large datasets.

Usage

string str1 = "hello";
string str2 = "hell";

double similarity = TrieStringSimilarityUtil.CalculateSimilarityPercentage(str1, str2); // 80
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.
  • net9.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.677 81 6/27/2025
3.0.676 146 5/27/2025
3.0.674 149 5/7/2025
3.0.673 144 5/5/2025
3.0.672 142 5/5/2025
3.0.670 175 4/8/2025
3.0.669 164 4/8/2025
3.0.668 160 4/8/2025
3.0.667 165 4/8/2025
3.0.666 155 4/8/2025
3.0.665 165 4/8/2025
3.0.664 159 4/8/2025
3.0.663 166 4/7/2025
3.0.662 168 4/7/2025
3.0.661 171 4/7/2025
3.0.660 159 4/7/2025
3.0.659 161 4/7/2025
3.0.658 155 4/7/2025
3.0.657 163 4/7/2025
3.0.656 169 4/6/2025
3.0.655 159 4/6/2025
3.0.654 149 4/6/2025
3.0.653 138 4/6/2025
3.0.652 119 4/6/2025
3.0.651 114 4/6/2025
3.0.650 119 4/6/2025
3.0.649 113 4/6/2025
3.0.648 95 4/5/2025
3.0.647 87 4/5/2025
3.0.646 91 4/5/2025
3.0.645 99 4/5/2025
3.0.644 86 4/5/2025
3.0.643 87 4/5/2025
3.0.642 99 4/5/2025
3.0.641 153 4/4/2025
3.0.640 153 4/1/2025
3.0.639 163 3/31/2025
3.0.638 167 3/31/2025
3.0.637 90 3/29/2025
3.0.636 476 3/25/2025
3.0.635 468 3/25/2025
3.0.634 119 3/21/2025
3.0.633 128 3/21/2025
3.0.632 143 3/18/2025
3.0.631 147 3/18/2025
3.0.630 70 3/15/2025
3.0.629 71 3/15/2025
3.0.628 71 3/15/2025
3.0.627 158 3/12/2025
3.0.626 162 3/12/2025
3.0.625 154 3/12/2025
3.0.624 161 3/11/2025
3.0.623 154 3/11/2025
3.0.622 160 3/11/2025
3.0.621 166 3/11/2025
3.0.620 150 3/11/2025
3.0.619 152 3/11/2025
3.0.618 215 3/7/2025
3.0.617 221 3/7/2025
3.0.616 99 3/2/2025
3.0.615 101 3/2/2025
3.0.614 97 3/2/2025
3.0.613 103 3/2/2025
3.0.612 98 3/1/2025
3.0.611 98 3/1/2025
3.0.610 105 3/1/2025
3.0.609 100 3/1/2025
3.0.608 103 3/1/2025
3.0.607 100 3/1/2025
3.0.606 94 3/1/2025
3.0.605 92 3/1/2025
3.0.604 110 2/25/2025
3.0.603 112 2/25/2025
3.0.602 106 2/25/2025
3.0.601 110 2/25/2025
3.0.600 93 2/24/2025
3.0.599 123 2/23/2025
3.0.598 100 2/23/2025
3.0.597 99 2/22/2025
3.0.596 92 2/22/2025
3.0.595 101 2/22/2025
3.0.594 104 2/22/2025
3.0.593 107 2/22/2025
3.0.592 101 2/21/2025
3.0.591 99 2/21/2025
3.0.590 111 2/21/2025
3.0.589 117 2/19/2025
3.0.588 117 2/19/2025
3.0.587 106 2/19/2025
3.0.586 111 2/18/2025
3.0.585 113 2/18/2025
3.0.584 132 2/18/2025
3.0.583 118 2/14/2025
3.0.582 107 2/13/2025
3.0.581 118 2/12/2025
3.0.580 116 2/12/2025
3.0.579 106 2/12/2025
3.0.578 103 2/12/2025
3.0.577 105 2/12/2025
3.0.576 107 2/11/2025
3.0.575 108 2/11/2025
3.0.574 116 2/11/2025
3.0.573 108 2/11/2025
3.0.572 115 2/11/2025
3.0.571 116 2/11/2025
3.0.570 123 2/10/2025
3.0.569 106 2/10/2025
3.0.568 103 2/10/2025
3.0.567 106 2/10/2025
3.0.566 104 2/9/2025
3.0.565 99 2/8/2025
3.0.564 110 2/8/2025
3.0.563 100 2/8/2025
3.0.562 107 2/8/2025
3.0.561 112 2/8/2025
3.0.560 100 2/7/2025
3.0.559 109 2/7/2025
3.0.558 100 2/7/2025
3.0.557 99 2/7/2025
3.0.556 112 2/7/2025
3.0.555 98 2/6/2025
3.0.554 123 2/5/2025
3.0.553 112 2/5/2025
3.0.552 109 2/5/2025
3.0.551 101 2/5/2025
3.0.550 99 2/5/2025
3.0.549 109 2/5/2025
3.0.548 94 2/5/2025
3.0.547 108 1/28/2025
3.0.546 99 1/28/2025
3.0.545 100 1/28/2025
3.0.544 91 1/27/2025
3.0.543 87 1/27/2025
3.0.542 88 1/27/2025
3.0.541 94 1/27/2025
3.0.540 103 1/26/2025
3.0.539 92 1/26/2025
3.0.538 99 1/25/2025
3.0.537 99 1/25/2025
3.0.536 101 1/25/2025
3.0.535 89 1/25/2025
3.0.534 90 1/24/2025
3.0.533 101 1/24/2025
3.0.532 99 1/24/2025
3.0.531 97 1/24/2025
3.0.530 98 1/24/2025
3.0.529 91 1/24/2025
3.0.528 101 1/23/2025
3.0.527 107 1/23/2025
3.0.526 102 1/21/2025
3.0.525 100 1/21/2025
3.0.524 113 1/21/2025
3.0.523 98 1/21/2025
3.0.522 94 1/21/2025
3.0.521 104 1/21/2025
3.0.520 98 1/21/2025
3.0.519 107 1/21/2025
3.0.518 103 1/21/2025
3.0.517 98 1/21/2025
3.0.516 104 1/21/2025
3.0.515 108 1/21/2025
3.0.514 95 1/20/2025
3.0.513 106 1/20/2025
3.0.512 95 1/20/2025
3.0.511 101 1/20/2025
3.0.510 95 1/20/2025
3.0.509 99 1/20/2025
3.0.508 104 1/20/2025
3.0.507 93 1/20/2025
3.0.506 94 1/20/2025
3.0.505 104 1/19/2025
3.0.504 95 1/19/2025
3.0.503 93 1/19/2025
3.0.502 97 1/19/2025
3.0.501 96 1/19/2025
3.0.500 93 1/19/2025
3.0.499 88 1/19/2025
3.0.498 100 1/18/2025
3.0.497 91 1/18/2025
3.0.496 94 1/17/2025
3.0.495 101 1/17/2025
3.0.494 95 1/17/2025
3.0.493 103 1/17/2025
3.0.492 96 1/16/2025
3.0.491 91 1/16/2025
3.0.490 102 1/16/2025
3.0.489 95 1/16/2025
3.0.488 99 1/16/2025
3.0.487 95 1/16/2025
3.0.486 102 1/15/2025
3.0.485 95 1/15/2025
3.0.484 92 1/15/2025
3.0.483 91 1/15/2025
3.0.482 105 1/15/2025
3.0.481 92 1/15/2025
3.0.480 77 1/15/2025
3.0.479 64 1/15/2025
3.0.478 86 1/14/2025
3.0.477 85 1/14/2025
3.0.476 88 1/14/2025
3.0.475 85 1/14/2025
3.0.474 95 1/14/2025
3.0.473 87 1/13/2025
3.0.472 91 1/13/2025
3.0.471 87 1/13/2025
3.0.470 86 1/13/2025
3.0.469 99 1/11/2025
3.0.468 108 1/11/2025
3.0.467 95 1/11/2025
3.0.466 98 1/11/2025
3.0.465 112 1/10/2025
3.0.464 89 1/10/2025
3.0.463 81 1/10/2025
3.0.462 100 1/10/2025
3.0.461 101 1/10/2025
3.0.460 110 1/10/2025
3.0.459 128 1/3/2025
3.0.458 134 1/3/2025
3.0.457 121 1/3/2025
3.0.456 107 1/3/2025
3.0.455 116 1/2/2025
3.0.454 108 1/2/2025
3.0.453 121 1/2/2025
3.0.452 112 1/2/2025
3.0.451 114 1/1/2025
3.0.450 134 1/1/2025
3.0.449 115 1/1/2025
3.0.448 119 1/1/2025
3.0.447 119 1/1/2025
3.0.446 126 1/1/2025
3.0.445 113 1/1/2025
3.0.444 115 1/1/2025
3.0.443 124 12/31/2024
3.0.442 112 12/31/2024
3.0.441 115 12/31/2024
3.0.440 121 12/31/2024
3.0.439 128 12/31/2024
3.0.438 124 12/31/2024
3.0.437 100 12/31/2024
3.0.436 102 12/31/2024
3.0.435 104 12/31/2024
3.0.434 95 12/31/2024
3.0.433 114 12/31/2024
3.0.432 103 12/30/2024
3.0.431 105 12/28/2024
3.0.430 95 12/28/2024
3.0.429 107 12/27/2024
3.0.428 114 12/27/2024
3.0.427 104 12/24/2024
3.0.426 103 12/24/2024
3.0.425 95 12/24/2024
3.0.424 103 12/23/2024
3.0.423 107 12/23/2024
3.0.422 108 12/23/2024
3.0.421 94 12/23/2024
3.0.420 109 12/23/2024
3.0.419 97 12/23/2024
3.0.418 105 12/22/2024
3.0.417 104 12/22/2024
3.0.416 104 12/22/2024
3.0.415 118 12/22/2024
3.0.414 108 12/22/2024
3.0.413 113 12/22/2024
3.0.412 102 12/21/2024
3.0.411 98 12/21/2024
3.0.410 107 12/21/2024
3.0.409 100 12/21/2024
3.0.408 96 12/21/2024
3.0.407 103 12/21/2024
3.0.406 104 12/20/2024
3.0.405 106 12/20/2024
3.0.404 110 12/20/2024
3.0.403 101 12/20/2024
3.0.402 100 12/20/2024
3.0.401 107 12/19/2024
3.0.400 96 12/19/2024
3.0.399 100 12/19/2024
3.0.398 96 12/19/2024
3.0.397 108 12/18/2024
3.0.396 102 12/18/2024
3.0.395 111 12/16/2024
3.0.394 104 12/16/2024
3.0.393 98 12/10/2024
3.0.392 104 12/10/2024
3.0.391 104 12/10/2024
3.0.390 99 12/9/2024
3.0.389 110 12/9/2024
3.0.388 99 12/9/2024
3.0.387 96 12/9/2024
3.0.386 98 12/9/2024
3.0.385 101 12/7/2024
3.0.384 108 12/6/2024
3.0.383 113 12/6/2024
3.0.382 96 12/6/2024
3.0.381 106 12/6/2024
3.0.380 108 12/6/2024
3.0.379 106 12/6/2024
3.0.377 107 12/6/2024
3.0.376 103 12/5/2024
3.0.375 117 12/5/2024
3.0.374 109 12/5/2024
3.0.373 108 12/5/2024
3.0.372 103 12/5/2024
3.0.371 101 12/5/2024
3.0.370 111 12/5/2024
3.0.369 106 12/4/2024
3.0.368 110 12/4/2024
3.0.367 104 12/4/2024
3.0.366 115 12/4/2024
3.0.365 105 12/4/2024
3.0.364 112 12/3/2024
3.0.363 106 12/3/2024
3.0.362 113 12/3/2024
3.0.361 103 12/3/2024
3.0.360 102 12/3/2024
3.0.359 100 12/3/2024
3.0.358 100 12/3/2024
3.0.357 103 12/2/2024
3.0.356 97 12/2/2024
3.0.355 100 12/2/2024
3.0.354 108 12/2/2024
3.0.353 106 12/1/2024
3.0.352 103 12/1/2024
3.0.351 110 12/1/2024
3.0.350 112 12/1/2024
3.0.349 112 11/29/2024
3.0.348 98 11/29/2024
3.0.347 102 11/21/2024
3.0.346 99 11/21/2024
3.0.345 113 11/20/2024
3.0.344 101 11/20/2024
3.0.343 113 11/20/2024
3.0.342 114 11/20/2024
3.0.341 113 11/20/2024
3.0.340 104 11/19/2024
3.0.339 109 11/19/2024
3.0.338 101 11/19/2024
3.0.337 96 11/19/2024
3.0.336 107 11/19/2024
3.0.335 109 11/19/2024
3.0.334 146 11/15/2024
3.0.333 105 11/14/2024
3.0.332 103 11/14/2024
3.0.331 97 11/14/2024
3.0.330 99 11/14/2024
3.0.329 105 11/14/2024
3.0.328 106 11/14/2024
3.0.327 106 11/14/2024
3.0.326 113 11/14/2024
3.0.325 111 11/14/2024
3.0.324 117 11/14/2024
3.0.323 111 11/14/2024
3.0.322 106 11/14/2024
3.0.321 107 11/14/2024
2.1.320 109 11/13/2024
2.1.319 108 11/13/2024
2.1.318 109 11/13/2024
2.1.317 107 11/13/2024
2.1.316 108 11/13/2024
2.1.315 106 11/12/2024
2.1.314 120 11/9/2024
2.1.313 112 11/9/2024
2.1.312 111 11/9/2024
2.1.311 108 11/8/2024
2.1.310 99 11/8/2024
2.1.309 108 11/8/2024
2.1.308 122 11/8/2024
2.1.307 122 11/8/2024
2.1.306 120 11/6/2024
2.1.305 111 11/1/2024
2.1.304 105 11/1/2024
2.1.303 106 11/1/2024
2.1.302 104 10/31/2024
2.1.301 107 10/29/2024
2.1.300 104 10/29/2024
2.1.299 110 10/29/2024
2.1.298 102 10/29/2024
2.1.297 114 10/29/2024
2.1.296 102 10/29/2024
2.1.295 107 10/28/2024
2.1.294 113 10/26/2024
2.1.293 108 10/26/2024
2.1.292 106 10/22/2024
2.1.291 116 10/22/2024
2.1.290 102 10/22/2024
2.1.289 98 10/22/2024
2.1.288 110 10/22/2024
2.1.287 113 10/18/2024
2.1.286 96 10/17/2024
2.1.285 113 10/17/2024
2.1.284 103 10/15/2024
2.1.283 103 10/15/2024
2.1.282 99 10/14/2024
2.1.281 107 10/12/2024
2.1.280 105 10/12/2024
2.1.279 98 10/12/2024
2.1.278 106 10/11/2024
2.1.277 108 10/9/2024
2.1.276 109 10/9/2024
2.1.275 101 10/9/2024
2.1.274 97 10/9/2024
2.1.273 102 10/9/2024
2.1.272 111 10/8/2024
2.1.271 112 10/8/2024
2.1.270 108 10/8/2024
2.1.269 109 10/8/2024
2.1.268 106 10/3/2024
2.1.267 95 10/3/2024
2.1.266 112 10/3/2024
2.1.265 104 10/3/2024
2.1.264 106 10/3/2024
2.1.263 105 10/2/2024
2.1.262 105 10/2/2024
2.1.261 115 10/2/2024
2.1.260 111 10/2/2024
2.1.259 103 10/2/2024
2.1.258 106 10/1/2024
2.1.257 108 10/1/2024
2.1.256 111 10/1/2024
2.1.255 118 10/1/2024
2.1.254 110 9/29/2024
2.1.253 106 9/29/2024
2.1.252 101 9/29/2024
2.1.251 104 9/29/2024
2.1.250 110 9/29/2024
2.1.249 102 9/27/2024
2.1.248 107 9/27/2024
2.1.247 100 9/27/2024
2.1.246 100 9/27/2024
2.1.245 107 9/27/2024
2.1.244 118 9/27/2024
2.1.243 108 9/27/2024
2.1.242 106 9/26/2024
2.1.241 103 9/26/2024
2.1.240 110 9/26/2024
2.1.239 102 9/26/2024
2.1.238 105 9/26/2024
2.1.237 107 9/26/2024
2.1.236 100 9/26/2024
2.1.235 102 9/26/2024
2.1.234 102 9/23/2024
2.1.233 106 9/23/2024
2.1.232 105 9/23/2024
2.1.231 102 9/23/2024
2.1.230 105 9/23/2024
2.1.229 104 9/23/2024
2.1.228 107 9/23/2024
2.1.227 102 9/23/2024
2.1.226 119 9/18/2024
2.1.225 123 9/18/2024
2.1.224 105 9/18/2024
2.1.223 111 9/18/2024
2.1.222 112 9/18/2024
2.1.221 114 9/17/2024
2.1.220 116 9/17/2024
2.1.218 118 9/17/2024
2.1.217 112 9/17/2024
2.1.216 127 9/17/2024
2.1.215 106 9/17/2024
2.1.214 103 9/17/2024
2.1.213 102 9/16/2024
2.1.212 123 9/16/2024
2.1.211 123 9/12/2024
2.1.210 123 9/12/2024
2.1.209 131 9/11/2024
2.1.208 127 9/11/2024
2.1.207 126 9/11/2024
2.1.206 129 9/11/2024
2.1.205 122 9/11/2024
2.1.204 136 9/10/2024
2.1.203 139 9/10/2024
2.1.202 112 9/10/2024
2.1.201 124 9/10/2024
2.1.200 124 9/10/2024
2.1.199 133 9/10/2024
2.1.198 133 9/10/2024
2.1.197 106 9/9/2024
2.1.195 119 9/9/2024
2.1.194 108 9/9/2024
2.1.193 123 9/9/2024
2.1.192 127 9/9/2024
2.1.191 124 9/7/2024
2.1.190 99 9/7/2024
2.1.189 125 9/7/2024
2.1.188 125 9/6/2024
2.1.187 133 9/6/2024
2.1.186 130 9/6/2024
2.1.185 127 9/5/2024
2.1.184 129 9/5/2024
2.1.183 109 9/5/2024
2.1.182 126 9/5/2024
2.1.181 118 9/5/2024
2.1.180 115 9/5/2024
2.1.179 116 9/5/2024
2.1.178 109 9/5/2024
2.1.177 108 9/4/2024
2.1.176 115 9/4/2024
2.1.175 118 9/3/2024
2.1.174 126 9/3/2024
2.1.173 115 9/3/2024
2.1.172 128 9/3/2024
2.1.171 107 9/3/2024
2.1.170 115 9/3/2024
2.1.169 121 8/29/2024
2.1.168 117 8/29/2024
2.1.167 116 8/29/2024
2.1.166 120 8/26/2024
2.1.165 111 8/26/2024
2.1.164 136 8/26/2024
2.1.163 129 8/21/2024
2.1.162 150 8/21/2024
2.1.161 139 8/21/2024
2.1.160 130 8/21/2024
2.1.159 149 8/20/2024
2.1.158 146 8/20/2024
2.1.157 125 8/20/2024
2.1.156 124 8/20/2024
2.1.155 140 8/20/2024
2.1.154 133 8/20/2024
2.1.153 146 8/19/2024
2.1.152 138 8/15/2024
2.1.151 147 8/15/2024
2.1.150 145 8/15/2024
2.1.149 138 8/14/2024
2.1.148 120 8/14/2024
2.1.147 116 8/14/2024
2.1.146 136 8/13/2024
2.1.145 113 8/7/2024
2.1.144 108 8/7/2024
2.1.143 112 8/7/2024
2.1.142 111 8/6/2024
2.1.141 101 8/6/2024
2.1.140 89 8/1/2024
2.1.139 84 8/1/2024
2.1.137 103 7/25/2024
2.1.136 107 7/25/2024
2.1.135 103 7/25/2024
2.1.134 108 7/25/2024
2.1.133 96 7/25/2024
2.1.132 111 7/25/2024
2.1.131 110 7/25/2024
2.1.130 104 7/24/2024
2.1.129 110 7/24/2024
2.1.128 104 7/20/2024
2.1.127 127 7/20/2024
2.1.126 122 7/20/2024
2.1.125 120 7/14/2024
2.1.124 118 7/14/2024
2.1.123 116 7/14/2024
2.1.122 115 7/14/2024
2.1.121 116 7/14/2024
2.1.120 122 7/10/2024
2.1.119 117 7/10/2024
2.1.118 117 7/10/2024
2.1.117 102 7/10/2024
2.1.115 114 7/10/2024
2.1.114 107 7/10/2024
2.1.113 120 7/10/2024
2.1.112 118 7/10/2024
2.1.111 102 7/10/2024
2.1.109 120 7/10/2024
2.1.108 122 7/9/2024
2.1.106 88 7/9/2024
2.1.105 108 7/9/2024
2.1.104 102 7/9/2024
2.1.103 117 7/9/2024
2.1.102 117 7/9/2024
2.1.101 117 7/9/2024
2.1.100 118 7/9/2024
2.1.99 115 7/9/2024
2.1.98 102 7/8/2024
2.1.97 129 7/8/2024
2.1.96 121 7/8/2024
2.1.95 118 7/8/2024
2.1.94 127 7/8/2024
2.1.93 116 7/8/2024
2.1.92 122 7/7/2024
2.1.91 119 7/7/2024
2.1.90 125 7/3/2024
2.1.89 110 7/3/2024
2.1.88 127 7/3/2024
2.1.87 121 7/3/2024
2.1.86 108 7/3/2024
2.1.85 117 6/27/2024
2.1.84 105 6/27/2024
2.1.83 101 6/27/2024
2.1.82 138 6/22/2024
2.1.81 125 6/22/2024
2.1.80 127 6/22/2024
2.1.79 125 6/16/2024
2.1.78 103 6/15/2024
2.1.77 110 6/15/2024
2.1.76 121 6/15/2024
2.1.75 111 6/15/2024
2.1.74 124 6/15/2024
2.1.73 110 6/15/2024
2.1.72 123 6/15/2024
2.1.71 105 6/14/2024
2.1.70 127 6/4/2024
2.1.69 112 6/4/2024
2.1.68 130 6/2/2024
2.1.67 136 6/2/2024
2.1.66 133 6/1/2024
2.1.65 113 6/1/2024
2.1.64 123 6/1/2024
2.1.63 122 6/1/2024
2.1.62 126 6/1/2024
2.1.61 122 6/1/2024
2.1.60 126 6/1/2024
2.1.59 111 5/31/2024
2.1.58 126 5/31/2024
2.1.57 132 5/31/2024
2.1.56 119 5/31/2024
2.1.55 130 5/29/2024
2.1.54 119 5/29/2024
2.1.53 129 5/29/2024
2.1.52 119 5/28/2024
2.1.51 123 5/28/2024
2.1.50 124 5/28/2024
2.1.49 127 5/28/2024
2.1.48 127 5/28/2024
2.1.47 99 5/27/2024
2.1.46 113 5/27/2024
2.1.45 120 5/27/2024
2.1.44 117 5/27/2024
2.1.43 119 5/26/2024
2.1.42 125 5/26/2024
2.1.41 126 5/26/2024
2.1.40 114 5/26/2024
2.1.39 123 5/26/2024
2.1.38 129 5/26/2024
2.1.37 103 5/25/2024
2.1.36 124 5/25/2024
2.1.35 139 5/25/2024
2.1.34 135 5/25/2024
2.1.33 129 5/25/2024
2.1.32 122 5/23/2024
2.1.31 113 5/23/2024
2.1.30 128 5/23/2024
2.1.29 125 5/23/2024
2.1.28 113 5/23/2024
2.1.27 125 5/23/2024
2.1.26 132 5/23/2024
2.1.25 123 5/22/2024
2.1.24 126 5/22/2024
2.1.23 130 5/22/2024
2.1.22 127 5/22/2024
2.1.21 109 5/18/2024
2.1.20 100 5/18/2024
2.1.19 99 5/18/2024
2.1.18 107 5/18/2024
2.1.17 105 5/17/2024
2.1.16 121 5/17/2024
2.1.15 83 5/17/2024
2.1.14 113 5/16/2024
2.1.13 102 5/16/2024
2.1.12 118 5/16/2024
2.1.11 109 5/15/2024
2.1.10 104 5/15/2024
2.1.9 116 5/15/2024
2.1.8 101 5/14/2024
2.1.7 85 5/14/2024
2.1.6 84 5/14/2024
2.1.5 96 5/14/2024
2.1.4 67 5/14/2024
2.1.3 111 5/14/2024
2.1.2 90 5/14/2024
2.1.1 94 5/14/2024