├── .gitattributes ├── .gitignore ├── FileConsumerService.cs ├── FileWatching.csproj ├── FileWatching.sln ├── IFileConsumerService.cs ├── IMyFileWatcher.cs ├── MyFileWatcher.cs ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── Worker.cs ├── appsettings.Development.json ├── appsettings.json ├── example_data_1.csv.csv └── example_data_2.csv.csv /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Mono auto generated files 17 | mono_crash.* 18 | 19 | # Build results 20 | [Dd]ebug/ 21 | [Dd]ebugPublic/ 22 | [Rr]elease/ 23 | [Rr]eleases/ 24 | x64/ 25 | x86/ 26 | [Ww][Ii][Nn]32/ 27 | [Aa][Rr][Mm]/ 28 | [Aa][Rr][Mm]64/ 29 | bld/ 30 | [Bb]in/ 31 | [Oo]bj/ 32 | [Oo]ut/ 33 | [Ll]og/ 34 | [Ll]ogs/ 35 | 36 | # Visual Studio 2015/2017 cache/options directory 37 | .vs/ 38 | # Uncomment if you have tasks that create the project's static files in wwwroot 39 | #wwwroot/ 40 | 41 | # Visual Studio 2017 auto generated files 42 | Generated\ Files/ 43 | 44 | # MSTest test Results 45 | [Tt]est[Rr]esult*/ 46 | [Bb]uild[Ll]og.* 47 | 48 | # NUnit 49 | *.VisualState.xml 50 | TestResult.xml 51 | nunit-*.xml 52 | 53 | # Build Results of an ATL Project 54 | [Dd]ebugPS/ 55 | [Rr]eleasePS/ 56 | dlldata.c 57 | 58 | # Benchmark Results 59 | BenchmarkDotNet.Artifacts/ 60 | 61 | # .NET Core 62 | project.lock.json 63 | project.fragment.lock.json 64 | artifacts/ 65 | 66 | # ASP.NET Scaffolding 67 | ScaffoldingReadMe.txt 68 | 69 | # StyleCop 70 | StyleCopReport.xml 71 | 72 | # Files built by Visual Studio 73 | *_i.c 74 | *_p.c 75 | *_h.h 76 | *.ilk 77 | *.meta 78 | *.obj 79 | *.iobj 80 | *.pch 81 | *.pdb 82 | *.ipdb 83 | *.pgc 84 | *.pgd 85 | *.rsp 86 | *.sbr 87 | *.tlb 88 | *.tli 89 | *.tlh 90 | *.tmp 91 | *.tmp_proj 92 | *_wpftmp.csproj 93 | *.log 94 | *.vspscc 95 | *.vssscc 96 | .builds 97 | *.pidb 98 | *.svclog 99 | *.scc 100 | 101 | # Chutzpah Test files 102 | _Chutzpah* 103 | 104 | # Visual C++ cache files 105 | ipch/ 106 | *.aps 107 | *.ncb 108 | *.opendb 109 | *.opensdf 110 | *.sdf 111 | *.cachefile 112 | *.VC.db 113 | *.VC.VC.opendb 114 | 115 | # Visual Studio profiler 116 | *.psess 117 | *.vsp 118 | *.vspx 119 | *.sap 120 | 121 | # Visual Studio Trace Files 122 | *.e2e 123 | 124 | # TFS 2012 Local Workspace 125 | $tf/ 126 | 127 | # Guidance Automation Toolkit 128 | *.gpState 129 | 130 | # ReSharper is a .NET coding add-in 131 | _ReSharper*/ 132 | *.[Rr]e[Ss]harper 133 | *.DotSettings.user 134 | 135 | # TeamCity is a build add-in 136 | _TeamCity* 137 | 138 | # DotCover is a Code Coverage Tool 139 | *.dotCover 140 | 141 | # AxoCover is a Code Coverage Tool 142 | .axoCover/* 143 | !.axoCover/settings.json 144 | 145 | # Coverlet is a free, cross platform Code Coverage Tool 146 | coverage*.json 147 | coverage*.xml 148 | coverage*.info 149 | 150 | # Visual Studio code coverage results 151 | *.coverage 152 | *.coveragexml 153 | 154 | # NCrunch 155 | _NCrunch_* 156 | .*crunch*.local.xml 157 | nCrunchTemp_* 158 | 159 | # MightyMoose 160 | *.mm.* 161 | AutoTest.Net/ 162 | 163 | # Web workbench (sass) 164 | .sass-cache/ 165 | 166 | # Installshield output folder 167 | [Ee]xpress/ 168 | 169 | # DocProject is a documentation generator add-in 170 | DocProject/buildhelp/ 171 | DocProject/Help/*.HxT 172 | DocProject/Help/*.HxC 173 | DocProject/Help/*.hhc 174 | DocProject/Help/*.hhk 175 | DocProject/Help/*.hhp 176 | DocProject/Help/Html2 177 | DocProject/Help/html 178 | 179 | # Click-Once directory 180 | publish/ 181 | 182 | # Publish Web Output 183 | *.[Pp]ublish.xml 184 | *.azurePubxml 185 | # Note: Comment the next line if you want to checkin your web deploy settings, 186 | # but database connection strings (with potential passwords) will be unencrypted 187 | *.pubxml 188 | *.publishproj 189 | 190 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 191 | # checkin your Azure Web App publish settings, but sensitive information contained 192 | # in these scripts will be unencrypted 193 | PublishScripts/ 194 | 195 | # NuGet Packages 196 | *.nupkg 197 | # NuGet Symbol Packages 198 | *.snupkg 199 | # The packages folder can be ignored because of Package Restore 200 | **/[Pp]ackages/* 201 | # except build/, which is used as an MSBuild target. 202 | !**/[Pp]ackages/build/ 203 | # Uncomment if necessary however generally it will be regenerated when needed 204 | #!**/[Pp]ackages/repositories.config 205 | # NuGet v3's project.json files produces more ignorable files 206 | *.nuget.props 207 | *.nuget.targets 208 | 209 | # Microsoft Azure Build Output 210 | csx/ 211 | *.build.csdef 212 | 213 | # Microsoft Azure Emulator 214 | ecf/ 215 | rcf/ 216 | 217 | # Windows Store app package directories and files 218 | AppPackages/ 219 | BundleArtifacts/ 220 | Package.StoreAssociation.xml 221 | _pkginfo.txt 222 | *.appx 223 | *.appxbundle 224 | *.appxupload 225 | 226 | # Visual Studio cache files 227 | # files ending in .cache can be ignored 228 | *.[Cc]ache 229 | # but keep track of directories ending in .cache 230 | !?*.[Cc]ache/ 231 | 232 | # Others 233 | ClientBin/ 234 | ~$* 235 | *~ 236 | *.dbmdl 237 | *.dbproj.schemaview 238 | *.jfm 239 | *.pfx 240 | *.publishsettings 241 | orleans.codegen.cs 242 | 243 | # Including strong name files can present a security risk 244 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 245 | #*.snk 246 | 247 | # Since there are multiple workflows, uncomment next line to ignore bower_components 248 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 249 | #bower_components/ 250 | 251 | # RIA/Silverlight projects 252 | Generated_Code/ 253 | 254 | # Backup & report files from converting an old project file 255 | # to a newer Visual Studio version. Backup files are not needed, 256 | # because we have git ;-) 257 | _UpgradeReport_Files/ 258 | Backup*/ 259 | UpgradeLog*.XML 260 | UpgradeLog*.htm 261 | ServiceFabricBackup/ 262 | *.rptproj.bak 263 | 264 | # SQL Server files 265 | *.mdf 266 | *.ldf 267 | *.ndf 268 | 269 | # Business Intelligence projects 270 | *.rdl.data 271 | *.bim.layout 272 | *.bim_*.settings 273 | *.rptproj.rsuser 274 | *- [Bb]ackup.rdl 275 | *- [Bb]ackup ([0-9]).rdl 276 | *- [Bb]ackup ([0-9][0-9]).rdl 277 | 278 | # Microsoft Fakes 279 | FakesAssemblies/ 280 | 281 | # GhostDoc plugin setting file 282 | *.GhostDoc.xml 283 | 284 | # Node.js Tools for Visual Studio 285 | .ntvs_analysis.dat 286 | node_modules/ 287 | 288 | # Visual Studio 6 build log 289 | *.plg 290 | 291 | # Visual Studio 6 workspace options file 292 | *.opt 293 | 294 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 295 | *.vbw 296 | 297 | # Visual Studio LightSwitch build output 298 | **/*.HTMLClient/GeneratedArtifacts 299 | **/*.DesktopClient/GeneratedArtifacts 300 | **/*.DesktopClient/ModelManifest.xml 301 | **/*.Server/GeneratedArtifacts 302 | **/*.Server/ModelManifest.xml 303 | _Pvt_Extensions 304 | 305 | # Paket dependency manager 306 | .paket/paket.exe 307 | paket-files/ 308 | 309 | # FAKE - F# Make 310 | .fake/ 311 | 312 | # CodeRush personal settings 313 | .cr/personal 314 | 315 | # Python Tools for Visual Studio (PTVS) 316 | __pycache__/ 317 | *.pyc 318 | 319 | # Cake - Uncomment if you are using it 320 | # tools/** 321 | # !tools/packages.config 322 | 323 | # Tabs Studio 324 | *.tss 325 | 326 | # Telerik's JustMock configuration file 327 | *.jmconfig 328 | 329 | # BizTalk build output 330 | *.btp.cs 331 | *.btm.cs 332 | *.odx.cs 333 | *.xsd.cs 334 | 335 | # OpenCover UI analysis results 336 | OpenCover/ 337 | 338 | # Azure Stream Analytics local run output 339 | ASALocalRun/ 340 | 341 | # MSBuild Binary and Structured Log 342 | *.binlog 343 | 344 | # NVidia Nsight GPU debugger configuration file 345 | *.nvuser 346 | 347 | # MFractors (Xamarin productivity tool) working folder 348 | .mfractor/ 349 | 350 | # Local History for Visual Studio 351 | .localhistory/ 352 | 353 | # BeatPulse healthcheck temp database 354 | healthchecksdb 355 | 356 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 357 | MigrationBackup/ 358 | 359 | # Ionide (cross platform F# VS Code tools) working folder 360 | .ionide/ 361 | 362 | # Fody - auto-generated XML schema 363 | FodyWeavers.xsd -------------------------------------------------------------------------------- /FileConsumerService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace FileWatching 8 | { 9 | public class FileConsumerService : IFileConsumerService 10 | { 11 | ILogger _logger; 12 | 13 | public FileConsumerService(ILogger logger) 14 | { 15 | _logger = logger; 16 | } 17 | 18 | public async Task ConsumeFile(string pathToFile) 19 | { 20 | if(!File.Exists(pathToFile)) 21 | return; 22 | 23 | _logger.LogInformation($"Starting read of {pathToFile}"); 24 | 25 | using (StreamReader sr = File.OpenText(pathToFile)) 26 | { 27 | string? s = null; 28 | int counter = 1; 29 | while ((s = await sr.ReadLineAsync()) != null) 30 | { 31 | _logger.LogInformation($"Reading Line {counter} of the file {pathToFile}"); 32 | counter++; 33 | } 34 | } 35 | 36 | _logger.LogInformation($"Completed read of {pathToFile}"); 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /FileWatching.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | dotnet-FileWatching-9132ff29-0af6-4612-991b-e9ff5731b026 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /FileWatching.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32825.248 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileWatching", "FileWatching.csproj", "{0322E0B9-0993-40BE-A60C-0557133A2F5A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {0322E0B9-0993-40BE-A60C-0557133A2F5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {0322E0B9-0993-40BE-A60C-0557133A2F5A}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {0322E0B9-0993-40BE-A60C-0557133A2F5A}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {0322E0B9-0993-40BE-A60C-0557133A2F5A}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {BCFFED67-D291-4B6F-84C8-28EB90A9A19D} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /IFileConsumerService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace FileWatching 8 | { 9 | public interface IFileConsumerService 10 | { 11 | public Task ConsumeFile(string pathToFile); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /IMyFileWatcher.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace FileWatching 8 | { 9 | public interface IMyFileWatcher 10 | { 11 | public void Start(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /MyFileWatcher.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace FileWatching 8 | { 9 | public class MyFileWatcher : IMyFileWatcher 10 | { 11 | private string _directoryName = Path.Join(Environment.CurrentDirectory, "files");//change this to whatever you want 12 | private string _fileFilter = "*.*"; 13 | FileSystemWatcher _fileSystemWatcher; 14 | ILogger _logger; 15 | IServiceProvider _serviceProvider; 16 | 17 | public MyFileWatcher(ILogger logger, IServiceProvider serviceProvider) 18 | { 19 | _logger = logger; 20 | if(!Directory.Exists(_directoryName)) 21 | Directory.CreateDirectory(_directoryName); 22 | _fileSystemWatcher = new FileSystemWatcher(_directoryName, _fileFilter); 23 | _serviceProvider = serviceProvider; 24 | } 25 | 26 | public void Start() 27 | { 28 | _fileSystemWatcher.NotifyFilter = NotifyFilters.Attributes 29 | | NotifyFilters.CreationTime 30 | | NotifyFilters.DirectoryName 31 | | NotifyFilters.FileName 32 | | NotifyFilters.LastAccess 33 | | NotifyFilters.LastWrite 34 | | NotifyFilters.Security 35 | | NotifyFilters.Size; 36 | 37 | _fileSystemWatcher.Changed += _fileSystemWatcher_Changed; 38 | _fileSystemWatcher.Created += _fileSystemWatcher_Created; 39 | _fileSystemWatcher.Deleted += _fileSystemWatcher_Deleted; 40 | _fileSystemWatcher.Renamed += _fileSystemWatcher_Renamed; 41 | _fileSystemWatcher.Error += _fileSystemWatcher_Error; 42 | 43 | 44 | _fileSystemWatcher.EnableRaisingEvents = true; 45 | _fileSystemWatcher.IncludeSubdirectories = true; 46 | 47 | _logger.LogInformation($"File Watching has started for directory {_directoryName}"); 48 | } 49 | 50 | private void _fileSystemWatcher_Error(object sender, ErrorEventArgs e) 51 | { 52 | _logger.LogInformation($"File error event {e.GetException().Message}"); 53 | } 54 | 55 | private void _fileSystemWatcher_Renamed(object sender, RenamedEventArgs e) 56 | { 57 | _logger.LogInformation($"File rename event for file {e.FullPath}"); 58 | } 59 | 60 | private void _fileSystemWatcher_Deleted(object sender, FileSystemEventArgs e) 61 | { 62 | _logger.LogInformation($"File deleted event for file {e.FullPath}"); 63 | } 64 | 65 | private void _fileSystemWatcher_Changed(object sender, FileSystemEventArgs e) 66 | { 67 | } 68 | 69 | private void _fileSystemWatcher_Created(object sender, FileSystemEventArgs e) 70 | { 71 | using (var scope = _serviceProvider.CreateScope()) 72 | { 73 | var consumerService = scope.ServiceProvider.GetRequiredService(); 74 | Task.Run(() => consumerService.ConsumeFile(e.FullPath)); 75 | } 76 | } 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- 1 | using FileWatching; 2 | 3 | IHost host = Host.CreateDefaultBuilder(args) 4 | .ConfigureServices(services => 5 | { 6 | services.AddHostedService(); 7 | services.AddSingleton(); 8 | services.AddScoped(); 9 | 10 | }) 11 | .Build(); 12 | 13 | await host.RunAsync(); 14 | -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "FileWatching": { 4 | "commandName": "Project", 5 | "dotnetRunMessages": true, 6 | "environmentVariables": { 7 | "DOTNET_ENVIRONMENT": "Development" 8 | } 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Example of a .Net background worker service using the SystemFileWatcher to watch a directory and consume the files(CSV) dropped there and doing a simple line read. -------------------------------------------------------------------------------- /Worker.cs: -------------------------------------------------------------------------------- 1 | namespace FileWatching; 2 | 3 | public class Worker : BackgroundService 4 | { 5 | private readonly ILogger _logger; 6 | private readonly IMyFileWatcher _watcher; 7 | 8 | public Worker(ILogger logger,IMyFileWatcher watcher) 9 | { 10 | _logger = logger; 11 | _watcher = watcher; 12 | } 13 | 14 | protected override async Task ExecuteAsync(CancellationToken stoppingToken) 15 | { 16 | _watcher.Start(); 17 | while (!stoppingToken.IsCancellationRequested) 18 | { 19 | 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.Hosting.Lifetime": "Information" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.Hosting.Lifetime": "Information" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /example_data_1.csv.csv: -------------------------------------------------------------------------------- 1 | firstName,lastName,city,state,colorName,time 2 | Randall,Gaylord,New Gilbert,Wyoming,OrangeRed,11:42:48 3 | Alessia,Mohr,Lake Mac,Georgia,DimGrey,19:39:13 4 | Mateo,Gottlieb,Port Cortney,Michigan,Black,19:21:58 5 | Guy,Connelly,Funkville,Georgia,Aqua,00:45:14 6 | Sarah,Bergnaum,Anabelleport,New Mexico,Coral,18:07:23 7 | Hassan,Kirlin,Torphyton,South Dakota,Coral,02:30:12 8 | Zoey,Conroy,Lake Rebecafort,Arkansas,Indigo,08:38:20 9 | Roslyn,Johns,Altaburgh,Oregon,BlanchedAlmond,22:25:26 10 | Dallas,Skiles,Port Adrienneburgh,Tennessee,Aqua,00:42:42 11 | Chasity,Kshlerin,West Frederik,Washington,Lime,13:32:18 12 | Fernando,Lang,Kyleighmouth,Idaho,Orange,05:50:07 13 | Seth,Dibbert,Trantowview,California,LightCyan,17:36:15 14 | Jaquelin,Rutherford,Port Cathrinemouth,Oregon,LightSteelBlue,16:19:31 15 | Idell,Bergstrom,West Huntermouth,Hawaii,Ivory,09:55:09 16 | Turner,Stracke,New Will,South Carolina,RoyalBlue,15:45:25 17 | Concepcion,Watsica,New Brielleland,California,DarkViolet,22:12:22 18 | Marielle,Howe,Howardhaven,Idaho,Magenta,10:51:20 19 | Felton,Kuhlman,Port Janiceland,New Hampshire,PaleGreen,20:24:39 20 | Evangeline,Nitzsche,West Janmouth,New Jersey,Violet,12:03:37 21 | Abner,Kohler,Arelychester,Washington,MediumPurple,23:11:51 22 | Kenny,Bode,North Newellside,Washington,Beige,19:21:50 23 | Omer,Terry,Port Kacie,Virginia,DarkBlue,02:09:04 24 | Taurean,Runolfsdottir,East Emeryville,North Carolina,Olive,01:49:39 25 | Grace,Hand,Lake Anne,North Dakota,Linen,16:50:26 26 | Alverta,Keebler,New Ameliebury,Pennsylvania,Beige,20:30:41 27 | Destin,Harber,West Rachelle,Indiana,Chartreuse,19:04:26 28 | Reba,Torp,Deionside,Colorado,SteelBlue,16:31:46 29 | Ottilie,Jaskolski,North Arden,Maryland,MediumVioletRed,10:17:05 30 | Mateo,Halvorson,Myriamborough,Ohio,GreenYellow,08:25:45 31 | Kurtis,Schiller,Celestineburgh,Maryland,OliveDrab,22:01:53 32 | Maya,Orn,North Araside,Colorado,SandyBrown,21:20:06 33 | Danielle,Daugherty,Johnsonbury,Tennessee,DeepSkyBlue,22:59:51 34 | Christy,Franecki,Marquiseborough,Idaho,LimeGreen,09:42:04 35 | Elian,Heller,Lake Antwanbury,Missouri,NavajoWhite,07:48:11 36 | Kendrick,Marvin,Connorside,Connecticut,Cornsilk,05:32:10 37 | Bernita,Stokes,South Mariannaside,Oregon,CornflowerBlue,18:56:46 38 | Gwen,Hartmann,Quentinhaven,New Mexico,PaleVioletRed,10:27:02 39 | Camron,Price,North Jodymouth,Arizona,LightCyan,06:04:59 40 | Granville,Jaskolski,Ariannamouth,Missouri,PaleGreen,03:32:13 41 | Jairo,Emmerich,Jaleelland,Illinois,Cornsilk,06:04:56 42 | Renee,Krajcik,Faheyport,Colorado,Gainsboro,15:00:41 43 | Garett,Koch,Urielstad,Oregon,MediumAquaMarine,02:38:44 44 | Betsy,Kulas,Ernserville,Missouri,Ivory,08:05:07 45 | Sarai,Shanahan,Lake Judeberg,South Dakota,Plum,19:37:25 46 | Janick,Botsford,New Macy,Virginia,Black,13:14:16 47 | Sonya,Dibbert,North Rod,Wyoming,Orange,09:11:52 48 | Josefina,Rau,Lake Amya,Maryland,Violet,00:46:42 49 | Flossie,Swaniawski,North Brauliomouth,South Carolina,Aquamarine,12:50:57 50 | Clyde,Jacobi,Tillmanburgh,North Carolina,Khaki,14:15:42 51 | Maximilian,Huels,Lake Sheldon,Ohio,Maroon,08:03:41 52 | Misael,Corkery,Nicoleview,Mississippi,DarkGray,03:18:57 53 | Enola,Stamm,East Lula,District of Columbia,PeachPuff,23:28:27 54 | Cristobal,Schowalter,South Freddy,Montana,MediumPurple,12:17:46 55 | Juanita,Durgan,Denesikfort,New Mexico,CadetBlue,11:51:01 56 | Elenor,Legros,East Hellen,Nebraska,LightGoldenRodYellow,05:07:02 57 | Josie,Kirlin,North Zula,Idaho,Cornsilk,00:36:23 58 | Hailey,Franecki,East Oren,Oklahoma,MediumSeaGreen,14:37:49 59 | Marjorie,Kassulke,Judsonville,New Jersey,CadetBlue,06:39:16 60 | Yazmin,Veum,Orieborough,Alaska,DarkOrchid,10:09:33 61 | Wilson,DuBuque,Maidaburgh,Wisconsin,Peru,02:29:22 62 | Wilton,Kuhic,East Danialton,Montana,Darkorange,21:48:44 63 | Curt,Morar,East Colton,Georgia,DeepPink,17:05:52 64 | Gust,Nikolaus,East Veronica,New York,CornflowerBlue,03:17:30 65 | Arlo,Graham,Caspershire,Virginia,NavajoWhite,01:06:20 66 | Flossie,Waters,Bethhaven,New Hampshire,Chartreuse,05:09:16 67 | Royal,Fay,Trevorville,District of Columbia,LightBlue,08:38:49 68 | Jamie,Hamill,Donnieton,Louisiana,Brown,16:04:59 69 | Gustave,Anderson,East Aidan,Hawaii,Chartreuse,09:37:31 70 | Erling,Medhurst,Reeseport,District of Columbia,Green,04:38:02 71 | Ally,Lakin,South Adolf,Arizona,Blue,21:34:54 72 | Riley,Dietrich,East Annabelleberg,Maryland,LightSkyBlue,02:21:39 73 | Candice,Beer,Altheatown,Wisconsin,Linen,08:11:55 74 | Mavis,Schuppe,West Kaseytown,Wisconsin,MediumTurquoise,09:23:57 75 | Noble,Swaniawski,Cruickshankland,Nevada,White,01:30:34 76 | Jakayla,Hirthe,South Esteban,Connecticut,DarkOrchid,09:01:08 77 | Robyn,Friesen,Carlieberg,Ohio,MediumSeaGreen,15:04:38 78 | Elliot,Miller,Kosstown,New Mexico,Brown,22:42:47 79 | Micah,Christiansen,Troyburgh,Oregon,DarkRed,03:47:44 80 | Pierre,Durgan,North Naomi,Maine,Darkorange,13:35:39 81 | Dorian,Jakubowski,Olsonburgh,Idaho,MidnightBlue,19:39:03 82 | Jadon,McLaughlin,East Thadtown,Utah,Gainsboro,12:29:59 83 | Lourdes,Armstrong,New Anastacio,District of Columbia,Navy,06:55:34 84 | Dorothy,Simonis,East Bobby,Michigan,SaddleBrown,14:05:08 85 | Carlos,Rolfson,Morissettestad,Maryland,MediumTurquoise,06:28:39 86 | Queenie,Block,North Griffinhaven,Missouri,SandyBrown,03:48:07 87 | Ariane,Hirthe,South Kellen,Utah,DarkOrchid,12:59:36 88 | Noelia,Koch,Torpton,Maine,DarkKhaki,05:45:52 89 | Maiya,Schmeler,Joneschester,Virginia,Salmon,03:15:11 90 | Rosetta,Hudson,Wiegandview,Nevada,HotPink,07:30:11 91 | Eudora,Brakus,South Queenview,Pennsylvania,Navy,17:34:20 92 | Iliana,Leannon,Tremblaystad,Virginia,DarkGoldenRod,17:00:30 93 | Angelina,Emard,Haagborough,Nevada,DarkSeaGreen,12:05:55 94 | Isac,Gottlieb,West Emiestad,California,HotPink,12:48:26 95 | Yvonne,Schneider,Reingerfort,Washington,Blue,20:08:36 96 | Marisol,Spencer,New Eltonland,Kentucky,MintCream,14:30:49 97 | Petra,Christiansen,North Antone,Idaho,Thistle,04:22:25 98 | Gia,Friesen,Wilkinsonshire,New Hampshire,Salmon,14:43:14 99 | Vernon,Abernathy,New Haileyview,Vermont,LightGray,20:07:12 100 | Jamil,Lesch,South Brooklynhaven,Alabama,HotPink,16:46:56 101 | Grant,Ebert,West Elise,North Dakota,FireBrick,16:04:28 102 | Rolando,Effertz,Lomafurt,Montana,CadetBlue,09:49:21 103 | Tyshawn,Jaskolski,South Jarredstad,Virginia,SpringGreen,22:39:11 104 | Naomie,Schmidt,East Madaline,Mississippi,Fuchsia,12:31:44 105 | Tamara,Beatty,Robelchester,New Hampshire,PowderBlue,18:43:23 106 | Aileen,Ortiz,Velmaburgh,Oregon,LemonChiffon,21:55:54 107 | Jermey,Hettinger,Jeffreyfort,Georgia,DarkBlue,03:34:44 108 | Bradly,Marvin,Sibylhaven,Indiana,White,18:55:20 109 | Filomena,Herzog,Dawsonhaven,Montana,Yellow,04:17:29 110 | Arnulfo,Padberg,West Shanelfurt,Minnesota,SeaShell,08:58:05 111 | Lura,Schroeder,New Yvonnemouth,Texas,OrangeRed,12:31:38 112 | Shakira,Dooley,North Eloiseport,Massachusetts,DarkOrchid,20:44:35 113 | Terrill,Lind,Lemkemouth,Idaho,Beige,18:18:15 114 | Nicklaus,Jast,Shieldsshire,Mississippi,MediumPurple,03:12:17 115 | Cordell,Abbott,North Jeff,Michigan,DeepPink,02:45:26 116 | Eugene,Little,South Rosetta,Hawaii,MediumSlateBlue,16:43:54 117 | Mathias,Ondricka,Schmittfurt,Arizona,Tan,20:29:18 118 | Maritza,Lemke,Vernieberg,Michigan,ForestGreen,12:08:49 119 | Skye,Rath,South Javier,Louisiana,DarkRed,18:46:31 120 | Kameron,Schinner,South Monserrat,Kentucky,Coral,22:43:26 121 | Russel,Crooks,Townemouth,Alaska,DarkGoldenRod,07:13:48 122 | Austen,Hessel,New Micaelamouth,New Jersey,LightSeaGreen,10:51:01 123 | Winston,Gibson,New Melodymouth,New Mexico,Orchid,17:55:12 124 | Reuben,Rau,Dashawntown,Louisiana,LightSlateGray,18:00:04 125 | Malachi,Skiles,Lake Pasqualeburgh,Maryland,BlueViolet,23:45:52 126 | Sophia,Jenkins,Tysonton,Vermont,OliveDrab,17:45:04 127 | Lue,Fay,Croninmouth,Maryland,DarkRed,18:09:42 128 | Mafalda,Christiansen,Port Niahaven,North Carolina,YellowGreen,06:30:35 129 | Princess,Carter,Magdalenview,Virginia,Peru,21:55:52 130 | Carlee,Franecki,East Reaganport,Washington,Ivory,19:30:23 131 | Kennedy,Parisian,Mosesstad,Arizona,Plum,14:25:24 132 | Dewitt,Breitenberg,Port Jarrod,Delaware,Yellow,19:43:21 133 | Esteban,Kub,Darlenefort,North Carolina,Silver,21:21:01 134 | Dean,Abernathy,Edton,Mississippi,SteelBlue,17:16:24 135 | Aimee,Satterfield,Gussieburgh,Iowa,LemonChiffon,13:00:35 136 | Alison,Schuppe,Colemouth,Washington,DarkMagenta,10:23:35 137 | Madge,Zulauf,New Paololand,Mississippi,Linen,21:01:29 138 | Eileen,Paucek,New Madelynn,Missouri,DarkSalmon,08:12:00 139 | Bell,Ebert,Amparoside,Arizona,MediumVioletRed,16:17:31 140 | Ashleigh,Gorczany,Lake Elveraland,Wisconsin,FireBrick,03:37:33 141 | Andreanne,Dietrich,New Destany,New York,DarkGray,08:30:29 142 | Vanessa,Hettinger,North Jerrodbury,Washington,DarkGoldenRod,22:35:19 143 | Nils,King,Geoffreyport,Vermont,Violet,20:41:07 144 | Edgardo,Brown,Percivalborough,Iowa,DarkViolet,02:20:08 145 | Maegan,Jakubowski,New Jaimeside,New York,Yellow,11:46:02 146 | Esperanza,Bernier,Cruickshankview,Nebraska,YellowGreen,22:44:25 147 | Alexie,Bruen,Steuberport,Oklahoma,Moccasin,03:13:24 148 | Austyn,O'Reilly,Wintheiserport,Georgia,DarkCyan,09:50:45 149 | Jimmie,Schumm,Newtonfurt,Arkansas,IndianRed,00:30:55 150 | Kamren,Gulgowski,West Madaline,Wisconsin,LightCoral,23:01:00 151 | Lilliana,Koelpin,Kihnborough,Colorado,OrangeRed,00:09:07 152 | Charlene,Wolf,Brandyhaven,Delaware,DarkGoldenRod,04:14:06 153 | Dane,Abbott,West Michaelport,Alabama,DarkCyan,06:29:19 154 | Megane,Stokes,Abdullahburgh,Arizona,CornflowerBlue,15:53:23 155 | Frederick,Lebsack,Emeraldburgh,South Dakota,LightYellow,15:39:09 156 | Reilly,Wunsch,West Quintonshire,Texas,PeachPuff,00:03:21 157 | Jeffery,Kuphal,Port Philipberg,Ohio,MediumPurple,06:49:01 158 | Julio,Christiansen,East Malikaland,Mississippi,Wheat,09:27:46 159 | Mollie,Russel,North Tate,South Dakota,SaddleBrown,19:28:20 160 | Helmer,Dickinson,Jeanetteton,Tennessee,LightSteelBlue,21:10:07 161 | Mohammad,Smith,Port Vestaland,Washington,LightYellow,19:03:42 162 | Constantin,Schimmel,Pagacstad,Alabama,Gold,15:26:07 163 | Dortha,Larkin,Hardyshire,Colorado,DarkKhaki,23:48:54 164 | Gloria,Hand,Emmetport,Hawaii,LemonChiffon,05:38:02 165 | Therese,Kessler,Clintville,California,LavenderBlush,09:46:06 166 | Laurianne,Jacobi,Marciamouth,Arizona,White,08:45:03 167 | Garett,Moen,Merlinton,Colorado,ForestGreen,12:40:14 168 | Stacey,Roob,Trantowberg,Rhode Island,Violet,06:18:03 169 | Larissa,Herman,Hirtheland,Hawaii,PaleGreen,17:14:22 170 | Kattie,Kirlin,Lake Wilmaport,Nebraska,Turquoise,11:19:39 171 | Heloise,Weber,North Luisshire,Missouri,FireBrick,00:03:11 172 | Pasquale,Bogisich,Kittymouth,Louisiana,Crimson,07:25:29 173 | Dante,Haley,East Dellstad,Alabama,Maroon,01:03:16 174 | Lawson,Marks,South Jocelyn,New Mexico,MediumAquaMarine,01:01:12 175 | Angelica,Littel,North Maddison,Arizona,Chartreuse,16:15:37 176 | Velva,Walker,New Luisa,New York,LawnGreen,07:00:00 177 | Catherine,Sporer,Mitchellview,Nebraska,FloralWhite,06:11:59 178 | Santina,Spencer,Coleside,Kentucky,Gold,04:11:51 179 | Mortimer,Gorczany,Lake Alfredaview,Kansas,Cyan,09:10:50 180 | Angelita,Macejkovic,Altenwerthtown,Kentucky,OrangeRed,00:04:23 181 | Pat,White,South Gerald,New Hampshire,Gold,03:13:26 182 | Alexa,Grant,Keeganmouth,New Mexico,DarkGoldenRod,00:29:16 183 | Wilhelmine,DuBuque,New Lindsaymouth,New Jersey,OrangeRed,17:03:56 184 | Summer,Nolan,Shanyfort,Arkansas,SaddleBrown,09:48:30 185 | Amanda,Schamberger,South Jaylontown,Texas,DarkRed,16:56:34 186 | Cole,Gerlach,Kuphaltown,Georgia,MediumPurple,02:54:36 187 | Estevan,Kassulke,New Rodrigostad,Iowa,Gold,17:36:53 188 | Adrian,Hessel,East Audieport,Montana,Green,06:30:37 189 | Durward,Hermann,Careyland,Ohio,MediumAquaMarine,06:42:41 190 | Garrison,Kozey,North Felicitaland,Wisconsin,DarkOrchid,01:39:36 191 | Rosemarie,Trantow,North Nolanberg,New Jersey,FloralWhite,15:33:56 192 | Marlon,Smith,Carmelabury,Missouri,Pink,14:29:23 193 | Jeremie,Mante,Heathcoteport,Virginia,Beige,05:47:36 194 | Verda,Kunde,East Sandrineburgh,Utah,LightGray,20:28:41 195 | Wava,Gibson,New Clifton,Delaware,MintCream,17:04:17 196 | Chadd,Upton,West Hellen,Maryland,Chocolate,17:13:40 197 | Owen,Braun,Angelineview,Wisconsin,Salmon,23:36:37 198 | Aiyana,Leuschke,Lake Luz,Idaho,Purple,02:01:36 199 | Jessyca,Nader,Dickiton,Hawaii,MediumBlue,01:09:24 200 | Hettie,Koepp,East Camdenmouth,Delaware,Aquamarine,23:58:03 201 | Carlo,Stark,Alethaside,Texas,DimGrey,16:01:42 202 | -------------------------------------------------------------------------------- /example_data_2.csv.csv: -------------------------------------------------------------------------------- 1 | firstName,lastName,city,state,colorName,time 2 | Seamus,Pouros,South Eviehaven,Connecticut,DeepPink,10:24:48 3 | Marc,Nicolas,North Gillianland,Ohio,WhiteSmoke,23:13:18 4 | Nash,Ebert,Port Brentport,South Carolina,DarkGray,04:03:29 5 | Cristal,Ziemann,West Aliyastad,Utah,SeaShell,01:08:39 6 | Kaleigh,Watsica,West Ledamouth,Nevada,MediumTurquoise,17:46:24 7 | Robb,Kovacek,Port Ivy,Rhode Island,Darkorange,17:00:53 8 | Giovanny,Kunze,Ornhaven,Maine,PeachPuff,06:39:54 9 | Shyann,Abernathy,Windlerburgh,Tennessee,Cornsilk,03:48:10 10 | Stephanie,Rempel,Brekkeborough,Maryland,Silver,13:10:52 11 | Zechariah,Koss,North Jamey,Oregon,WhiteSmoke,20:41:03 12 | Gwen,O'Hara,Nikitaton,North Dakota,LightCyan,13:38:57 13 | Osbaldo,Stokes,New Kendallfort,North Dakota,Magenta,03:05:24 14 | Christine,Ruecker,East Zitaland,Kansas,LawnGreen,17:56:27 15 | Danyka,Labadie,New Jerrodchester,Maryland,DarkMagenta,12:32:18 16 | Monty,Schoen,Kington,Indiana,ForestGreen,10:15:02 17 | Zella,Altenwerth,Maybellmouth,Wisconsin,DarkTurquoise,21:48:28 18 | Jaren,Denesik,Rautown,Nebraska,Wheat,03:33:00 19 | Ora,Corkery,Amayaberg,Tennessee,LightPink,12:07:51 20 | Kiley,Roob,New Judychester,Connecticut,Silver,08:50:48 21 | Nyasia,Abernathy,Port Brendaport,Montana,DarkGray,12:01:40 22 | Ashly,Kuhn,North Adellamouth,Oregon,LightGray,06:31:45 23 | Hans,Shanahan,Port Sim,Idaho,SteelBlue,19:02:39 24 | Mohammad,Bauch,Jessieberg,Mississippi,GhostWhite,05:27:34 25 | Harold,Schaefer,West Dallasmouth,Nevada,Cyan,04:11:33 26 | Jarvis,Lehner,North Micaela,New Hampshire,LavenderBlush,08:02:12 27 | Meghan,Jones,Port Rhiannaview,South Carolina,DarkViolet,06:27:36 28 | Steve,Powlowski,Lake Noelchester,North Dakota,LightSkyBlue,22:17:39 29 | River,Blick,Enochfurt,Indiana,CornflowerBlue,08:10:14 30 | Madyson,Kilback,Larsonfort,Arizona,OliveDrab,00:56:25 31 | Sebastian,Carter,West Hesterfort,Nebraska,Blue,17:47:38 32 | Verdie,Toy,North Clotilde,North Dakota,Black,12:54:04 33 | Rebecca,Murray,New Elenoraburgh,New Jersey,Chocolate,20:09:30 34 | Nikita,Murazik,Dougmouth,Arizona,DarkGray,00:26:28 35 | Jana,Luettgen,McDermottchester,Delaware,Orchid,10:14:53 36 | Kattie,Hegmann,Bahringermouth,Kentucky,SlateGray,14:48:16 37 | Darrell,Cassin,Jadynton,Wyoming,Salmon,10:32:45 38 | Garret,Runolfsson,Adrieltown,Oklahoma,LightGreen,09:30:09 39 | Ola,Steuber,New Dimitri,New Mexico,LightBlue,04:24:38 40 | Maddison,Barton,West Rosella,Oregon,DarkBlue,02:40:33 41 | Talon,Stokes,Pourosshire,Ohio,Yellow,14:36:07 42 | Annamarie,Murray,Lake Ceasarland,Wisconsin,LightGoldenRodYellow,04:20:26 43 | Estefania,Christiansen,West Kenton,South Carolina,IndianRed,12:11:09 44 | Graham,O'Keefe,Ferrystad,Minnesota,LemonChiffon,11:57:39 45 | Jazlyn,Lowe,Streichshire,Kansas,PaleGreen,11:23:35 46 | Elna,Daniel,East Coleland,Indiana,White,07:08:04 47 | Stewart,Emmerich,Lake Santa,Mississippi,DeepSkyBlue,09:14:23 48 | Angeline,Rowe,East Mayville,North Dakota,LightPink,12:11:53 49 | Brittany,Koch,South Domenico,West Virginia,Pink,22:13:26 50 | Aubree,Kunze,Krajcikbury,Tennessee,Olive,04:36:53 51 | Theo,Sipes,Jacobsonville,Idaho,DarkOrchid,08:05:16 52 | Cecelia,Rath,Everetteberg,Iowa,BlanchedAlmond,12:05:20 53 | Monserrate,Klein,Schuppefurt,Georgia,Azure,13:58:38 54 | Zoe,Crona,Forrestchester,Oklahoma,LightYellow,11:37:14 55 | Kailee,Purdy,Lake Shannonmouth,Iowa,LightYellow,07:51:24 56 | Kendra,Lowe,Carmeloborough,District of Columbia,DarkOrchid,09:54:15 57 | Raoul,Dickens,South Willie,Nevada,LightSkyBlue,09:26:32 58 | Gail,Heller,Garrettfort,Massachusetts,PeachPuff,02:41:42 59 | Halle,Murphy,North Joshuahberg,New Jersey,SandyBrown,06:20:47 60 | Stone,Abernathy,Lake Clementinafort,Oklahoma,DodgerBlue,19:36:13 61 | Keshawn,Kub,Rubyehaven,Ohio,Purple,05:29:46 62 | Kara,Davis,West Anahihaven,Maryland,Black,15:19:24 63 | Zack,Cummings,Lake Tyra,Missouri,AntiqueWhite,06:33:21 64 | Arlo,Mraz,West Leonechester,Montana,DarkGoldenRod,17:17:13 65 | Elvera,Marvin,O'Haraborough,Pennsylvania,Fuchsia,22:32:35 66 | Braulio,Smith,Deckowside,Wyoming,SkyBlue,03:15:44 67 | Dawson,Goyette,Antoneshire,North Dakota,Sienna,07:59:58 68 | Josianne,Senger,Hayesshire,Oregon,SlateBlue,09:56:47 69 | Sharon,Oberbrunner,Corneliusview,Florida,SpringGreen,18:43:52 70 | Talon,Blanda,Jakubowskishire,Colorado,Gold,02:08:53 71 | Mohammad,Dooley,Stoltenbergtown,Nevada,Crimson,12:05:51 72 | Wendy,Kuhlman,North Sigurd,New Mexico,Ivory,08:09:44 73 | Heber,Effertz,West Neldaburgh,Louisiana,AliceBlue,19:50:25 74 | Deondre,Schiller,Port Gracie,Illinois,Tan,14:32:50 75 | Wilfrid,Zieme,North Jakefurt,Connecticut,Teal,09:51:19 76 | Wilford,Haley,New Garnettshire,North Dakota,MediumBlue,08:58:36 77 | Carrie,Rohan,New Karineport,New York,DimGrey,16:01:31 78 | Carley,Mosciski,West Cara,Nebraska,Crimson,02:14:28 79 | Edmund,Bartoletti,Martymouth,District of Columbia,LightSalmon,13:57:55 80 | Jenifer,VonRueden,Mullerberg,Florida,MediumPurple,12:08:48 81 | Elna,Yundt,Lake Brennatown,West Virginia,SaddleBrown,06:45:12 82 | Athena,Monahan,South Connerfurt,Rhode Island,Bisque,04:35:57 83 | Arlene,Schmitt,North Wendell,Indiana,Aquamarine,20:05:00 84 | Amir,Hilpert,North Earnestineshire,Pennsylvania,MediumSeaGreen,04:43:01 85 | Shawn,Reynolds,Lake Rebekahfurt,Alabama,DimGrey,02:01:28 86 | Mervin,Ratke,Wolfside,Kansas,Violet,13:11:33 87 | Shania,Mohr,Kalliestad,Utah,SpringGreen,12:23:09 88 | Gaetano,Dicki,Eliland,New Jersey,GoldenRod,19:34:13 89 | Garland,Williamson,North Vanborough,Arizona,PowderBlue,16:14:55 90 | Elnora,Kunde,West Aliciatown,Rhode Island,OldLace,10:50:14 91 | Gretchen,Kunde,West Kayceebury,Rhode Island,Pink,21:38:34 92 | Joannie,Oberbrunner,North Brandi,Michigan,Indigo,04:32:40 93 | Brady,Carroll,Lake Leopoldostad,North Dakota,Sienna,20:45:28 94 | Collin,Turcotte,North Fredrickberg,Minnesota,DarkKhaki,17:41:19 95 | Hudson,Kirlin,Dooleyfort,New Jersey,ForestGreen,07:07:26 96 | Aurelio,Bernier,Torphyside,Kentucky,SlateBlue,14:00:06 97 | Emery,Gleichner,Port Elton,California,Green,20:55:06 98 | Ruby,Dicki,Lynchchester,Ohio,Tan,12:15:45 99 | Norma,Schowalter,Garnettburgh,Tennessee,DarkSlateBlue,07:57:18 100 | Kris,Rosenbaum,Schusterstad,Oregon,Aqua,18:22:59 101 | Marcelina,Grady,Port Shadland,Alabama,PeachPuff,07:01:50 102 | Trenton,Streich,Strosinfurt,Oklahoma,HoneyDew,20:45:33 103 | Adrianna,Klocko,Langoshton,New Hampshire,Thistle,12:41:32 104 | Junior,VonRueden,New Brendenton,Georgia,SteelBlue,15:23:23 105 | Edwardo,Hill,Francoport,Missouri,SkyBlue,16:53:45 106 | Delores,Eichmann,Forrestmouth,Hawaii,Magenta,05:19:38 107 | Mekhi,Kuvalis,Santosmouth,Connecticut,IndianRed,02:46:58 108 | Reyes,Parisian,Kuhicside,South Dakota,SteelBlue,18:57:21 109 | Sedrick,Waters,Lorenchester,Delaware,GreenYellow,22:20:14 110 | Sofia,Lind,New Florencioton,Missouri,DimGrey,00:42:11 111 | Berenice,Bosco,West Roderickside,New Jersey,Violet,12:41:06 112 | Norene,Gutmann,Leonardshire,Maine,LavenderBlush,06:34:18 113 | Sheridan,Boyer,South Koby,Florida,Indigo,12:24:21 114 | Gloria,Anderson,South Nigelburgh,Iowa,LightCoral,07:52:15 115 | Yolanda,Senger,West Dawnland,Minnesota,Teal,08:12:33 116 | Joel,Klein,Port Markus,New Mexico,Thistle,23:48:18 117 | Maria,Treutel,Huelstad,Maryland,BurlyWood,11:43:03 118 | Norberto,Lebsack,South Lennie,New Mexico,LightGreen,23:49:57 119 | Megane,Kertzmann,Oberbrunnermouth,Massachusetts,OrangeRed,09:31:51 120 | Nora,Feest,Cummerataview,Utah,FloralWhite,04:59:44 121 | Haven,Howell,Lake Imanihaven,Kansas,Tan,19:57:09 122 | Amir,Hauck,South Geoberg,Texas,SkyBlue,00:42:29 123 | Fannie,Gerhold,Raleighton,Louisiana,DarkSeaGreen,00:52:13 124 | Francesca,Lueilwitz,Lake Noemi,Alabama,Maroon,17:31:55 125 | Soledad,Cremin,North Tressiemouth,West Virginia,IndianRed,14:57:37 126 | Jairo,Hintz,South Kane,New Mexico,LightSkyBlue,07:16:37 127 | Dane,Heathcote,Wiegandview,South Dakota,SpringGreen,16:35:47 128 | Gus,Gislason,North Michaelchester,Vermont,Lime,19:44:42 129 | Damian,Lakin,Kenyaborough,Missouri,Brown,12:25:44 130 | Isom,Okuneva,Altenwerthburgh,Virginia,Plum,08:30:50 131 | Tomas,Nicolas,Tyriqueport,Oregon,DarkMagenta,00:33:38 132 | Sarai,Reynolds,Kozeyland,Missouri,RoyalBlue,04:56:29 133 | Trey,Rowe,Klockofurt,Mississippi,MediumVioletRed,19:55:52 134 | Dena,Mosciski,New Percival,Montana,Plum,16:04:59 135 | Henriette,Watsica,Mertzmouth,Idaho,SeaShell,05:49:08 136 | Alexandre,King,Ricehaven,Massachusetts,AliceBlue,19:13:41 137 | Dandre,Morissette,Nakiastad,Massachusetts,SlateBlue,20:49:05 138 | Gracie,Kautzer,Gottliebberg,South Carolina,Navy,06:14:46 139 | Daisy,Hilpert,Purdyhaven,Wyoming,MediumSlateBlue,03:33:50 140 | Gideon,Brekke,West Garrisonville,Louisiana,Sienna,06:42:43 141 | Vernie,Mohr,North Rustyborough,Hawaii,DarkViolet,16:53:29 142 | Jimmy,Fay,Lake Ryannmouth,Georgia,SlateGray,18:38:00 143 | Thalia,Pouros,East Rogersside,North Carolina,SlateGray,00:00:06 144 | Sydnee,Johnston,Thielport,Iowa,Turquoise,13:59:49 145 | Winfield,Swaniawski,Harrishaven,Rhode Island,RoyalBlue,06:42:04 146 | Devonte,McCullough,O'Keefeburgh,Maine,LightGoldenRodYellow,07:30:02 147 | Armani,Bednar,Kaciestad,West Virginia,Gainsboro,20:47:44 148 | Bernadette,Champlin,West Serenaside,Ohio,DarkKhaki,06:33:26 149 | Miracle,Corwin,Adalbertoville,Alabama,SkyBlue,07:45:58 150 | Ebony,Schroeder,Port Autumnstad,Ohio,BlueViolet,02:13:35 151 | Zelda,Lesch,Jaylinburgh,Indiana,LavenderBlush,14:13:20 152 | Gerhard,Champlin,New Kayaborough,Indiana,HotPink,11:11:57 153 | Cornelius,Schaefer,Gleasonbury,New York,MediumSeaGreen,00:04:36 154 | Jennifer,Blanda,East Angelica,Idaho,LightSalmon,13:54:07 155 | Lavina,Block,West Samantamouth,Wyoming,DarkSlateBlue,03:58:50 156 | Kyler,Maggio,Halvorsonhaven,South Dakota,LemonChiffon,22:41:15 157 | Naomie,Stroman,East Nehatown,Alaska,GoldenRod,10:41:51 158 | Chanelle,Kulas,Hymantown,Alabama,Orange,06:07:08 159 | Janae,Marquardt,Ritafurt,Wisconsin,LightBlue,14:20:03 160 | Ava,Smith,Earnestinehaven,South Carolina,MediumBlue,00:23:55 161 | Hellen,Nicolas,Port Roxaneside,New Jersey,Olive,20:19:11 162 | Eliseo,Macejkovic,Muellermouth,South Dakota,BurlyWood,12:25:48 163 | Minerva,Franecki,Botsfordberg,Arizona,SlateGray,08:09:07 164 | Ezekiel,Goodwin,North Abbigail,Maryland,MistyRose,19:57:58 165 | Cortney,Monahan,Wilkinsontown,Hawaii,SpringGreen,00:00:45 166 | Melissa,Hettinger,Carlieport,Kansas,Gray,11:18:12 167 | Darby,Lueilwitz,Langworthfurt,Connecticut,Lime,18:13:23 168 | Rosa,Powlowski,North Lomaton,Connecticut,Beige,21:06:01 169 | Marlen,Keeling,South Ethelview,Virginia,Cyan,12:59:33 170 | Marielle,Prosacco,New Yesenia,Iowa,HoneyDew,21:01:38 171 | Brady,Krajcik,West Alexanne,Alabama,Orchid,23:15:30 172 | Arno,Stiedemann,Port Selmer,Oklahoma,Silver,17:14:04 173 | Jan,Brekke,North Ricomouth,Florida,DarkOrchid,19:10:50 174 | Madaline,Rowe,South Berniechester,North Dakota,OldLace,13:23:27 175 | Libbie,Schaden,Sylvestertown,Mississippi,LightGreen,05:13:15 176 | Jayden,Bednar,Lake Albertoborough,Idaho,WhiteSmoke,02:55:48 177 | Hailee,Hahn,South Itzel,Missouri,MediumSlateBlue,13:53:04 178 | Rogers,Bosco,North Aminachester,Alabama,Ivory,08:25:58 179 | Vickie,Collier,Lehnermouth,Kansas,LightSlateGray,12:57:24 180 | Chyna,Harber,Lake Bernardostad,Rhode Island,LightSeaGreen,16:50:35 181 | Lora,Stokes,Port Gageland,Nebraska,DeepPink,21:32:31 182 | Adrienne,Gutkowski,Jasperport,Montana,MediumSpringGreen,08:39:53 183 | Ronaldo,Franecki,East Aiden,Utah,Red,15:09:53 184 | Haleigh,Osinski,South Garland,Maryland,Peru,05:41:02 185 | Talon,Schuster,Reichelberg,Oregon,WhiteSmoke,04:23:28 186 | Victoria,Cormier,Rauburgh,Nebraska,Brown,09:23:49 187 | Dominic,Wilkinson,Destinifort,Kansas,Purple,00:47:24 188 | Ola,Bogan,Tessieland,New York,Peru,03:45:41 189 | Jaden,Dibbert,North Aniyah,Wyoming,SkyBlue,19:12:11 190 | Thea,Bauch,Beattyland,Rhode Island,LimeGreen,00:18:24 191 | Westley,Adams,Lake Halletown,New Hampshire,DeepSkyBlue,09:54:29 192 | Billy,Ernser,Alishaberg,California,Cyan,04:32:28 193 | Frederic,Erdman,Kassulkeville,Virginia,PaleGreen,09:50:24 194 | Monserrate,Rolfson,Sanfordborough,North Carolina,DarkRed,05:55:16 195 | Hettie,Nolan,Julianneville,Wisconsin,MediumSlateBlue,17:56:05 196 | Freda,Heller,Bayershire,Montana,Lavender,13:53:58 197 | Eleanora,Huels,Lake Enochfurt,Michigan,Darkorange,18:31:38 198 | Agustin,Kshlerin,Welchchester,District of Columbia,FloralWhite,01:28:26 199 | Silas,Little,Brennaview,North Dakota,SaddleBrown,05:05:50 200 | Ramona,Ullrich,Allieside,Alaska,Wheat,03:37:40 201 | Jamir,Schaden,Beahanbury,North Carolina,GoldenRod,17:27:20 202 | --------------------------------------------------------------------------------