Soenneker.Validators.ExpiringKey 3.0.1235

Prefix Reserved
dotnet add package Soenneker.Validators.ExpiringKey --version 3.0.1235
                    
NuGet\Install-Package Soenneker.Validators.ExpiringKey -Version 3.0.1235
                    
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.Validators.ExpiringKey" Version="3.0.1235" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Validators.ExpiringKey" Version="3.0.1235" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Validators.ExpiringKey" />
                    
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.Validators.ExpiringKey --version 3.0.1235
                    
#r "nuget: Soenneker.Validators.ExpiringKey, 3.0.1235"
                    
#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.
#addin nuget:?package=Soenneker.Validators.ExpiringKey&version=3.0.1235
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Validators.ExpiringKey&version=3.0.1235
                    
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.Validators.ExpiringKey

A validation module that checks for keys, stores them, expires them after an amount of time

Ideal for caching, session management, and more.

🚀 Features

  • Validate Key: Check if a key exists.
  • Add Key: Add a key with an expiration time.
  • Validate and Add: Validate if a key exists and add it if not.
  • Remove Key: Remove a key.

Installation

dotnet add package Soenneker.Validators.ExpiringKey

💻 Usage

IExpiringKeyValidator can be registered within DI, and injected:

public static async Task Main(string[] args)
{
    ...
    builder.Services.AddExpiringKeyValidatorAsSingleton();
}

or it can be initialized manually: new ExpiringKeyValidator().

Validate Key

Check if a key is present.

bool Validate(string key)

Add Key

Add a key with an expiration time.

void Add(string key, int expirationTimeMilliseconds)

Validate and Add Key

Validate a key and add it if it doesn't exist.

bool ValidateAndAdd(string key, int expirationTimeMilliseconds) // true if doesn't exist, false if it does

Remove Key

Remove a key.

void Remove(string key)

Example

var validator = new ExpiringKeyValidator();
validator.Add("key1", 5000); // 5 seconds

var invalid = validator.Validate("key1"); // false, key exists

await Task.Delay(7000); // wait 7 seconds

var validAfterTime = validator.Validate("key1"); // true, key does not exist
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

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.1235 277 6/11/2025
3.0.1234 134 5/27/2025
3.0.1233 135 5/27/2025
3.0.1232 136 5/27/2025
3.0.1231 125 5/23/2025
3.0.1230 129 5/23/2025
3.0.1229 133 5/22/2025
3.0.1228 215 5/13/2025
3.0.1227 151 5/8/2025
3.0.1226 133 5/7/2025
3.0.1225 136 5/7/2025
3.0.1223 136 5/5/2025
3.0.1222 131 5/5/2025
3.0.1221 130 5/5/2025
3.0.1220 138 5/5/2025
3.0.1219 137 5/5/2025
3.0.1218 152 4/9/2025
3.0.1217 152 4/8/2025
3.0.1216 156 4/8/2025
3.0.1214 145 4/8/2025
3.0.1213 153 4/8/2025
3.0.1212 146 4/8/2025
3.0.1211 147 4/8/2025
3.0.1210 144 4/8/2025
3.0.1209 140 4/8/2025
3.0.1208 135 4/8/2025
3.0.1207 143 4/8/2025
3.0.1206 146 4/8/2025
3.0.1205 144 4/8/2025
3.0.1204 138 4/8/2025
3.0.1203 140 4/8/2025
3.0.1202 145 4/8/2025
3.0.1201 145 4/8/2025
3.0.1200 142 4/7/2025
3.0.1199 137 4/7/2025
3.0.1198 145 4/7/2025
3.0.1197 139 4/7/2025
3.0.1196 139 4/7/2025
3.0.1195 134 4/7/2025
3.0.1194 135 4/7/2025
3.0.1193 145 4/7/2025
3.0.1192 151 4/7/2025
3.0.1191 150 4/7/2025
3.0.1190 146 4/7/2025
3.0.1189 143 4/6/2025
3.0.1188 125 4/6/2025
3.0.1187 129 4/6/2025
3.0.1186 101 4/6/2025
3.0.1185 96 4/6/2025
3.0.1184 91 4/6/2025
3.0.1183 91 4/6/2025
3.0.1182 64 4/5/2025
3.0.1181 77 4/5/2025
3.0.1180 71 4/5/2025
3.0.1179 74 4/5/2025
3.0.1178 79 4/5/2025
3.0.1177 75 4/5/2025
3.0.1176 69 4/5/2025
3.0.1175 73 4/5/2025
3.0.1174 75 4/5/2025
3.0.1173 94 4/4/2025
3.0.1172 131 4/4/2025
3.0.1171 144 4/4/2025
3.0.1170 134 4/4/2025
3.0.1169 143 4/1/2025
3.0.1168 144 4/1/2025
3.0.1167 145 4/1/2025
3.0.1166 141 4/1/2025
3.0.1165 141 4/1/2025
3.0.1164 144 4/1/2025
3.0.1163 151 3/31/2025
3.0.1162 138 3/31/2025
3.0.1161 144 3/31/2025
3.0.1160 145 3/31/2025
3.0.1159 73 3/29/2025
3.0.1158 74 3/29/2025
3.0.1157 80 3/29/2025
3.0.1156 83 3/29/2025
3.0.1155 455 3/25/2025
3.0.1154 461 3/25/2025
3.0.1153 457 3/25/2025
3.0.1152 461 3/25/2025
3.0.1151 461 3/25/2025
3.0.1150 103 3/21/2025
3.0.1149 104 3/21/2025
3.0.1148 118 3/21/2025
3.0.1147 118 3/21/2025
3.0.1146 128 3/21/2025
3.0.1145 131 3/18/2025
3.0.1144 133 3/18/2025
3.0.1143 135 3/18/2025
3.0.1142 131 3/18/2025
3.0.1141 138 3/18/2025
3.0.1140 139 3/18/2025
3.0.1139 66 3/15/2025
3.0.1138 62 3/15/2025
3.0.1137 59 3/15/2025
3.0.1136 63 3/15/2025
3.0.1135 68 3/15/2025
3.0.1134 64 3/15/2025
3.0.1133 74 3/14/2025
3.0.1132 64 3/14/2025
3.0.1131 154 3/12/2025
3.0.1130 152 3/12/2025
3.0.1129 154 3/12/2025
3.0.1128 149 3/12/2025
3.0.1127 147 3/12/2025
3.0.1126 166 3/11/2025
3.0.1125 147 3/11/2025
3.0.1124 148 3/11/2025
3.0.1123 144 3/11/2025
3.0.1122 151 3/11/2025
3.0.1121 154 3/11/2025
3.0.1120 145 3/11/2025
3.0.1119 149 3/11/2025
3.0.1118 208 3/7/2025
3.0.1117 201 3/7/2025
3.0.1116 202 3/7/2025
3.0.1115 205 3/7/2025
3.0.1114 195 3/7/2025
3.0.1113 194 3/7/2025
3.0.1112 102 3/2/2025
3.0.1111 89 3/2/2025
3.0.1110 93 3/2/2025
3.0.1109 87 3/2/2025
3.0.1108 86 3/2/2025
3.0.1107 90 3/2/2025
3.0.1106 81 3/2/2025
3.0.1105 89 3/2/2025
3.0.1104 90 3/2/2025
3.0.1103 88 3/2/2025
3.0.1102 89 3/1/2025
3.0.1101 83 3/1/2025
3.0.1100 88 3/1/2025
3.0.1099 97 3/1/2025
3.0.1098 94 3/1/2025
3.0.1097 94 3/1/2025
3.0.1096 104 3/1/2025
3.0.1095 85 3/1/2025
3.0.1094 87 3/1/2025
3.0.1093 85 3/1/2025
3.0.1092 78 3/1/2025
3.0.1091 87 3/1/2025
3.0.1090 84 3/1/2025
3.0.1089 77 3/1/2025
3.0.1088 94 2/26/2025
3.0.1087 91 2/26/2025
3.0.1086 90 2/25/2025
3.0.1085 90 2/25/2025
3.0.1084 85 2/25/2025
3.0.1083 86 2/25/2025
3.0.1082 94 2/25/2025
3.0.1081 88 2/25/2025
3.0.1080 95 2/25/2025
3.0.1079 80 2/25/2025
3.0.1078 86 2/25/2025
3.0.1077 82 2/25/2025
3.0.1076 88 2/25/2025
3.0.1075 89 2/24/2025
3.0.1074 81 2/24/2025
3.0.1073 111 2/23/2025
3.0.1072 88 2/23/2025
3.0.1071 91 2/23/2025
3.0.1070 86 2/23/2025
3.0.1069 86 2/23/2025
3.0.1068 92 2/23/2025
3.0.1067 90 2/22/2025
3.0.1066 93 2/22/2025
3.0.1065 88 2/22/2025
3.0.1064 90 2/22/2025
3.0.1063 96 2/22/2025
3.0.1062 92 2/22/2025
3.0.1061 86 2/22/2025
3.0.1060 93 2/22/2025
3.0.1059 89 2/22/2025
3.0.1058 85 2/22/2025
3.0.1057 84 2/22/2025
3.0.1056 90 2/22/2025
3.0.1055 89 2/22/2025
3.0.1054 81 2/21/2025
3.0.1053 87 2/21/2025
3.0.1052 95 2/21/2025
3.0.1051 94 2/21/2025
3.0.1050 94 2/21/2025
3.0.1049 100 2/21/2025
3.0.1048 112 2/19/2025
3.0.1047 93 2/19/2025
3.0.1046 96 2/19/2025
3.0.1045 99 2/19/2025
3.0.1044 92 2/19/2025
3.0.1043 100 2/19/2025
3.0.1042 100 2/19/2025
3.0.1041 102 2/19/2025
3.0.1040 94 2/18/2025
3.0.1039 93 2/18/2025
3.0.1038 100 2/18/2025
3.0.1037 89 2/18/2025
3.0.1036 97 2/18/2025
3.0.1035 90 2/18/2025
3.0.1034 106 2/18/2025
3.0.1033 97 2/14/2025
3.0.1032 92 2/14/2025
3.0.1031 104 2/14/2025
3.0.1030 96 2/14/2025
3.0.1029 97 2/14/2025
3.0.1028 90 2/14/2025
3.0.1027 93 2/13/2025
3.0.1026 92 2/13/2025
3.0.1025 105 2/12/2025
3.0.1024 108 2/12/2025
3.0.1023 102 2/12/2025
3.0.1022 104 2/12/2025
3.0.1021 98 2/12/2025
3.0.1020 108 2/12/2025
3.0.1019 101 2/12/2025
3.0.1018 95 2/12/2025
3.0.1017 97 2/12/2025
3.0.1016 98 2/12/2025
3.0.1015 99 2/12/2025
3.0.1014 105 2/12/2025
3.0.1013 101 2/12/2025
3.0.1012 94 2/11/2025
3.0.1011 102 2/11/2025
3.0.1010 106 2/11/2025
3.0.1009 104 2/11/2025
3.0.1008 102 2/11/2025
3.0.1007 90 2/11/2025
3.0.1006 95 2/11/2025
3.0.1005 102 2/11/2025
3.0.1004 95 2/11/2025
3.0.1003 102 2/11/2025
3.0.1002 107 2/11/2025
3.0.1001 102 2/10/2025
3.0.1000 95 2/10/2025
3.0.999 108 2/10/2025
3.0.998 99 2/10/2025
3.0.997 98 2/10/2025
3.0.996 102 2/9/2025
3.0.995 92 2/9/2025
3.0.994 98 2/9/2025
3.0.993 92 2/9/2025
3.0.992 89 2/9/2025
3.0.991 95 2/8/2025
3.0.990 87 2/8/2025
3.0.989 87 2/8/2025
3.0.988 100 2/8/2025
3.0.987 89 2/7/2025
3.0.986 94 2/7/2025
3.0.985 101 2/7/2025
3.0.984 97 2/7/2025
3.0.983 103 2/7/2025
3.0.982 89 2/7/2025
3.0.981 94 2/7/2025
3.0.980 97 2/6/2025
3.0.979 99 2/5/2025
3.0.978 100 2/5/2025
3.0.977 94 2/5/2025
3.0.976 96 2/5/2025
3.0.975 90 2/5/2025
3.0.974 95 2/5/2025
3.0.973 99 2/5/2025
3.0.972 96 2/5/2025
3.0.971 92 2/5/2025
3.0.970 90 2/5/2025
3.0.969 95 2/5/2025
3.0.968 90 2/5/2025
3.0.967 91 2/5/2025
3.0.966 87 2/5/2025
3.0.965 96 2/5/2025
3.0.964 89 2/5/2025
3.0.963 90 2/5/2025
3.0.962 103 1/28/2025
3.0.961 92 1/28/2025
3.0.960 98 1/28/2025
3.0.958 90 1/28/2025
3.0.957 80 1/28/2025
3.0.956 91 1/28/2025
3.0.955 87 1/28/2025
3.0.954 92 1/28/2025
3.0.953 85 1/27/2025
3.0.952 84 1/27/2025
3.0.951 83 1/27/2025
3.0.950 89 1/27/2025
3.0.949 97 1/27/2025
3.0.948 96 1/27/2025
3.0.947 91 1/26/2025
3.0.946 91 1/26/2025
3.0.945 97 1/26/2025
3.0.944 100 1/26/2025
3.0.943 86 1/26/2025
3.0.942 91 1/26/2025
3.0.941 92 1/26/2025
3.0.940 86 1/26/2025
3.0.939 105 1/26/2025
3.0.938 87 1/26/2025
3.0.937 89 1/26/2025
3.0.936 85 1/25/2025
3.0.935 93 1/25/2025
3.0.934 90 1/25/2025
3.0.933 94 1/25/2025
3.0.932 92 1/25/2025
3.0.931 100 1/25/2025
3.0.930 88 1/25/2025
3.0.929 94 1/25/2025
3.0.928 87 1/25/2025
3.0.927 88 1/25/2025
3.0.926 92 1/25/2025
3.0.925 82 1/25/2025
3.0.924 87 1/25/2025
3.0.923 75 1/24/2025
3.0.922 82 1/24/2025
3.0.921 79 1/24/2025
3.0.920 81 1/24/2025
3.0.919 84 1/24/2025
3.0.918 96 1/24/2025
3.0.917 89 1/24/2025
3.0.916 87 1/24/2025
3.0.915 79 1/24/2025
3.0.914 97 1/24/2025
3.0.913 87 1/24/2025
3.0.912 97 1/24/2025
3.0.911 81 1/24/2025
3.0.910 92 1/23/2025
3.0.909 85 1/23/2025
3.0.908 91 1/23/2025
3.0.907 89 1/23/2025
3.0.906 90 1/23/2025
3.0.905 82 1/22/2025
3.0.904 87 1/22/2025
3.0.903 90 1/22/2025
3.0.902 99 1/22/2025
3.0.901 92 1/21/2025
3.0.900 90 1/21/2025
3.0.899 93 1/21/2025
3.0.898 94 1/21/2025
3.0.897 85 1/21/2025
3.0.896 94 1/21/2025
3.0.895 89 1/21/2025
3.0.894 93 1/21/2025
3.0.893 97 1/21/2025
3.0.892 90 1/21/2025
3.0.891 87 1/21/2025
3.0.890 106 1/21/2025
3.0.889 94 1/21/2025
3.0.888 96 1/21/2025
3.0.887 81 1/21/2025
3.0.886 87 1/21/2025
3.0.885 88 1/21/2025
3.0.884 80 1/20/2025
3.0.883 86 1/20/2025
3.0.882 92 1/20/2025
3.0.881 76 1/20/2025
3.0.880 99 1/20/2025
3.0.879 89 1/20/2025
3.0.878 87 1/20/2025
3.0.877 90 1/20/2025
3.0.876 90 1/20/2025
3.0.875 96 1/20/2025
3.0.874 90 1/20/2025
3.0.873 86 1/20/2025
3.0.872 93 1/20/2025
3.0.871 95 1/20/2025
3.0.870 94 1/19/2025
3.0.869 78 1/19/2025
3.0.868 81 1/19/2025
3.0.867 90 1/19/2025
3.0.866 86 1/19/2025
3.0.865 89 1/19/2025
3.0.864 91 1/19/2025
3.0.863 83 1/19/2025
3.0.862 76 1/19/2025
3.0.861 77 1/19/2025
3.0.860 80 1/18/2025
3.0.859 80 1/18/2025
3.0.858 77 1/18/2025
3.0.857 91 1/18/2025
3.0.856 85 1/18/2025
3.0.855 84 1/18/2025
3.0.854 81 1/18/2025
3.0.853 89 1/18/2025
3.0.852 91 1/17/2025
3.0.851 91 1/17/2025
3.0.850 77 1/17/2025
3.0.849 95 1/17/2025
3.0.848 87 1/17/2025
3.0.847 88 1/17/2025
3.0.846 86 1/17/2025
3.0.845 80 1/17/2025
3.0.844 81 1/17/2025
3.0.843 76 1/17/2025
3.0.842 82 1/17/2025
3.0.841 85 1/16/2025
3.0.840 76 1/16/2025
3.0.839 77 1/16/2025
3.0.838 78 1/16/2025
3.0.837 86 1/16/2025
3.0.836 76 1/16/2025
3.0.835 86 1/16/2025
3.0.834 78 1/16/2025
3.0.833 79 1/16/2025
3.0.832 80 1/16/2025
3.0.831 79 1/16/2025
3.0.830 79 1/16/2025
3.0.829 81 1/16/2025
3.0.828 80 1/16/2025
3.0.827 85 1/15/2025
3.0.826 89 1/15/2025
3.0.825 86 1/15/2025
3.0.824 74 1/15/2025
3.0.823 80 1/15/2025
3.0.822 79 1/15/2025
3.0.821 84 1/15/2025
3.0.820 83 1/15/2025
3.0.819 74 1/15/2025
3.0.818 77 1/15/2025
3.0.817 65 1/15/2025
3.0.816 65 1/15/2025
3.0.815 62 1/15/2025
3.0.814 61 1/15/2025
3.0.813 59 1/15/2025
3.0.812 62 1/15/2025
3.0.811 57 1/15/2025
3.0.810 63 1/15/2025
3.0.809 82 1/14/2025
3.0.808 75 1/14/2025
3.0.807 74 1/14/2025
3.0.806 71 1/14/2025
3.0.805 77 1/14/2025
3.0.804 72 1/14/2025
3.0.803 77 1/14/2025
3.0.802 77 1/14/2025
3.0.801 74 1/14/2025
3.0.800 89 1/13/2025
3.0.799 79 1/13/2025
3.0.798 77 1/13/2025
3.0.797 73 1/13/2025
3.0.796 75 1/13/2025
3.0.795 77 1/13/2025
3.0.794 79 1/13/2025
3.0.793 73 1/13/2025
3.0.792 82 1/12/2025
3.0.791 88 1/11/2025
3.0.790 86 1/11/2025
3.0.789 80 1/11/2025
3.0.788 90 1/11/2025
3.0.787 86 1/11/2025
3.0.786 88 1/11/2025
3.0.785 95 1/11/2025
3.0.784 85 1/11/2025
3.0.783 92 1/11/2025
3.0.782 83 1/11/2025
3.0.781 94 1/10/2025
3.0.780 86 1/10/2025
3.0.779 94 1/10/2025
3.0.778 88 1/10/2025
3.0.777 97 1/10/2025
3.0.776 91 1/10/2025
3.0.775 91 1/10/2025
3.0.774 90 1/10/2025
3.0.773 123 1/3/2025
3.0.772 120 1/3/2025
3.0.771 128 1/3/2025
3.0.770 121 1/3/2025
3.0.769 133 1/3/2025
3.0.768 118 1/3/2025
3.0.767 110 1/3/2025
3.0.766 103 1/3/2025
3.0.765 97 1/3/2025
3.0.764 94 1/3/2025
3.0.763 109 1/2/2025
3.0.762 103 1/2/2025
3.0.761 102 1/2/2025
3.0.760 106 1/2/2025
3.0.759 102 1/2/2025
3.0.758 110 1/2/2025
3.0.757 100 1/2/2025
3.0.756 104 1/2/2025
3.0.755 104 1/1/2025
3.0.754 100 1/1/2025
3.0.753 106 1/1/2025
3.0.752 109 1/1/2025
3.0.751 101 12/31/2024
3.0.750 100 12/31/2024
3.0.749 98 12/31/2024
3.0.748 99 12/31/2024
3.0.747 103 12/31/2024
3.0.746 120 12/31/2024
3.0.745 121 12/31/2024
3.0.744 116 12/31/2024
3.0.743 128 12/31/2024
3.0.742 120 12/31/2024
3.0.741 92 12/31/2024
3.0.740 90 12/31/2024
3.0.739 89 12/31/2024
3.0.738 94 12/31/2024
3.0.737 90 12/31/2024
3.0.736 102 12/31/2024
3.0.735 92 12/31/2024
3.0.734 94 12/31/2024
3.0.733 111 12/31/2024
3.0.732 94 12/31/2024
3.0.731 110 12/31/2024
3.0.730 99 12/28/2024
3.0.729 100 12/28/2024
3.0.728 96 12/28/2024
3.0.727 94 12/28/2024
3.0.726 93 12/28/2024
3.0.725 95 12/28/2024
3.0.724 98 12/27/2024
3.0.723 92 12/27/2024
3.0.722 102 12/27/2024
3.0.721 96 12/27/2024
3.0.720 97 12/24/2024
3.0.719 98 12/24/2024
3.0.718 94 12/24/2024
3.0.717 88 12/24/2024
3.0.716 99 12/24/2024
3.0.715 90 12/24/2024
3.0.714 100 12/24/2024
3.0.713 86 12/24/2024
3.0.712 90 12/24/2024
3.0.711 93 12/24/2024
3.0.710 95 12/24/2024
3.0.709 90 12/24/2024
3.0.708 92 12/24/2024
3.0.707 89 12/24/2024
3.0.706 92 12/23/2024
3.0.705 93 12/23/2024
3.0.704 90 12/23/2024
3.0.703 93 12/23/2024
3.0.702 86 12/23/2024
3.0.701 84 12/23/2024
3.0.700 91 12/23/2024
3.0.699 111 12/23/2024
3.0.698 95 12/23/2024
3.0.697 88 12/23/2024
3.0.696 101 12/23/2024
3.0.695 94 12/23/2024
3.0.694 94 12/23/2024
3.0.693 97 12/23/2024
3.0.692 94 12/22/2024
3.0.691 93 12/22/2024
3.0.690 86 12/22/2024
3.0.689 88 12/22/2024
3.0.688 100 12/22/2024
3.0.687 92 12/22/2024
3.0.686 85 12/22/2024
3.0.685 92 12/22/2024
3.0.684 91 12/22/2024
3.0.683 92 12/22/2024
3.0.682 93 12/22/2024
3.0.681 115 12/22/2024
3.0.680 103 12/22/2024
3.0.679 94 12/22/2024
3.0.678 92 12/21/2024
3.0.677 101 12/21/2024
3.0.676 96 12/21/2024
3.0.675 90 12/21/2024
3.0.674 126 12/21/2024
3.0.673 88 12/21/2024
3.0.672 94 12/21/2024
3.0.671 93 12/21/2024
3.0.670 98 12/21/2024
3.0.669 106 12/21/2024
3.0.668 96 12/21/2024
3.0.667 96 12/21/2024
3.0.666 104 12/21/2024
3.0.665 98 12/21/2024
3.0.664 96 12/21/2024
3.0.663 89 12/20/2024
3.0.662 97 12/20/2024
3.0.661 102 12/20/2024
3.0.660 93 12/20/2024
3.0.659 96 12/20/2024
3.0.658 93 12/20/2024
3.0.657 96 12/20/2024
3.0.656 100 12/20/2024
3.0.655 100 12/20/2024
3.0.654 96 12/19/2024
3.0.653 98 12/19/2024
3.0.652 93 12/19/2024
3.0.651 90 12/19/2024
3.0.650 99 12/19/2024
3.0.649 107 12/19/2024
3.0.648 98 12/19/2024
3.0.647 105 12/18/2024
3.0.646 91 12/18/2024
3.0.645 106 12/18/2024
3.0.644 95 12/18/2024
3.0.643 85 12/17/2024
3.0.642 94 12/16/2024
3.0.641 79 12/16/2024
3.0.640 86 12/16/2024
3.0.639 93 12/10/2024
3.0.638 89 12/10/2024
3.0.637 86 12/10/2024
3.0.636 96 12/10/2024
3.0.635 87 12/10/2024
3.0.634 90 12/10/2024
3.0.633 87 12/10/2024
3.0.632 90 12/9/2024
3.0.631 90 12/9/2024
3.0.630 94 12/9/2024
3.0.629 98 12/9/2024
3.0.628 93 12/9/2024
3.0.627 95 12/9/2024
3.0.626 100 12/9/2024
3.0.625 96 12/9/2024
3.0.624 93 12/9/2024
3.0.623 93 12/7/2024
3.0.622 100 12/7/2024
3.0.621 91 12/7/2024
3.0.620 97 12/6/2024
3.0.619 92 12/6/2024
3.0.618 90 12/6/2024
3.0.617 97 12/6/2024
3.0.616 101 12/6/2024
3.0.615 94 12/6/2024
3.0.614 96 12/6/2024
3.0.613 96 12/6/2024
3.0.612 101 12/6/2024
3.0.611 116 12/6/2024
3.0.610 100 12/6/2024
3.0.609 96 12/6/2024
3.0.608 93 12/6/2024
3.0.607 105 12/6/2024
3.0.606 103 12/6/2024
3.0.605 98 12/6/2024
3.0.604 96 12/6/2024
3.0.603 101 12/6/2024
3.0.602 91 12/6/2024
3.0.601 100 12/6/2024
3.0.600 102 12/6/2024
3.0.599 100 12/6/2024
3.0.598 99 12/6/2024
3.0.597 102 12/6/2024
3.0.596 103 12/5/2024
3.0.595 103 12/5/2024
3.0.594 102 12/5/2024
3.0.593 100 12/5/2024
3.0.592 101 12/3/2024
3.0.591 96 12/3/2024
3.0.590 109 12/3/2024
3.0.589 108 12/3/2024
3.0.588 99 12/3/2024
3.0.587 96 12/3/2024
3.0.586 96 12/3/2024
3.0.585 85 12/3/2024
3.0.584 99 12/2/2024
3.0.583 90 12/2/2024
3.0.582 90 12/2/2024
3.0.581 92 12/2/2024
3.0.580 100 12/2/2024
3.0.579 85 12/2/2024
3.0.578 84 12/2/2024
3.0.577 101 12/2/2024
3.0.576 95 12/2/2024
3.0.575 95 12/2/2024
3.0.574 90 12/2/2024
3.0.573 98 12/1/2024
3.0.572 94 12/1/2024
3.0.571 96 12/1/2024
3.0.570 92 12/1/2024
3.0.569 102 12/1/2024
3.0.568 102 12/1/2024
3.0.567 96 12/1/2024
3.0.566 99 12/1/2024
3.0.565 94 11/29/2024
3.0.564 90 11/29/2024
3.0.563 96 11/29/2024
3.0.562 91 11/29/2024
3.0.561 97 11/29/2024
3.0.560 101 11/29/2024
3.0.559 101 11/29/2024
3.0.558 97 11/21/2024
3.0.557 95 11/21/2024
3.0.556 89 11/21/2024
3.0.555 97 11/21/2024
3.0.554 95 11/21/2024
3.0.553 99 11/20/2024
3.0.552 110 11/20/2024
3.0.551 104 11/20/2024
3.0.550 98 11/20/2024
3.0.549 97 11/20/2024
3.0.548 93 11/20/2024
3.0.547 92 11/20/2024
3.0.546 92 11/20/2024
3.0.545 97 11/20/2024
3.0.544 93 11/20/2024
3.0.543 98 11/19/2024
3.0.542 86 11/19/2024
3.0.541 87 11/19/2024
3.0.540 90 11/19/2024
3.0.539 97 11/19/2024
3.0.538 88 11/19/2024
3.0.537 93 11/19/2024
3.0.536 96 11/15/2024
3.0.535 105 11/15/2024
3.0.534 92 11/14/2024
3.0.533 92 11/14/2024
3.0.532 91 11/14/2024
3.0.531 93 11/14/2024
3.0.530 86 11/14/2024
3.0.529 94 11/14/2024
3.0.528 86 11/14/2024
3.0.527 92 11/14/2024
3.0.526 89 11/14/2024
3.0.525 79 11/14/2024
3.0.524 102 11/14/2024
3.0.523 90 11/14/2024
3.0.522 96 11/14/2024
3.0.521 95 11/14/2024
3.0.520 95 11/14/2024
3.0.519 93 11/14/2024
3.0.518 93 11/14/2024
3.0.517 94 11/14/2024
3.0.516 95 11/14/2024
3.0.515 89 11/14/2024
3.0.514 92 11/14/2024
3.0.513 102 11/14/2024
3.0.512 102 11/14/2024
2.1.511 95 11/13/2024
2.1.510 100 11/13/2024
2.1.509 101 11/13/2024
2.1.508 97 11/13/2024
2.1.507 93 11/13/2024
2.1.506 92 11/13/2024
2.1.505 102 11/13/2024
2.1.504 101 11/13/2024
2.1.503 98 11/13/2024
2.1.502 94 11/13/2024
2.1.501 99 11/12/2024
2.1.500 97 11/12/2024
2.1.499 99 11/12/2024
2.1.498 104 11/9/2024
2.1.497 109 11/9/2024
2.1.496 107 11/9/2024
2.1.495 106 11/9/2024
2.1.494 100 11/9/2024
2.1.493 102 11/9/2024
2.1.492 97 11/9/2024
2.1.491 101 11/9/2024
2.1.490 91 11/9/2024
2.1.489 106 11/9/2024
2.1.488 107 11/8/2024
2.1.487 97 11/8/2024
2.1.486 95 11/8/2024
2.1.485 93 11/8/2024
2.1.484 102 11/8/2024
2.1.483 101 11/8/2024
2.1.482 103 11/8/2024
2.1.481 100 11/8/2024
2.1.480 105 11/8/2024
2.1.479 94 11/6/2024
2.1.478 91 11/6/2024
2.1.477 98 11/1/2024
2.1.476 97 11/1/2024
2.1.475 95 11/1/2024
2.1.474 94 11/1/2024
2.1.473 105 10/29/2024
2.1.472 94 10/29/2024
2.1.471 108 10/29/2024
2.1.470 92 10/29/2024
2.1.469 101 10/29/2024
2.1.468 104 10/29/2024
2.1.467 101 10/29/2024
2.1.466 89 10/29/2024
2.1.465 98 10/29/2024
2.1.464 93 10/29/2024
2.1.463 91 10/29/2024
2.1.462 88 10/29/2024
2.1.461 100 10/28/2024
2.1.460 93 10/28/2024
2.1.459 102 10/26/2024
2.1.458 100 10/26/2024
2.1.457 102 10/26/2024
2.1.456 94 10/26/2024
2.1.455 100 10/26/2024
2.1.454 102 10/22/2024
2.1.453 93 10/22/2024
2.1.452 96 10/22/2024
2.1.451 94 10/22/2024
2.1.450 95 10/22/2024
2.1.449 99 10/22/2024
2.1.448 93 10/22/2024
2.1.447 92 10/22/2024
2.1.446 92 10/22/2024
2.1.445 88 10/22/2024
2.1.444 96 10/22/2024
2.1.443 132 10/18/2024
2.1.442 127 10/18/2024
2.1.441 101 10/17/2024
2.1.440 110 10/17/2024
2.1.439 101 10/17/2024
2.1.438 103 10/17/2024
2.1.437 97 10/15/2024
2.1.436 99 10/15/2024
2.1.435 98 10/15/2024
2.1.434 94 10/15/2024
2.1.433 99 10/14/2024
2.1.432 98 10/12/2024
2.1.431 101 10/12/2024
2.1.430 94 10/12/2024
2.1.429 98 10/12/2024
2.1.428 94 10/12/2024
2.1.427 103 10/11/2024
2.1.426 93 10/11/2024
2.1.425 102 10/11/2024
2.1.424 106 10/11/2024
2.1.423 103 10/11/2024
2.1.422 99 10/9/2024
2.1.421 103 10/9/2024
2.1.420 101 10/9/2024
2.1.419 94 10/9/2024
2.1.418 103 10/9/2024
2.1.417 90 10/9/2024
2.1.416 98 10/9/2024
2.1.415 100 10/9/2024
2.1.414 93 10/9/2024
2.1.413 87 10/9/2024
2.1.412 100 10/9/2024
2.1.411 97 10/9/2024
2.1.410 94 10/8/2024
2.1.409 101 10/8/2024
2.1.408 98 10/8/2024
2.1.407 96 10/8/2024
2.1.406 93 10/8/2024
2.1.405 112 10/8/2024
2.1.404 97 10/8/2024
2.1.403 112 10/8/2024
2.1.402 95 10/3/2024
2.1.401 94 10/3/2024
2.1.400 87 10/3/2024
2.1.399 98 10/3/2024
2.1.398 94 10/3/2024
2.1.397 97 10/3/2024
2.1.396 137 10/3/2024
2.1.395 91 10/3/2024
2.1.394 99 10/3/2024
2.1.393 88 10/3/2024
2.1.392 98 10/2/2024
2.1.391 93 10/2/2024
2.1.390 95 10/2/2024
2.1.389 98 10/2/2024
2.1.388 100 10/2/2024
2.1.387 95 10/2/2024
2.1.386 88 10/2/2024
2.1.385 98 10/2/2024
2.1.384 100 10/2/2024
2.1.383 98 10/1/2024
2.1.382 90 10/1/2024
2.1.381 93 10/1/2024
2.1.380 97 10/1/2024
2.1.379 98 10/1/2024
2.1.378 94 10/1/2024
2.1.377 94 10/1/2024
2.1.376 97 10/1/2024
2.1.375 99 10/1/2024
2.1.374 103 9/29/2024
2.1.373 97 9/29/2024
2.1.372 100 9/29/2024
2.1.371 101 9/29/2024
2.1.370 102 9/29/2024
2.1.369 105 9/29/2024
2.1.368 106 9/29/2024
2.1.367 98 9/29/2024
2.1.366 94 9/27/2024
2.1.365 99 9/27/2024
2.1.364 93 9/27/2024
2.1.363 97 9/27/2024
2.1.362 96 9/27/2024
2.1.361 95 9/27/2024
2.1.360 93 9/27/2024
2.1.359 102 9/27/2024
2.1.358 105 9/27/2024
2.1.357 93 9/27/2024
2.1.356 98 9/27/2024
2.1.355 91 9/27/2024
2.1.354 113 9/27/2024
2.1.353 95 9/27/2024
2.1.352 98 9/27/2024
2.1.351 100 9/27/2024
2.1.350 112 9/27/2024
2.1.349 95 9/27/2024
2.1.348 95 9/26/2024
2.1.347 100 9/26/2024
2.1.346 105 9/26/2024
2.1.345 95 9/26/2024
2.1.344 108 9/26/2024
2.1.343 97 9/26/2024
2.1.342 99 9/26/2024
2.1.341 101 9/26/2024
2.1.340 100 9/26/2024
2.1.339 95 9/26/2024
2.1.338 97 9/26/2024
2.1.337 103 9/26/2024
2.1.336 104 9/26/2024
2.1.335 92 9/26/2024
2.1.334 101 9/26/2024
2.1.333 104 9/24/2024
2.1.332 101 9/23/2024
2.1.331 90 9/23/2024
2.1.330 102 9/23/2024
2.1.329 105 9/23/2024
2.1.328 102 9/23/2024
2.1.327 98 9/23/2024
2.1.326 114 9/23/2024
2.1.325 94 9/23/2024
2.1.324 103 9/23/2024
2.1.323 104 9/23/2024
2.1.322 103 9/23/2024
2.1.321 98 9/23/2024
2.1.320 93 9/23/2024
2.1.319 99 9/23/2024
2.1.318 108 9/23/2024
2.1.317 91 9/23/2024
2.1.316 91 9/23/2024
2.1.315 102 9/23/2024
2.1.314 89 9/23/2024
2.1.313 94 9/23/2024
2.1.312 94 9/19/2024
2.1.311 93 9/18/2024
2.1.310 97 9/18/2024
2.1.309 99 9/18/2024
2.1.308 106 9/18/2024
2.1.307 104 9/18/2024
2.1.306 109 9/18/2024
2.1.305 107 9/17/2024
2.1.304 112 9/17/2024
2.1.303 105 9/17/2024
2.1.302 99 9/17/2024
2.1.301 108 9/17/2024
2.1.300 109 9/17/2024
2.1.299 104 9/17/2024
2.1.297 101 9/17/2024
2.1.296 127 9/17/2024
2.1.295 116 9/17/2024
2.1.294 118 9/17/2024
2.1.293 120 9/17/2024
2.1.292 120 9/17/2024
2.1.291 118 9/17/2024
2.1.290 116 9/17/2024
2.1.289 122 9/16/2024
2.1.288 111 9/16/2024
2.1.287 115 9/16/2024
2.1.286 122 9/16/2024
2.1.285 121 9/16/2024
2.1.284 114 9/16/2024
2.1.283 117 9/16/2024
2.1.282 124 9/12/2024
2.1.281 128 9/12/2024
2.1.280 129 9/12/2024
2.1.279 113 9/12/2024
2.1.278 119 9/12/2024
2.1.277 124 9/12/2024
2.1.276 115 9/12/2024
2.1.275 113 9/11/2024
2.1.274 116 9/11/2024
2.1.273 115 9/11/2024
2.1.272 126 9/11/2024
2.1.271 111 9/11/2024
2.1.269 121 9/11/2024
2.1.268 108 9/11/2024
2.1.267 116 9/11/2024
2.1.266 126 9/11/2024
2.1.265 113 9/11/2024
2.1.264 116 9/11/2024
2.1.263 116 9/10/2024
2.1.262 115 9/10/2024
2.1.261 125 9/10/2024
2.1.260 114 9/10/2024
2.1.259 115 9/10/2024
2.1.258 114 9/10/2024
2.1.257 109 9/10/2024
2.1.256 106 9/10/2024
2.1.255 102 9/10/2024
2.1.254 114 9/10/2024
2.1.253 116 9/10/2024
2.1.252 110 9/10/2024
2.1.251 110 9/10/2024
2.1.249 113 9/10/2024
2.1.248 103 9/10/2024
2.1.247 104 9/9/2024
2.1.246 108 9/9/2024
2.1.244 111 9/9/2024
2.1.243 121 9/9/2024
2.1.242 110 9/9/2024
2.1.241 111 9/9/2024
2.1.239 112 9/9/2024
2.1.238 104 9/9/2024
2.1.237 113 9/9/2024
2.1.236 111 9/9/2024
2.1.235 115 9/7/2024
2.1.234 116 9/7/2024
2.1.233 117 9/7/2024
2.1.232 113 9/7/2024
2.1.231 109 9/7/2024
2.1.230 110 9/7/2024
2.1.229 123 9/7/2024
2.1.228 106 9/7/2024
2.1.227 130 9/6/2024
2.1.226 120 9/6/2024
2.1.225 121 9/6/2024
2.1.224 117 9/6/2024
2.1.223 118 9/6/2024
2.1.222 131 9/6/2024
2.1.221 127 9/6/2024
2.1.220 119 9/6/2024
2.1.219 126 9/5/2024
2.1.218 113 9/5/2024
2.1.217 109 9/5/2024
2.1.216 107 9/5/2024
2.1.215 116 9/5/2024
2.1.214 113 9/5/2024
2.1.213 115 9/5/2024
2.1.212 112 9/5/2024
2.1.211 121 9/5/2024
2.1.210 109 9/5/2024
2.1.209 119 9/5/2024
2.1.208 113 9/5/2024
2.1.207 121 9/5/2024
2.1.206 115 9/5/2024
2.1.205 116 9/5/2024
2.1.204 114 9/5/2024
2.1.203 114 9/4/2024
2.1.202 115 9/4/2024
2.1.201 120 9/4/2024
2.1.200 111 9/4/2024
2.1.199 126 9/4/2024
2.1.198 116 9/3/2024
2.1.197 110 9/3/2024
2.1.196 115 9/3/2024
2.1.195 113 9/3/2024
2.1.194 116 9/3/2024
2.1.193 110 9/3/2024
2.1.192 89 9/3/2024
2.1.191 105 9/3/2024
2.1.190 121 9/3/2024
2.1.189 115 9/3/2024
2.1.188 124 9/3/2024
2.1.187 109 9/3/2024
2.1.186 106 9/3/2024
2.1.185 110 8/30/2024
2.1.184 125 8/29/2024
2.1.183 107 8/29/2024
2.1.182 113 8/29/2024
2.1.181 109 8/29/2024
2.1.180 102 8/29/2024
2.1.179 106 8/29/2024
2.1.178 113 8/26/2024
2.1.177 121 8/26/2024
2.1.176 123 8/26/2024
2.1.175 113 8/26/2024
2.1.174 112 8/26/2024
2.1.173 115 8/26/2024
2.1.172 126 8/26/2024
2.1.171 142 8/21/2024
2.1.170 139 8/21/2024
2.1.169 137 8/21/2024
2.1.168 135 8/21/2024
2.1.167 134 8/21/2024
2.1.166 132 8/21/2024
2.1.165 135 8/21/2024
2.1.164 128 8/21/2024
2.1.163 137 8/20/2024
2.1.162 136 8/20/2024
2.1.161 130 8/20/2024
2.1.160 124 8/20/2024
2.1.159 137 8/20/2024
2.1.158 110 8/20/2024
2.1.157 124 8/20/2024
2.1.156 116 8/20/2024
2.1.155 137 8/20/2024
2.1.154 127 8/20/2024
2.1.153 124 8/20/2024
2.1.152 125 8/20/2024
2.1.151 121 8/20/2024
2.1.150 125 8/19/2024
2.1.149 118 8/19/2024
2.1.148 129 8/15/2024
2.1.147 136 8/15/2024
2.1.146 131 8/15/2024
2.1.145 139 8/15/2024
2.1.144 132 8/15/2024
2.1.143 122 8/15/2024
2.1.142 132 8/14/2024
2.1.141 132 8/14/2024
2.1.140 106 8/14/2024
2.1.139 121 8/14/2024
2.1.138 109 8/14/2024
2.1.137 128 8/13/2024
2.1.136 100 8/7/2024
2.1.135 93 8/7/2024
2.1.134 122 8/7/2024
2.1.133 111 8/7/2024
2.1.132 111 8/7/2024
2.1.131 114 8/7/2024
2.1.130 105 8/7/2024
2.1.129 111 8/6/2024
2.1.128 97 8/6/2024
2.1.127 84 8/6/2024
2.1.126 90 8/1/2024
2.1.125 87 8/1/2024
2.1.124 83 8/1/2024
2.1.123 92 8/1/2024
2.1.122 88 8/1/2024
2.1.121 98 8/1/2024
2.1.120 88 8/1/2024
2.1.117 83 7/25/2024
2.1.116 103 7/25/2024
2.1.115 95 7/25/2024
2.1.114 99 7/25/2024
2.1.113 102 7/25/2024
2.1.112 94 7/25/2024
2.1.111 106 7/25/2024
2.1.110 103 7/25/2024
2.1.109 104 7/25/2024
2.1.108 96 7/25/2024
2.1.107 97 7/25/2024
2.1.106 109 7/24/2024
2.1.105 101 7/24/2024
2.1.103 114 7/24/2024
2.1.102 103 7/20/2024
2.1.101 95 7/20/2024
2.1.100 105 7/20/2024
2.1.99 104 7/20/2024
2.1.98 109 7/20/2024
2.1.97 101 7/20/2024
2.1.96 103 7/14/2024
2.1.95 96 7/14/2024
2.1.94 99 7/14/2024
2.1.93 79 7/14/2024
2.1.92 100 7/14/2024
2.1.91 98 7/14/2024
2.1.90 100 7/14/2024
2.1.89 101 7/14/2024
2.1.88 97 7/14/2024
2.1.87 91 7/14/2024
2.1.86 102 7/11/2024
2.1.85 100 7/10/2024
2.1.84 100 7/10/2024
2.1.83 100 7/10/2024
2.1.82 106 7/10/2024
2.1.81 100 7/10/2024
2.1.80 88 7/10/2024
2.1.79 107 7/10/2024
2.1.76 83 7/10/2024
2.1.75 108 7/10/2024
2.1.74 97 7/10/2024
2.1.73 100 7/10/2024
2.1.72 94 7/10/2024
2.1.71 107 7/10/2024
2.1.70 95 7/10/2024
2.1.69 92 7/10/2024
2.1.66 90 7/10/2024
2.1.65 111 7/10/2024
2.1.64 108 7/9/2024
2.1.61 74 7/9/2024
2.1.60 100 7/9/2024
2.1.59 97 7/9/2024
2.1.58 108 7/9/2024
2.1.57 104 7/9/2024
2.1.56 117 7/9/2024
2.1.55 124 7/9/2024
2.1.54 105 7/9/2024
2.1.53 107 7/9/2024
2.1.52 106 7/9/2024
2.1.51 105 7/9/2024
2.1.50 102 7/9/2024
2.1.49 92 7/9/2024
2.1.48 109 7/9/2024
2.1.47 96 7/9/2024
2.1.46 120 7/9/2024
2.1.45 118 7/8/2024
2.1.44 94 7/8/2024
2.1.43 109 7/8/2024
2.1.42 119 7/8/2024
2.1.41 100 7/8/2024
2.1.40 113 7/8/2024
2.1.39 98 7/8/2024
2.1.38 94 7/8/2024
2.1.37 119 7/7/2024
2.1.36 137 7/7/2024
2.1.35 113 7/7/2024
2.1.34 101 7/7/2024
2.1.33 128 7/3/2024
2.1.32 108 7/3/2024
2.1.31 130 7/3/2024
2.1.30 115 7/3/2024
2.1.29 114 7/3/2024
2.1.28 119 7/3/2024
2.1.27 110 7/3/2024
2.1.26 102 7/3/2024
2.1.25 108 7/3/2024
2.1.24 125 6/27/2024
2.1.23 134 6/27/2024
2.1.22 127 6/27/2024
2.1.21 126 6/27/2024
2.1.20 111 6/22/2024
2.1.19 116 6/22/2024
2.1.18 125 6/22/2024
2.1.17 117 6/22/2024
2.1.16 119 6/22/2024
2.1.15 122 6/16/2024
2.1.14 112 6/16/2024
2.1.13 160 6/15/2024
2.1.12 119 6/15/2024
2.1.11 100 6/15/2024
2.1.10 116 6/15/2024
2.1.9 127 6/15/2024
2.1.8 99 6/15/2024
2.1.7 119 6/15/2024
2.1.6 114 6/15/2024
2.1.5 94 6/15/2024
2.1.4 114 6/12/2024
2.1.3 104 6/12/2024