Predicting Job Performance Using Text Data From Resumes.

The purpose of this project, is to see whether or not it is possible to predict job performance using the text in resumes.

The larger goal is to minimize unconscious biases that plague recruitment and employee selection. In tech, this is especially pronounced given the dearth of females and non-white managers in tech.

This project is an extension of my dissertation work. That work used the same data but analyzed word types/categories using the Linguistic Inquiry and Word Count tool.

One challenge with using LIWC to analyze and parse resumes text, is that word categories tend to be used relatively infrequently in text, resulting a Zipfian distribution. This is even more pronounced when pre-sorting words into categories as LIWC does.

This project aims to address the limitation imposed by LIWC by applying TF-IDF with trigrams. (note: trigrams were chosen based on prior text analytic work by the author)

Preparing the Text Data for Pre-Processing

Note: We need to make sure we start in the proper directory, so make sure this notebook is in the "resumes" directory.


In [1]:
pwd


Out[1]:
u'C:\\ds_sandbox\\project2\\resumes'

In [1]:
'''
Import all the packages we will need to work with resume files, text, and survey data. Note that we will need to manually
install some packages in Anaconda (further instrutions are below). 
'''

import pandas as pd
import numpy as np
import scipy as sp
import os
import hashlib
#import the packages we need to convert PDFs to text
#install the packages first :) conda install -c https://conda.anaconda.org/pejo pdfminer
from pdfminer.pdfinterp import PDFResourceManager, PDFPageInterpreter
from pdfminer.converter import TextConverter
from pdfminer.layout import LAParams
from pdfminer.pdfpage import PDFPage
from cStringIO import StringIO
import fnmatch, os, pythoncom, sys, win32com.client
from sklearn.cross_validation import train_test_split
from sklearn.feature_extraction.text import CountVectorizer, TfidfVectorizer
from sklearn.naive_bayes import MultinomialNB
from sklearn.linear_model import LogisticRegression
from sklearn import metrics
#fyi need to specifically install textblob via anaconda: 
#conda install -c https://conda.anaconda.org/sursma textblob
#don't use the most recent version due to conflicts
from textblob import TextBlob, Word
import nltk as nltk
from nltk.stem.snowball import SnowballStemmer
%matplotlib inline

In [ ]:
#build and test a loop that will iterate through a directory and print out file names
for root, dirs, files in os.walk(".", topdown=True):
    for name in files:
        print(os.path.join(root, name))
    for name in dirs:
        print(os.path.join(root, name))

In [ ]:
pwd

In [ ]:
#let's check to see how many .doc, .docx, and .pdf files we have 

count = 0
for (dirname, dirs, files) in os.walk(".", topdown=True):
   for filename in files:
       if filename.endswith('.pdf') :
           count = count + 1
print 'Files:', count

'''
Number of .doc texts = 290 
Number of .docx texts = 483
Number of .pdf texts = 80
'''

Note!: in order to upload the resumes on github, I had to convert them all to .txt files.


In [ ]:
'''
convert all .doc files into .txt files
reference: https://www.safaribooksonline.com/library/view/python-cookbook-2nd/0596007973/ch02s28.html
1 file deleted due to security issues with the word doc
1 file deleted due to it not being english
'''
wordapp = win32com.client.gencache.EnsureDispatch("Word.Application")
try:
    for path, dirs, files in os.walk(".", topdown=True):
        for filename in files:
            if not fnmatch.fnmatch(filename, '*.doc'): continue
            doc = os.path.abspath(os.path.join(path, filename))
            print "processing %s" % doc
            wordapp.Documents.Open(doc)
            docastxt = doc[:-3] + 'txt'
            wordapp.ActiveDocument.SaveAs(docastxt,
                FileFormat=win32com.client.constants.wdFormatText)
            wordapp.ActiveDocument.Close( )
finally:
    # ensure Word is properly shut down even if we get an exception
    wordapp.Quit( )

In [ ]:
'''
convert all .docx files into .txt files, change the -3 to -4 so file extension works
#10 files had to be deleted because it was corrupted
'''
wordapp = win32com.client.gencache.EnsureDispatch("Word.Application")
try:
    for path, dirs, files in os.walk(".", topdown=True):
        for filename in files:
            if not fnmatch.fnmatch(filename, '*.docx'): continue
            doc = os.path.abspath(os.path.join(path, filename))
            print "processing %s" % doc
            wordapp.Documents.Open(doc)
            docastxt = doc[:-4] + 'txt'
            wordapp.ActiveDocument.SaveAs(docastxt,
                FileFormat=win32com.client.constants.wdFormatText)
            wordapp.ActiveDocument.Close( )
finally:
    # ensure Word is properly shut down even if we get an exception
    wordapp.Quit( )

In [ ]:
'''
remove any files that end in .doc or .docx since we created duplicate .txt
files 
'''
for root, dirs, files in os.walk(".", topdown=True):
    for currentFile in files:
        print "processing file: " + currentFile
        exts = ('.doc', '.docx')
        if any(currentFile.lower().endswith(ext) for ext in exts):
            os.remove(os.path.join(root, currentFile))

Now we need to convert the 80 pdf files into text. PDF files are notoriously difficult to work with, fortuantely since we only need the text we don't need to spend hours figuring out which pieces of the pdf we need reference: http://stackoverflow.com/questions/5725278/python-help-using-pdfminer-as-a-library reference: http://davidmburke.com/2014/02/04/python-convert-documents-doc-docx-odt-pdf-to-plain-text-without-libreoffice


In [ ]:
#define a function to convert a pdf file into text
def convert_pdf_to_txt(path):
    rsrcmgr = PDFResourceManager()
    retstr = StringIO()
    codec = 'utf-8'
    laparams = LAParams()
    device = TextConverter(rsrcmgr, retstr, codec=codec, laparams=laparams)
    fp = file(path, 'rb')
    interpreter = PDFPageInterpreter(rsrcmgr, device)
    password = ""
    maxpages = 0
    caching = True
    pagenos=set()
    for page in PDFPage.get_pages(fp, pagenos, maxpages=maxpages, password=password,caching=caching, check_extractable=True):
        interpreter.process_page(page)
    fp.close()
    device.close()
    str = retstr.getvalue()
    retstr.close()
    return str

In [ ]:
'''
let's start out slow and test the concept of what we want to do: find a pdf, convert it to text, and write out that file,
with the same file name (e.g. 1206185) as a text file with the same name (e.g. 120685.txt)
#http://stackoverflow.com/questions/1900956/write-variable-to-file-including-name
#http://stackoverflow.com/questions/1684194/saving-output-of-a-for-loop-to-file
'''

path = 'C:\\ds_sandbox\\project2\\testingfolder\\120685.pdf'
txt = convert_pdf_to_txt(path)
print(txt)

with open('test.txt', 'w') as f:
    f.write(txt)

In [ ]:
#let's define the loop 
for path, dirs, files in os.walk(".", topdown=True):
        for filename in files:
            if not fnmatch.fnmatch(filename, '*.pdf'): continue
            print "processing file: " + os.path.join(path, filename)            
            convert_pdf_to_txt(os.path.join(path, filename))

In [ ]:
'''
now we integrate the prior 2 cells into a single loop to: iterate through all files and sub-directories in the "resume"
directory and convert each pdf into a text object, and then write that object to a new .txt file, with the same name as 
the original pdf file. 
'''

for path, dirs, files in os.walk(".", topdown=True):
        for filename in files:
            if not fnmatch.fnmatch(filename, '*.pdf'): continue
            print "processing file: " + os.path.join(path, filename)            
            doc = convert_pdf_to_txt(os.path.join(path, filename))
            with open(os.path.join(path, filename.replace('.pdf', '.txt')), 'w') as f: 
                f.write(doc)

In [ ]:
'''
remove any files that end in .doc or .docx since we created duplicate .txt
files 
'''

for root, dirs, files in os.walk(".", topdown=True):
    for currentFile in files:
        print "processing file: " + currentFile
        exts = ('.pdf')
        if any(currentFile.lower().endswith(ext) for ext in exts):
            os.remove(os.path.join(root, currentFile))

We have converted all .doc, .docx, and .pdf files into .txt files. W00t!

Next, we need to convert all these .txt files, about 1,007 of them into a data frame that has an ID column which is the name of the file e.g. 120685 and a second column that contains all the text in that file


In [2]:
text = []
for path, dirs, files in os.walk(".", topdown=True):
        for filename in files:
            if not fnmatch.fnmatch(filename, '*.txt'): continue
            print "processing file: " + os.path.join(path, filename)            
            with open (os.path.join(path, filename), "r") as f:
                text.append(f.read())
                
df = pd.DataFrame(text)


processing file: .\01.07.15 Resumes\45416565.txt
processing file: .\01.07.15 Resumes\45416848.txt
processing file: .\01.07.15 Resumes\45417076.txt
processing file: .\01.07.15 Resumes\45417498.txt
processing file: .\01.07.15 Resumes\45417994.txt
processing file: .\01.07.15 Resumes\45418178.txt
processing file: .\01.07.15 Resumes\45418240.txt
processing file: .\01.07.15 Resumes\45418879.txt
processing file: .\01.07.15 Resumes\45420257.txt
processing file: .\01.07.15 Resumes\45420733.txt
processing file: .\01.07.15 Resumes\45422051.txt
processing file: .\01.07.15 Resumes\45424160.txt
processing file: .\01.07.15 Resumes\45424611.txt
processing file: .\01.07.15 Resumes\45425243.txt
processing file: .\01.07.15 Resumes\45425422.txt
processing file: .\01.07.15 Resumes\45425696.txt
processing file: .\01.07.15 Resumes\45426273.txt
processing file: .\01.07.15 Resumes\45426607.txt
processing file: .\01.07.15 Resumes\45427103.txt
processing file: .\01.07.15 Resumes\45427104.txt
processing file: .\01.07.15 Resumes\45427271.txt
processing file: .\01.07.15 Resumes\45427390.txt
processing file: .\01.07.15 Resumes\45427407.txt
processing file: .\01.07.15 Resumes\45427969.txt
processing file: .\01.07.15 Resumes\45429229.txt
processing file: .\01.07.15 Resumes\45431061.txt
processing file: .\01.07.15 Resumes\4544536.txt
processing file: .\01.07.15 Resumes\45445364-.txt
processing file: .\01.07.15 Resumes\45445519.txt
processing file: .\01.07.15 Resumes\45445522.txt
processing file: .\01.07.15 Resumes\45445808.txt
processing file: .\01.07.15 Resumes\45445987.txt
processing file: .\01.07.15 Resumes\45447024.txt
processing file: .\01.07.15 Resumes\45448558.txt
processing file: .\01.07.15 Resumes\45448580.txt
processing file: .\01.07.15 Resumes\45448667.txt
processing file: .\01.07.15 Resumes\45449404.txt
processing file: .\01.07.15 Resumes\45453795.txt
processing file: .\01.07.15 Resumes\45455176.txt
processing file: .\01.07.15 Resumes\45455423.txt
processing file: .\01.07.15 Resumes\45461181.txt
processing file: .\01.07.15 Resumes\45461248.txt
processing file: .\01.07.15 Resumes\Personal Attributes.txt
processing file: .\11.13.15 Resumes\41194514.txt
processing file: .\11.13.15 Resumes\41194519.txt
processing file: .\11.13.15 Resumes\41194604.txt
processing file: .\11.13.15 Resumes\41194663.txt
processing file: .\11.13.15 Resumes\41194668.txt
processing file: .\11.13.15 Resumes\41194701.txt
processing file: .\11.13.15 Resumes\41194703.txt
processing file: .\11.13.15 Resumes\41194755.txt
processing file: .\11.13.15 Resumes\41194759.txt
processing file: .\11.13.15 Resumes\41194805.txt
processing file: .\11.13.15 Resumes\41194866.txt
processing file: .\11.13.15 Resumes\41194876.txt
processing file: .\11.13.15 Resumes\41194912.txt
processing file: .\11.13.15 Resumes\41194945.txt
processing file: .\11.13.15 Resumes\41194960.txt
processing file: .\11.13.15 Resumes\41194974.txt
processing file: .\11.13.15 Resumes\41195002.txt
processing file: .\11.13.15 Resumes\41195044.txt
processing file: .\11.13.15 Resumes\41195078.txt
processing file: .\11.13.15 Resumes\41195097.txt
processing file: .\11.13.15 Resumes\41195155.txt
processing file: .\11.13.15 Resumes\41195168.txt
processing file: .\11.13.15 Resumes\41195171.txt
processing file: .\11.13.15 Resumes\41195194.txt
processing file: .\11.13.15 Resumes\41195223.txt
processing file: .\11.13.15 Resumes\41195247.txt
processing file: .\11.13.15 Resumes\41195253.txt
processing file: .\11.13.15 Resumes\41195304.txt
processing file: .\11.13.15 Resumes\41195347.txt
processing file: .\11.13.15 Resumes\41195365.txt
processing file: .\11.13.15 Resumes\41195479.txt
processing file: .\11.13.15 Resumes\41195483.txt
processing file: .\11.13.15 Resumes\41195497.txt
processing file: .\11.13.15 Resumes\41195504.txt
processing file: .\11.13.15 Resumes\41195558.txt
processing file: .\11.13.15 Resumes\41195641.txt
processing file: .\11.13.15 Resumes\41195663.txt
processing file: .\11.13.15 Resumes\41195754.txt
processing file: .\11.13.15 Resumes\41195923.txt
processing file: .\11.13.15 Resumes\41195931.txt
processing file: .\11.13.15 Resumes\41195978.txt
processing file: .\11.13.15 Resumes\41196285.txt
processing file: .\11.13.15 Resumes\41196322.txt
processing file: .\11.13.15 Resumes\41196393.txt
processing file: .\11.13.15 Resumes\41196423.txt
processing file: .\11.13.15 Resumes\41196487.txt
processing file: .\11.13.15 Resumes\41196539.txt
processing file: .\11.13.15 Resumes\41196582.txt
processing file: .\11.13.15 Resumes\41196613.txt
processing file: .\11.13.15 Resumes\41196665.txt
processing file: .\11.13.15 Resumes\41196777.txt
processing file: .\11.13.15 Resumes\41196841.txt
processing file: .\11.13.15 Resumes\41197039.txt
processing file: .\11.13.15 Resumes\41197191.txt
processing file: .\11.13.15 Resumes\41197274.txt
processing file: .\11.13.15 Resumes\41197347.txt
processing file: .\11.13.15 Resumes\41197441.txt
processing file: .\11.13.15 Resumes\41197466.txt
processing file: .\11.13.15 Resumes\41197664.txt
processing file: .\11.13.15 Resumes\41197908.txt
processing file: .\11.13.15 Resumes\41197911.txt
processing file: .\11.13.15 Resumes\41198039.txt
processing file: .\11.13.15 Resumes\41198440.txt
processing file: .\11.13.15 Resumes\41198469.txt
processing file: .\11.13.15 Resumes\41198597.txt
processing file: .\11.13.15 Resumes\41198817.txt
processing file: .\11.13.15 Resumes\41199270.txt
processing file: .\11.13.15 Resumes\41199502.txt
processing file: .\11.13.15 Resumes\41200239.txt
processing file: .\11.13.15 Resumes\41200453.txt
processing file: .\11.13.15 Resumes\41200727.txt
processing file: .\11.13.15 Resumes\41201148.txt
processing file: .\11.13.15 Resumes\41201175.txt
processing file: .\11.13.15 Resumes\41201387.txt
processing file: .\11.13.15 Resumes\41201433.txt
processing file: .\11.13.15 Resumes\41201508.txt
processing file: .\11.13.15 Resumes\41201557.txt
processing file: .\11.13.15 Resumes\41201641.txt
processing file: .\11.13.15 Resumes\41201710.txt
processing file: .\11.13.15 Resumes\41202463.txt
processing file: .\11.13.15 Resumes\41202529.txt
processing file: .\11.13.15 Resumes\41202563.txt
processing file: .\11.13.15 Resumes\41202709.txt
processing file: .\11.13.15 Resumes\41202984.txt
processing file: .\11.13.15 Resumes\41203120.txt
processing file: .\11.13.15 Resumes\41203230.txt
processing file: .\11.13.15 Resumes\41203876.txt
processing file: .\11.13.15 Resumes\41203892.txt
processing file: .\11.13.15 Resumes\41204269.txt
processing file: .\11.13.15 Resumes\41204431.txt
processing file: .\11.13.15 Resumes\41204540.txt
processing file: .\11.13.15 Resumes\41204776.txt
processing file: .\11.13.15 Resumes\41205225.txt
processing file: .\11.13.15 Resumes\41205473.txt
processing file: .\11.13.15 Resumes\41205930.txt
processing file: .\11.13.15 Resumes\41206335.txt
processing file: .\11.13.15 Resumes\41207284.txt
processing file: .\11.13.15 Resumes\41207359.txt
processing file: .\11.13.15 Resumes\41209129.txt
processing file: .\11.13.15 Resumes\41209634.txt
processing file: .\11.13.15 Resumes\41210610.txt
processing file: .\11.13.15 Resumes\41210651.txt
processing file: .\11.13.15 Resumes\41210771.txt
processing file: .\11.13.15 Resumes\41211095.txt
processing file: .\11.13.15 Resumes\41211928.txt
processing file: .\11.13.15 Resumes\41215134.txt
processing file: .\11.13.15 Resumes\41220117.txt
processing file: .\11.13.15 Resumes\41220238.txt
processing file: .\11.13.15 Resumes\41221139.txt
processing file: .\11.13.15 Resumes\41221157.txt
processing file: .\11.13.15 Resumes\41221420.txt
processing file: .\11.13.15 Resumes\41222471.txt
processing file: .\11.13.15 Resumes\41222820.txt
processing file: .\11.13.15 Resumes\41223080.txt
processing file: .\11.13.15 Resumes\41223233.txt
processing file: .\11.13.15 Resumes\41223616.txt
processing file: .\11.13.15 Resumes\41224068.txt
processing file: .\11.13.15 Resumes\41224490.txt
processing file: .\11.13.15 Resumes\41224713.txt
processing file: .\11.13.15 Resumes\41226287.txt
processing file: .\11.13.15 Resumes\41226949.txt
processing file: .\11.13.15 Resumes\41227008.txt
processing file: .\11.13.15 Resumes\41227273.txt
processing file: .\11.13.15 Resumes\41228048.txt
processing file: .\11.13.15 Resumes\41228692.txt
processing file: .\11.13.15 Resumes\41228928.txt
processing file: .\11.13.15 Resumes\41229970.txt
processing file: .\11.13.15 Resumes\41230007.txt
processing file: .\11.13.15 Resumes\41231985.txt
processing file: .\11.13.15 Resumes\41232472.txt
processing file: .\11.13.15 Resumes\41232760.txt
processing file: .\11.13.15 Resumes\41233065.txt
processing file: .\11.13.15 Resumes\41236162.txt
processing file: .\11.13.15 Resumes\41236536.txt
processing file: .\11.13.15 Resumes\41236635.txt
processing file: .\11.13.15 Resumes\41236778.txt
processing file: .\11.13.15 Resumes\41238103.txt
processing file: .\11.13.15 Resumes\41238455.txt
processing file: .\11.13.15 Resumes\41239122.txt
processing file: .\11.13.15 Resumes\41239532.txt
processing file: .\11.13.15 Resumes\41239857.txt
processing file: .\11.13.15 Resumes\41240037.txt
processing file: .\11.13.15 Resumes\41243185.txt
processing file: .\11.13.15 Resumes\41244463.txt
processing file: .\11.13.15 Resumes\41245330.txt
processing file: .\11.13.15 Resumes\41246069.txt
processing file: .\11.13.15 Resumes\41246408.txt
processing file: .\11.13.15 Resumes\41247114.txt
processing file: .\11.13.15 Resumes\41247375.txt
processing file: .\11.13.15 Resumes\41248648.txt
processing file: .\11.13.15 Resumes\41248689.txt
processing file: .\11.13.15 Resumes\41248860.txt
processing file: .\11.13.15 Resumes\41249975.txt
processing file: .\11.13.15 Resumes\41251066.txt
processing file: .\11.13.15 Resumes\41253499.txt
processing file: .\11.13.15 Resumes\41256286.txt
processing file: .\11.13.15 Resumes\41256484.txt
processing file: .\11.13.15 Resumes\41256492.txt
processing file: .\11.13.15 Resumes\41258187.txt
processing file: .\11.13.15 Resumes\41259364.txt
processing file: .\11.13.15 Resumes\41263614.txt
processing file: .\11.13.15 Resumes\41263793.txt
processing file: .\11.13.15 Resumes\41264173.txt
processing file: .\11.13.15 Resumes\41264801.txt
processing file: .\11.13.15 Resumes\41265034.txt
processing file: .\11.13.15 Resumes\41265292.txt
processing file: .\11.13.15 Resumes\41265312.txt
processing file: .\11.13.15 Resumes\41265487.txt
processing file: .\11.13.15 Resumes\41265781.txt
processing file: .\11.13.15 Resumes\41265889.txt
processing file: .\11.13.15 Resumes\41266270.txt
processing file: .\11.13.15 Resumes\41266423.txt
processing file: .\11.13.15 Resumes\41267247.txt
processing file: .\11.13.15 Resumes\41268047.txt
processing file: .\11.13.15 Resumes\41268459.txt
processing file: .\11.13.15 Resumes\41268561.txt
processing file: .\11.13.15 Resumes\41269175.txt
processing file: .\11.13.15 Resumes\41269581.txt
processing file: .\11.13.15 Resumes\41270074.txt
processing file: .\11.13.15 Resumes\41270568.txt
processing file: .\11.13.15 Resumes\41270664.txt
processing file: .\11.13.15 Resumes\41270839.txt
processing file: .\11.13.15 Resumes\41273970.txt
processing file: .\11.13.15 Resumes\41274086.txt
processing file: .\11.13.15 Resumes\41274856.txt
processing file: .\11.13.15 Resumes\41276738.txt
processing file: .\11.13.15 Resumes\41276783.txt
processing file: .\11.13.15 Resumes\41277551.txt
processing file: .\11.13.15 Resumes\41277895.txt
processing file: .\11.13.15 Resumes\41279348.txt
processing file: .\11.13.15 Resumes\41280283.txt
processing file: .\11.13.15 Resumes\41280295.txt
processing file: .\11.13.15 Resumes\41280367.txt
processing file: .\11.13.15 Resumes\41281505.txt
processing file: .\11.13.15 Resumes\41282603.txt
processing file: .\11.13.15 Resumes\41282683.txt
processing file: .\11.13.15 Resumes\41283204.txt
processing file: .\11.13.15 Resumes\41283595.txt
processing file: .\11.13.15 Resumes\41284027.txt
processing file: .\11.13.15 Resumes\41284380.txt
processing file: .\11.13.15 Resumes\41286041.txt
processing file: .\11.13.15 Resumes\41286919.txt
processing file: .\11.13.15 Resumes\41287862.txt
processing file: .\11.13.15 Resumes\41289186.txt
processing file: .\11.13.15 Resumes\41290635.txt
processing file: .\11.13.15 Resumes\41291775.txt
processing file: .\11.13.15 Resumes\41292282.txt
processing file: .\11.13.15 Resumes\41293096.txt
processing file: .\11.13.15 Resumes\41293153.txt
processing file: .\11.13.15 Resumes\41294601.txt
processing file: .\11.13.15 Resumes\41295925.txt
processing file: .\11.13.15 Resumes\41297543.txt
processing file: .\11.13.15 Resumes\41298893.txt
processing file: .\11.13.15 Resumes\41300125.txt
processing file: .\11.13.15 Resumes\41300190.txt
processing file: .\11.13.15 Resumes\41300959.txt
processing file: .\11.13.15 Resumes\41301982.txt
processing file: .\11.13.15 Resumes\41303526.txt
processing file: .\11.13.15 Resumes\41304627.txt
processing file: .\11.13.15 Resumes\41305003.txt
processing file: .\11.13.15 Resumes\41305249.txt
processing file: .\11.13.15 Resumes\41306835.txt
processing file: .\11.13.15 Resumes\41308357.txt
processing file: .\11.13.15 Resumes\41309527.txt
processing file: .\11.13.15 Resumes\41309536.txt
processing file: .\11.13.15 Resumes\41312308.txt
processing file: .\11.13.15 Resumes\41312851.txt
processing file: .\11.13.15 Resumes\41312926.txt
processing file: .\11.13.15 Resumes\41313945.txt
processing file: .\11.13.15 Resumes\41317463.txt
processing file: .\11.13.15 Resumes\41317784.txt
processing file: .\11.13.15 Resumes\41319174.txt
processing file: .\11.13.15 Resumes\41320356.txt
processing file: .\11.13.15 Resumes\41328454.txt
processing file: .\11.13.15 Resumes\41330707.txt
processing file: .\11.13.15 Resumes\41330976.txt
processing file: .\11.13.15 Resumes\41337434.txt
processing file: .\11.13.15 Resumes\41337894.txt
processing file: .\11.13.15 Resumes\41337996-.txt
processing file: .\11.13.15 Resumes\41337996.txt
processing file: .\11.13.15 Resumes\41340941.txt
processing file: .\11.13.15 Resumes\41341911.txt
processing file: .\11.13.15 Resumes\41347432.txt
processing file: .\11.13.15 Resumes\41348032.txt
processing file: .\11.13.15 Resumes\41351523.txt
processing file: .\11.13.15 Resumes\41353044.txt
processing file: .\11.13.15 Resumes\41353613.txt
processing file: .\11.13.15 Resumes\41354396.txt
processing file: .\11.13.15 Resumes\41354520.txt
processing file: .\11.13.15 Resumes\41355753.txt
processing file: .\11.13.15 Resumes\41356110.txt
processing file: .\11.13.15 Resumes\41357966.txt
processing file: .\11.13.15 Resumes\41358307.txt
processing file: .\11.13.15 Resumes\41359164.txt
processing file: .\11.13.15 Resumes\41359566.txt
processing file: .\11.13.15 Resumes\41360806.txt
processing file: .\11.13.15 Resumes\41361930.txt
processing file: .\11.13.15 Resumes\41362888.txt
processing file: .\11.13.15 Resumes\41363705.txt
processing file: .\11.13.15 Resumes\41365263.txt
processing file: .\11.13.15 Resumes\41366651.txt
processing file: .\11.13.15 Resumes\41367065.txt
processing file: .\11.13.15 Resumes\41368237.txt
processing file: .\11.13.15 Resumes\41368490.txt
processing file: .\11.13.15 Resumes\41375312.txt
processing file: .\11.13.15 Resumes\41375950.txt
processing file: .\11.13.15 Resumes\41376438.txt
processing file: .\11.13.15 Resumes\41377697.txt
processing file: .\11.13.15 Resumes\41378484.txt
processing file: .\11.13.15 Resumes\41381232.txt
processing file: .\11.13.15 Resumes\41383685.txt
processing file: .\11.13.15 Resumes\41386938.txt
processing file: .\11.13.15 Resumes\41389897.txt
processing file: .\11.13.15 Resumes\41393290.txt
processing file: .\11.13.15 Resumes\41395417.txt
processing file: .\11.13.15 Resumes\41396706.txt
processing file: .\11.13.15 Resumes\41397717.txt
processing file: .\11.13.15 Resumes\41401147.txt
processing file: .\11.13.15 Resumes\41402847.txt
processing file: .\11.13.15 Resumes\41403190.txt
processing file: .\11.13.15 Resumes\41404429.txt
processing file: .\11.13.15 Resumes\41411400.txt
processing file: .\11.13.15 Resumes\41411418.txt
processing file: .\11.13.15 Resumes\41411484.txt
processing file: .\11.13.15 Resumes\41415625.txt
processing file: .\11.13.15 Resumes\41416206.txt
processing file: .\11.13.15 Resumes\41416458.txt
processing file: .\11.13.15 Resumes\41417780.txt
processing file: .\11.13.15 Resumes\41417994.txt
processing file: .\11.13.15 Resumes\41419641.txt
processing file: .\11.13.15 Resumes\41419864.txt
processing file: .\11.13.15 Resumes\41422144.txt
processing file: .\11.13.15 Resumes\41426774.txt
processing file: .\11.13.15 Resumes\41427183.txt
processing file: .\11.13.15 Resumes\41427547.txt
processing file: .\11.13.15 Resumes\41430615.txt
processing file: .\11.13.15 Resumes\41435308.txt
processing file: .\11.13.15 Resumes\41436798.txt
processing file: .\11.13.15 Resumes\41438764.txt
processing file: .\11.13.15 Resumes\41438878.txt
processing file: .\11.13.15 Resumes\41439349.txt
processing file: .\11.13.15 Resumes\41439889.txt
processing file: .\11.13.15 Resumes\41440350.txt
processing file: .\11.13.15 Resumes\41440733.txt
processing file: .\11.13.15 Resumes\41441488.txt
processing file: .\11.13.15 Resumes\41441861.txt
processing file: .\11.13.15 Resumes\41442300.txt
processing file: .\11.13.15 Resumes\41443184.txt
processing file: .\11.13.15 Resumes\41443376.txt
processing file: .\11.13.15 Resumes\41445276.txt
processing file: .\11.13.15 Resumes\41452506.txt
processing file: .\11.13.15 Resumes\41458169.txt
processing file: .\11.13.15 Resumes\41459561.txt
processing file: .\11.13.15 Resumes\41462696.txt
processing file: .\11.13.15 Resumes\41463217.txt
processing file: .\11.13.15 Resumes\41464623.txt
processing file: .\11.13.15 Resumes\41465118.txt
processing file: .\11.13.15 Resumes\41470497.txt
processing file: .\11.13.15 Resumes\41470696.txt
processing file: .\11.13.15 Resumes\41475315.txt
processing file: .\11.13.15 Resumes\41477346.txt
processing file: .\11.13.15 Resumes\41477391.txt
processing file: .\11.13.15 Resumes\41480638.txt
processing file: .\11.13.15 Resumes\41480668.txt
processing file: .\11.13.15 Resumes\41480805.txt
processing file: .\11.13.15 Resumes\41483988.txt
processing file: .\11.13.15 Resumes\41491110.txt
processing file: .\11.13.15 Resumes\41491768.txt
processing file: .\11.13.15 Resumes\41501739.txt
processing file: .\11.13.15 Resumes\41504765.txt
processing file: .\11.13.15 Resumes\41505163.txt
processing file: .\11.13.15 Resumes\41511738.txt
processing file: .\11.13.15 Resumes\41516698.txt
processing file: .\11.13.15 Resumes\41517205.txt
processing file: .\11.13.15 Resumes\41519163.txt
processing file: .\11.13.15 Resumes\41520720.txt
processing file: .\11.13.15 Resumes\41521734.txt
processing file: .\11.13.15 Resumes\41523799.txt
processing file: .\11.13.15 Resumes\41524502.txt
processing file: .\11.13.15 Resumes\41524974.txt
processing file: .\11.13.15 Resumes\41528572.txt
processing file: .\11.13.15 Resumes\41530039.txt
processing file: .\11.13.15 Resumes\41534107.txt
processing file: .\11.13.15 Resumes\41534536.txt
processing file: .\11.13.15 Resumes\41540127.txt
processing file: .\11.13.15 Resumes\41540943.txt
processing file: .\11.13.15 Resumes\41551964.txt
processing file: .\11.13.15 Resumes\41553492.txt
processing file: .\11.13.15 Resumes\41554706.txt
processing file: .\11.13.15 Resumes\41554997.txt
processing file: .\11.13.15 Resumes\41556207.txt
processing file: .\11.13.15 Resumes\41557906.txt
processing file: .\11.21.15 Resumes\41623278.txt
processing file: .\11.21.15 Resumes\41623431.txt
processing file: .\11.21.15 Resumes\41624831.txt
processing file: .\11.21.15 Resumes\41624995.txt
processing file: .\11.21.15 Resumes\41625052.txt
processing file: .\11.21.15 Resumes\41625953.txt
processing file: .\11.21.15 Resumes\41626829.txt
processing file: .\11.21.15 Resumes\41627013.txt
processing file: .\11.21.15 Resumes\41627344.txt
processing file: .\11.21.15 Resumes\41627620.txt
processing file: .\11.21.15 Resumes\41629211.txt
processing file: .\11.21.15 Resumes\41629317.txt
processing file: .\11.21.15 Resumes\41631180.txt
processing file: .\11.21.15 Resumes\41631621.txt
processing file: .\11.21.15 Resumes\41634369.txt
processing file: .\11.21.15 Resumes\41634864.txt
processing file: .\11.21.15 Resumes\41635654.txt
processing file: .\11.21.15 Resumes\41636054.txt
processing file: .\11.21.15 Resumes\41636433.txt
processing file: .\11.21.15 Resumes\41637111.txt
processing file: .\11.21.15 Resumes\41637479.txt
processing file: .\11.21.15 Resumes\41638008.txt
processing file: .\11.21.15 Resumes\41638157.txt
processing file: .\11.21.15 Resumes\41639216.txt
processing file: .\11.21.15 Resumes\41641813.txt
processing file: .\11.21.15 Resumes\41641839.txt
processing file: .\11.21.15 Resumes\41642981.txt
processing file: .\11.21.15 Resumes\41643594.txt
processing file: .\11.21.15 Resumes\41643625.txt
processing file: .\11.21.15 Resumes\41645495.txt
processing file: .\11.21.15 Resumes\41645843.txt
processing file: .\11.21.15 Resumes\41647841.txt
processing file: .\11.21.15 Resumes\41647951.txt
processing file: .\11.21.15 Resumes\41651010.txt
processing file: .\11.21.15 Resumes\41654780.txt
processing file: .\11.21.15 Resumes\41655700.txt
processing file: .\11.21.15 Resumes\41655776.txt
processing file: .\11.21.15 Resumes\41656227.txt
processing file: .\11.21.15 Resumes\41656647.txt
processing file: .\11.21.15 Resumes\41656737.txt
processing file: .\11.21.15 Resumes\41657030.txt
processing file: .\11.21.15 Resumes\41657041.txt
processing file: .\11.21.15 Resumes\41657213.txt
processing file: .\11.21.15 Resumes\41657298.txt
processing file: .\11.21.15 Resumes\41657472.txt
processing file: .\11.21.15 Resumes\41657568.txt
processing file: .\11.21.15 Resumes\41657895.txt
processing file: .\11.21.15 Resumes\41658357.txt
processing file: .\11.21.15 Resumes\41660408.txt
processing file: .\11.21.15 Resumes\41661065.txt
processing file: .\11.21.15 Resumes\41661255.txt
processing file: .\11.21.15 Resumes\41662008.txt
processing file: .\11.21.15 Resumes\41663106.txt
processing file: .\11.21.15 Resumes\41663380.txt
processing file: .\11.21.15 Resumes\41664789.txt
processing file: .\11.21.15 Resumes\41664817.txt
processing file: .\11.21.15 Resumes\41664832.txt
processing file: .\11.21.15 Resumes\41665400.txt
processing file: .\11.21.15 Resumes\41665808.txt
processing file: .\11.21.15 Resumes\41666036.txt
processing file: .\11.21.15 Resumes\41666369.txt
processing file: .\11.21.15 Resumes\41669306.txt
processing file: .\11.21.15 Resumes\41670094.txt
processing file: .\11.21.15 Resumes\41673413.txt
processing file: .\11.21.15 Resumes\41673716.txt
processing file: .\11.21.15 Resumes\41674399.txt
processing file: .\11.21.15 Resumes\41674650.txt
processing file: .\11.21.15 Resumes\41676164.txt
processing file: .\11.21.15 Resumes\41678353.txt
processing file: .\11.21.15 Resumes\41680712.txt
processing file: .\11.21.15 Resumes\41681566.txt
processing file: .\11.21.15 Resumes\41683411.txt
processing file: .\11.21.15 Resumes\41685446.txt
processing file: .\11.21.15 Resumes\41686121.txt
processing file: .\11.21.15 Resumes\41689434.txt
processing file: .\11.21.15 Resumes\41692852.txt
processing file: .\11.21.15 Resumes\41692971.txt
processing file: .\11.21.15 Resumes\41696705.txt
processing file: .\11.21.15 Resumes\41697309.txt
processing file: .\11.21.15 Resumes\41697484.txt
processing file: .\11.21.15 Resumes\41698377.txt
processing file: .\11.21.15 Resumes\41698749.txt
processing file: .\11.21.15 Resumes\41705277.txt
processing file: .\11.21.15 Resumes\41705414.txt
processing file: .\11.21.15 Resumes\41709480.txt
processing file: .\11.21.15 Resumes\41710370.txt
processing file: .\11.21.15 Resumes\41714573.txt
processing file: .\11.21.15 Resumes\41715291.txt
processing file: .\11.21.15 Resumes\41720108.txt
processing file: .\11.21.15 Resumes\41721295.txt
processing file: .\11.21.15 Resumes\41724376.txt
processing file: .\11.21.15 Resumes\41727229.txt
processing file: .\11.21.15 Resumes\41727750.txt
processing file: .\11.21.15 Resumes\41728279.txt
processing file: .\11.21.15 Resumes\41728372.txt
processing file: .\11.21.15 Resumes\41730516.txt
processing file: .\11.21.15 Resumes\41733005.txt
processing file: .\11.21.15 Resumes\41734818.txt
processing file: .\11.21.15 Resumes\41735548.txt
processing file: .\11.21.15 Resumes\41737555.txt
processing file: .\11.21.15 Resumes\41737574.txt
processing file: .\11.21.15 Resumes\41738301.txt
processing file: .\11.21.15 Resumes\41738709.txt
processing file: .\11.21.15 Resumes\41739423.txt
processing file: .\11.21.15 Resumes\41740715.txt
processing file: .\11.21.15 Resumes\41742070.txt
processing file: .\11.21.15 Resumes\41742497.txt
processing file: .\11.21.15 Resumes\41743950.txt
processing file: .\11.21.15 Resumes\41744901.txt
processing file: .\11.21.15 Resumes\41745845.txt
processing file: .\11.21.15 Resumes\41746527.txt
processing file: .\11.21.15 Resumes\41747724.txt
processing file: .\11.21.15 Resumes\41748378.txt
processing file: .\11.21.15 Resumes\41749067.txt
processing file: .\11.21.15 Resumes\41751525.txt
processing file: .\11.21.15 Resumes\41754528.txt
processing file: .\11.21.15 Resumes\41755357.txt
processing file: .\11.21.15 Resumes\41755896.txt
processing file: .\11.21.15 Resumes\41757695.txt
processing file: .\11.21.15 Resumes\41757802.txt
processing file: .\11.21.15 Resumes\41758626.txt
processing file: .\11.21.15 Resumes\41758706.txt
processing file: .\11.21.15 Resumes\41760493.txt
processing file: .\11.21.15 Resumes\41763055.txt
processing file: .\11.21.15 Resumes\41765843.txt
processing file: .\11.21.15 Resumes\41766821.txt
processing file: .\11.21.15 Resumes\41768111.txt
processing file: .\11.21.15 Resumes\41773363.txt
processing file: .\11.21.15 Resumes\41774541.txt
processing file: .\11.21.15 Resumes\41775709.txt
processing file: .\11.21.15 Resumes\41778320.txt
processing file: .\11.21.15 Resumes\41779290.txt
processing file: .\11.21.15 Resumes\41780923.txt
processing file: .\11.21.15 Resumes\41784018.txt
processing file: .\11.21.15 Resumes\41784659.txt
processing file: .\11.21.15 Resumes\41787864.txt
processing file: .\11.21.15 Resumes\41788450.txt
processing file: .\11.21.15 Resumes\41793264.txt
processing file: .\11.21.15 Resumes\41793369.txt
processing file: .\11.21.15 Resumes\41794537.txt
processing file: .\11.21.15 Resumes\41795457.txt
processing file: .\11.21.15 Resumes\41795845.txt
processing file: .\11.21.15 Resumes\41796101.txt
processing file: .\11.21.15 Resumes\41796395.txt
processing file: .\11.21.15 Resumes\41800180.txt
processing file: .\11.21.15 Resumes\41801000.txt
processing file: .\11.21.15 Resumes\41801451.txt
processing file: .\11.21.15 Resumes\41801536.txt
processing file: .\11.21.15 Resumes\41802958.txt
processing file: .\11.21.15 Resumes\41803868.txt
processing file: .\11.21.15 Resumes\41804087.txt
processing file: .\11.21.15 Resumes\41804104.txt
processing file: .\11.21.15 Resumes\41810200.txt
processing file: .\11.21.15 Resumes\41810522.txt
processing file: .\11.21.15 Resumes\41810932.txt
processing file: .\11.21.15 Resumes\41812576.txt
processing file: .\11.21.15 Resumes\41814018.txt
processing file: .\11.21.15 Resumes\41814689.txt
processing file: .\11.21.15 Resumes\41819755.txt
processing file: .\11.21.15 Resumes\41823841.txt
processing file: .\11.21.15 Resumes\41826875.txt
processing file: .\11.21.15 Resumes\41828579.txt
processing file: .\11.21.15 Resumes\41832617.txt
processing file: .\11.21.15 Resumes\41833574.txt
processing file: .\11.21.15 Resumes\41834321.txt
processing file: .\11.21.15 Resumes\41837434.txt
processing file: .\11.21.15 Resumes\41840613.txt
processing file: .\11.21.15 Resumes\41842113.txt
processing file: .\11.21.15 Resumes\41842575.txt
processing file: .\11.21.15 Resumes\41843528.txt
processing file: .\11.21.15 Resumes\41849089.txt
processing file: .\11.21.15 Resumes\41851523.txt
processing file: .\11.21.15 Resumes\41851688.txt
processing file: .\11.21.15 Resumes\41851941.txt
processing file: .\11.21.15 Resumes\41855445.txt
processing file: .\11.21.15 Resumes\41857194.txt
processing file: .\11.21.15 Resumes\41859491.txt
processing file: .\11.21.15 Resumes\41859515.txt
processing file: .\11.21.15 Resumes\41860346.txt
processing file: .\11.21.15 Resumes\41861936.txt
processing file: .\11.21.15 Resumes\41863825.txt
processing file: .\11.21.15 Resumes\41867276.txt
processing file: .\11.21.15 Resumes\41867367.txt
processing file: .\11.21.15 Resumes\41867455.txt
processing file: .\11.21.15 Resumes\41867790.txt
processing file: .\11.21.15 Resumes\41868668.txt
processing file: .\11.21.15 Resumes\41869607.txt
processing file: .\11.21.15 Resumes\41869748.txt
processing file: .\11.21.15 Resumes\41871319.txt
processing file: .\11.21.15 Resumes\41876532.txt
processing file: .\11.21.15 Resumes\41880355.txt
processing file: .\11.21.15 Resumes\41880975.txt
processing file: .\11.21.15 Resumes\41881493.txt
processing file: .\11.21.15 Resumes\41881793.txt
processing file: .\11.21.15 Resumes\41882801.txt
processing file: .\11.21.15 Resumes\41890221.txt
processing file: .\11.21.15 Resumes\41891417.txt
processing file: .\11.21.15 Resumes\41892879.txt
processing file: .\11.21.15 Resumes\41895138.txt
processing file: .\11.21.15 Resumes\41895187.txt
processing file: .\11.21.15 Resumes\41897893.txt
processing file: .\11.21.15 Resumes\41898100.txt
processing file: .\11.21.15 Resumes\41899428.txt
processing file: .\11.21.15 Resumes\41902318.txt
processing file: .\11.21.15 Resumes\41906030.txt
processing file: .\11.21.15 Resumes\41907730.txt
processing file: .\11.21.15 Resumes\41913306.txt
processing file: .\11.21.15 Resumes\41913310.txt
processing file: .\11.21.15 Resumes\41913853.txt
processing file: .\11.21.15 Resumes\41919102.txt
processing file: .\11.21.15 Resumes\41924801.txt
processing file: .\11.21.15 Resumes\41927008.txt
processing file: .\11.21.15 Resumes\41931134.txt
processing file: .\11.21.15 Resumes\41938833.txt
processing file: .\11.21.15 Resumes\41940649.txt
processing file: .\11.21.15 Resumes\41940940.txt
processing file: .\11.21.15 Resumes\41941740.txt
processing file: .\11.21.15 Resumes\41943000.txt
processing file: .\11.21.15 Resumes\41943145.txt
processing file: .\11.21.15 Resumes\41951161.txt
processing file: .\11.21.15 Resumes\41954482.txt
processing file: .\11.21.15 Resumes\41955481.txt
processing file: .\11.21.15 Resumes\41959512.txt
processing file: .\11.21.15 Resumes\41966491.txt
processing file: .\11.21.15 Resumes\41967373.txt
processing file: .\11.21.15 Resumes\41968352.txt
processing file: .\11.21.15 Resumes\41975248.txt
processing file: .\11.21.15 Resumes\41979357.txt
processing file: .\11.21.15 Resumes\41980026.txt
processing file: .\11.21.15 Resumes\41981076.txt
processing file: .\11.21.15 Resumes\41981344.txt
processing file: .\11.21.15 Resumes\41982301.txt
processing file: .\11.21.15 Resumes\41982817.txt
processing file: .\11.21.15 Resumes\41983148.txt
processing file: .\11.21.15 Resumes\41984829.txt
processing file: .\11.21.15 Resumes\41985120.txt
processing file: .\11.21.15 Resumes\41987233.txt
processing file: .\11.21.15 Resumes\41992983.txt
processing file: .\11.21.15 Resumes\41995767.txt
processing file: .\11.21.15 Resumes\41997970.txt
processing file: .\11.21.15 Resumes\41998425.txt
processing file: .\11.21.15 Resumes\41998853.txt
processing file: .\11.21.15 Resumes\42000241.txt
processing file: .\11.21.15 Resumes\42000656.txt
processing file: .\11.21.15 Resumes\42001821.txt
processing file: .\11.21.15 Resumes\42003696.txt
processing file: .\11.21.15 Resumes\42004019.txt
processing file: .\11.21.15 Resumes\42006086.txt
processing file: .\11.28.15 Resumes\42012289.txt
processing file: .\11.28.15 Resumes\42012858.txt
processing file: .\11.28.15 Resumes\42013007.txt
processing file: .\11.28.15 Resumes\42014143.txt
processing file: .\11.28.15 Resumes\42015675.txt
processing file: .\11.28.15 Resumes\42016569.txt
processing file: .\11.28.15 Resumes\42016875.txt
processing file: .\11.28.15 Resumes\42016892.txt
processing file: .\11.28.15 Resumes\42018199.txt
processing file: .\11.28.15 Resumes\42018446.txt
processing file: .\11.28.15 Resumes\42021706.txt
processing file: .\11.28.15 Resumes\42022032.txt
processing file: .\11.28.15 Resumes\42024908.txt
processing file: .\11.28.15 Resumes\42024991.txt
processing file: .\11.28.15 Resumes\42028077.txt
processing file: .\11.28.15 Resumes\42030901.txt
processing file: .\11.28.15 Resumes\42033247.txt
processing file: .\11.28.15 Resumes\42035172.txt
processing file: .\11.28.15 Resumes\42036185.txt
processing file: .\11.28.15 Resumes\42038679.txt
processing file: .\11.28.15 Resumes\42038838.txt
processing file: .\11.28.15 Resumes\42039464.txt
processing file: .\11.28.15 Resumes\42039671.txt
processing file: .\11.28.15 Resumes\42047076.txt
processing file: .\11.28.15 Resumes\42049887.txt
processing file: .\11.28.15 Resumes\42052636.txt
processing file: .\11.28.15 Resumes\42055939.txt
processing file: .\11.28.15 Resumes\42056848.txt
processing file: .\11.28.15 Resumes\42056974.txt
processing file: .\11.28.15 Resumes\42059312.txt
processing file: .\11.28.15 Resumes\42060483.txt
processing file: .\11.28.15 Resumes\42060986.txt
processing file: .\11.28.15 Resumes\42062127.txt
processing file: .\11.28.15 Resumes\42063299.txt
processing file: .\11.28.15 Resumes\42063580.txt
processing file: .\11.28.15 Resumes\42064062.txt
processing file: .\11.28.15 Resumes\42064107.txt
processing file: .\11.28.15 Resumes\42065701.txt
processing file: .\11.28.15 Resumes\42065762.txt
processing file: .\11.28.15 Resumes\42065956.txt
processing file: .\11.28.15 Resumes\42070064.txt
processing file: .\11.28.15 Resumes\42071059.txt
processing file: .\11.28.15 Resumes\42075056.txt
processing file: .\11.28.15 Resumes\42076390.txt
processing file: .\11.28.15 Resumes\42083151.txt
processing file: .\11.28.15 Resumes\42085676.txt
processing file: .\11.28.15 Resumes\42086839.txt
processing file: .\11.28.15 Resumes\42087024.txt
processing file: .\11.28.15 Resumes\42091434.txt
processing file: .\11.28.15 Resumes\42092639.txt
processing file: .\11.28.15 Resumes\42092783.txt
processing file: .\11.28.15 Resumes\42094208.txt
processing file: .\11.28.15 Resumes\42094287.txt
processing file: .\11.28.15 Resumes\42097488.txt
processing file: .\11.28.15 Resumes\42102010.txt
processing file: .\11.28.15 Resumes\42103966.txt
processing file: .\11.28.15 Resumes\42104209.txt
processing file: .\11.28.15 Resumes\42104238.txt
processing file: .\11.28.15 Resumes\42106698.txt
processing file: .\11.28.15 Resumes\42106957.txt
processing file: .\11.28.15 Resumes\42111762.txt
processing file: .\11.28.15 Resumes\42113712.txt
processing file: .\11.28.15 Resumes\42117274.txt
processing file: .\11.28.15 Resumes\42122942.txt
processing file: .\11.28.15 Resumes\42123226.txt
processing file: .\11.28.15 Resumes\42124628.txt
processing file: .\11.28.15 Resumes\42128798.txt
processing file: .\11.28.15 Resumes\42130335.txt
processing file: .\11.28.15 Resumes\42132550.txt
processing file: .\11.28.15 Resumes\42132744.txt
processing file: .\11.28.15 Resumes\42133086.txt
processing file: .\11.28.15 Resumes\42135401.txt
processing file: .\11.28.15 Resumes\42136175.txt
processing file: .\11.28.15 Resumes\42141085.txt
processing file: .\11.28.15 Resumes\42147374.txt
processing file: .\11.28.15 Resumes\42162128.txt
processing file: .\11.28.15 Resumes\42168901.txt
processing file: .\11.28.15 Resumes\42174541.txt
processing file: .\11.28.15 Resumes\42175097.txt
processing file: .\11.28.15 Resumes\42176728.txt
processing file: .\11.28.15 Resumes\42181358.txt
processing file: .\11.28.15 Resumes\42184518.txt
processing file: .\11.28.15 Resumes\42184835.txt
processing file: .\11.28.15 Resumes\42185672.txt
processing file: .\11.28.15 Resumes\42188100.txt
processing file: .\11.28.15 Resumes\42190445.txt
processing file: .\11.28.15 Resumes\42191714.txt
processing file: .\11.28.15 Resumes\42193904.txt
processing file: .\11.28.15 Resumes\42196850.txt
processing file: .\11.28.15 Resumes\42197777.txt
processing file: .\11.28.15 Resumes\42198682.txt
processing file: .\11.28.15 Resumes\42209230.txt
processing file: .\11.28.15 Resumes\42212999.txt
processing file: .\11.28.15 Resumes\42224521.txt
processing file: .\11.28.15 Resumes\42226574.txt
processing file: .\11.28.15 Resumes\42232007.txt
processing file: .\11.28.15 Resumes\42233263.txt
processing file: .\11.28.15 Resumes\42238640.txt
processing file: .\11.28.15 Resumes\42239922.txt
processing file: .\11.28.15 Resumes\42241386.txt
processing file: .\11.28.15 Resumes\42241905.txt
processing file: .\11.28.15 Resumes\42244904.txt
processing file: .\11.28.15 Resumes\42245090.txt
processing file: .\11.28.15 Resumes\42288265.txt
processing file: .\11.28.15 Resumes\42288531.txt
processing file: .\11.28.15 Resumes\42289045.txt
processing file: .\11.28.15 Resumes\42295617.txt
processing file: .\11.28.15 Resumes\42297067.txt
processing file: .\11.28.15 Resumes\42299212.txt
processing file: .\11.28.15 Resumes\42306259.txt
processing file: .\11.28.15 Resumes\42340864.txt
processing file: .\11.28.15 Resumes\42341297.txt
processing file: .\11.28.15 Resumes\42341681.txt
processing file: .\11.28.15 Resumes\42342046.txt
processing file: .\11.28.15 Resumes\42343348.txt
processing file: .\11.28.15 Resumes\42344020.txt
processing file: .\11.28.15 Resumes\42345220.txt
processing file: .\11.28.15 Resumes\42345316.txt
processing file: .\11.28.15 Resumes\42346002.txt
processing file: .\11.28.15 Resumes\42346026.txt
processing file: .\11.28.15 Resumes\42346179.txt
processing file: .\11.28.15 Resumes\42347457.txt
processing file: .\11.28.15 Resumes\42350605.txt
processing file: .\11.28.15 Resumes\42350735.txt
processing file: .\11.28.15 Resumes\42352971.txt
processing file: .\11.28.15 Resumes\42354534.txt
processing file: .\11.28.15 Resumes\42354710.txt
processing file: .\11.28.15 Resumes\42355361.txt
processing file: .\11.28.15 Resumes\42355499.txt
processing file: .\11.28.15 Resumes\42357151.txt
processing file: .\11.28.15 Resumes\42357691.txt
processing file: .\11.28.15 Resumes\42364181.txt
processing file: .\11.28.15 Resumes\42364257.txt
processing file: .\11.28.15 Resumes\42364675.txt
processing file: .\11.28.15 Resumes\42368863.txt
processing file: .\11.28.15 Resumes\42369445.txt
processing file: .\11.28.15 Resumes\42370224.txt
processing file: .\11.28.15 Resumes\42378734.txt
processing file: .\11.28.15 Resumes\42381929.txt
processing file: .\11.28.15 Resumes\42384271.txt
processing file: .\11.28.15 Resumes\42387989.txt
processing file: .\11.28.15 Resumes\42388406.txt
processing file: .\11.28.15 Resumes\42389014.txt
processing file: .\11.28.15 Resumes\42390615.txt
processing file: .\11.28.15 Resumes\42391356.txt
processing file: .\11.28.15 Resumes\42392023.txt
processing file: .\11.28.15 Resumes\42394144.txt
processing file: .\11.28.15 Resumes\42396000.txt
processing file: .\11.28.15 Resumes\42397230.txt
processing file: .\11.28.15 Resumes\42423802.txt
processing file: .\11.28.15 Resumes\42438306.txt
processing file: .\11.28.15 Resumes\42441147.txt
processing file: .\11.28.15 Resumes\42443964.txt
processing file: .\11.28.15 Resumes\42444864.txt
processing file: .\11.28.15 Resumes\42445050.txt
processing file: .\11.28.15 Resumes\42449499.txt
processing file: .\11.28.15 Resumes\42453096.txt
processing file: .\11.28.15 Resumes\42459840.txt
processing file: .\11.28.15 Resumes\42461023.txt
processing file: .\11.28.15 Resumes\42464745.txt
processing file: .\11.28.15 Resumes\42467290.txt
processing file: .\11.28.15 Resumes\42473554.txt
processing file: .\11.28.15 Resumes\42484452.txt
processing file: .\11.28.15 Resumes\42485567.txt
processing file: .\11.28.15 Resumes\42498020.txt
processing file: .\11.28.15 Resumes\42502395.txt
processing file: .\11.28.15 Resumes\42507530.txt
processing file: .\11.28.15 Resumes\42508386.txt
processing file: .\11.28.15 Resumes\42509785.txt
processing file: .\11.28.15 Resumes\42510711.txt
processing file: .\11.28.15 Resumes\42511665.txt
processing file: .\11.28.15 Resumes\42511678.txt
processing file: .\11.28.15 Resumes\42511878.txt
processing file: .\11.28.15 Resumes\42513354.txt
processing file: .\11.28.15 Resumes\42514584.txt
processing file: .\11.28.15 Resumes\42516563.txt
processing file: .\11.28.15 Resumes\42525456.txt
processing file: .\11.28.15 Resumes\42540955.txt
processing file: .\11.28.15 Resumes\42550724.txt
processing file: .\11.28.15 Resumes\42550761.txt
processing file: .\11.28.15 Resumes\42551046.txt
processing file: .\11.28.15 Resumes\42551225.txt
processing file: .\11.28.15 Resumes\42551346.txt
processing file: .\11.28.15 Resumes\42551533.txt
processing file: .\11.28.15 Resumes\42551973.txt
processing file: .\11.28.15 Resumes\42551988.txt
processing file: .\11.28.15 Resumes\42551999.txt
processing file: .\11.28.15 Resumes\42565903.txt
processing file: .\11.28.15 Resumes\42566424.txt
processing file: .\11.28.15 Resumes\42573139.txt
processing file: .\11.28.15 Resumes\42579072.txt
processing file: .\11.28.15 Resumes\42582620.txt
processing file: .\11.28.15 Resumes\42583775.txt
processing file: .\11.28.15 Resumes\42584476.txt
processing file: .\11.28.15 Resumes\42589837.txt
processing file: .\11.28.15 Resumes\42593556.txt
processing file: .\11.28.15 Resumes\42595107.txt
processing file: .\11.28.15 Resumes\42595502.txt
processing file: .\11.28.15 Resumes\42595808.txt
processing file: .\11.28.15 Resumes\42605026.txt
processing file: .\11.28.15 Resumes\42606029.txt
processing file: .\11.28.15 Resumes\42610684.txt
processing file: .\11.28.15 Resumes\42618455.txt
processing file: .\11.28.15 Resumes\42618700.txt
processing file: .\11.28.15 Resumes\42620958.txt
processing file: .\11.28.15 Resumes\42622762.txt
processing file: .\11.28.15 Resumes\42623666.txt
processing file: .\11.28.15 Resumes\42628036.txt
processing file: .\11.28.15 Resumes\42636486.txt
processing file: .\12.07.15 Resumes\42781849.txt
processing file: .\12.07.15 Resumes\42786249.txt
processing file: .\12.07.15 Resumes\42787335.txt
processing file: .\12.07.15 Resumes\42787522.txt
processing file: .\12.07.15 Resumes\42790155.txt
processing file: .\12.07.15 Resumes\42790523.txt
processing file: .\12.07.15 Resumes\42791049.txt
processing file: .\12.07.15 Resumes\42791109.txt
processing file: .\12.07.15 Resumes\42798602.txt
processing file: .\12.07.15 Resumes\42806875.txt
processing file: .\12.07.15 Resumes\42819587.txt
processing file: .\12.07.15 Resumes\42826540.txt
processing file: .\12.07.15 Resumes\42832299.txt
processing file: .\12.07.15 Resumes\42835694.txt
processing file: .\12.07.15 Resumes\42839070.txt
processing file: .\12.07.15 Resumes\42839553.txt
processing file: .\12.07.15 Resumes\42852875.txt
processing file: .\12.07.15 Resumes\42853312.txt
processing file: .\12.07.15 Resumes\42854931.txt
processing file: .\12.07.15 Resumes\42862850.txt
processing file: .\12.07.15 Resumes\42863513.txt
processing file: .\12.07.15 Resumes\42865055.txt
processing file: .\12.07.15 Resumes\42865111.txt
processing file: .\12.07.15 Resumes\42866964.txt
processing file: .\12.07.15 Resumes\42868805.txt
processing file: .\12.07.15 Resumes\42869224.txt
processing file: .\12.07.15 Resumes\42882208.txt
processing file: .\12.07.15 Resumes\42886846.txt
processing file: .\12.07.15 Resumes\42891976.txt
processing file: .\12.07.15 Resumes\42905227.txt
processing file: .\12.07.15 Resumes\42905389.txt
processing file: .\12.07.15 Resumes\42911760.txt
processing file: .\12.07.15 Resumes\42914798.txt
processing file: .\12.07.15 Resumes\42924655.txt
processing file: .\12.07.15 Resumes\42928634.txt
processing file: .\12.07.15 Resumes\42940865.txt
processing file: .\12.07.15 Resumes\42949518.txt
processing file: .\12.07.15 Resumes\42952225.txt
processing file: .\12.07.15 Resumes\42954158.txt
processing file: .\12.07.15 Resumes\42957539.txt
processing file: .\12.07.15 Resumes\42957645.txt
processing file: .\12.07.15 Resumes\42967750.txt
processing file: .\12.07.15 Resumes\42974208.txt
processing file: .\12.07.15 Resumes\42993113.txt
processing file: .\12.07.15 Resumes\43000160.txt
processing file: .\12.07.15 Resumes\43023420.txt
processing file: .\12.07.15 Resumes\43024731.txt
processing file: .\12.07.15 Resumes\43040916.txt
processing file: .\12.07.15 Resumes\43044303.txt
processing file: .\12.07.15 Resumes\43075329.txt
processing file: .\12.07.15 Resumes\43092195.txt
processing file: .\12.07.15 Resumes\43093415.txt
processing file: .\12.07.15 Resumes\43106763.txt
processing file: .\12.07.15 Resumes\43108714.txt
processing file: .\12.07.15 Resumes\43114487.txt
processing file: .\12.07.15 Resumes\43116932.txt
processing file: .\12.07.15 Resumes\43119439.txt
processing file: .\12.07.15 Resumes\43130110.txt
processing file: .\12.07.15 Resumes\43155497.txt
processing file: .\12.07.15 Resumes\43175826.txt
processing file: .\12.07.15 Resumes\43179920.txt
processing file: .\12.07.15 Resumes\43184285.txt
processing file: .\12.07.15 Resumes\43192655.txt
processing file: .\12.07.15 Resumes\43193897.txt
processing file: .\12.07.15 Resumes\43211350.txt
processing file: .\12.07.15 Resumes\43234818.txt
processing file: .\12.07.15 Resumes\43263708.txt
processing file: .\12.07.15 Resumes\43286311.txt
processing file: .\12.07.15 Resumes\43287347.txt
processing file: .\12.07.15 Resumes\43289536.txt
processing file: .\12.07.15 Resumes\43293228.txt
processing file: .\12.07.15 Resumes\43295052.txt
processing file: .\12.07.15 Resumes\43299031.txt
processing file: .\12.07.15 Resumes\43300962.txt
processing file: .\12.07.15 Resumes\43316417.txt
processing file: .\12.07.15 Resumes\43326820.txt
processing file: .\12.07.15 Resumes\43327537.txt
processing file: .\12.07.15 Resumes\43337501.txt
processing file: .\12.07.15 Resumes\43337808.txt
processing file: .\12.07.15 Resumes\43345806.txt
processing file: .\12.07.15 Resumes\43345811.txt
processing file: .\12.07.15 Resumes\43350977.txt
processing file: .\12.07.15 Resumes\43359835.txt
processing file: .\12.07.15 Resumes\43372339.txt
processing file: .\12.07.15 Resumes\43372376.txt
processing file: .\12.07.15 Resumes\43375396.txt
processing file: .\12.07.15 Resumes\43376934.txt
processing file: .\12.07.15 Resumes\43381447.txt
processing file: .\12.07.15 Resumes\43389382.txt
processing file: .\12.07.15 Resumes\43394419.txt
processing file: .\12.07.15 Resumes\43395556.txt
processing file: .\12.07.15 Resumes\43408136.txt
processing file: .\12.07.15 Resumes\43408234.txt
processing file: .\12.07.15 Resumes\43414218.txt
processing file: .\12.07.15 Resumes\43417987.txt
processing file: .\12.07.15 Resumes\43420936.txt
processing file: .\12.07.15 Resumes\43433928.txt
processing file: .\12.07.15 Resumes\43435762.txt
processing file: .\12.07.15 Resumes\43436185.txt
processing file: .\12.07.15 Resumes\43436301.txt
processing file: .\12.07.15 Resumes\43442334.txt
processing file: .\12.07.15 Resumes\43460820.txt
processing file: .\12.07.15 Resumes\43480798.txt
processing file: .\12.07.15 Resumes\43495079.txt
processing file: .\12.07.15 Resumes\43504851.txt
processing file: .\12.07.15 Resumes\43505149.txt
processing file: .\12.07.15 Resumes\43518674.txt
processing file: .\12.07.15 Resumes\43535507.txt
processing file: .\12.07.15 Resumes\43536505.txt
processing file: .\12.07.15 Resumes\43537700.txt
processing file: .\12.07.15 Resumes\43539009.txt
processing file: .\12.07.15 Resumes\43545148.txt
processing file: .\12.07.15 Resumes\43546079.txt
processing file: .\12.07.15 Resumes\43547093.txt
processing file: .\12.07.15 Resumes\43552554.txt
processing file: .\12.07.15 Resumes\43553609.txt
processing file: .\12.07.15 Resumes\43554393.txt
processing file: .\12.07.15 Resumes\43557676.txt
processing file: .\12.07.15 Resumes\43559967.txt
processing file: .\12.07.15 Resumes\43562772.txt
processing file: .\12.07.15 Resumes\43579037.txt
processing file: .\12.07.15 Resumes\43585490.txt
processing file: .\12.07.15 Resumes\43596567.txt
processing file: .\12.07.15 Resumes\43610143.txt
processing file: .\12.07.15 Resumes\43615009.txt
processing file: .\12.07.15 Resumes\43617115.txt
processing file: .\12.07.15 Resumes\43636357.txt
processing file: .\12.07.15 Resumes\43641670.txt
processing file: .\12.07.15 Resumes\43656965.txt
processing file: .\12.07.15 Resumes\43664896.txt
processing file: .\12.07.15 Resumes\43666552.txt
processing file: .\12.07.15 Resumes\43669278.txt
processing file: .\12.07.15 Resumes\43674259.txt
processing file: .\12.07.15 Resumes\43685899.txt
processing file: .\12.07.15 Resumes\43689309.txt
processing file: .\12.07.15 Resumes\43693472.txt
processing file: .\12.07.15 Resumes\43694142.txt
processing file: .\12.07.15 Resumes\43694817.txt
processing file: .\12.07.15 Resumes\43703485.txt
processing file: .\12.07.15 Resumes\43717460.txt
processing file: .\12.07.15 Resumes\43754553.txt
processing file: .\12.07.15 Resumes\43754987.txt
processing file: .\12.07.15 Resumes\43757730.txt
processing file: .\12.07.15 Resumes\43762206.txt
processing file: .\12.07.15 Resumes\43775436.txt
processing file: .\12.07.15 Resumes\43788224.txt
processing file: .\12.07.15 Resumes\43797667.txt
processing file: .\12.07.15 Resumes\43798002.txt
processing file: .\12.07.15 Resumes\43800254.txt
processing file: .\12.07.15 Resumes\43811374.txt
processing file: .\12.07.15 Resumes\43811789.txt

In [3]:
df.head(1)


Out[3]:
0
0 \n\nProfessional Experience\nACS, Beattyville,...

Create a list that has only the document names, remove extension e.g. ".txt"


In [4]:
rowid= []

for path, dirs, files in os.walk(".", topdown=True):
        for filename in files:
            if not fnmatch.fnmatch(filename, '*.txt'): continue
            print "processing file: " + os.path.join(path, filename)
            rowid.append(os.path.join(filename[:-4]))


processing file: .\01.07.15 Resumes\45416565.txt
processing file: .\01.07.15 Resumes\45416848.txt
processing file: .\01.07.15 Resumes\45417076.txt
processing file: .\01.07.15 Resumes\45417498.txt
processing file: .\01.07.15 Resumes\45417994.txt
processing file: .\01.07.15 Resumes\45418178.txt
processing file: .\01.07.15 Resumes\45418240.txt
processing file: .\01.07.15 Resumes\45418879.txt
processing file: .\01.07.15 Resumes\45420257.txt
processing file: .\01.07.15 Resumes\45420733.txt
processing file: .\01.07.15 Resumes\45422051.txt
processing file: .\01.07.15 Resumes\45424160.txt
processing file: .\01.07.15 Resumes\45424611.txt
processing file: .\01.07.15 Resumes\45425243.txt
processing file: .\01.07.15 Resumes\45425422.txt
processing file: .\01.07.15 Resumes\45425696.txt
processing file: .\01.07.15 Resumes\45426273.txt
processing file: .\01.07.15 Resumes\45426607.txt
processing file: .\01.07.15 Resumes\45427103.txt
processing file: .\01.07.15 Resumes\45427104.txt
processing file: .\01.07.15 Resumes\45427271.txt
processing file: .\01.07.15 Resumes\45427390.txt
processing file: .\01.07.15 Resumes\45427407.txt
processing file: .\01.07.15 Resumes\45427969.txt
processing file: .\01.07.15 Resumes\45429229.txt
processing file: .\01.07.15 Resumes\45431061.txt
processing file: .\01.07.15 Resumes\4544536.txt
processing file: .\01.07.15 Resumes\45445364-.txt
processing file: .\01.07.15 Resumes\45445519.txt
processing file: .\01.07.15 Resumes\45445522.txt
processing file: .\01.07.15 Resumes\45445808.txt
processing file: .\01.07.15 Resumes\45445987.txt
processing file: .\01.07.15 Resumes\45447024.txt
processing file: .\01.07.15 Resumes\45448558.txt
processing file: .\01.07.15 Resumes\45448580.txt
processing file: .\01.07.15 Resumes\45448667.txt
processing file: .\01.07.15 Resumes\45449404.txt
processing file: .\01.07.15 Resumes\45453795.txt
processing file: .\01.07.15 Resumes\45455176.txt
processing file: .\01.07.15 Resumes\45455423.txt
processing file: .\01.07.15 Resumes\45461181.txt
processing file: .\01.07.15 Resumes\45461248.txt
processing file: .\01.07.15 Resumes\Personal Attributes.txt
processing file: .\11.13.15 Resumes\41194514.txt
processing file: .\11.13.15 Resumes\41194519.txt
processing file: .\11.13.15 Resumes\41194604.txt
processing file: .\11.13.15 Resumes\41194663.txt
processing file: .\11.13.15 Resumes\41194668.txt
processing file: .\11.13.15 Resumes\41194701.txt
processing file: .\11.13.15 Resumes\41194703.txt
processing file: .\11.13.15 Resumes\41194755.txt
processing file: .\11.13.15 Resumes\41194759.txt
processing file: .\11.13.15 Resumes\41194805.txt
processing file: .\11.13.15 Resumes\41194866.txt
processing file: .\11.13.15 Resumes\41194876.txt
processing file: .\11.13.15 Resumes\41194912.txt
processing file: .\11.13.15 Resumes\41194945.txt
processing file: .\11.13.15 Resumes\41194960.txt
processing file: .\11.13.15 Resumes\41194974.txt
processing file: .\11.13.15 Resumes\41195002.txt
processing file: .\11.13.15 Resumes\41195044.txt
processing file: .\11.13.15 Resumes\41195078.txt
processing file: .\11.13.15 Resumes\41195097.txt
processing file: .\11.13.15 Resumes\41195155.txt
processing file: .\11.13.15 Resumes\41195168.txt
processing file: .\11.13.15 Resumes\41195171.txt
processing file: .\11.13.15 Resumes\41195194.txt
processing file: .\11.13.15 Resumes\41195223.txt
processing file: .\11.13.15 Resumes\41195247.txt
processing file: .\11.13.15 Resumes\41195253.txt
processing file: .\11.13.15 Resumes\41195304.txt
processing file: .\11.13.15 Resumes\41195347.txt
processing file: .\11.13.15 Resumes\41195365.txt
processing file: .\11.13.15 Resumes\41195479.txt
processing file: .\11.13.15 Resumes\41195483.txt
processing file: .\11.13.15 Resumes\41195497.txt
processing file: .\11.13.15 Resumes\41195504.txt
processing file: .\11.13.15 Resumes\41195558.txt
processing file: .\11.13.15 Resumes\41195641.txt
processing file: .\11.13.15 Resumes\41195663.txt
processing file: .\11.13.15 Resumes\41195754.txt
processing file: .\11.13.15 Resumes\41195923.txt
processing file: .\11.13.15 Resumes\41195931.txt
processing file: .\11.13.15 Resumes\41195978.txt
processing file: .\11.13.15 Resumes\41196285.txt
processing file: .\11.13.15 Resumes\41196322.txt
processing file: .\11.13.15 Resumes\41196393.txt
processing file: .\11.13.15 Resumes\41196423.txt
processing file: .\11.13.15 Resumes\41196487.txt
processing file: .\11.13.15 Resumes\41196539.txt
processing file: .\11.13.15 Resumes\41196582.txt
processing file: .\11.13.15 Resumes\41196613.txt
processing file: .\11.13.15 Resumes\41196665.txt
processing file: .\11.13.15 Resumes\41196777.txt
processing file: .\11.13.15 Resumes\41196841.txt
processing file: .\11.13.15 Resumes\41197039.txt
processing file: .\11.13.15 Resumes\41197191.txt
processing file: .\11.13.15 Resumes\41197274.txt
processing file: .\11.13.15 Resumes\41197347.txt
processing file: .\11.13.15 Resumes\41197441.txt
processing file: .\11.13.15 Resumes\41197466.txt
processing file: .\11.13.15 Resumes\41197664.txt
processing file: .\11.13.15 Resumes\41197908.txt
processing file: .\11.13.15 Resumes\41197911.txt
processing file: .\11.13.15 Resumes\41198039.txt
processing file: .\11.13.15 Resumes\41198440.txt
processing file: .\11.13.15 Resumes\41198469.txt
processing file: .\11.13.15 Resumes\41198597.txt
processing file: .\11.13.15 Resumes\41198817.txt
processing file: .\11.13.15 Resumes\41199270.txt
processing file: .\11.13.15 Resumes\41199502.txt
processing file: .\11.13.15 Resumes\41200239.txt
processing file: .\11.13.15 Resumes\41200453.txt
processing file: .\11.13.15 Resumes\41200727.txt
processing file: .\11.13.15 Resumes\41201148.txt
processing file: .\11.13.15 Resumes\41201175.txt
processing file: .\11.13.15 Resumes\41201387.txt
processing file: .\11.13.15 Resumes\41201433.txt
processing file: .\11.13.15 Resumes\41201508.txt
processing file: .\11.13.15 Resumes\41201557.txt
processing file: .\11.13.15 Resumes\41201641.txt
processing file: .\11.13.15 Resumes\41201710.txt
processing file: .\11.13.15 Resumes\41202463.txt
processing file: .\11.13.15 Resumes\41202529.txt
processing file: .\11.13.15 Resumes\41202563.txt
processing file: .\11.13.15 Resumes\41202709.txt
processing file: .\11.13.15 Resumes\41202984.txt
processing file: .\11.13.15 Resumes\41203120.txt
processing file: .\11.13.15 Resumes\41203230.txt
processing file: .\11.13.15 Resumes\41203876.txt
processing file: .\11.13.15 Resumes\41203892.txt
processing file: .\11.13.15 Resumes\41204269.txt
processing file: .\11.13.15 Resumes\41204431.txt
processing file: .\11.13.15 Resumes\41204540.txt
processing file: .\11.13.15 Resumes\41204776.txt
processing file: .\11.13.15 Resumes\41205225.txt
processing file: .\11.13.15 Resumes\41205473.txt
processing file: .\11.13.15 Resumes\41205930.txt
processing file: .\11.13.15 Resumes\41206335.txt
processing file: .\11.13.15 Resumes\41207284.txt
processing file: .\11.13.15 Resumes\41207359.txt
processing file: .\11.13.15 Resumes\41209129.txt
processing file: .\11.13.15 Resumes\41209634.txt
processing file: .\11.13.15 Resumes\41210610.txt
processing file: .\11.13.15 Resumes\41210651.txt
processing file: .\11.13.15 Resumes\41210771.txt
processing file: .\11.13.15 Resumes\41211095.txt
processing file: .\11.13.15 Resumes\41211928.txt
processing file: .\11.13.15 Resumes\41215134.txt
processing file: .\11.13.15 Resumes\41220117.txt
processing file: .\11.13.15 Resumes\41220238.txt
processing file: .\11.13.15 Resumes\41221139.txt
processing file: .\11.13.15 Resumes\41221157.txt
processing file: .\11.13.15 Resumes\41221420.txt
processing file: .\11.13.15 Resumes\41222471.txt
processing file: .\11.13.15 Resumes\41222820.txt
processing file: .\11.13.15 Resumes\41223080.txt
processing file: .\11.13.15 Resumes\41223233.txt
processing file: .\11.13.15 Resumes\41223616.txt
processing file: .\11.13.15 Resumes\41224068.txt
processing file: .\11.13.15 Resumes\41224490.txt
processing file: .\11.13.15 Resumes\41224713.txt
processing file: .\11.13.15 Resumes\41226287.txt
processing file: .\11.13.15 Resumes\41226949.txt
processing file: .\11.13.15 Resumes\41227008.txt
processing file: .\11.13.15 Resumes\41227273.txt
processing file: .\11.13.15 Resumes\41228048.txt
processing file: .\11.13.15 Resumes\41228692.txt
processing file: .\11.13.15 Resumes\41228928.txt
processing file: .\11.13.15 Resumes\41229970.txt
processing file: .\11.13.15 Resumes\41230007.txt
processing file: .\11.13.15 Resumes\41231985.txt
processing file: .\11.13.15 Resumes\41232472.txt
processing file: .\11.13.15 Resumes\41232760.txt
processing file: .\11.13.15 Resumes\41233065.txt
processing file: .\11.13.15 Resumes\41236162.txt
processing file: .\11.13.15 Resumes\41236536.txt
processing file: .\11.13.15 Resumes\41236635.txt
processing file: .\11.13.15 Resumes\41236778.txt
processing file: .\11.13.15 Resumes\41238103.txt
processing file: .\11.13.15 Resumes\41238455.txt
processing file: .\11.13.15 Resumes\41239122.txt
processing file: .\11.13.15 Resumes\41239532.txt
processing file: .\11.13.15 Resumes\41239857.txt
processing file: .\11.13.15 Resumes\41240037.txt
processing file: .\11.13.15 Resumes\41243185.txt
processing file: .\11.13.15 Resumes\41244463.txt
processing file: .\11.13.15 Resumes\41245330.txt
processing file: .\11.13.15 Resumes\41246069.txt
processing file: .\11.13.15 Resumes\41246408.txt
processing file: .\11.13.15 Resumes\41247114.txt
processing file: .\11.13.15 Resumes\41247375.txt
processing file: .\11.13.15 Resumes\41248648.txt
processing file: .\11.13.15 Resumes\41248689.txt
processing file: .\11.13.15 Resumes\41248860.txt
processing file: .\11.13.15 Resumes\41249975.txt
processing file: .\11.13.15 Resumes\41251066.txt
processing file: .\11.13.15 Resumes\41253499.txt
processing file: .\11.13.15 Resumes\41256286.txt
processing file: .\11.13.15 Resumes\41256484.txt
processing file: .\11.13.15 Resumes\41256492.txt
processing file: .\11.13.15 Resumes\41258187.txt
processing file: .\11.13.15 Resumes\41259364.txt
processing file: .\11.13.15 Resumes\41263614.txt
processing file: .\11.13.15 Resumes\41263793.txt
processing file: .\11.13.15 Resumes\41264173.txt
processing file: .\11.13.15 Resumes\41264801.txt
processing file: .\11.13.15 Resumes\41265034.txt
processing file: .\11.13.15 Resumes\41265292.txt
processing file: .\11.13.15 Resumes\41265312.txt
processing file: .\11.13.15 Resumes\41265487.txt
processing file: .\11.13.15 Resumes\41265781.txt
processing file: .\11.13.15 Resumes\41265889.txt
processing file: .\11.13.15 Resumes\41266270.txt
processing file: .\11.13.15 Resumes\41266423.txt
processing file: .\11.13.15 Resumes\41267247.txt
processing file: .\11.13.15 Resumes\41268047.txt
processing file: .\11.13.15 Resumes\41268459.txt
processing file: .\11.13.15 Resumes\41268561.txt
processing file: .\11.13.15 Resumes\41269175.txt
processing file: .\11.13.15 Resumes\41269581.txt
processing file: .\11.13.15 Resumes\41270074.txt
processing file: .\11.13.15 Resumes\41270568.txt
processing file: .\11.13.15 Resumes\41270664.txt
processing file: .\11.13.15 Resumes\41270839.txt
processing file: .\11.13.15 Resumes\41273970.txt
processing file: .\11.13.15 Resumes\41274086.txt
processing file: .\11.13.15 Resumes\41274856.txt
processing file: .\11.13.15 Resumes\41276738.txt
processing file: .\11.13.15 Resumes\41276783.txt
processing file: .\11.13.15 Resumes\41277551.txt
processing file: .\11.13.15 Resumes\41277895.txt
processing file: .\11.13.15 Resumes\41279348.txt
processing file: .\11.13.15 Resumes\41280283.txt
processing file: .\11.13.15 Resumes\41280295.txt
processing file: .\11.13.15 Resumes\41280367.txt
processing file: .\11.13.15 Resumes\41281505.txt
processing file: .\11.13.15 Resumes\41282603.txt
processing file: .\11.13.15 Resumes\41282683.txt
processing file: .\11.13.15 Resumes\41283204.txt
processing file: .\11.13.15 Resumes\41283595.txt
processing file: .\11.13.15 Resumes\41284027.txt
processing file: .\11.13.15 Resumes\41284380.txt
processing file: .\11.13.15 Resumes\41286041.txt
processing file: .\11.13.15 Resumes\41286919.txt
processing file: .\11.13.15 Resumes\41287862.txt
processing file: .\11.13.15 Resumes\41289186.txt
processing file: .\11.13.15 Resumes\41290635.txt
processing file: .\11.13.15 Resumes\41291775.txt
processing file: .\11.13.15 Resumes\41292282.txt
processing file: .\11.13.15 Resumes\41293096.txt
processing file: .\11.13.15 Resumes\41293153.txt
processing file: .\11.13.15 Resumes\41294601.txt
processing file: .\11.13.15 Resumes\41295925.txt
processing file: .\11.13.15 Resumes\41297543.txt
processing file: .\11.13.15 Resumes\41298893.txt
processing file: .\11.13.15 Resumes\41300125.txt
processing file: .\11.13.15 Resumes\41300190.txt
processing file: .\11.13.15 Resumes\41300959.txt
processing file: .\11.13.15 Resumes\41301982.txt
processing file: .\11.13.15 Resumes\41303526.txt
processing file: .\11.13.15 Resumes\41304627.txt
processing file: .\11.13.15 Resumes\41305003.txt
processing file: .\11.13.15 Resumes\41305249.txt
processing file: .\11.13.15 Resumes\41306835.txt
processing file: .\11.13.15 Resumes\41308357.txt
processing file: .\11.13.15 Resumes\41309527.txt
processing file: .\11.13.15 Resumes\41309536.txt
processing file: .\11.13.15 Resumes\41312308.txt
processing file: .\11.13.15 Resumes\41312851.txt
processing file: .\11.13.15 Resumes\41312926.txt
processing file: .\11.13.15 Resumes\41313945.txt
processing file: .\11.13.15 Resumes\41317463.txt
processing file: .\11.13.15 Resumes\41317784.txt
processing file: .\11.13.15 Resumes\41319174.txt
processing file: .\11.13.15 Resumes\41320356.txt
processing file: .\11.13.15 Resumes\41328454.txt
processing file: .\11.13.15 Resumes\41330707.txt
processing file: .\11.13.15 Resumes\41330976.txt
processing file: .\11.13.15 Resumes\41337434.txt
processing file: .\11.13.15 Resumes\41337894.txt
processing file: .\11.13.15 Resumes\41337996-.txt
processing file: .\11.13.15 Resumes\41337996.txt
processing file: .\11.13.15 Resumes\41340941.txt
processing file: .\11.13.15 Resumes\41341911.txt
processing file: .\11.13.15 Resumes\41347432.txt
processing file: .\11.13.15 Resumes\41348032.txt
processing file: .\11.13.15 Resumes\41351523.txt
processing file: .\11.13.15 Resumes\41353044.txt
processing file: .\11.13.15 Resumes\41353613.txt
processing file: .\11.13.15 Resumes\41354396.txt
processing file: .\11.13.15 Resumes\41354520.txt
processing file: .\11.13.15 Resumes\41355753.txt
processing file: .\11.13.15 Resumes\41356110.txt
processing file: .\11.13.15 Resumes\41357966.txt
processing file: .\11.13.15 Resumes\41358307.txt
processing file: .\11.13.15 Resumes\41359164.txt
processing file: .\11.13.15 Resumes\41359566.txt
processing file: .\11.13.15 Resumes\41360806.txt
processing file: .\11.13.15 Resumes\41361930.txt
processing file: .\11.13.15 Resumes\41362888.txt
processing file: .\11.13.15 Resumes\41363705.txt
processing file: .\11.13.15 Resumes\41365263.txt
processing file: .\11.13.15 Resumes\41366651.txt
processing file: .\11.13.15 Resumes\41367065.txt
processing file: .\11.13.15 Resumes\41368237.txt
processing file: .\11.13.15 Resumes\41368490.txt
processing file: .\11.13.15 Resumes\41375312.txt
processing file: .\11.13.15 Resumes\41375950.txt
processing file: .\11.13.15 Resumes\41376438.txt
processing file: .\11.13.15 Resumes\41377697.txt
processing file: .\11.13.15 Resumes\41378484.txt
processing file: .\11.13.15 Resumes\41381232.txt
processing file: .\11.13.15 Resumes\41383685.txt
processing file: .\11.13.15 Resumes\41386938.txt
processing file: .\11.13.15 Resumes\41389897.txt
processing file: .\11.13.15 Resumes\41393290.txt
processing file: .\11.13.15 Resumes\41395417.txt
processing file: .\11.13.15 Resumes\41396706.txt
processing file: .\11.13.15 Resumes\41397717.txt
processing file: .\11.13.15 Resumes\41401147.txt
processing file: .\11.13.15 Resumes\41402847.txt
processing file: .\11.13.15 Resumes\41403190.txt
processing file: .\11.13.15 Resumes\41404429.txt
processing file: .\11.13.15 Resumes\41411400.txt
processing file: .\11.13.15 Resumes\41411418.txt
processing file: .\11.13.15 Resumes\41411484.txt
processing file: .\11.13.15 Resumes\41415625.txt
processing file: .\11.13.15 Resumes\41416206.txt
processing file: .\11.13.15 Resumes\41416458.txt
processing file: .\11.13.15 Resumes\41417780.txt
processing file: .\11.13.15 Resumes\41417994.txt
processing file: .\11.13.15 Resumes\41419641.txt
processing file: .\11.13.15 Resumes\41419864.txt
processing file: .\11.13.15 Resumes\41422144.txt
processing file: .\11.13.15 Resumes\41426774.txt
processing file: .\11.13.15 Resumes\41427183.txt
processing file: .\11.13.15 Resumes\41427547.txt
processing file: .\11.13.15 Resumes\41430615.txt
processing file: .\11.13.15 Resumes\41435308.txt
processing file: .\11.13.15 Resumes\41436798.txt
processing file: .\11.13.15 Resumes\41438764.txt
processing file: .\11.13.15 Resumes\41438878.txt
processing file: .\11.13.15 Resumes\41439349.txt
processing file: .\11.13.15 Resumes\41439889.txt
processing file: .\11.13.15 Resumes\41440350.txt
processing file: .\11.13.15 Resumes\41440733.txt
processing file: .\11.13.15 Resumes\41441488.txt
processing file: .\11.13.15 Resumes\41441861.txt
processing file: .\11.13.15 Resumes\41442300.txt
processing file: .\11.13.15 Resumes\41443184.txt
processing file: .\11.13.15 Resumes\41443376.txt
processing file: .\11.13.15 Resumes\41445276.txt
processing file: .\11.13.15 Resumes\41452506.txt
processing file: .\11.13.15 Resumes\41458169.txt
processing file: .\11.13.15 Resumes\41459561.txt
processing file: .\11.13.15 Resumes\41462696.txt
processing file: .\11.13.15 Resumes\41463217.txt
processing file: .\11.13.15 Resumes\41464623.txt
processing file: .\11.13.15 Resumes\41465118.txt
processing file: .\11.13.15 Resumes\41470497.txt
processing file: .\11.13.15 Resumes\41470696.txt
processing file: .\11.13.15 Resumes\41475315.txt
processing file: .\11.13.15 Resumes\41477346.txt
processing file: .\11.13.15 Resumes\41477391.txt
processing file: .\11.13.15 Resumes\41480638.txt
processing file: .\11.13.15 Resumes\41480668.txt
processing file: .\11.13.15 Resumes\41480805.txt
processing file: .\11.13.15 Resumes\41483988.txt
processing file: .\11.13.15 Resumes\41491110.txt
processing file: .\11.13.15 Resumes\41491768.txt
processing file: .\11.13.15 Resumes\41501739.txt
processing file: .\11.13.15 Resumes\41504765.txt
processing file: .\11.13.15 Resumes\41505163.txt
processing file: .\11.13.15 Resumes\41511738.txt
processing file: .\11.13.15 Resumes\41516698.txt
processing file: .\11.13.15 Resumes\41517205.txt
processing file: .\11.13.15 Resumes\41519163.txt
processing file: .\11.13.15 Resumes\41520720.txt
processing file: .\11.13.15 Resumes\41521734.txt
processing file: .\11.13.15 Resumes\41523799.txt
processing file: .\11.13.15 Resumes\41524502.txt
processing file: .\11.13.15 Resumes\41524974.txt
processing file: .\11.13.15 Resumes\41528572.txt
processing file: .\11.13.15 Resumes\41530039.txt
processing file: .\11.13.15 Resumes\41534107.txt
processing file: .\11.13.15 Resumes\41534536.txt
processing file: .\11.13.15 Resumes\41540127.txt
processing file: .\11.13.15 Resumes\41540943.txt
processing file: .\11.13.15 Resumes\41551964.txt
processing file: .\11.13.15 Resumes\41553492.txt
processing file: .\11.13.15 Resumes\41554706.txt
processing file: .\11.13.15 Resumes\41554997.txt
processing file: .\11.13.15 Resumes\41556207.txt
processing file: .\11.13.15 Resumes\41557906.txt
processing file: .\11.21.15 Resumes\41623278.txt
processing file: .\11.21.15 Resumes\41623431.txt
processing file: .\11.21.15 Resumes\41624831.txt
processing file: .\11.21.15 Resumes\41624995.txt
processing file: .\11.21.15 Resumes\41625052.txt
processing file: .\11.21.15 Resumes\41625953.txt
processing file: .\11.21.15 Resumes\41626829.txt
processing file: .\11.21.15 Resumes\41627013.txt
processing file: .\11.21.15 Resumes\41627344.txt
processing file: .\11.21.15 Resumes\41627620.txt
processing file: .\11.21.15 Resumes\41629211.txt
processing file: .\11.21.15 Resumes\41629317.txt
processing file: .\11.21.15 Resumes\41631180.txt
processing file: .\11.21.15 Resumes\41631621.txt
processing file: .\11.21.15 Resumes\41634369.txt
processing file: .\11.21.15 Resumes\41634864.txt
processing file: .\11.21.15 Resumes\41635654.txt
processing file: .\11.21.15 Resumes\41636054.txt
processing file: .\11.21.15 Resumes\41636433.txt
processing file: .\11.21.15 Resumes\41637111.txt
processing file: .\11.21.15 Resumes\41637479.txt
processing file: .\11.21.15 Resumes\41638008.txt
processing file: .\11.21.15 Resumes\41638157.txt
processing file: .\11.21.15 Resumes\41639216.txt
processing file: .\11.21.15 Resumes\41641813.txt
processing file: .\11.21.15 Resumes\41641839.txt
processing file: .\11.21.15 Resumes\41642981.txt
processing file: .\11.21.15 Resumes\41643594.txt
processing file: .\11.21.15 Resumes\41643625.txt
processing file: .\11.21.15 Resumes\41645495.txt
processing file: .\11.21.15 Resumes\41645843.txt
processing file: .\11.21.15 Resumes\41647841.txt
processing file: .\11.21.15 Resumes\41647951.txt
processing file: .\11.21.15 Resumes\41651010.txt
processing file: .\11.21.15 Resumes\41654780.txt
processing file: .\11.21.15 Resumes\41655700.txt
processing file: .\11.21.15 Resumes\41655776.txt
processing file: .\11.21.15 Resumes\41656227.txt
processing file: .\11.21.15 Resumes\41656647.txt
processing file: .\11.21.15 Resumes\41656737.txt
processing file: .\11.21.15 Resumes\41657030.txt
processing file: .\11.21.15 Resumes\41657041.txt
processing file: .\11.21.15 Resumes\41657213.txt
processing file: .\11.21.15 Resumes\41657298.txt
processing file: .\11.21.15 Resumes\41657472.txt
processing file: .\11.21.15 Resumes\41657568.txt
processing file: .\11.21.15 Resumes\41657895.txt
processing file: .\11.21.15 Resumes\41658357.txt
processing file: .\11.21.15 Resumes\41660408.txt
processing file: .\11.21.15 Resumes\41661065.txt
processing file: .\11.21.15 Resumes\41661255.txt
processing file: .\11.21.15 Resumes\41662008.txt
processing file: .\11.21.15 Resumes\41663106.txt
processing file: .\11.21.15 Resumes\41663380.txt
processing file: .\11.21.15 Resumes\41664789.txt
processing file: .\11.21.15 Resumes\41664817.txt
processing file: .\11.21.15 Resumes\41664832.txt
processing file: .\11.21.15 Resumes\41665400.txt
processing file: .\11.21.15 Resumes\41665808.txt
processing file: .\11.21.15 Resumes\41666036.txt
processing file: .\11.21.15 Resumes\41666369.txt
processing file: .\11.21.15 Resumes\41669306.txt
processing file: .\11.21.15 Resumes\41670094.txt
processing file: .\11.21.15 Resumes\41673413.txt
processing file: .\11.21.15 Resumes\41673716.txt
processing file: .\11.21.15 Resumes\41674399.txt
processing file: .\11.21.15 Resumes\41674650.txt
processing file: .\11.21.15 Resumes\41676164.txt
processing file: .\11.21.15 Resumes\41678353.txt
processing file: .\11.21.15 Resumes\41680712.txt
processing file: .\11.21.15 Resumes\41681566.txt
processing file: .\11.21.15 Resumes\41683411.txt
processing file: .\11.21.15 Resumes\41685446.txt
processing file: .\11.21.15 Resumes\41686121.txt
processing file: .\11.21.15 Resumes\41689434.txt
processing file: .\11.21.15 Resumes\41692852.txt
processing file: .\11.21.15 Resumes\41692971.txt
processing file: .\11.21.15 Resumes\41696705.txt
processing file: .\11.21.15 Resumes\41697309.txt
processing file: .\11.21.15 Resumes\41697484.txt
processing file: .\11.21.15 Resumes\41698377.txt
processing file: .\11.21.15 Resumes\41698749.txt
processing file: .\11.21.15 Resumes\41705277.txt
processing file: .\11.21.15 Resumes\41705414.txt
processing file: .\11.21.15 Resumes\41709480.txt
processing file: .\11.21.15 Resumes\41710370.txt
processing file: .\11.21.15 Resumes\41714573.txt
processing file: .\11.21.15 Resumes\41715291.txt
processing file: .\11.21.15 Resumes\41720108.txt
processing file: .\11.21.15 Resumes\41721295.txt
processing file: .\11.21.15 Resumes\41724376.txt
processing file: .\11.21.15 Resumes\41727229.txt
processing file: .\11.21.15 Resumes\41727750.txt
processing file: .\11.21.15 Resumes\41728279.txt
processing file: .\11.21.15 Resumes\41728372.txt
processing file: .\11.21.15 Resumes\41730516.txt
processing file: .\11.21.15 Resumes\41733005.txt
processing file: .\11.21.15 Resumes\41734818.txt
processing file: .\11.21.15 Resumes\41735548.txt
processing file: .\11.21.15 Resumes\41737555.txt
processing file: .\11.21.15 Resumes\41737574.txt
processing file: .\11.21.15 Resumes\41738301.txt
processing file: .\11.21.15 Resumes\41738709.txt
processing file: .\11.21.15 Resumes\41739423.txt
processing file: .\11.21.15 Resumes\41740715.txt
processing file: .\11.21.15 Resumes\41742070.txt
processing file: .\11.21.15 Resumes\41742497.txt
processing file: .\11.21.15 Resumes\41743950.txt
processing file: .\11.21.15 Resumes\41744901.txt
processing file: .\11.21.15 Resumes\41745845.txt
processing file: .\11.21.15 Resumes\41746527.txt
processing file: .\11.21.15 Resumes\41747724.txt
processing file: .\11.21.15 Resumes\41748378.txt
processing file: .\11.21.15 Resumes\41749067.txt
processing file: .\11.21.15 Resumes\41751525.txt
processing file: .\11.21.15 Resumes\41754528.txt
processing file: .\11.21.15 Resumes\41755357.txt
processing file: .\11.21.15 Resumes\41755896.txt
processing file: .\11.21.15 Resumes\41757695.txt
processing file: .\11.21.15 Resumes\41757802.txt
processing file: .\11.21.15 Resumes\41758626.txt
processing file: .\11.21.15 Resumes\41758706.txt
processing file: .\11.21.15 Resumes\41760493.txt
processing file: .\11.21.15 Resumes\41763055.txt
processing file: .\11.21.15 Resumes\41765843.txt
processing file: .\11.21.15 Resumes\41766821.txt
processing file: .\11.21.15 Resumes\41768111.txt
processing file: .\11.21.15 Resumes\41773363.txt
processing file: .\11.21.15 Resumes\41774541.txt
processing file: .\11.21.15 Resumes\41775709.txt
processing file: .\11.21.15 Resumes\41778320.txt
processing file: .\11.21.15 Resumes\41779290.txt
processing file: .\11.21.15 Resumes\41780923.txt
processing file: .\11.21.15 Resumes\41784018.txt
processing file: .\11.21.15 Resumes\41784659.txt
processing file: .\11.21.15 Resumes\41787864.txt
processing file: .\11.21.15 Resumes\41788450.txt
processing file: .\11.21.15 Resumes\41793264.txt
processing file: .\11.21.15 Resumes\41793369.txt
processing file: .\11.21.15 Resumes\41794537.txt
processing file: .\11.21.15 Resumes\41795457.txt
processing file: .\11.21.15 Resumes\41795845.txt
processing file: .\11.21.15 Resumes\41796101.txt
processing file: .\11.21.15 Resumes\41796395.txt
processing file: .\11.21.15 Resumes\41800180.txt
processing file: .\11.21.15 Resumes\41801000.txt
processing file: .\11.21.15 Resumes\41801451.txt
processing file: .\11.21.15 Resumes\41801536.txt
processing file: .\11.21.15 Resumes\41802958.txt
processing file: .\11.21.15 Resumes\41803868.txt
processing file: .\11.21.15 Resumes\41804087.txt
processing file: .\11.21.15 Resumes\41804104.txt
processing file: .\11.21.15 Resumes\41810200.txt
processing file: .\11.21.15 Resumes\41810522.txt
processing file: .\11.21.15 Resumes\41810932.txt
processing file: .\11.21.15 Resumes\41812576.txt
processing file: .\11.21.15 Resumes\41814018.txt
processing file: .\11.21.15 Resumes\41814689.txt
processing file: .\11.21.15 Resumes\41819755.txt
processing file: .\11.21.15 Resumes\41823841.txt
processing file: .\11.21.15 Resumes\41826875.txt
processing file: .\11.21.15 Resumes\41828579.txt
processing file: .\11.21.15 Resumes\41832617.txt
processing file: .\11.21.15 Resumes\41833574.txt
processing file: .\11.21.15 Resumes\41834321.txt
processing file: .\11.21.15 Resumes\41837434.txt
processing file: .\11.21.15 Resumes\41840613.txt
processing file: .\11.21.15 Resumes\41842113.txt
processing file: .\11.21.15 Resumes\41842575.txt
processing file: .\11.21.15 Resumes\41843528.txt
processing file: .\11.21.15 Resumes\41849089.txt
processing file: .\11.21.15 Resumes\41851523.txt
processing file: .\11.21.15 Resumes\41851688.txt
processing file: .\11.21.15 Resumes\41851941.txt
processing file: .\11.21.15 Resumes\41855445.txt
processing file: .\11.21.15 Resumes\41857194.txt
processing file: .\11.21.15 Resumes\41859491.txt
processing file: .\11.21.15 Resumes\41859515.txt
processing file: .\11.21.15 Resumes\41860346.txt
processing file: .\11.21.15 Resumes\41861936.txt
processing file: .\11.21.15 Resumes\41863825.txt
processing file: .\11.21.15 Resumes\41867276.txt
processing file: .\11.21.15 Resumes\41867367.txt
processing file: .\11.21.15 Resumes\41867455.txt
processing file: .\11.21.15 Resumes\41867790.txt
processing file: .\11.21.15 Resumes\41868668.txt
processing file: .\11.21.15 Resumes\41869607.txt
processing file: .\11.21.15 Resumes\41869748.txt
processing file: .\11.21.15 Resumes\41871319.txt
processing file: .\11.21.15 Resumes\41876532.txt
processing file: .\11.21.15 Resumes\41880355.txt
processing file: .\11.21.15 Resumes\41880975.txt
processing file: .\11.21.15 Resumes\41881493.txt
processing file: .\11.21.15 Resumes\41881793.txt
processing file: .\11.21.15 Resumes\41882801.txt
processing file: .\11.21.15 Resumes\41890221.txt
processing file: .\11.21.15 Resumes\41891417.txt
processing file: .\11.21.15 Resumes\41892879.txt
processing file: .\11.21.15 Resumes\41895138.txt
processing file: .\11.21.15 Resumes\41895187.txt
processing file: .\11.21.15 Resumes\41897893.txt
processing file: .\11.21.15 Resumes\41898100.txt
processing file: .\11.21.15 Resumes\41899428.txt
processing file: .\11.21.15 Resumes\41902318.txt
processing file: .\11.21.15 Resumes\41906030.txt
processing file: .\11.21.15 Resumes\41907730.txt
processing file: .\11.21.15 Resumes\41913306.txt
processing file: .\11.21.15 Resumes\41913310.txt
processing file: .\11.21.15 Resumes\41913853.txt
processing file: .\11.21.15 Resumes\41919102.txt
processing file: .\11.21.15 Resumes\41924801.txt
processing file: .\11.21.15 Resumes\41927008.txt
processing file: .\11.21.15 Resumes\41931134.txt
processing file: .\11.21.15 Resumes\41938833.txt
processing file: .\11.21.15 Resumes\41940649.txt
processing file: .\11.21.15 Resumes\41940940.txt
processing file: .\11.21.15 Resumes\41941740.txt
processing file: .\11.21.15 Resumes\41943000.txt
processing file: .\11.21.15 Resumes\41943145.txt
processing file: .\11.21.15 Resumes\41951161.txt
processing file: .\11.21.15 Resumes\41954482.txt
processing file: .\11.21.15 Resumes\41955481.txt
processing file: .\11.21.15 Resumes\41959512.txt
processing file: .\11.21.15 Resumes\41966491.txt
processing file: .\11.21.15 Resumes\41967373.txt
processing file: .\11.21.15 Resumes\41968352.txt
processing file: .\11.21.15 Resumes\41975248.txt
processing file: .\11.21.15 Resumes\41979357.txt
processing file: .\11.21.15 Resumes\41980026.txt
processing file: .\11.21.15 Resumes\41981076.txt
processing file: .\11.21.15 Resumes\41981344.txt
processing file: .\11.21.15 Resumes\41982301.txt
processing file: .\11.21.15 Resumes\41982817.txt
processing file: .\11.21.15 Resumes\41983148.txt
processing file: .\11.21.15 Resumes\41984829.txt
processing file: .\11.21.15 Resumes\41985120.txt
processing file: .\11.21.15 Resumes\41987233.txt
processing file: .\11.21.15 Resumes\41992983.txt
processing file: .\11.21.15 Resumes\41995767.txt
processing file: .\11.21.15 Resumes\41997970.txt
processing file: .\11.21.15 Resumes\41998425.txt
processing file: .\11.21.15 Resumes\41998853.txt
processing file: .\11.21.15 Resumes\42000241.txt
processing file: .\11.21.15 Resumes\42000656.txt
processing file: .\11.21.15 Resumes\42001821.txt
processing file: .\11.21.15 Resumes\42003696.txt
processing file: .\11.21.15 Resumes\42004019.txt
processing file: .\11.21.15 Resumes\42006086.txt
processing file: .\11.28.15 Resumes\42012289.txt
processing file: .\11.28.15 Resumes\42012858.txt
processing file: .\11.28.15 Resumes\42013007.txt
processing file: .\11.28.15 Resumes\42014143.txt
processing file: .\11.28.15 Resumes\42015675.txt
processing file: .\11.28.15 Resumes\42016569.txt
processing file: .\11.28.15 Resumes\42016875.txt
processing file: .\11.28.15 Resumes\42016892.txt
processing file: .\11.28.15 Resumes\42018199.txt
processing file: .\11.28.15 Resumes\42018446.txt
processing file: .\11.28.15 Resumes\42021706.txt
processing file: .\11.28.15 Resumes\42022032.txt
processing file: .\11.28.15 Resumes\42024908.txt
processing file: .\11.28.15 Resumes\42024991.txt
processing file: .\11.28.15 Resumes\42028077.txt
processing file: .\11.28.15 Resumes\42030901.txt
processing file: .\11.28.15 Resumes\42033247.txt
processing file: .\11.28.15 Resumes\42035172.txt
processing file: .\11.28.15 Resumes\42036185.txt
processing file: .\11.28.15 Resumes\42038679.txt
processing file: .\11.28.15 Resumes\42038838.txt
processing file: .\11.28.15 Resumes\42039464.txt
processing file: .\11.28.15 Resumes\42039671.txt
processing file: .\11.28.15 Resumes\42047076.txt
processing file: .\11.28.15 Resumes\42049887.txt
processing file: .\11.28.15 Resumes\42052636.txt
processing file: .\11.28.15 Resumes\42055939.txt
processing file: .\11.28.15 Resumes\42056848.txt
processing file: .\11.28.15 Resumes\42056974.txt
processing file: .\11.28.15 Resumes\42059312.txt
processing file: .\11.28.15 Resumes\42060483.txt
processing file: .\11.28.15 Resumes\42060986.txt
processing file: .\11.28.15 Resumes\42062127.txt
processing file: .\11.28.15 Resumes\42063299.txt
processing file: .\11.28.15 Resumes\42063580.txt
processing file: .\11.28.15 Resumes\42064062.txt
processing file: .\11.28.15 Resumes\42064107.txt
processing file: .\11.28.15 Resumes\42065701.txt
processing file: .\11.28.15 Resumes\42065762.txt
processing file: .\11.28.15 Resumes\42065956.txt
processing file: .\11.28.15 Resumes\42070064.txt
processing file: .\11.28.15 Resumes\42071059.txt
processing file: .\11.28.15 Resumes\42075056.txt
processing file: .\11.28.15 Resumes\42076390.txt
processing file: .\11.28.15 Resumes\42083151.txt
processing file: .\11.28.15 Resumes\42085676.txt
processing file: .\11.28.15 Resumes\42086839.txt
processing file: .\11.28.15 Resumes\42087024.txt
processing file: .\11.28.15 Resumes\42091434.txt
processing file: .\11.28.15 Resumes\42092639.txt
processing file: .\11.28.15 Resumes\42092783.txt
processing file: .\11.28.15 Resumes\42094208.txt
processing file: .\11.28.15 Resumes\42094287.txt
processing file: .\11.28.15 Resumes\42097488.txt
processing file: .\11.28.15 Resumes\42102010.txt
processing file: .\11.28.15 Resumes\42103966.txt
processing file: .\11.28.15 Resumes\42104209.txt
processing file: .\11.28.15 Resumes\42104238.txt
processing file: .\11.28.15 Resumes\42106698.txt
processing file: .\11.28.15 Resumes\42106957.txt
processing file: .\11.28.15 Resumes\42111762.txt
processing file: .\11.28.15 Resumes\42113712.txt
processing file: .\11.28.15 Resumes\42117274.txt
processing file: .\11.28.15 Resumes\42122942.txt
processing file: .\11.28.15 Resumes\42123226.txt
processing file: .\11.28.15 Resumes\42124628.txt
processing file: .\11.28.15 Resumes\42128798.txt
processing file: .\11.28.15 Resumes\42130335.txt
processing file: .\11.28.15 Resumes\42132550.txt
processing file: .\11.28.15 Resumes\42132744.txt
processing file: .\11.28.15 Resumes\42133086.txt
processing file: .\11.28.15 Resumes\42135401.txt
processing file: .\11.28.15 Resumes\42136175.txt
processing file: .\11.28.15 Resumes\42141085.txt
processing file: .\11.28.15 Resumes\42147374.txt
processing file: .\11.28.15 Resumes\42162128.txt
processing file: .\11.28.15 Resumes\42168901.txt
processing file: .\11.28.15 Resumes\42174541.txt
processing file: .\11.28.15 Resumes\42175097.txt
processing file: .\11.28.15 Resumes\42176728.txt
processing file: .\11.28.15 Resumes\42181358.txt
processing file: .\11.28.15 Resumes\42184518.txt
processing file: .\11.28.15 Resumes\42184835.txt
processing file: .\11.28.15 Resumes\42185672.txt
processing file: .\11.28.15 Resumes\42188100.txt
processing file: .\11.28.15 Resumes\42190445.txt
processing file: .\11.28.15 Resumes\42191714.txt
processing file: .\11.28.15 Resumes\42193904.txt
processing file: .\11.28.15 Resumes\42196850.txt
processing file: .\11.28.15 Resumes\42197777.txt
processing file: .\11.28.15 Resumes\42198682.txt
processing file: .\11.28.15 Resumes\42209230.txt
processing file: .\11.28.15 Resumes\42212999.txt
processing file: .\11.28.15 Resumes\42224521.txt
processing file: .\11.28.15 Resumes\42226574.txt
processing file: .\11.28.15 Resumes\42232007.txt
processing file: .\11.28.15 Resumes\42233263.txt
processing file: .\11.28.15 Resumes\42238640.txt
processing file: .\11.28.15 Resumes\42239922.txt
processing file: .\11.28.15 Resumes\42241386.txt
processing file: .\11.28.15 Resumes\42241905.txt
processing file: .\11.28.15 Resumes\42244904.txt
processing file: .\11.28.15 Resumes\42245090.txt
processing file: .\11.28.15 Resumes\42288265.txt
processing file: .\11.28.15 Resumes\42288531.txt
processing file: .\11.28.15 Resumes\42289045.txt
processing file: .\11.28.15 Resumes\42295617.txt
processing file: .\11.28.15 Resumes\42297067.txt
processing file: .\11.28.15 Resumes\42299212.txt
processing file: .\11.28.15 Resumes\42306259.txt
processing file: .\11.28.15 Resumes\42340864.txt
processing file: .\11.28.15 Resumes\42341297.txt
processing file: .\11.28.15 Resumes\42341681.txt
processing file: .\11.28.15 Resumes\42342046.txt
processing file: .\11.28.15 Resumes\42343348.txt
processing file: .\11.28.15 Resumes\42344020.txt
processing file: .\11.28.15 Resumes\42345220.txt
processing file: .\11.28.15 Resumes\42345316.txt
processing file: .\11.28.15 Resumes\42346002.txt
processing file: .\11.28.15 Resumes\42346026.txt
processing file: .\11.28.15 Resumes\42346179.txt
processing file: .\11.28.15 Resumes\42347457.txt
processing file: .\11.28.15 Resumes\42350605.txt
processing file: .\11.28.15 Resumes\42350735.txt
processing file: .\11.28.15 Resumes\42352971.txt
processing file: .\11.28.15 Resumes\42354534.txt
processing file: .\11.28.15 Resumes\42354710.txt
processing file: .\11.28.15 Resumes\42355361.txt
processing file: .\11.28.15 Resumes\42355499.txt
processing file: .\11.28.15 Resumes\42357151.txt
processing file: .\11.28.15 Resumes\42357691.txt
processing file: .\11.28.15 Resumes\42364181.txt
processing file: .\11.28.15 Resumes\42364257.txt
processing file: .\11.28.15 Resumes\42364675.txt
processing file: .\11.28.15 Resumes\42368863.txt
processing file: .\11.28.15 Resumes\42369445.txt
processing file: .\11.28.15 Resumes\42370224.txt
processing file: .\11.28.15 Resumes\42378734.txt
processing file: .\11.28.15 Resumes\42381929.txt
processing file: .\11.28.15 Resumes\42384271.txt
processing file: .\11.28.15 Resumes\42387989.txt
processing file: .\11.28.15 Resumes\42388406.txt
processing file: .\11.28.15 Resumes\42389014.txt
processing file: .\11.28.15 Resumes\42390615.txt
processing file: .\11.28.15 Resumes\42391356.txt
processing file: .\11.28.15 Resumes\42392023.txt
processing file: .\11.28.15 Resumes\42394144.txt
processing file: .\11.28.15 Resumes\42396000.txt
processing file: .\11.28.15 Resumes\42397230.txt
processing file: .\11.28.15 Resumes\42423802.txt
processing file: .\11.28.15 Resumes\42438306.txt
processing file: .\11.28.15 Resumes\42441147.txt
processing file: .\11.28.15 Resumes\42443964.txt
processing file: .\11.28.15 Resumes\42444864.txt
processing file: .\11.28.15 Resumes\42445050.txt
processing file: .\11.28.15 Resumes\42449499.txt
processing file: .\11.28.15 Resumes\42453096.txt
processing file: .\11.28.15 Resumes\42459840.txt
processing file: .\11.28.15 Resumes\42461023.txt
processing file: .\11.28.15 Resumes\42464745.txt
processing file: .\11.28.15 Resumes\42467290.txt
processing file: .\11.28.15 Resumes\42473554.txt
processing file: .\11.28.15 Resumes\42484452.txt
processing file: .\11.28.15 Resumes\42485567.txt
processing file: .\11.28.15 Resumes\42498020.txt
processing file: .\11.28.15 Resumes\42502395.txt
processing file: .\11.28.15 Resumes\42507530.txt
processing file: .\11.28.15 Resumes\42508386.txt
processing file: .\11.28.15 Resumes\42509785.txt
processing file: .\11.28.15 Resumes\42510711.txt
processing file: .\11.28.15 Resumes\42511665.txt
processing file: .\11.28.15 Resumes\42511678.txt
processing file: .\11.28.15 Resumes\42511878.txt
processing file: .\11.28.15 Resumes\42513354.txt
processing file: .\11.28.15 Resumes\42514584.txt
processing file: .\11.28.15 Resumes\42516563.txt
processing file: .\11.28.15 Resumes\42525456.txt
processing file: .\11.28.15 Resumes\42540955.txt
processing file: .\11.28.15 Resumes\42550724.txt
processing file: .\11.28.15 Resumes\42550761.txt
processing file: .\11.28.15 Resumes\42551046.txt
processing file: .\11.28.15 Resumes\42551225.txt
processing file: .\11.28.15 Resumes\42551346.txt
processing file: .\11.28.15 Resumes\42551533.txt
processing file: .\11.28.15 Resumes\42551973.txt
processing file: .\11.28.15 Resumes\42551988.txt
processing file: .\11.28.15 Resumes\42551999.txt
processing file: .\11.28.15 Resumes\42565903.txt
processing file: .\11.28.15 Resumes\42566424.txt
processing file: .\11.28.15 Resumes\42573139.txt
processing file: .\11.28.15 Resumes\42579072.txt
processing file: .\11.28.15 Resumes\42582620.txt
processing file: .\11.28.15 Resumes\42583775.txt
processing file: .\11.28.15 Resumes\42584476.txt
processing file: .\11.28.15 Resumes\42589837.txt
processing file: .\11.28.15 Resumes\42593556.txt
processing file: .\11.28.15 Resumes\42595107.txt
processing file: .\11.28.15 Resumes\42595502.txt
processing file: .\11.28.15 Resumes\42595808.txt
processing file: .\11.28.15 Resumes\42605026.txt
processing file: .\11.28.15 Resumes\42606029.txt
processing file: .\11.28.15 Resumes\42610684.txt
processing file: .\11.28.15 Resumes\42618455.txt
processing file: .\11.28.15 Resumes\42618700.txt
processing file: .\11.28.15 Resumes\42620958.txt
processing file: .\11.28.15 Resumes\42622762.txt
processing file: .\11.28.15 Resumes\42623666.txt
processing file: .\11.28.15 Resumes\42628036.txt
processing file: .\11.28.15 Resumes\42636486.txt
processing file: .\12.07.15 Resumes\42781849.txt
processing file: .\12.07.15 Resumes\42786249.txt
processing file: .\12.07.15 Resumes\42787335.txt
processing file: .\12.07.15 Resumes\42787522.txt
processing file: .\12.07.15 Resumes\42790155.txt
processing file: .\12.07.15 Resumes\42790523.txt
processing file: .\12.07.15 Resumes\42791049.txt
processing file: .\12.07.15 Resumes\42791109.txt
processing file: .\12.07.15 Resumes\42798602.txt
processing file: .\12.07.15 Resumes\42806875.txt
processing file: .\12.07.15 Resumes\42819587.txt
processing file: .\12.07.15 Resumes\42826540.txt
processing file: .\12.07.15 Resumes\42832299.txt
processing file: .\12.07.15 Resumes\42835694.txt
processing file: .\12.07.15 Resumes\42839070.txt
processing file: .\12.07.15 Resumes\42839553.txt
processing file: .\12.07.15 Resumes\42852875.txt
processing file: .\12.07.15 Resumes\42853312.txt
processing file: .\12.07.15 Resumes\42854931.txt
processing file: .\12.07.15 Resumes\42862850.txt
processing file: .\12.07.15 Resumes\42863513.txt
processing file: .\12.07.15 Resumes\42865055.txt
processing file: .\12.07.15 Resumes\42865111.txt
processing file: .\12.07.15 Resumes\42866964.txt
processing file: .\12.07.15 Resumes\42868805.txt
processing file: .\12.07.15 Resumes\42869224.txt
processing file: .\12.07.15 Resumes\42882208.txt
processing file: .\12.07.15 Resumes\42886846.txt
processing file: .\12.07.15 Resumes\42891976.txt
processing file: .\12.07.15 Resumes\42905227.txt
processing file: .\12.07.15 Resumes\42905389.txt
processing file: .\12.07.15 Resumes\42911760.txt
processing file: .\12.07.15 Resumes\42914798.txt
processing file: .\12.07.15 Resumes\42924655.txt
processing file: .\12.07.15 Resumes\42928634.txt
processing file: .\12.07.15 Resumes\42940865.txt
processing file: .\12.07.15 Resumes\42949518.txt
processing file: .\12.07.15 Resumes\42952225.txt
processing file: .\12.07.15 Resumes\42954158.txt
processing file: .\12.07.15 Resumes\42957539.txt
processing file: .\12.07.15 Resumes\42957645.txt
processing file: .\12.07.15 Resumes\42967750.txt
processing file: .\12.07.15 Resumes\42974208.txt
processing file: .\12.07.15 Resumes\42993113.txt
processing file: .\12.07.15 Resumes\43000160.txt
processing file: .\12.07.15 Resumes\43023420.txt
processing file: .\12.07.15 Resumes\43024731.txt
processing file: .\12.07.15 Resumes\43040916.txt
processing file: .\12.07.15 Resumes\43044303.txt
processing file: .\12.07.15 Resumes\43075329.txt
processing file: .\12.07.15 Resumes\43092195.txt
processing file: .\12.07.15 Resumes\43093415.txt
processing file: .\12.07.15 Resumes\43106763.txt
processing file: .\12.07.15 Resumes\43108714.txt
processing file: .\12.07.15 Resumes\43114487.txt
processing file: .\12.07.15 Resumes\43116932.txt
processing file: .\12.07.15 Resumes\43119439.txt
processing file: .\12.07.15 Resumes\43130110.txt
processing file: .\12.07.15 Resumes\43155497.txt
processing file: .\12.07.15 Resumes\43175826.txt
processing file: .\12.07.15 Resumes\43179920.txt
processing file: .\12.07.15 Resumes\43184285.txt
processing file: .\12.07.15 Resumes\43192655.txt
processing file: .\12.07.15 Resumes\43193897.txt
processing file: .\12.07.15 Resumes\43211350.txt
processing file: .\12.07.15 Resumes\43234818.txt
processing file: .\12.07.15 Resumes\43263708.txt
processing file: .\12.07.15 Resumes\43286311.txt
processing file: .\12.07.15 Resumes\43287347.txt
processing file: .\12.07.15 Resumes\43289536.txt
processing file: .\12.07.15 Resumes\43293228.txt
processing file: .\12.07.15 Resumes\43295052.txt
processing file: .\12.07.15 Resumes\43299031.txt
processing file: .\12.07.15 Resumes\43300962.txt
processing file: .\12.07.15 Resumes\43316417.txt
processing file: .\12.07.15 Resumes\43326820.txt
processing file: .\12.07.15 Resumes\43327537.txt
processing file: .\12.07.15 Resumes\43337501.txt
processing file: .\12.07.15 Resumes\43337808.txt
processing file: .\12.07.15 Resumes\43345806.txt
processing file: .\12.07.15 Resumes\43345811.txt
processing file: .\12.07.15 Resumes\43350977.txt
processing file: .\12.07.15 Resumes\43359835.txt
processing file: .\12.07.15 Resumes\43372339.txt
processing file: .\12.07.15 Resumes\43372376.txt
processing file: .\12.07.15 Resumes\43375396.txt
processing file: .\12.07.15 Resumes\43376934.txt
processing file: .\12.07.15 Resumes\43381447.txt
processing file: .\12.07.15 Resumes\43389382.txt
processing file: .\12.07.15 Resumes\43394419.txt
processing file: .\12.07.15 Resumes\43395556.txt
processing file: .\12.07.15 Resumes\43408136.txt
processing file: .\12.07.15 Resumes\43408234.txt
processing file: .\12.07.15 Resumes\43414218.txt
processing file: .\12.07.15 Resumes\43417987.txt
processing file: .\12.07.15 Resumes\43420936.txt
processing file: .\12.07.15 Resumes\43433928.txt
processing file: .\12.07.15 Resumes\43435762.txt
processing file: .\12.07.15 Resumes\43436185.txt
processing file: .\12.07.15 Resumes\43436301.txt
processing file: .\12.07.15 Resumes\43442334.txt
processing file: .\12.07.15 Resumes\43460820.txt
processing file: .\12.07.15 Resumes\43480798.txt
processing file: .\12.07.15 Resumes\43495079.txt
processing file: .\12.07.15 Resumes\43504851.txt
processing file: .\12.07.15 Resumes\43505149.txt
processing file: .\12.07.15 Resumes\43518674.txt
processing file: .\12.07.15 Resumes\43535507.txt
processing file: .\12.07.15 Resumes\43536505.txt
processing file: .\12.07.15 Resumes\43537700.txt
processing file: .\12.07.15 Resumes\43539009.txt
processing file: .\12.07.15 Resumes\43545148.txt
processing file: .\12.07.15 Resumes\43546079.txt
processing file: .\12.07.15 Resumes\43547093.txt
processing file: .\12.07.15 Resumes\43552554.txt
processing file: .\12.07.15 Resumes\43553609.txt
processing file: .\12.07.15 Resumes\43554393.txt
processing file: .\12.07.15 Resumes\43557676.txt
processing file: .\12.07.15 Resumes\43559967.txt
processing file: .\12.07.15 Resumes\43562772.txt
processing file: .\12.07.15 Resumes\43579037.txt
processing file: .\12.07.15 Resumes\43585490.txt
processing file: .\12.07.15 Resumes\43596567.txt
processing file: .\12.07.15 Resumes\43610143.txt
processing file: .\12.07.15 Resumes\43615009.txt
processing file: .\12.07.15 Resumes\43617115.txt
processing file: .\12.07.15 Resumes\43636357.txt
processing file: .\12.07.15 Resumes\43641670.txt
processing file: .\12.07.15 Resumes\43656965.txt
processing file: .\12.07.15 Resumes\43664896.txt
processing file: .\12.07.15 Resumes\43666552.txt
processing file: .\12.07.15 Resumes\43669278.txt
processing file: .\12.07.15 Resumes\43674259.txt
processing file: .\12.07.15 Resumes\43685899.txt
processing file: .\12.07.15 Resumes\43689309.txt
processing file: .\12.07.15 Resumes\43693472.txt
processing file: .\12.07.15 Resumes\43694142.txt
processing file: .\12.07.15 Resumes\43694817.txt
processing file: .\12.07.15 Resumes\43703485.txt
processing file: .\12.07.15 Resumes\43717460.txt
processing file: .\12.07.15 Resumes\43754553.txt
processing file: .\12.07.15 Resumes\43754987.txt
processing file: .\12.07.15 Resumes\43757730.txt
processing file: .\12.07.15 Resumes\43762206.txt
processing file: .\12.07.15 Resumes\43775436.txt
processing file: .\12.07.15 Resumes\43788224.txt
processing file: .\12.07.15 Resumes\43797667.txt
processing file: .\12.07.15 Resumes\43798002.txt
processing file: .\12.07.15 Resumes\43800254.txt
processing file: .\12.07.15 Resumes\43811374.txt
processing file: .\12.07.15 Resumes\43811789.txt

In [5]:
print(rowid)


['45416565', '45416848', '45417076', '45417498', '45417994', '45418178', '45418240', '45418879', '45420257', '45420733', '45422051', '45424160', '45424611', '45425243', '45425422', '45425696', '45426273', '45426607', '45427103', '45427104', '45427271', '45427390', '45427407', '45427969', '45429229', '45431061', '4544536', '45445364-', '45445519', '45445522', '45445808', '45445987', '45447024', '45448558', '45448580', '45448667', '45449404', '45453795', '45455176', '45455423', '45461181', '45461248', 'Personal Attributes', '41194514', '41194519', '41194604', '41194663', '41194668', '41194701', '41194703', '41194755', '41194759', '41194805', '41194866', '41194876', '41194912', '41194945', '41194960', '41194974', '41195002', '41195044', '41195078', '41195097', '41195155', '41195168', '41195171', '41195194', '41195223', '41195247', '41195253', '41195304', '41195347', '41195365', '41195479', '41195483', '41195497', '41195504', '41195558', '41195641', '41195663', '41195754', '41195923', '41195931', '41195978', '41196285', '41196322', '41196393', '41196423', '41196487', '41196539', '41196582', '41196613', '41196665', '41196777', '41196841', '41197039', '41197191', '41197274', '41197347', '41197441', '41197466', '41197664', '41197908', '41197911', '41198039', '41198440', '41198469', '41198597', '41198817', '41199270', '41199502', '41200239', '41200453', '41200727', '41201148', '41201175', '41201387', '41201433', '41201508', '41201557', '41201641', '41201710', '41202463', '41202529', '41202563', '41202709', '41202984', '41203120', '41203230', '41203876', '41203892', '41204269', '41204431', '41204540', '41204776', '41205225', '41205473', '41205930', '41206335', '41207284', '41207359', '41209129', '41209634', '41210610', '41210651', '41210771', '41211095', '41211928', '41215134', '41220117', '41220238', '41221139', '41221157', '41221420', '41222471', '41222820', '41223080', '41223233', '41223616', '41224068', '41224490', '41224713', '41226287', '41226949', '41227008', '41227273', '41228048', '41228692', '41228928', '41229970', '41230007', '41231985', '41232472', '41232760', '41233065', '41236162', '41236536', '41236635', '41236778', '41238103', '41238455', '41239122', '41239532', '41239857', '41240037', '41243185', '41244463', '41245330', '41246069', '41246408', '41247114', '41247375', '41248648', '41248689', '41248860', '41249975', '41251066', '41253499', '41256286', '41256484', '41256492', '41258187', '41259364', '41263614', '41263793', '41264173', '41264801', '41265034', '41265292', '41265312', '41265487', '41265781', '41265889', '41266270', '41266423', '41267247', '41268047', '41268459', '41268561', '41269175', '41269581', '41270074', '41270568', '41270664', '41270839', '41273970', '41274086', '41274856', '41276738', '41276783', '41277551', '41277895', '41279348', '41280283', '41280295', '41280367', '41281505', '41282603', '41282683', '41283204', '41283595', '41284027', '41284380', '41286041', '41286919', '41287862', '41289186', '41290635', '41291775', '41292282', '41293096', '41293153', '41294601', '41295925', '41297543', '41298893', '41300125', '41300190', '41300959', '41301982', '41303526', '41304627', '41305003', '41305249', '41306835', '41308357', '41309527', '41309536', '41312308', '41312851', '41312926', '41313945', '41317463', '41317784', '41319174', '41320356', '41328454', '41330707', '41330976', '41337434', '41337894', '41337996-', '41337996', '41340941', '41341911', '41347432', '41348032', '41351523', '41353044', '41353613', '41354396', '41354520', '41355753', '41356110', '41357966', '41358307', '41359164', '41359566', '41360806', '41361930', '41362888', '41363705', '41365263', '41366651', '41367065', '41368237', '41368490', '41375312', '41375950', '41376438', '41377697', '41378484', '41381232', '41383685', '41386938', '41389897', '41393290', '41395417', '41396706', '41397717', '41401147', '41402847', '41403190', '41404429', '41411400', '41411418', '41411484', '41415625', '41416206', '41416458', '41417780', '41417994', '41419641', '41419864', '41422144', '41426774', '41427183', '41427547', '41430615', '41435308', '41436798', '41438764', '41438878', '41439349', '41439889', '41440350', '41440733', '41441488', '41441861', '41442300', '41443184', '41443376', '41445276', '41452506', '41458169', '41459561', '41462696', '41463217', '41464623', '41465118', '41470497', '41470696', '41475315', '41477346', '41477391', '41480638', '41480668', '41480805', '41483988', '41491110', '41491768', '41501739', '41504765', '41505163', '41511738', '41516698', '41517205', '41519163', '41520720', '41521734', '41523799', '41524502', '41524974', '41528572', '41530039', '41534107', '41534536', '41540127', '41540943', '41551964', '41553492', '41554706', '41554997', '41556207', '41557906', '41623278', '41623431', '41624831', '41624995', '41625052', '41625953', '41626829', '41627013', '41627344', '41627620', '41629211', '41629317', '41631180', '41631621', '41634369', '41634864', '41635654', '41636054', '41636433', '41637111', '41637479', '41638008', '41638157', '41639216', '41641813', '41641839', '41642981', '41643594', '41643625', '41645495', '41645843', '41647841', '41647951', '41651010', '41654780', '41655700', '41655776', '41656227', '41656647', '41656737', '41657030', '41657041', '41657213', '41657298', '41657472', '41657568', '41657895', '41658357', '41660408', '41661065', '41661255', '41662008', '41663106', '41663380', '41664789', '41664817', '41664832', '41665400', '41665808', '41666036', '41666369', '41669306', '41670094', '41673413', '41673716', '41674399', '41674650', '41676164', '41678353', '41680712', '41681566', '41683411', '41685446', '41686121', '41689434', '41692852', '41692971', '41696705', '41697309', '41697484', '41698377', '41698749', '41705277', '41705414', '41709480', '41710370', '41714573', '41715291', '41720108', '41721295', '41724376', '41727229', '41727750', '41728279', '41728372', '41730516', '41733005', '41734818', '41735548', '41737555', '41737574', '41738301', '41738709', '41739423', '41740715', '41742070', '41742497', '41743950', '41744901', '41745845', '41746527', '41747724', '41748378', '41749067', '41751525', '41754528', '41755357', '41755896', '41757695', '41757802', '41758626', '41758706', '41760493', '41763055', '41765843', '41766821', '41768111', '41773363', '41774541', '41775709', '41778320', '41779290', '41780923', '41784018', '41784659', '41787864', '41788450', '41793264', '41793369', '41794537', '41795457', '41795845', '41796101', '41796395', '41800180', '41801000', '41801451', '41801536', '41802958', '41803868', '41804087', '41804104', '41810200', '41810522', '41810932', '41812576', '41814018', '41814689', '41819755', '41823841', '41826875', '41828579', '41832617', '41833574', '41834321', '41837434', '41840613', '41842113', '41842575', '41843528', '41849089', '41851523', '41851688', '41851941', '41855445', '41857194', '41859491', '41859515', '41860346', '41861936', '41863825', '41867276', '41867367', '41867455', '41867790', '41868668', '41869607', '41869748', '41871319', '41876532', '41880355', '41880975', '41881493', '41881793', '41882801', '41890221', '41891417', '41892879', '41895138', '41895187', '41897893', '41898100', '41899428', '41902318', '41906030', '41907730', '41913306', '41913310', '41913853', '41919102', '41924801', '41927008', '41931134', '41938833', '41940649', '41940940', '41941740', '41943000', '41943145', '41951161', '41954482', '41955481', '41959512', '41966491', '41967373', '41968352', '41975248', '41979357', '41980026', '41981076', '41981344', '41982301', '41982817', '41983148', '41984829', '41985120', '41987233', '41992983', '41995767', '41997970', '41998425', '41998853', '42000241', '42000656', '42001821', '42003696', '42004019', '42006086', '42012289', '42012858', '42013007', '42014143', '42015675', '42016569', '42016875', '42016892', '42018199', '42018446', '42021706', '42022032', '42024908', '42024991', '42028077', '42030901', '42033247', '42035172', '42036185', '42038679', '42038838', '42039464', '42039671', '42047076', '42049887', '42052636', '42055939', '42056848', '42056974', '42059312', '42060483', '42060986', '42062127', '42063299', '42063580', '42064062', '42064107', '42065701', '42065762', '42065956', '42070064', '42071059', '42075056', '42076390', '42083151', '42085676', '42086839', '42087024', '42091434', '42092639', '42092783', '42094208', '42094287', '42097488', '42102010', '42103966', '42104209', '42104238', '42106698', '42106957', '42111762', '42113712', '42117274', '42122942', '42123226', '42124628', '42128798', '42130335', '42132550', '42132744', '42133086', '42135401', '42136175', '42141085', '42147374', '42162128', '42168901', '42174541', '42175097', '42176728', '42181358', '42184518', '42184835', '42185672', '42188100', '42190445', '42191714', '42193904', '42196850', '42197777', '42198682', '42209230', '42212999', '42224521', '42226574', '42232007', '42233263', '42238640', '42239922', '42241386', '42241905', '42244904', '42245090', '42288265', '42288531', '42289045', '42295617', '42297067', '42299212', '42306259', '42340864', '42341297', '42341681', '42342046', '42343348', '42344020', '42345220', '42345316', '42346002', '42346026', '42346179', '42347457', '42350605', '42350735', '42352971', '42354534', '42354710', '42355361', '42355499', '42357151', '42357691', '42364181', '42364257', '42364675', '42368863', '42369445', '42370224', '42378734', '42381929', '42384271', '42387989', '42388406', '42389014', '42390615', '42391356', '42392023', '42394144', '42396000', '42397230', '42423802', '42438306', '42441147', '42443964', '42444864', '42445050', '42449499', '42453096', '42459840', '42461023', '42464745', '42467290', '42473554', '42484452', '42485567', '42498020', '42502395', '42507530', '42508386', '42509785', '42510711', '42511665', '42511678', '42511878', '42513354', '42514584', '42516563', '42525456', '42540955', '42550724', '42550761', '42551046', '42551225', '42551346', '42551533', '42551973', '42551988', '42551999', '42565903', '42566424', '42573139', '42579072', '42582620', '42583775', '42584476', '42589837', '42593556', '42595107', '42595502', '42595808', '42605026', '42606029', '42610684', '42618455', '42618700', '42620958', '42622762', '42623666', '42628036', '42636486', '42781849', '42786249', '42787335', '42787522', '42790155', '42790523', '42791049', '42791109', '42798602', '42806875', '42819587', '42826540', '42832299', '42835694', '42839070', '42839553', '42852875', '42853312', '42854931', '42862850', '42863513', '42865055', '42865111', '42866964', '42868805', '42869224', '42882208', '42886846', '42891976', '42905227', '42905389', '42911760', '42914798', '42924655', '42928634', '42940865', '42949518', '42952225', '42954158', '42957539', '42957645', '42967750', '42974208', '42993113', '43000160', '43023420', '43024731', '43040916', '43044303', '43075329', '43092195', '43093415', '43106763', '43108714', '43114487', '43116932', '43119439', '43130110', '43155497', '43175826', '43179920', '43184285', '43192655', '43193897', '43211350', '43234818', '43263708', '43286311', '43287347', '43289536', '43293228', '43295052', '43299031', '43300962', '43316417', '43326820', '43327537', '43337501', '43337808', '43345806', '43345811', '43350977', '43359835', '43372339', '43372376', '43375396', '43376934', '43381447', '43389382', '43394419', '43395556', '43408136', '43408234', '43414218', '43417987', '43420936', '43433928', '43435762', '43436185', '43436301', '43442334', '43460820', '43480798', '43495079', '43504851', '43505149', '43518674', '43535507', '43536505', '43537700', '43539009', '43545148', '43546079', '43547093', '43552554', '43553609', '43554393', '43557676', '43559967', '43562772', '43579037', '43585490', '43596567', '43610143', '43615009', '43617115', '43636357', '43641670', '43656965', '43664896', '43666552', '43669278', '43674259', '43685899', '43689309', '43693472', '43694142', '43694817', '43703485', '43717460', '43754553', '43754987', '43757730', '43762206', '43775436', '43788224', '43797667', '43798002', '43800254', '43811374', '43811789']

In [6]:
rowid


Out[6]:
['45416565',
 '45416848',
 '45417076',
 '45417498',
 '45417994',
 '45418178',
 '45418240',
 '45418879',
 '45420257',
 '45420733',
 '45422051',
 '45424160',
 '45424611',
 '45425243',
 '45425422',
 '45425696',
 '45426273',
 '45426607',
 '45427103',
 '45427104',
 '45427271',
 '45427390',
 '45427407',
 '45427969',
 '45429229',
 '45431061',
 '4544536',
 '45445364-',
 '45445519',
 '45445522',
 '45445808',
 '45445987',
 '45447024',
 '45448558',
 '45448580',
 '45448667',
 '45449404',
 '45453795',
 '45455176',
 '45455423',
 '45461181',
 '45461248',
 'Personal Attributes',
 '41194514',
 '41194519',
 '41194604',
 '41194663',
 '41194668',
 '41194701',
 '41194703',
 '41194755',
 '41194759',
 '41194805',
 '41194866',
 '41194876',
 '41194912',
 '41194945',
 '41194960',
 '41194974',
 '41195002',
 '41195044',
 '41195078',
 '41195097',
 '41195155',
 '41195168',
 '41195171',
 '41195194',
 '41195223',
 '41195247',
 '41195253',
 '41195304',
 '41195347',
 '41195365',
 '41195479',
 '41195483',
 '41195497',
 '41195504',
 '41195558',
 '41195641',
 '41195663',
 '41195754',
 '41195923',
 '41195931',
 '41195978',
 '41196285',
 '41196322',
 '41196393',
 '41196423',
 '41196487',
 '41196539',
 '41196582',
 '41196613',
 '41196665',
 '41196777',
 '41196841',
 '41197039',
 '41197191',
 '41197274',
 '41197347',
 '41197441',
 '41197466',
 '41197664',
 '41197908',
 '41197911',
 '41198039',
 '41198440',
 '41198469',
 '41198597',
 '41198817',
 '41199270',
 '41199502',
 '41200239',
 '41200453',
 '41200727',
 '41201148',
 '41201175',
 '41201387',
 '41201433',
 '41201508',
 '41201557',
 '41201641',
 '41201710',
 '41202463',
 '41202529',
 '41202563',
 '41202709',
 '41202984',
 '41203120',
 '41203230',
 '41203876',
 '41203892',
 '41204269',
 '41204431',
 '41204540',
 '41204776',
 '41205225',
 '41205473',
 '41205930',
 '41206335',
 '41207284',
 '41207359',
 '41209129',
 '41209634',
 '41210610',
 '41210651',
 '41210771',
 '41211095',
 '41211928',
 '41215134',
 '41220117',
 '41220238',
 '41221139',
 '41221157',
 '41221420',
 '41222471',
 '41222820',
 '41223080',
 '41223233',
 '41223616',
 '41224068',
 '41224490',
 '41224713',
 '41226287',
 '41226949',
 '41227008',
 '41227273',
 '41228048',
 '41228692',
 '41228928',
 '41229970',
 '41230007',
 '41231985',
 '41232472',
 '41232760',
 '41233065',
 '41236162',
 '41236536',
 '41236635',
 '41236778',
 '41238103',
 '41238455',
 '41239122',
 '41239532',
 '41239857',
 '41240037',
 '41243185',
 '41244463',
 '41245330',
 '41246069',
 '41246408',
 '41247114',
 '41247375',
 '41248648',
 '41248689',
 '41248860',
 '41249975',
 '41251066',
 '41253499',
 '41256286',
 '41256484',
 '41256492',
 '41258187',
 '41259364',
 '41263614',
 '41263793',
 '41264173',
 '41264801',
 '41265034',
 '41265292',
 '41265312',
 '41265487',
 '41265781',
 '41265889',
 '41266270',
 '41266423',
 '41267247',
 '41268047',
 '41268459',
 '41268561',
 '41269175',
 '41269581',
 '41270074',
 '41270568',
 '41270664',
 '41270839',
 '41273970',
 '41274086',
 '41274856',
 '41276738',
 '41276783',
 '41277551',
 '41277895',
 '41279348',
 '41280283',
 '41280295',
 '41280367',
 '41281505',
 '41282603',
 '41282683',
 '41283204',
 '41283595',
 '41284027',
 '41284380',
 '41286041',
 '41286919',
 '41287862',
 '41289186',
 '41290635',
 '41291775',
 '41292282',
 '41293096',
 '41293153',
 '41294601',
 '41295925',
 '41297543',
 '41298893',
 '41300125',
 '41300190',
 '41300959',
 '41301982',
 '41303526',
 '41304627',
 '41305003',
 '41305249',
 '41306835',
 '41308357',
 '41309527',
 '41309536',
 '41312308',
 '41312851',
 '41312926',
 '41313945',
 '41317463',
 '41317784',
 '41319174',
 '41320356',
 '41328454',
 '41330707',
 '41330976',
 '41337434',
 '41337894',
 '41337996-',
 '41337996',
 '41340941',
 '41341911',
 '41347432',
 '41348032',
 '41351523',
 '41353044',
 '41353613',
 '41354396',
 '41354520',
 '41355753',
 '41356110',
 '41357966',
 '41358307',
 '41359164',
 '41359566',
 '41360806',
 '41361930',
 '41362888',
 '41363705',
 '41365263',
 '41366651',
 '41367065',
 '41368237',
 '41368490',
 '41375312',
 '41375950',
 '41376438',
 '41377697',
 '41378484',
 '41381232',
 '41383685',
 '41386938',
 '41389897',
 '41393290',
 '41395417',
 '41396706',
 '41397717',
 '41401147',
 '41402847',
 '41403190',
 '41404429',
 '41411400',
 '41411418',
 '41411484',
 '41415625',
 '41416206',
 '41416458',
 '41417780',
 '41417994',
 '41419641',
 '41419864',
 '41422144',
 '41426774',
 '41427183',
 '41427547',
 '41430615',
 '41435308',
 '41436798',
 '41438764',
 '41438878',
 '41439349',
 '41439889',
 '41440350',
 '41440733',
 '41441488',
 '41441861',
 '41442300',
 '41443184',
 '41443376',
 '41445276',
 '41452506',
 '41458169',
 '41459561',
 '41462696',
 '41463217',
 '41464623',
 '41465118',
 '41470497',
 '41470696',
 '41475315',
 '41477346',
 '41477391',
 '41480638',
 '41480668',
 '41480805',
 '41483988',
 '41491110',
 '41491768',
 '41501739',
 '41504765',
 '41505163',
 '41511738',
 '41516698',
 '41517205',
 '41519163',
 '41520720',
 '41521734',
 '41523799',
 '41524502',
 '41524974',
 '41528572',
 '41530039',
 '41534107',
 '41534536',
 '41540127',
 '41540943',
 '41551964',
 '41553492',
 '41554706',
 '41554997',
 '41556207',
 '41557906',
 '41623278',
 '41623431',
 '41624831',
 '41624995',
 '41625052',
 '41625953',
 '41626829',
 '41627013',
 '41627344',
 '41627620',
 '41629211',
 '41629317',
 '41631180',
 '41631621',
 '41634369',
 '41634864',
 '41635654',
 '41636054',
 '41636433',
 '41637111',
 '41637479',
 '41638008',
 '41638157',
 '41639216',
 '41641813',
 '41641839',
 '41642981',
 '41643594',
 '41643625',
 '41645495',
 '41645843',
 '41647841',
 '41647951',
 '41651010',
 '41654780',
 '41655700',
 '41655776',
 '41656227',
 '41656647',
 '41656737',
 '41657030',
 '41657041',
 '41657213',
 '41657298',
 '41657472',
 '41657568',
 '41657895',
 '41658357',
 '41660408',
 '41661065',
 '41661255',
 '41662008',
 '41663106',
 '41663380',
 '41664789',
 '41664817',
 '41664832',
 '41665400',
 '41665808',
 '41666036',
 '41666369',
 '41669306',
 '41670094',
 '41673413',
 '41673716',
 '41674399',
 '41674650',
 '41676164',
 '41678353',
 '41680712',
 '41681566',
 '41683411',
 '41685446',
 '41686121',
 '41689434',
 '41692852',
 '41692971',
 '41696705',
 '41697309',
 '41697484',
 '41698377',
 '41698749',
 '41705277',
 '41705414',
 '41709480',
 '41710370',
 '41714573',
 '41715291',
 '41720108',
 '41721295',
 '41724376',
 '41727229',
 '41727750',
 '41728279',
 '41728372',
 '41730516',
 '41733005',
 '41734818',
 '41735548',
 '41737555',
 '41737574',
 '41738301',
 '41738709',
 '41739423',
 '41740715',
 '41742070',
 '41742497',
 '41743950',
 '41744901',
 '41745845',
 '41746527',
 '41747724',
 '41748378',
 '41749067',
 '41751525',
 '41754528',
 '41755357',
 '41755896',
 '41757695',
 '41757802',
 '41758626',
 '41758706',
 '41760493',
 '41763055',
 '41765843',
 '41766821',
 '41768111',
 '41773363',
 '41774541',
 '41775709',
 '41778320',
 '41779290',
 '41780923',
 '41784018',
 '41784659',
 '41787864',
 '41788450',
 '41793264',
 '41793369',
 '41794537',
 '41795457',
 '41795845',
 '41796101',
 '41796395',
 '41800180',
 '41801000',
 '41801451',
 '41801536',
 '41802958',
 '41803868',
 '41804087',
 '41804104',
 '41810200',
 '41810522',
 '41810932',
 '41812576',
 '41814018',
 '41814689',
 '41819755',
 '41823841',
 '41826875',
 '41828579',
 '41832617',
 '41833574',
 '41834321',
 '41837434',
 '41840613',
 '41842113',
 '41842575',
 '41843528',
 '41849089',
 '41851523',
 '41851688',
 '41851941',
 '41855445',
 '41857194',
 '41859491',
 '41859515',
 '41860346',
 '41861936',
 '41863825',
 '41867276',
 '41867367',
 '41867455',
 '41867790',
 '41868668',
 '41869607',
 '41869748',
 '41871319',
 '41876532',
 '41880355',
 '41880975',
 '41881493',
 '41881793',
 '41882801',
 '41890221',
 '41891417',
 '41892879',
 '41895138',
 '41895187',
 '41897893',
 '41898100',
 '41899428',
 '41902318',
 '41906030',
 '41907730',
 '41913306',
 '41913310',
 '41913853',
 '41919102',
 '41924801',
 '41927008',
 '41931134',
 '41938833',
 '41940649',
 '41940940',
 '41941740',
 '41943000',
 '41943145',
 '41951161',
 '41954482',
 '41955481',
 '41959512',
 '41966491',
 '41967373',
 '41968352',
 '41975248',
 '41979357',
 '41980026',
 '41981076',
 '41981344',
 '41982301',
 '41982817',
 '41983148',
 '41984829',
 '41985120',
 '41987233',
 '41992983',
 '41995767',
 '41997970',
 '41998425',
 '41998853',
 '42000241',
 '42000656',
 '42001821',
 '42003696',
 '42004019',
 '42006086',
 '42012289',
 '42012858',
 '42013007',
 '42014143',
 '42015675',
 '42016569',
 '42016875',
 '42016892',
 '42018199',
 '42018446',
 '42021706',
 '42022032',
 '42024908',
 '42024991',
 '42028077',
 '42030901',
 '42033247',
 '42035172',
 '42036185',
 '42038679',
 '42038838',
 '42039464',
 '42039671',
 '42047076',
 '42049887',
 '42052636',
 '42055939',
 '42056848',
 '42056974',
 '42059312',
 '42060483',
 '42060986',
 '42062127',
 '42063299',
 '42063580',
 '42064062',
 '42064107',
 '42065701',
 '42065762',
 '42065956',
 '42070064',
 '42071059',
 '42075056',
 '42076390',
 '42083151',
 '42085676',
 '42086839',
 '42087024',
 '42091434',
 '42092639',
 '42092783',
 '42094208',
 '42094287',
 '42097488',
 '42102010',
 '42103966',
 '42104209',
 '42104238',
 '42106698',
 '42106957',
 '42111762',
 '42113712',
 '42117274',
 '42122942',
 '42123226',
 '42124628',
 '42128798',
 '42130335',
 '42132550',
 '42132744',
 '42133086',
 '42135401',
 '42136175',
 '42141085',
 '42147374',
 '42162128',
 '42168901',
 '42174541',
 '42175097',
 '42176728',
 '42181358',
 '42184518',
 '42184835',
 '42185672',
 '42188100',
 '42190445',
 '42191714',
 '42193904',
 '42196850',
 '42197777',
 '42198682',
 '42209230',
 '42212999',
 '42224521',
 '42226574',
 '42232007',
 '42233263',
 '42238640',
 '42239922',
 '42241386',
 '42241905',
 '42244904',
 '42245090',
 '42288265',
 '42288531',
 '42289045',
 '42295617',
 '42297067',
 '42299212',
 '42306259',
 '42340864',
 '42341297',
 '42341681',
 '42342046',
 '42343348',
 '42344020',
 '42345220',
 '42345316',
 '42346002',
 '42346026',
 '42346179',
 '42347457',
 '42350605',
 '42350735',
 '42352971',
 '42354534',
 '42354710',
 '42355361',
 '42355499',
 '42357151',
 '42357691',
 '42364181',
 '42364257',
 '42364675',
 '42368863',
 '42369445',
 '42370224',
 '42378734',
 '42381929',
 '42384271',
 '42387989',
 '42388406',
 '42389014',
 '42390615',
 '42391356',
 '42392023',
 '42394144',
 '42396000',
 '42397230',
 '42423802',
 '42438306',
 '42441147',
 '42443964',
 '42444864',
 '42445050',
 '42449499',
 '42453096',
 '42459840',
 '42461023',
 '42464745',
 '42467290',
 '42473554',
 '42484452',
 '42485567',
 '42498020',
 '42502395',
 '42507530',
 '42508386',
 '42509785',
 '42510711',
 '42511665',
 '42511678',
 '42511878',
 '42513354',
 '42514584',
 '42516563',
 '42525456',
 '42540955',
 '42550724',
 '42550761',
 '42551046',
 '42551225',
 '42551346',
 '42551533',
 '42551973',
 '42551988',
 '42551999',
 '42565903',
 '42566424',
 '42573139',
 '42579072',
 '42582620',
 '42583775',
 '42584476',
 '42589837',
 '42593556',
 '42595107',
 '42595502',
 '42595808',
 '42605026',
 '42606029',
 '42610684',
 '42618455',
 '42618700',
 '42620958',
 '42622762',
 '42623666',
 '42628036',
 '42636486',
 '42781849',
 '42786249',
 '42787335',
 '42787522',
 '42790155',
 '42790523',
 '42791049',
 '42791109',
 '42798602',
 '42806875',
 '42819587',
 '42826540',
 '42832299',
 '42835694',
 '42839070',
 '42839553',
 '42852875',
 '42853312',
 '42854931',
 '42862850',
 '42863513',
 '42865055',
 '42865111',
 '42866964',
 '42868805',
 '42869224',
 '42882208',
 '42886846',
 '42891976',
 '42905227',
 '42905389',
 '42911760',
 '42914798',
 '42924655',
 '42928634',
 '42940865',
 '42949518',
 '42952225',
 '42954158',
 '42957539',
 '42957645',
 '42967750',
 '42974208',
 '42993113',
 '43000160',
 '43023420',
 '43024731',
 '43040916',
 '43044303',
 '43075329',
 '43092195',
 '43093415',
 '43106763',
 '43108714',
 '43114487',
 '43116932',
 '43119439',
 '43130110',
 '43155497',
 '43175826',
 '43179920',
 '43184285',
 '43192655',
 '43193897',
 '43211350',
 '43234818',
 '43263708',
 '43286311',
 '43287347',
 '43289536',
 '43293228',
 '43295052',
 '43299031',
 '43300962',
 '43316417',
 '43326820',
 '43327537',
 '43337501',
 '43337808',
 '43345806',
 '43345811',
 '43350977',
 '43359835',
 '43372339',
 '43372376',
 '43375396',
 '43376934',
 '43381447',
 '43389382',
 '43394419',
 '43395556',
 '43408136',
 '43408234',
 '43414218',
 '43417987',
 '43420936',
 '43433928',
 '43435762',
 '43436185',
 '43436301',
 '43442334',
 '43460820',
 '43480798',
 '43495079',
 '43504851',
 '43505149',
 '43518674',
 '43535507',
 '43536505',
 '43537700',
 '43539009',
 '43545148',
 '43546079',
 '43547093',
 '43552554',
 '43553609',
 '43554393',
 '43557676',
 '43559967',
 '43562772',
 '43579037',
 '43585490',
 '43596567',
 '43610143',
 '43615009',
 '43617115',
 '43636357',
 '43641670',
 '43656965',
 '43664896',
 '43666552',
 '43669278',
 '43674259',
 '43685899',
 '43689309',
 '43693472',
 '43694142',
 '43694817',
 '43703485',
 '43717460',
 '43754553',
 '43754987',
 '43757730',
 '43762206',
 '43775436',
 '43788224',
 '43797667',
 '43798002',
 ...]

Convert the list of file names into a dataframe with a column called "rowid" and the filenames as the row ids


In [7]:
dfrowid = pd.DataFrame({'ID': rowid})

In [10]:
frames = [dfrowid, df]

In [11]:
id_resume = pd.concat(frames, axis=1)

In [34]:
id_resume.head(5)


Out[34]:
0 ID
0 \n\nProfessional Experience\nACS, Beattyville,... 45416565
1 Name\nAddress\nPhone number; e-mail address\nO... 45416848
2 John A. Smith\r\r\rContact\rTel : 716-555-5555... 45417076
3 \n___\n\n\nEXPERIENCE\nDirector of Business Op... 45417498
4 \rPersonal Experience\r\rDedicated computer in... 45417994

In [12]:
#change column names 
id_resume.columns = ['ID', 'resume_text']
id_resume.columns


Out[12]:
Index([u'ID', u'resume_text'], dtype='object')

In [13]:
#check data types, ID should be an integer
id_resume.dtypes

#convert ID to integer 
resume = id_resume.convert_objects(convert_numeric=True)

#check to make sure the type converted to a numeric type, in this case a float
resume.dtypes


C:\Users\jdweaver\AppData\Local\Continuum\Anaconda2\lib\site-packages\ipykernel\__main__.py:5: FutureWarning: convert_objects is deprecated.  Use the data-type specific converters pd.to_datetime, pd.to_timedelta and pd.to_numeric.
Out[13]:
ID             float64
resume_text     object
dtype: object

In [14]:
#convert to clean text to remove unicode characters 
def clean_text(row):
    # return the list of decoded cell in the Series instead 
    return [r.decode('unicode_escape').encode('ascii', 'ignore') for r in row]
resume['resume_text'] = df.apply(clean_text)

#check that unicode characters have been removed
resume


Out[14]:
ID resume_text
0 45416565.0 \n\nProfessional Experience\nACS, Beattyville,...
1 45416848.0 Name\nAddress\nPhone number; e-mail address\nO...
2 45417076.0 John A. Smith\r\r\rContact\rTel : 716-555-5555...
3 45417498.0 \n___\n\n\nEXPERIENCE\nDirector of Business Op...
4 45417994.0 \rPersonal Experience\r\rDedicated computer in...
5 45418178.0 * Involved with all phases of design and const...
6 45418240.0 \n
7 45418879.0 SAURABH TYAGI\nH.No 192, Village Karnera, Ball...
8 45420257.0 Summary\n_____________________________________...
9 45420733.0 RESUME\n\nEducational qualification: 11th pass...
10 45422051.0 CV\n \nPERSONAL DETAILS\nDate of Birth: \nLang...
11 45424160.0 \nHealthcare assistant \n\nPERSONAL SUMMARY\nA...
12 45424611.0 \n\n\n\n\nS R\n\nEmail id:\n\nEducational Prof...
13 45425243.0 \t \t \n \n \nAREAS OF EXPERTISE \t \n \nMana...
14 45425422.0 \nTel: \nEmail: \nDate of Birth: \n \n...
15 45425696.0 \nCurriculum Vitae:\n\nPersonal Details:\n\n\n...
16 45426273.0 OBJECTIVE\r\rTo gain employment within an IT b...
17 45426607.0 Name\n\n SUMMARY OF SKILLS\nNative English spe...
18 45427103.0 Curriculum Vitae\n\n\nNAME\n\nLeicester, Unite...
19 45427104.0 \nQualifications\nUniversity of Bedfordshire\n...
20 45427271.0 Employment history\n\nNov 2012 - Date \nMedia ...
21 45427390.0 Profile\n\nEnthusiastic and hard working perso...
22 45427407.0 PERSONAL PROFILE \n\nI consider myself to be c...
23 45427969.0 \n
24 45429229.0 Profile\nA positive and self-motivated systems...
25 45431061.0 \rProject Officer\r\r\rProfile\r\rProactive Hi...
26 4544536.0 Personal Attributes\nConsiderate, dependable, ...
27 NaN \nPersonal Attributes\nConsiderate, dependable...
28 45445519.0 JOHN DOE\n\nADDRESS | Bothell, WA 98011 | ...
29 45445522.0 Name and surname\nYear of birth \nAdress, mobi...
... ... ...
973 43585490.0 \nBMUS\n\nWORK EXPERIENCE\nGDG ENVIRONMENT\t\t...
974 43596567.0 \n\n\nDiplomas and degrees\n* Engineer in info...
975 43610143.0 , PMP\n?* Fairfield, Iowa 52557\n\nTEAM LEAD?*...
976 43615009.0 \n\nJohn Doe\nObjectives\nTo work in a teachin...
977 43617115.0 Personal Profile\n\nI excel at giving great cu...
978 43636357.0 \nEDUCATION:\n2005-2008 Bachelor of Arts: Soci...
979 43641670.0 EXPERIENCE\nSales Floor Associate, Kohl's\n*...
980 43656965.0 Experience : \n6 years of programing on androi...
981 43664896.0 \nSUMMARY\n\n* Has strong business analysis sk...
982 43666552.0 CURRICULUM VITAE\n\n\nQualification: M.B.B.S.,...
983 43669278.0 Liam PlowmanSummaryPre-press worker at a print...
984 43674259.0 Name: Huy\nEmail: lakqn11@yahoo.com\nMail...
985 43685899.0 \nSKILLS & ABILITIES\r\r* Can type 90 words pe...
986 43689309.0 EDUCATION\n\nBachelor of Arts in Psychology ...
987 43693472.0 John A Smith\n1234 Skipalong Road TAMPA, FL 3...
988 43694142.0 \n\n\n\nObjective:\nTo obtain a challenging cu...
989 43694817.0 \n\nCAREER OBJECTIVE:\nTo reach the pinnacle o...
990 43703485.0 \nPERSONAL\rNationalities:\rGreek and Dutch\rD...
991 43717460.0 \r\rGaurav Thakur \nOBJECTIVE \r\r\r \rIntend...
992 43754553.0 Reside in: Saint Petersburg\nCitizenship: Russ...
993 43754987.0 \n\n\nEducation:\n\n1980-1987\nO`Levels:\n\nMa...
994 43757730.0 Personal Profile\n\nAs a highly motivated, ada...
995 43762206.0 Impiego ricercato/\nSettore di competenza\nInf...
996 43775436.0 Sofia Afonso\nsofiaafonso@gmail.com\nRua do Ba...
997 43788224.0 Your Name\nAddress City, State ZIP\nPhone\nE...
998 43797667.0 \nWork Experience\r\nSr Financial Analyst (201...
999 43798002.0 Resume\nEducation\n\nSchool\nJ.D. Candidate C...
1000 43800254.0 \nANALYTICALLY MINDED AND ENTHUSIASTIC PSYCHOL...
1001 43811374.0 Tony Tat\np************@gmail.com\n\nSummary\n...
1002 43811789.0 \n\nWith over nine years of experience across ...

1003 rows × 2 columns

read in the csv of the survey data

note: I did take a shortcut with this. I leveraged the work I had already done in SPSS for another project for this data. The file that created the bulk of the survey data and the raw survey data are uploaded on github.


In [16]:
#read in csv of survey data 
survey = pd.read_csv('C:/ds_sandbox/project2/data/survey_data_16May16a.csv', sep=',')

#check shape 
survey.shape

#notice that the data type for ID is an numeric type, this means we can join the survey data
survey.dtypes

#check that ID column is in the survey dataframe 
"ID" in survey


Out[16]:
True

In [17]:
#join the survey data to the text data
text = pd.merge(resume, survey, how='inner', left_on='ID', right_on='ID')

text.shape
text.columns
type(text.resume_text)


Out[17]:
pandas.core.series.Series

The join worked. This ties out my dissertation work within +/- 3 rows. Note for this analysis we aren't controlling for gender, although from prior work we know that individuals identifying as females tend to report higher job performance behaviors. We are taking a purely text analytic approach. Also I didn't have time to figure out how to control for gender in Python :D

Now we need to create our X and y


In [21]:
#define X and y. We will use cross-validation here so no need to split into test-train-split
X = text.resume_text

y = text.task_performance_dichotomous3

note:

I used the task_performance_dichotomous3. I played around with different cut points for dichotomizing the outcome in a manner that didn't result in an extremely unbalanced data set.


In [22]:
#create 3 different vectorizors using english stop words, and ngrams of 1, 2, and 3
vectTFidf1 = TfidfVectorizer(analyzer='word', lowercase=True, min_df=3, 
                             stop_words='english',max_features=5000, ngram_range=(1, 1))

vectTFidf2 = TfidfVectorizer(analyzer='word', lowercase=True, min_df=3, 
                             stop_words='english',max_features=1000, ngram_range=(2, 2))

vectTFidf3 = TfidfVectorizer(analyzer='word', lowercase=True, min_df=3, 
                             stop_words='english',max_features=1000, ngram_range=(3, 3))

In [23]:
#create 3 tf-idf dtms 
X_dtm1 = vectTFidf1.fit_transform(X)

X_dtm2 = vectTFidf2.fit_transform(X)

X_dtm3 = vectTFidf3.fit_transform(X)

In [24]:
from sklearn.svm import LinearSVC #nice
from sklearn import cross_validation
svm = LinearSVC(C=1, penalty='l2', loss='hinge')

In [29]:
#unigrams
scores = cross_validation.cross_val_score(svm, X_dtm1, y, scoring='recall', cv=10)
print(scores.mean())


0.824022108844

In [31]:
print(vectTFidf1.get_feature_names()[-50:])


[u'workers', u'workflow', u'workflows', u'workforce', u'working', u'workload', u'workloads', u'workplace', u'works', u'workshop', u'workshops', u'workstations', u'world', u'worldwide', u'worth', u'wpm', u'wright', u'write', u'writer', u'writers', u'writing', u'written', u'wrote', u'www', u'xml', u'xp', u'xslt', u'xuan', u'xx', u'xxx', u'xxxx', u'xxxxx', u'xxxxxx', u'xxxxxxx', u'xxxxxxxx', u'xxxxxxxxx', u'xxxxxxxxxx', u'xxxxxxxxxxxxx', u'yahoo', u'year', u'yearly', u'years', u'york', u'young', u'youth', u'youtube', u'zealand', u'zero', u'zone', u'zoology']

In [32]:
#bigrams
scores = cross_validation.cross_val_score(svm, X_dtm2, y, scoring='recall', cv=10)
print(scores.mean())


0.782568027211

In [33]:
print(vectTFidf2.get_feature_names()[-50:])


[u'web services', u'website design', u'weekly basis', u'weekly monthly', u'west virginia', u'whilst working', u'wide range', u'wide variety', u'windows 2000', u'windows 98', u'windows linux', u'windows mac', u'windows server', u'windows xp', u'word excel', u'word microsoft', u'word powerpoint', u'word processing', u'words minute', u'work closely', u'work environment', u'work ethic', u'work experience', u'work history', u'work independently', u'work placement', u'work pressure', u'work team', u'worked closely', u'worked team', u'working closely', u'working experience', u'working independently', u'working knowledge', u'working relationships', u'working small', u'working team', u'writing listening', u'written communication', u'written spoken', u'written verbal', u'xp vista', u'xxx xxx', u'yahoo com', u'year passing', u'year year', u'years experience', u'years months', u'york city', u'york ny']

In [34]:
#trigrams
scores = cross_validation.cross_val_score(svm, X_dtm3, y, scoring='recall', cv=10)
print(scores.mean())


0.840476190476

In [35]:
print(vectTFidf3.get_feature_names()[-50:])


[u'word powerpoint excel', u'word powerpoint outlook', u'work experience 01', u'work experience 2013', u'work experience 2014', u'work experience april', u'work experience company', u'work experience date', u'work experience dates', u'work experience july', u'work experience october', u'work experience placement', u'work experience september', u'work experience university', u'work experience worked', u'work fast paced', u'work independently team', u'work key skills', u'work team independently', u'work tight deadlines', u'worked small team', u'working high pressure', u'working knowledge microsoft', u'working multinational companies', u'working small team', u'working team members', u'working team people', u'working variety different', u'world wide web', u'writing listening reading', u'written communication skills', u'written oral communication', u'written spoken english', u'written verbal communication', u'www linkedin com', u'xp vista linux', u'xxx xxx xxx', u'xxx xxx xxxx', u'xxxx gmail com', u'xxxx xxx xxx', u'yahoo com mailing', u'yahoo com phone', u'yahoo com vn', u'years education master', u'years experience customer', u'years experience retail', u'years experience working', u'years experience years', u'years professional experience', u'york city ny']

In [37]:
from sklearn.linear_model import LogisticRegression
log = LogisticRegression()

scores = cross_validation.cross_val_score(log, X_dtm3, y, scoring='recall', cv=10)
print(scores.mean())


0.883928571429

In [39]:
print(vectTFidf3.get_feature_names()[-50:])


[u'word powerpoint excel', u'word powerpoint outlook', u'work experience 01', u'work experience 2013', u'work experience 2014', u'work experience april', u'work experience company', u'work experience date', u'work experience dates', u'work experience july', u'work experience october', u'work experience placement', u'work experience september', u'work experience university', u'work experience worked', u'work fast paced', u'work independently team', u'work key skills', u'work team independently', u'work tight deadlines', u'worked small team', u'working high pressure', u'working knowledge microsoft', u'working multinational companies', u'working small team', u'working team members', u'working team people', u'working variety different', u'world wide web', u'writing listening reading', u'written communication skills', u'written oral communication', u'written spoken english', u'written verbal communication', u'www linkedin com', u'xp vista linux', u'xxx xxx xxx', u'xxx xxx xxxx', u'xxxx gmail com', u'xxxx xxx xxx', u'yahoo com mailing', u'yahoo com phone', u'yahoo com vn', u'years education master', u'years experience customer', u'years experience retail', u'years experience working', u'years experience years', u'years professional experience', u'york city ny']

In [18]:
#import a new set of modules
#this was  shamelessly stolen from: http://scikit-learn.org/stable/_downloads/grid_search_text_feature_extraction.py

from __future__ import print_function

from pprint import pprint
from time import time
import logging

from sklearn.feature_extraction.text import CountVectorizer
from sklearn.feature_extraction.text import TfidfTransformer
from sklearn.linear_model import SGDClassifier
from sklearn.grid_search import GridSearchCV
from sklearn.pipeline import Pipeline

# Display progress logs on stdout
logging.basicConfig(level=logging.INFO,
                    format='%(asctime)s %(levelname)s %(message)s')

In [ ]:
######################################################################
# define a pipeline combining a text feature extractor with a simple
# classifier
pipeline = Pipeline([
    ('vect', CountVectorizer()),
    ('tfidf', TfidfTransformer()),
    ('clf', SGDClassifier()),
])

# uncommenting more parameters will give better exploring power but will
# increase processing time in a combinatorial way
parameters = {
    'vect__max_df': (0.5, 0.75, 1.0),
    'vect__max_features': (None, 5000, 10000, 50000),
    'vect__ngram_range': ((1, 1), (2, 2), (3, 3)),  # unigrams or bigrams
    'tfidf__use_idf': (True, False),
    'tfidf__norm': ('l1', 'l2'),
    'clf__alpha': (0.00001, 0.000001),
    'clf__penalty': ('l2', 'elasticnet'),
    'clf__n_iter': (10, 50, 80),
}

if __name__ == "__main__":
    # multiprocessing requires the fork to happen in a __main__ protected
    # block

    # find the best parameters for both the feature extraction and the
    # classifier
    grid_search = GridSearchCV(pipeline, parameters, n_jobs=-1, verbose=1)

    print("Performing grid search...")
    print("pipeline:", [name for name, _ in pipeline.steps])
    print("parameters:")
    pprint(parameters)
    t0 = time()
    grid_search.fit(X, y)
    print("done in %0.3fs" % (time() - t0))
    print()

    print("Best score: %0.3f" % grid_search.best_score_)
    print("Best parameters set:")
    best_parameters = grid_search.best_estimator_.get_params()
    for param_name in sorted(parameters.keys()):
        print("\t%s: %r" % (param_name, best_parameters[param_name]))