In [59]:
import numpy as np
import csv
import pandas as pd
from sklearn import svm
from nltk.corpus import stopwords
import re
from nltk.tokenize import *

Reading Files Line by Line


In [18]:
def sentenceExtractionForTraining(dirName, fileName, classes):
    sentencesClass = []
    for i in range(0,len(classes)):
        sentences = readFile(dirName+fileName[i])
        sentencesClass.append(sentences)
    return sentencesClass

In [52]:
def readFile(fileName):
    f = open(fileName,"r+")
    sentences = []
    for line in f.readlines():
        if len(line)<=2 :
            continue
        if "TIMEX3" in line:
            continue 
        sentences.append(line.lower().rstrip())
    f.close()
    return sentences

In [ ]:
def readClassifySentences()

For Testing


In [68]:
text = word_tokenize("And now fbor something completely different")
l = nltk.pos_tag(text)

In [69]:
m = POSForClass(["And now fbor something completely different","And now fbor something completely different"])

Removing non word characters


In [43]:
def removeFancyChars(sentences):
    lengthPhrase = len(sentences)
    for i in range(lengthPhrase):
        sentences[i] = re.sub(r'([^\s\w]|_)+', '', sentences[i])
    return sentences

In [44]:
def removeFC(sentencesClass):
    for i in range(0, len(sentencesClass)):
        sentencesClass[i] = removeFancyChars(sentencesClass[i])
    return sentencesClass

Finding parts of speech


In [53]:
def POSForTrainingSet(sentencesClass):
    posSentencesClass = []
    for i in range(0,len(sentencesClass)):
        posSentencesClass.append(POSForClass(sentencesClass[i]))
    return posSentencesClass

In [54]:
def POSForClass(sentences):
    posSentences = []
    for i in range(0,len(sentences)):
        posSentences.append(POSForSentence(sentences[i]))
    return posSentences

In [63]:
def POSForSentence(sentence):
    text = word_tokenize(sentence)
    posSentence = nltk.pos_tag(text)
    return posSentence

Removing StopWords


In [23]:
def removeSWFromSent(sentence):
    words = sentence.split()
    sentence = []
    for w in words:
        if w not in stopwords.words('english'):
            sentence.append(w)
    return sentence

In [24]:
def removeSWFromPar(sentences):
    sents = []
    for i in range(0, len(sentences)):
        sent = removeSWFromSent(sentences[i])
        if len(sent) >=1:
            sents.append(sent)
    return sents

In [ ]:
def removeSWFromClass(sentencesClass):

word2Vec


In [ ]:
def load_bin_vec(fname, vocab):
    """
    Loads 300x1 word vecs from Google (Mikolov) word2vec
    """
    word_vecs = {}
    with open(fname, "rb") as f:
        header = f.readline()
        vocab_size, layer1_size = map(int, header.split())
        binary_len = np.dtype('float32').itemsize * layer1_size
        for line in xrange(vocab_size):
            word = []
            while True:
                ch = f.read(1)
                if ch == ' ':
                    word = ''.join(word)
                    break
                if ch != '\n':
                    word.append(ch)   
            if word in vocab:
               word_vecs[word] = np.fromstring(f.read(binary_len), dtype='float32')  
            else:
                f.read(binary_len)
    return word_vecs

Main


In [70]:
def main():
    dirName = "Email-classification_dataset/"
    classes = [1,2,3,4,5]
    fileName = ["fyi-positive-800.txt","meetings-positive-800.txt","RD-positive-800.txt","tp-positive-500.txt","negative-800.txt"]
    sentencesClass = sentenceExtractionForTraining(dirName, fileName, classes)
    sentencesClass = removeFC(sentencesClass)
    pos = POSForTrainingSet(sentencesClass)
    print pos

In [71]:
if __name__=="__main__":
    main()


[[[('i', 'NN'), ('am', 'VBP'), ('now', 'RB'), ('trying', 'VBG'), ('to', 'TO'), ('complete', 'VB'), ('all', 'DT'), ('your', 'PRP$'), ('kind', 'NN'), ('advice', 'NN'), ('and', 'CC'), ('will', 'MD'), ('see', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN'), ('morning', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('xxx', 'CD'), ('tomorrow', 'NN')], [('i', 'JJ'), ('look', 'VBP'), ('forward', 'RB'), ('to', 'TO'), ('meeting', 'VBG'), ('everyone', 'NN'), ('during', 'IN'), ('the', 'DT'), ('conference', 'NN'), ('later', 'RB'), ('this', 'DT'), ('week', 'NN')], [('well', 'RB'), ('look', 'NN'), ('at', 'IN'), ('these', 'DT'), ('tomorrow', 'NN'), ('and', 'CC'), ('over', 'IN'), ('the', 'DT'), ('weekend', 'NN'), ('so', 'RB'), ('as', 'IN'), ('to', 'TO'), ('have', 'VB'), ('these', 'DT'), ('fixed', 'VBN'), ('by', 'IN'), ('monday', 'NN')], [('you', 'PRP'), ('are', 'VBP'), ('now', 'RB'), ('eligible', 'JJ'), ('for', 'IN'), ('a', 'DT'), ('voucher', 'NN'), ('for', 'IN'), ('rs', 'NN'), ('yyy', 'NN'), ('or', 'CC'), ('y', 'NN'), ('discount', 'NN'), ('whichever', 'NN'), ('is', 'VBZ'), ('lower', 'JJR'), ('from', 'IN'), ('ebay', 'NN'), ('on', 'IN'), ('your', 'PRP$'), ('next', 'JJ'), ('purchase', 'NN'), ('fromyour', 'NN'), ('ebay', 'NN'), ('voucher', 'NN'), ('is', 'VBZ'), ('pxkxbmcxk9', 'JJ'), ('and', 'CC'), ('this', 'DT'), ('voucher', 'NN'), ('will', 'MD'), ('be', 'VB'), ('valid', 'JJ'), ('upto', 'JJ'), ('xxxx', 'NN'), ('30', 'CD'), ('2014', 'CD')], [('xxxxxxxx', 'NN'), ('has', 'VBZ'), ('requested', 'VBN'), ('for', 'IN'), ('time', 'NN'), ('till', 'NN'), ('monday', 'NN'), ('to', 'TO'), ('get', 'VB'), ('it', 'PRP'), ('signed', 'VBD'), ('but', 'CC'), ('given', 'VBN'), ('email', 'VBP'), ('confirmation', 'NN')], [('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN')], [('please', 'VB'), ('kindly', 'RB'), ('talk', 'NN'), ('to', 'TO'), ('mam', 'VB'), ('this', 'DT'), ('week', 'NN')], [('tomorrow', 'NN'), ('is', 'VBZ'), ('a', 'DT'), ('working', 'JJ'), ('day', 'NN'), ('at', 'IN'), ('xxxxxxx', 'NN')], [('xxxxxxx', 'NN'), ('is', 'VBZ'), ('there', 'RB'), ('anyway', 'RB'), ('to', 'TO'), ('push', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('next', 'JJ'), ('week', 'NN')], [('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('go', 'VB'), ('on', 'IN'), ('leave', 'NN'), ('on', 'IN'), ('2nd', 'CD'), ('may', 'MD'), ('2014', 'VB')], [('we', 'PRP'), ('hope', 'VBP'), ('to', 'TO'), ('receive', 'VB'), ('your', 'PRP$'), ('clearance', 'NN'), ('by', 'IN'), ('mid', 'NNS'), ('next', 'JJ'), ('week', 'NN'), ('august', 'RB'), ('6', 'CD'), ('at', 'IN'), ('the', 'DT'), ('latest', 'JJS')], [('good', 'JJ'), ('luck', 'NN'), ('to', 'TO'), ('everyone', 'NN'), ('running', 'VBG'), ('tomorrow', 'NN'), ('and', 'CC'), ('especially', 'RB'), ('those', 'DT'), ('who', 'WP'), ('are', 'VBP'), ('running', 'VBG'), ('their', 'PRP$'), ('very', 'NN'), ('first', 'RB'), ('yy', 'VB')], [('tomorrow', 'NN'), ('might', 'MD'), ('be', 'VB'), ('a', 'DT'), ('better', 'JJR'), ('day', 'NN'), ('to', 'TO'), ('sync', 'VB')], [('i', 'NNS'), ('have', 'VBP'), ('great', 'JJ'), ('pleasure', 'NN'), ('in', 'IN'), ('informing', 'VBG'), ('you', 'PRP'), ('that', 'IN'), ('xxx', 'VBP'), ('xxxxxxxxx', 'NNP'), ('will', 'MD'), ('be', 'VB'), ('offering', 'VBG'), ('a', 'DT'), ('fourday', 'JJ'), ('programme', 'NN'), ('on', 'IN'), ('enhancing', 'VBG'), ('leadership', 'NN'), ('capacities', 'NNS'), ('and', 'CC'), ('potential', 'JJ'), ('among', 'IN'), ('professional', 'JJ'), ('women', 'NNS'), ('from', 'IN'), ('september', 'JJ'), ('22', 'CD'), ('to', 'TO'), ('yy', 'VB'), ('2014', 'CD')], [('sure', 'JJ'), ('xxxxx', 'NNP'), ('will', 'MD'), ('send', 'VB'), ('you', 'PRP'), ('all', 'PDT'), ('a', 'DT'), ('brief', 'JJ'), ('list', 'NN'), ('of', 'IN'), ('procedure', 'NN'), ('to', 'TO'), ('be', 'VB'), ('followed', 'VBN'), ('by', 'IN'), ('tomorrow', 'NN'), ('before', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('discussion', 'VBN'), ('on', 'IN'), ('monday', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('having', 'VBG'), ('a', 'DT'), ('great', 'JJ'), ('time', 'NN'), ('here', 'RB'), ('and', 'CC'), ('will', 'MD'), ('be', 'VB'), ('returning', 'VBG'), ('to', 'TO'), ('xxxxx', 'VB'), ('on', 'IN'), ('the', 'DT'), ('20th', 'CD'), ('of', 'IN'), ('xxxx', 'NN'), ('and', 'CC'), ('will', 'MD'), ('stay', 'VB'), ('at', 'IN'), ('blore', 'NN'), ('till', 'NN'), ('after', 'IN'), ('xxxxxx', 'NN'), ('and', 'CC'), ('will', 'MD'), ('then', 'RB'), ('return', 'VB'), ('to', 'TO'), ('xxxx', 'VB')], [('date', 'NN'), ('and', 'CC'), ('time', 'NN'), ('saturday', 'JJ'), ('5', 'CD'), ('july', 'NN'), ('7', 'CD'), ('pm', 'NN'), ('sharp', 'JJ')], [('the', 'DT'), ('new', 'JJ'), ('updates', 'NNS'), ('to', 'TO'), ('these', 'DT'), ('will', 'MD'), ('take', 'VB'), ('effect', 'NN'), ('on', 'IN'), ('july', 'NN'), ('31', 'CD'), ('2014', 'CD')], [('hoping', 'VBG'), ('for', 'IN'), ('some', 'DT'), ('movement', 'NN'), ('and', 'CC'), ('closure', 'NN'), ('this', 'DT'), ('month', 'NN')], [('i', 'NN'), ('will', 'MD'), ('come', 'VB'), ('in', 'IN'), ('tomorrow', 'NN'), ('morning', 'NN')], [('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('time', 'NN'), ('tomorrow', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('a', 'DT'), ('look', 'NN')], [('please', 'VB'), ('coordinate', 'NN'), ('with', 'IN'), ('her', 'PRP'), ('as', 'RB'), ('early', 'RB'), ('as', 'IN'), ('possible', 'JJ'), ('tomorrow', 'NN'), ('morning', 'NN')], [('ticket', 'NN'), ('conference', 'NN'), ('single', 'JJ'), ('day', 'NN'), ('25th', 'CD'), ('july', 'NN')], [('i', 'NN'), ('think', 'VBP'), ('monday', 'NN'), ('is', 'VBZ'), ('cool', 'JJ')], [('hangout', 'NN'), ('with', 'IN'), ('shyam', 'JJ'), ('k', 'NN'), ('cto', 'NN'), ('of', 'IN'), ('xxxxxx', 'NNP'), ('july', 'NN'), ('17th', 'CD'), ('at', 'IN'), ('yyyy', 'NN'), ('pm', 'NN'), ('xxxxx', 'NN'), ('and', 'CC'), ('you', 'PRP'), ('may', 'MD'), ('be', 'VB'), ('hired', 'VBN'), ('by', 'IN'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('fastest', 'JJS'), ('growing', 'VBG'), ('venture', 'NN'), ('funded', 'VBD'), ('ecommerce', 'NN'), ('companies', 'NNS')], [('i', 'NN'), ('will', 'MD'), ('make', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('the', 'DT'), ('2', 'CD'), ('pm', 'NN'), ('wed', 'VBD'), ('yyyy', 'JJ'), ('mtg', 'NN'), ('time', 'NN'), ('that', 'WDT'), ('has', 'VBZ'), ('been', 'VBN'), ('set', 'VBN'), ('up', 'RP'), ('p', 'NN')], [('friday', 'JJ'), ('afternoon', 'NN'), ('might', 'MD'), ('work', 'VB')], [('just', 'RB'), ('to', 'TO'), ('let', 'VB'), ('you', 'PRP'), ('knowmore', 'VB'), ('safeguardsassessments', 'NNS'), ('aretaking', 'VBG'), ('place', 'NN'), ('now', 'RB'), ('and', 'CC'), ('next', 'JJ'), ('week', 'NN'), ('procurement', 'NN'), ('starts', 'VBZ'), ('next', 'JJ'), ('week', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('proceed', 'VB'), ('as', 'IN'), ('if', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('launching', 'VBG'), ('at', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('june', 'NN')], [('as', 'IN'), ('discussed', 'VBN'), ('with', 'IN'), ('you', 'PRP'), ('we', 'PRP'), ('planned', 'VBD'), ('to', 'TO'), ('give', 'VB'), ('demo', 'NN'), ('to', 'TO'), ('bd', 'VB'), ('on', 'IN'), ('24th', 'CD'), ('july', 'NN'), ('2014', 'CD'), ('300', 'CD'), ('pm', 'NN'), ('at', 'IN'), ('xxx', 'NNP'), ('conference', 'NN'), ('room', 'NN'), ('2nd', 'CD'), ('floor', 'NN'), ('on', 'IN'), ('usage', 'NN'), ('of', 'IN'), ('mobile', 'JJ'), ('app', 'NN'), ('for', 'IN'), ('searching', 'VBG'), ('candidates', 'NNS'), ('post', 'RB'), ('new', 'JJ'), ('requirements', 'NNS'), ('and', 'CC'), ('other', 'JJ'), ('features', 'NNS')], [('back', 'RB'), ('in', 'IN'), ('town', 'NN'), ('and', 'CC'), ('will', 'MD'), ('send', 'VB'), ('out', 'RP'), ('the', 'DT'), ('note', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('to', 'TO'), ('the', 'DT'), ('xxx', 'NN'), ('network', 'NN')], [('its', 'PRP$'), ('going', 'VBG'), ('to', 'TO'), ('take', 'VB'), ('sometime', 'NN'), ('for', 'IN'), ('me', 'PRP'), ('to', 'TO'), ('send', 'VB'), ('comments', 'NNS'), ('on', 'IN'), ('both', 'DT'), ('as', 'IN'), ('i', 'NN'), ('am', 'VBP'), ('busy', 'JJ'), ('all', 'DT'), ('weekend', 'NN'), ('on', 'IN'), ('family', 'NN'), ('front', 'NN'), ('and', 'CC'), ('tomorrow', 'NN'), ('is', 'VBZ'), ('no', 'RB'), ('longer', 'RB'), ('as', 'IN'), ('open', 'JJ'), ('i', 'NN'), ('had', 'VBD'), ('initially', 'RB'), ('thought', 'VBN')], [('his', 'PRP$'), ('final', 'JJ'), ('decision', 'NN'), ('will', 'MD'), ('be', 'VB'), ('informed', 'VBN'), ('by', 'IN'), ('wednesday', 'NN')], [('just', 'RB'), ('wanted', 'VBN'), ('to', 'TO'), ('follow', 'VB'), ('up', 'RP'), ('since', 'IN'), ('we', 'PRP'), ('will', 'MD'), ('need', 'VB'), ('to', 'TO'), ('update', 'VB'), ('the', 'DT'), ('pad', 'NN'), ('to', 'TO'), ('send', 'VB'), ('out', 'RP'), ('tomorrow', 'NN'), ('to', 'TO'), ('the', 'DT'), ('vp', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('ensure', 'VB'), ('that', 'IN'), ('all', 'DT'), ('of', 'IN'), ('us', 'PRP'), ('have', 'VBP'), ('the', 'DT'), ('plugins', 'NNS'), ('downloaded', 'VBD'), ('today', 'NN'), ('so', 'IN'), ('that', 'DT'), ('tomorrows', 'VBZ'), ('test', 'VBP'), ('call', 'NN'), ('goes', 'VBZ'), ('thru', 'RB'), ('successfully', 'RB')], [('if', 'IN'), ('for', 'IN'), ('any', 'DT'), ('reason', 'NN'), ('you', 'PRP'), ('do', 'VBP'), ('not', 'RB'), ('keep', 'VB'), ('up', 'RP'), ('your', 'PRP$'), ('commitment', 'NN'), ('this', 'DT'), ('weekend', 'NN'), ('you', 'PRP'), ('may', 'MD'), ('consider', 'VB'), ('our', 'PRP$'), ('contract', 'NN'), ('cancelled', 'VBD')], [('please', 'VB'), ('note', 'NN'), ('that', 'IN'), ('all', 'PDT'), ('the', 'DT'), ('works', 'NN'), ('has', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('done', 'VBN'), ('by', 'IN'), ('11th', 'CD'), ('of', 'IN'), ('june', 'NN')], [('we', 'PRP'), ('have', 'VBP'), ('two', 'CD'), ('full', 'JJ'), ('house', 'NN'), ('events', 'NNS'), ('on', 'IN'), ('this', 'DT'), ('weekend', 'NN'), ('both', 'DT'), ('on', 'IN'), ('saturday', 'NN'), ('sunday', 'JJ'), ('request', 'VB'), ('all', 'DT'), ('of', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('take', 'VB'), ('care', 'NN'), ('of', 'IN'), ('your', 'PRP$'), ('belongs', 'NNS'), ('and', 'CC'), ('not', 'RB'), ('to', 'TO'), ('leave', 'VB'), ('anything', 'NN'), ('on', 'IN'), ('the', 'DT'), ('tables', 'NNS')], [('so', 'RB'), ('keep', 'JJ'), ('yourselves', 'NNS'), ('free', 'JJ'), ('for', 'IN'), ('dinner', 'NN'), ('this', 'DT'), ('wednesday', 'VBZ'), ('20aug', 'CD')], [('so', 'RB'), ('vat', 'JJ'), ('id', 'NN'), ('should', 'MD'), ('be', 'VB'), ('sorted', 'VBN'), ('by', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('pretty', 'RB'), ('flexible', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('and', 'CC'), ('i', 'NN'), ('am', 'VBP'), ('located', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('xxx', 'JJ'), ('time', 'NN'), ('zone', 'NN')], [('as', 'IN'), ('you', 'PRP'), ('might', 'MD'), ('already', 'RB'), ('know', 'VB'), ('xxxxxx', 'NNP'), ('is', 'VBZ'), ('organizing', 'VBG'), ('its', 'PRP$'), ('annual', 'JJ'), ('developer', 'NN'), ('conference', 'NN'), ('xxxxxx', 'NNP'), ('xxx', 'NN'), ('from', 'IN'), ('the', 'DT'), ('25th', 'CD'), ('to', 'TO'), ('26th', 'CD'), ('of', 'IN'), ('june', 'NN'), ('in', 'IN'), ('xxx', 'NNP'), ('xxxxxxxxx', 'NN')], [('should', 'MD'), ('you', 'PRP'), ('require', 'VB'), ('any', 'DT'), ('changes', 'NNS'), ('kindly', 'RB'), ('let', 'VBP'), ('us', 'PRP'), ('know', 'VB'), ('until', 'IN'), ('tomorrow', 'NN'), ('morning', 'NN')], [('ill', 'RB'), ('be', 'VB'), ('on', 'IN'), ('casual', 'JJ'), ('leave', 'VBP'), ('coming', 'VBG'), ('friday', 'NN'), ('with', 'IN'), ('limited', 'JJ'), ('access', 'NN'), ('to', 'TO'), ('xxxxx', 'VB'), ('calls', 'NNS'), ('and', 'CC'), ('emails', 'NNS')], [('xxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxx', 'NN'), ('saturday', 'NN'), ('july', 'VBD'), ('05', 'CD'), ('x', 'NNP'), ('xxxx', 'NNP'), ('xxxx', 'NNP')], [('please', 'NN'), ('know', 'VBP'), ('that', 'IN'), ('on', 'IN'), ('may', 'MD'), ('16th', 'CD'), ('and', 'CC'), ('17th', 'CD'), ('is', 'VBZ'), ('xxxxxx', 'JJ'), ('2014', 'CD')], [('dear', 'JJ'), ('xx', 'NNP'), ('xxxxxx', 'NNP'), ('x', 'NNP'), ('xxxxxx', 'NNP'), ('date', 'NN'), ('9th', 'CD'), ('july', 'NN'), ('2014', 'CD')], [('in', 'IN'), ('the', 'DT'), ('interim', 'JJ'), ('kindly', 'RB'), ('help', 'VB'), ('me', 'PRP'), ('help', 'VB'), ('you', 'PRP'), ('by', 'IN'), ('asking', 'VBG'), ('your', 'PRP$'), ('xxxxxxx', 'NN'), ('team', 'NN'), ('to', 'TO'), ('release', 'VB'), ('all', 'DT'), ('payments', 'NNS'), ('work', 'VBP'), ('out', 'RP'), ('an', 'DT'), ('acceptable', 'JJ'), ('xxx', 'NN'), ('with', 'IN'), ('mine', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('will', 'MD'), ('be', 'VB'), ('on', 'IN'), ('leave', 'JJ'), ('tomorrow', 'NN'), ('also', 'RB')], [('thanks', 'NNS'), ('mrkumar', 'VBP'), ('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('there', 'RB'), ('tomorrow', 'NN'), ('for', 'IN'), ('the', 'DT'), ('setup', 'NN')], [('xxxx', 'NN'), ('to', 'TO'), ('be', 'VB'), ('announced', 'VBN'), ('tomorrow', 'NN')], [('xxxxxx', 'NN'), ('has', 'VBZ'), ('responded', 'VBN'), ('and', 'CC'), ('we', 'PRP'), ('are', 'VBP'), ('hoping', 'VBG'), ('to', 'TO'), ('connect', 'VB'), ('with', 'IN'), ('xxx', 'NNP'), ('next', 'JJ'), ('week', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('xxxxxxxxx', 'NNS')], [('so', 'RB'), ('no', 'DT'), ('issues', 'NNS'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('about', 'IN'), ('your', 'PRP$'), ('plans', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('week', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('on', 'IN'), ('may', 'MD'), ('26th', 'CD')], [('offer', 'NN'), ('valid', 'JJ'), ('until', 'IN'), ('sun', 'JJ'), ('yy', 'NNS'), ('sep', 'VBP'), ('yyyyy', 'CD'), ('pm', 'NN')], [('xxxxxxxx', 'JJ'), ('xxxxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('webyclip', 'NN'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('due', 'JJ'), ('on', 'IN'), ('jun', 'NN'), ('10tid26955085we', 'CD'), ('have', 'VBP'), ('started', 'VBN'), ('working', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('wp', 'NN'), ('conversion', 'NN')], [('hello', 'NN'), ('xxx', 'NN'), ('as', 'IN'), ('per', 'IN'), ('your', 'PRP$'), ('requirement', 'NN'), ('for', 'IN'), ('xxx', 'NNP'), ('conference', 'NN'), ('on', 'IN'), ('wednesday', 'IN'), ('the', 'DT'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('xxxx', 'NNP'), ('pro', 'FW'), ('is', 'VBZ'), ('available', 'JJ'), ('now', 'RB'), ('handing', 'VBG'), ('over', 'IN'), ('to', 'TO'), ('xxxxxxx', 'VB')], [('attached', 'VBN'), ('the', 'DT'), ('deck', 'NN'), ('for', 'IN'), ('tomorrows', 'NNS'), ('meeting', 'VBG')], [('also', 'RB'), ('i', 'NN'), ('am', 'VBP'), ('traveling', 'VBG'), ('until', 'IN'), ('this', 'DT'), ('weekend', 'NN')], [('no', 'DT'), ('problem', 'NN'), ('just', 'RB'), ('now', 'RB'), ('i', 'VBP'), ('got', 'VBD'), ('a', 'DT'), ('mail', 'NN'), ('from', 'IN'), ('xxxxxx', 'NN'), ('that', 'IN'), ('he', 'PRP'), ('cant', 'VBZ'), ('come', 'VBN'), ('for', 'IN'), ('f2f', 'NN'), ('interview', 'NN'), ('today', 'NN'), ('because', 'IN'), ('of', 'IN'), ('unexpected', 'JJ'), ('meeting', 'NN'), ('tomorrow', 'NN'), ('he', 'PRP'), ('may', 'MD'), ('come', 'VB')], [('this', 'DT'), ('saturday', 'NN'), ('you', 'PRP'), ('should', 'MD'), ('come', 'VB'), ('and', 'CC'), ('join', 'VB'), ('us', 'PRP'), ('for', 'IN'), ('xxxxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('yy', 'NN')], [('all', 'DT'), ('those', 'DT'), ('interested', 'JJ'), ('in', 'IN'), ('presenting', 'VBG'), ('in', 'IN'), ('the', 'DT'), ('coming', 'VBG'), ('xxxxxxxx', 'NNS'), ('on', 'IN'), ('may', 'MD'), ('5th', 'VB'), ('please', 'NN'), ('get', 'VB'), ('in', 'IN'), ('touch', 'NN'), ('with', 'IN'), ('me', 'PRP'), ('with', 'IN'), ('your', 'PRP$'), ('names', 'NNS'), ('and', 'CC'), ('ideas', 'NNS'), ('by', 'IN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('have', 'VBP'), ('all', 'PDT'), ('the', 'DT'), ('signatures', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('power', 'NN'), ('of', 'IN'), ('xxxxxxxx', 'NNP'), ('except', 'IN'), ('for', 'IN'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('yyy', 'NN'), ('who', 'WP'), ('will', 'MD'), ('be', 'VB'), ('doing', 'VBG'), ('it', 'PRP'), ('tomorrow', 'NN'), ('evening', 'VBG')], [('youre', 'NN'), ('reminded', 'VBD'), ('to', 'TO'), ('review', 'VB'), ('the', 'DT'), ('files', 'NNS'), ('for', 'IN'), ('tomorrows', 'NNS'), ('big', 'JJ'), ('meeting', 'NN')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('available', 'JJ'), ('for', 'IN'), ('the', 'DT'), ('breakfast', 'NN'), ('this', 'DT'), ('sunday', 'NN'), ('will', 'MD'), ('be', 'VB'), ('missing', 'VBG'), ('the', 'DT'), ('saturday', 'NN'), ('long', 'JJ'), ('run', 'NN'), ('though', 'IN')], [('this', 'DT'), ('will', 'MD'), ('reduce', 'VB'), ('from', 'IN'), ('next', 'JJ'), ('month', 'NN'), ('as', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('zeroed', 'VBN'), ('in', 'IN'), ('on', 'IN'), ('the', 'DT'), ('format', 'NN'), ('of', 'IN'), ('financials', 'NNS'), ('to', 'TO'), ('be', 'VB'), ('presented', 'VBN'), ('unless', 'IN'), ('there', 'EX'), ('is', 'VBZ'), ('an', 'DT'), ('increase', 'NN'), ('in', 'IN'), ('volume', 'NN'), ('of', 'IN'), ('transactions', 'NNS')], [('as', 'IN'), ('per', 'IN'), ('company', 'NN'), ('rules', 'NNS'), ('i', 'VBP'), ('hereby', 'VBP'), ('put', 'VBN'), ('forward', 'RB'), ('a', 'DT'), ('one', 'CD'), ('months', 'NNS'), ('notice', 'IN'), ('my', 'PRP$'), ('last', 'JJ'), ('working', 'JJ'), ('day', 'NN'), ('being', 'VBG'), ('17', 'CD'), ('july', 'NN'), ('2014', 'CD'), ('from', 'IN'), ('now', 'RB')], [('will', 'MD'), ('remove', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('tomorrow', 'NN')], [('send', 'VB'), ('the', 'DT'), ('expense', 'NN'), ('report', 'NN'), ('before', 'IN'), ('30th', 'CD'), ('june', 'NN'), ('2014', 'CD')], [('xxxxxx', 'NN'), ('b', 'NN'), ('xxx', 'NNP'), ('xxxxxxxxxxx', 'NNP'), ('xx', 'NNP'), ('xxxxx', 'NNP'), ('scheduled', 'VBN'), ('for', 'IN'), ('tuesday', 'NN'), ('am', 'VBP'), ('e', 'RB'), ('xxxxxxxxxx', 'NNP'), ('cloud', 'NN'), ('based', 'VBN'), ('bcsdr', 'JJ'), ('solution', 'NN'), ('call', 'NN'), ('with', 'IN'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxx', 'IN'), ('they', 'PRP'), ('are', 'VBP'), ('coming', 'VBG'), ('for', 'IN'), ('funding', 'VBG'), ('soon', 'RB'), ('referred', 'VBN'), ('by', 'IN'), ('xxxxxxxx', 'NNP'), ('xx', 'NNP'), ('to', 'TO'), ('meet', 'VB'), ('xxxxxx', 'JJ'), ('sometime', 'RB'), ('this', 'DT'), ('coming', 'VBG'), ('week', 'NN')], [('xxx', 'JJ'), ('program', 'NN'), ('launch', 'NN'), ('xxx', 'NNP'), ('is', 'VBZ'), ('probably', 'RB'), ('monday', 'JJ'), ('or', 'CC'), ('tuesday', 'JJ'), ('or', 'CC'), ('any', 'DT'), ('time', 'NN'), ('next', 'JJ'), ('week', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('fine', 'JJ'), ('with', 'IN'), ('aug', 'JJ'), ('10th', 'JJ'), ('cubbon', 'NN'), ('and', 'CC'), ('june', 'NN'), ('28th', 'CD'), ('bylakere', 'NN')], [('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('week', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('make', 'VB'), ('phase', 'NN'), ('y', 'NN'), ('release', 'NN'), ('for', 'IN'), ('xxx', 'NN')], [('kindly', 'RB'), ('bring', 'VBG'), ('the', 'DT'), ('following', 'JJ'), ('documents', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('date', 'NN'), ('of', 'IN'), ('joining', 'VBG'), ('172014', 'CD')], [('xxxme', 'NNS'), ('know', 'VBP'), ('whens', 'RB'), ('good', 'JJ'), ('next', 'JJ'), ('week', 'NN')], [('well', 'RB'), ('talk', 'NN'), ('about', 'IN'), ('the', 'DT'), ('priority', 'NN'), ('for', 'IN'), ('this', 'DT'), ('tomorrow', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('expecting', 'VBG'), ('this', 'DT'), ('to', 'TO'), ('be', 'VB'), ('finished', 'VBN'), ('by', 'IN'), ('sunday', 'NN'), ('late', 'JJ'), ('afternoon', 'NN'), ('hopefully', 'RB')], [('we', 'PRP'), ('are', 'VBP'), ('meeting', 'VBG'), ('xxxx', 'NNP'), ('team', 'NN'), ('at', 'IN'), ('the', 'DT'), ('xxxxxxxxx', 'JJ'), ('event', 'NN'), ('on', 'IN'), ('wednesday', 'JJ'), ('11am', 'CD'), ('xxx', 'NN')], [('since', 'IN'), ('tomorrow', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('not', 'RB'), ('be', 'VB'), ('in', 'IN'), ('office', 'NN'), ('so', 'RB'), ('i', 'JJ'), ('no', 'DT')], [('the', 'DT'), ('xxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('anniversary', 'NN'), ('is', 'VBZ'), ('planned', 'VBN'), ('for', 'IN'), ('the', 'DT'), ('8th', 'CD'), ('of', 'IN'), ('august', 'NN'), ('at', 'IN'), ('the', 'DT'), ('xxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxx', 'NN')], [('i', 'NN'), ('will', 'MD'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('by', 'IN'), ('eod', 'VBG'), ('tomorrow', 'NN'), ('on', 'IN'), ('the', 'DT'), ('duplicate', 'JJ'), ('payment', 'NN')], [('as', 'IN'), ('agreed', 'VBN'), ('perhaps', 'RB'), ('it', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('good', 'JJ'), ('to', 'TO'), ('have', 'VB'), ('a', 'DT'), ('side', 'NN'), ('discussion', 'NN'), ('in', 'IN'), ('xxxxxxx', 'NNP'), ('next', 'JJ'), ('week', 'NN'), ('to', 'TO'), ('strategise', 'VB')], [('xxxxxx', 'NN'), ('is', 'VBZ'), ('busy', 'JJ'), ('tommorrow', 'NN'), ('so', 'RB'), ('will', 'MD'), ('not', 'RB'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('take', 'VB'), ('the', 'DT'), ('class', 'NN'), ('on', 'IN'), ('tomorrow', 'NN'), ('ie', 'NN'), ('15th', 'CD'), ('june', 'NN'), ('sunday', 'NN')], [('i', 'NN'), ('will', 'MD'), ('submit', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('you', 'PRP'), ('on', 'IN'), ('monday', 'NN'), ('as', 'RB'), ('soon', 'RB'), ('as', 'IN'), ('i', 'JJ'), ('ll', 'VBP'), ('reach', 'VBP'), ('back', 'RB')], [('btw', 'NN'), ('tomorrow', 'NN'), ('is', 'VBZ'), ('a', 'DT'), ('dry', 'JJ'), ('day', 'NN')], [('regarding', 'VBG'), ('the', 'DT'), ('xxxx', 'NN'), ('schedule', 'NN'), ('xxxxx', 'VBD'), ('27th', 'CD'), ('aug', 'NN'), ('xxx', 'VBD'), ('19th', 'CD'), ('dec', 'NN')], [('so', 'RB'), ('as', 'IN'), ('we', 'PRP'), ('promised', 'VBD'), ('to', 'TO'), ('client', 'NN'), ('for', 'IN'), ('release', 'NN'), ('on', 'IN'), ('6th', 'CD'), ('may', 'MD'), ('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('do', 'VB'), ('the', 'DT'), ('same', 'JJ')], [('we', 'PRP'), ('will', 'MD'), ('update', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('tomorrow', 'NN'), ('xxx', 'IN'), ('our', 'PRP$'), ('time', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('available', 'JJ'), ('all', 'DT'), ('five', 'CD'), ('days', 'NNS'), ('next', 'IN'), ('week', 'NN'), ('either', 'RB'), ('in', 'IN'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxx', 'NNP'), ('or', 'CC'), ('xxxxxxxx', 'NNP'), ('and', 'CC'), ('also', 'RB'), ('available', 'JJ'), ('on', 'IN'), ('saturday', 'JJ'), ('august', 'JJ'), ('2', 'CD')], [('will', 'MD'), ('be', 'VB'), ('there', 'RB'), ('tomorrow', 'NN'), ('morning', 'NN'), ('abt', 'NN'), ('8830', 'CD')], [('i', 'NN'), ('will', 'MD'), ('propose', 'VB'), ('that', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('a', 'DT'), ('meeting', 'NN'), ('with', 'IN'), ('them', 'PRP'), ('next', 'JJ'), ('week', 'NN')], [('so', 'RB'), ('ill', 'JJ'), ('probably', 'RB'), ('work', 'NN'), ('on', 'IN'), ('it', 'PRP'), ('slightly', 'RB'), ('later', 'RBR'), ('in', 'IN'), ('the', 'DT'), ('day', 'NN'), ('or', 'CC'), ('tomorrow', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('travelling', 'VBG'), ('overseas', 'RB'), ('until', 'IN'), ('30th', 'CD'), ('june', 'NN'), ('2014', 'CD'), ('and', 'CC'), ('have', 'VBP'), ('limited', 'VBN'), ('access', 'NN'), ('to', 'TO'), ('my', 'PRP$'), ('emails', 'NNS')], [('it', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('great', 'JJ'), ('if', 'IN'), ('you', 'PRP'), ('could', 'MD'), ('nominate', 'VB'), ('your', 'PRP$'), ('product', 'NN'), ('for', 'IN'), ('the', 'DT'), ('xxxxxx', 'NNP'), ('yy', 'NN'), ('awards', 'NNS'), ('latest', 'JJS'), ('by', 'IN'), ('10th', 'CD'), ('aug', 'NN'), ('2014', 'CD')], [('since', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('thinking', 'VBG'), ('of', 'IN'), ('starting', 'VBG'), ('this', 'DT'), ('july', 'NN'), ('yyy', 'JJ'), ('week', 'NN'), ('i', 'NNS'), ('need', 'VBP'), ('the', 'DT'), ('xxx', 'NN'), ('to', 'TO'), ('be', 'VB'), ('signed', 'VBN'), ('before', 'IN'), ('that', 'DT'), ('which', 'WDT'), ('was', 'VBD'), ('sent', 'VBN'), ('across', 'IN')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('away', 'RB'), ('on', 'IN'), ('travel', 'NN'), ('from', 'IN'), ('thu', 'JJ'), ('jun', 'NN'), ('5', 'CD'), ('thru', 'NN'), ('fri', 'NN'), ('jun', 'NN'), ('14', 'CD')], [('xxx', 'JJ'), ('xxxxxx', 'NNP'), ('hours', 'NNS'), ('friday', 'RB'), ('9301015', 'CD'), ('xxxx', 'NNS'), ('xxx', 'VBP')], [('xxx', 'IN'), ('me', 'PRP'), ('know', 'VBP'), ('if', 'IN'), ('you', 'PRP'), ('need', 'VBP'), ('any', 'DT'), ('other', 'JJ'), ('informationi', 'NN'), ('am', 'VBP'), ('the', 'DT'), ('volunteer', 'NN'), ('for', 'IN'), ('the', 'DT'), ('yyy', 'JJ'), ('start', 'NN'), ('i', 'NN'), ('can', 'MD'), ('give', 'VB'), ('you', 'PRP'), ('some', 'DT'), ('more', 'JJR'), ('details', 'NNS'), ('via', 'IN'), ('email', 'NN'), ('or', 'CC'), ('at', 'IN'), ('the', 'DT'), ('start', 'NN'), ('point', 'NN'), ('tomorrow', 'NN')], [('the', 'DT'), ('jawbone', 'NN'), ('one', 'CD'), ('can', 'MD'), ('be', 'VB'), ('delivered', 'VBN'), ('by', 'IN'), ('saturday', 'NN'), ('if', 'IN'), ('we', 'PRP'), ('order', 'NN'), ('now', 'RB')], [('xxxxxxx', 'NN'), ('xxxxxxx', 'NN'), ('thursday', 'NN'), ('june', 'VBZ'), ('26', 'CD'), ('2014', 'CD'), ('1100', 'CD'), ('am', 'VBP'), ('xxxyy', 'CD'), ('60mins', 'NNS')], [('please', 'VB'), ('add', 'VB'), ('this', 'DT'), ('quiz', 'NN'), ('to', 'TO'), ('the', 'DT'), ('surgery', 'NN'), ('lesson', 'NN'), ('for', 'IN'), ('tomorrow', 'NN')], [('it', 'PRP'), ('should', 'MD'), ('come', 'VB'), ('down', 'RP'), ('by', 'IN'), ('monday', 'NN'), ('due', 'JJ'), ('to', 'TO'), ('lagcpt', 'VB'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxxxxxxxxx', 'NNP'), ('is', 'VBZ'), ('1500', 'CD'), ('in', 'IN'), ('1', 'CD'), ('month', 'NN'), ('has', 'VBZ'), ('been', 'VBN'), ('about', 'IN'), ('15', 'CD'), ('days', 'NNS'), ('only', 'RB')], [('looking', 'VBG'), ('forward', 'RB'), ('to', 'TO'), ('putting', 'VBG'), ('a', 'DT'), ('bow', 'NN'), ('on', 'IN'), ('it', 'PRP'), ('this', 'DT'), ('week', 'NN')], [('probably', 'RB'), ('not', 'RB'), ('urgent', 'JJ'), ('for', 'IN'), ('tomorrows', 'NNS'), ('deadline', 'VBP'), ('but', 'CC'), ('will', 'MD'), ('add', 'VB'), ('to', 'TO'), ('trello', 'VB'), ('for', 'IN'), ('future', 'JJ')], [('for', 'IN'), ('the', 'DT'), ('friday', 'JJ'), ('deadline', 'NN'), ('let', 'VB'), ('us', 'PRP'), ('punt', 'VB'), ('on', 'IN'), ('a', 'DT'), ('registration', 'NN'), ('experience', 'NN'), ('for', 'IN'), ('the', 'DT'), ('phone', 'NN'), ('app', 'NN')], [('something', 'NN'), ('to', 'TO'), ('followup', 'VB'), ('with', 'IN'), ('xxxx', 'NN'), ('at', 'IN'), ('openstack', 'JJ'), ('summit', 'NN'), ('of', 'IN'), ('course', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('broader', 'JJR'), ('than', 'IN'), ('openstack', 'NN'), ('but', 'CC'), ('could', 'MD'), ('connect', 'VB'), ('from', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('week', 'NN'), ('discussion', 'NN')], [('xxx', 'NN'), ('is', 'VBZ'), ('coming', 'VBG'), ('back', 'RB'), ('from', 'IN'), ('xxxxxx', 'NN'), ('on', 'IN'), ('the', 'DT'), ('14th', 'CD'), ('of', 'IN'), ('july', 'NN'), ('and', 'CC'), ('i', 'JJ'), ('am', 'VBP'), ('coming', 'VBG'), ('back', 'RB'), ('on', 'IN'), ('the', 'DT'), ('9th', 'CD')], [('next', 'JJ'), ('week', 'NN'), ('is', 'VBZ'), ('our', 'PRP$'), ('first', 'JJ'), ('event', 'NN'), ('for', 'IN'), ('the', 'DT'), ('calendar', 'NN'), ('year', 'NN'), ('june', 'NN'), ('may', 'MD')], [('i', 'NN'), ('am', 'VBP'), ('seeing', 'VBG'), ('a', 'DT'), ('meeting', 'NN'), ('under', 'IN'), ('today', 'NN'), ('and', 'CC'), ('the', 'DT'), ('same', 'JJ'), ('one', 'CD'), ('under', 'IN'), ('tomorrow', 'NN'), ('too', 'RB')], [('xxxxxx', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('in', 'IN'), ('xxxxx', 'NNP'), ('aug', 'NN'), ('yyyyy', 'NN')], [('y', 'JJ'), ('pending', 'VBG'), ('issues', 'NNS'), ('i', 'VB'), ('will', 'MD'), ('be', 'VB'), ('tackling', 'VBG'), ('tomorrow', 'NN'), ('on', 'IN'), ('the', 'DT'), ('calendar', 'NN'), ('side', 'NN'), ('are', 'VBP'), ('recurrence', 'NN'), ('integration', 'NN'), ('xxxxx', 'NNP'), ('has', 'VBZ'), ('checked', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('ui', 'NN'), ('and', 'CC'), ('preview', 'NN'), ('screen', 'NN'), ('freshness', 'NN')], [('well', 'RB'), ('send', 'VB'), ('the', 'DT'), ('panel', 'NN'), ('report', 'NN'), ('next', 'IN'), ('week', 'NN'), ('tuesday', 'NN')], [('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('considered', 'VBN'), ('in', 'IN'), ('august', 'JJ'), ('14', 'CD'), ('salary', 'JJ'), ('calculation', 'NN')], [('sep', 'NN'), ('29', 'CD'), ('yy', 'NN'), ('oct', 'VBD'), ('1', 'CD'), ('3', 'CD'), ('days', 'NNS'), ('oct', 'RB'), ('23', 'CD'), ('1', 'CD'), ('day', 'NN'), ('nov', 'VBD'), ('14', 'CD'), ('1', 'CD'), ('day', 'NN'), ('dec', 'VBD'), ('26', 'CD'), ('1', 'CD'), ('day', 'NN')], [('alternately', 'RB'), ('visit', 'VB'), ('our', 'PRP$'), ('upcoming', 'VBG'), ('exhibition', 'NN'), ('on', 'IN'), ('the', 'DT'), ('yyy', 'NN'), ('and', 'CC'), ('2nd', 'CD'), ('of', 'IN'), ('august', 'NN'), ('to', 'TO'), ('take', 'VB'), ('a', 'DT'), ('look', 'NN'), ('at', 'IN'), ('the', 'DT'), ('collection', 'NN'), ('and', 'CC'), ('buy', 'VB')], [('please', 'VB'), ('make', 'VB'), ('every', 'DT'), ('effort', 'NN'), ('to', 'TO'), ('complete', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('august', 'VBG'), ('15', 'CD'), ('2014', 'CD')], [('as', 'IN'), ('per', 'IN'), ('our', 'PRP$'), ('discussion', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('schedule', 'VB'), ('xxxxxxs', 'NNP'), ('telephonic', 'JJ'), ('interview', 'NN'), ('for', 'IN'), ('tomorrow', 'NN'), ('x500', 'CD'), ('pm', 'NN')], [('ok', 'NNS'), ('so', 'RB'), ('ive', 'JJ'), ('booked', 'VBD'), ('the', 'DT'), ('car', 'NN'), ('from', 'IN'), ('yyyy', 'NN'), ('am', 'VBP'), ('on', 'IN'), ('saturday', 'NN'), ('to', 'TO'), ('yyyyy', 'VB'), ('pm', 'NN'), ('on', 'IN'), ('sunday', 'NN')], [('xxxxxxx', 'NN'), ('for', 'IN'), ('tomorrow', 'NN'), ('y', 'NN')], [('well', 'RB'), ('do', 'VB'), ('this', 'DT'), ('either', 'CC'), ('tonight', 'NN'), ('or', 'CC'), ('tomorrow', 'NN'), ('night', 'NN')], [('he', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('around', 'RB'), ('till', 'JJ'), ('june', 'NN'), ('16th', 'CD'), ('and', 'CC'), ('is', 'VBZ'), ('trying', 'VBG'), ('to', 'TO'), ('connectnetwork', 'VB'), ('with', 'IN'), ('startups', 'JJ'), ('investors', 'NNS'), ('and', 'CC'), ('people', 'NNS'), ('who', 'WP'), ('could', 'MD'), ('help', 'VB'), ('us', 'PRP'), ('with', 'IN'), ('our', 'PRP$'), ('product', 'NN')], [('two', 'CD'), ('people', 'NNS'), ('from', 'IN'), ('my', 'PRP$'), ('team', 'NN'), ('would', 'MD'), ('be', 'VB'), ('attending', 'VBG'), ('the', 'DT'), ('android', 'NN'), ('bootcamp', 'NN'), ('this', 'DT'), ('weekend', 'NN')], [('dear', 'JJ'), ('siri', 'NNS'), ('have', 'VBP'), ('contacted', 'VBN'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('and', 'CC'), ('xxx', 'NNP'), ('xxxx', 'NNP'), ('to', 'TO'), ('day', 'NN'), ('also', 'RB'), ('they', 'PRP'), ('asked', 'VBD'), ('me', 'PRP'), ('to', 'TO'), ('contact', 'VB'), ('next', 'JJ'), ('week', 'NN')], [('but', 'CC'), ('pls', 'JJ'), ('ensure', 'VB'), ('that', 'IN'), ('we', 'PRP'), ('roll', 'VBP'), ('all', 'DT'), ('invoices', 'NNS'), ('out', 'RP'), ('by', 'IN'), ('may', 'MD'), ('2', 'CD'), ('2014', 'CD')], [('as', 'IN'), ('the', 'DT'), ('xxxxx', 'NNP'), ('bank', 'NN'), ('is', 'VBZ'), ('working', 'VBG'), ('closely', 'RB'), ('with', 'IN'), ('mof', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('xxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxxxx', 'NN'), ('reforms', 'VBZ'), ('the', 'DT'), ('health', 'NN'), ('team', 'NN'), ('will', 'MD'), ('be', 'VB'), ('joining', 'VBG'), ('our', 'PRP$'), ('xxx', 'NN'), ('colleagues', 'NNS'), ('in', 'IN'), ('meeting', 'VBG'), ('with', 'IN'), ('the', 'DT'), ('dg', 'NN'), ('of', 'IN'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('next', 'JJ'), ('week', 'NN')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('back', 'RB'), ('by', 'IN'), ('sunday', 'NN'), ('late', 'JJ'), ('night', 'NN')], [('your', 'PRP$'), ('bill', 'NN'), ('is', 'VBZ'), ('due', 'JJ'), ('on', 'IN'), ('wed', 'JJ'), ('jun', 'NN'), ('25', 'CD'), ('xxxxxx', 'NN'), ('xxxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('in', 'IN'), ('the', 'DT'), ('minimum', 'JJ'), ('amount', 'NN'), ('of', 'IN'), ('yyyy', 'NN')], [('yes', 'RB'), ('currently', 'RB'), ('i', 'VBZ'), ('am', 'VBP'), ('with', 'IN'), ('yourstory', 'NN'), ('but', 'CC'), ('only', 'RB'), ('till', 'VBZ'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('month', 'NN')], [('after', 'IN'), ('all', 'DT'), ('it', 'PRP'), ('has', 'VBZ'), ('turned', 'VBN'), ('back', 'RP'), ('to', 'TO'), ('august', 'NN'), ('date', 'NN')], [('then', 'RB'), ('ill', 'VB'), ('submit', 'NN'), ('word', 'NN'), ('format', 'NN'), ('quote', 'NN'), ('and', 'CC'), ('proposal', 'NN'), ('by', 'IN'), ('tomorrow', 'NN')], [('i', 'NN'), ('will', 'MD'), ('let', 'VB'), ('you', 'PRP'), ('know', 'VB'), ('tomorrow', 'NN'), ('when', 'WRB'), ('he', 'PRP'), ('is', 'VBZ'), ('back', 'RB')], [('best', 'JJS'), ('wishes', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('release', 'NN'), ('next', 'JJ'), ('week', 'NN')], [('on', 'IN'), ('wed', 'VBN'), ('at', 'IN'), ('1400', 'CD'), ('there', 'EX'), ('is', 'VBZ'), ('a', 'DT'), ('meeting', 'NN'), ('tbc', 'NN'), ('with', 'IN'), ('xxxxxxx', 'NN')], [('will', 'MD'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('tomorrow', 'NN')], [('with', 'IN'), ('reference', 'NN'), ('to', 'TO'), ('todays', 'VB'), ('telecom', 'NN'), ('below', 'IN'), ('email', 'NN'), ('inform', 'NN'), ('you', 'PRP'), ('that', 'IN'), ('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('sending', 'VBG'), ('our', 'PRP$'), ('xxx', 'NN'), ('xxxxxx', 'NN'), ('xx', 'NN'), ('to', 'TO'), ('xxx', 'VB'), ('xxxxxxx', 'NNP'), ('tomorrow', 'NN')], [('npc', 'RB'), ('yyyy', 'RB'), ('limited', 'JJ'), ('seats', 'NNS'), ('left', 'VBD'), ('early', 'JJ'), ('xxxx', 'NN'), ('offer', 'NN'), ('closes', 'VBZ'), ('on', 'IN'), ('august', 'NN'), ('31', 'CD'), ('xxxxxxxx', 'NN'), ('now', 'RB')], [('the', 'DT'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('june', 'VBD'), ('17th', 'CD'), ('2014learning', 'CD'), ('how', 'WRB'), ('to', 'TO'), ('learn', 'VB'), ('is', 'VBZ'), ('lifes', 'JJ'), ('most', 'RBS'), ('important', 'JJ'), ('skill', 'NN')], [('he', 'PRP'), ('said', 'VBD'), ('their', 'PRP$'), ('exams', 'NNS'), ('got', 'VBD'), ('over', 'RB'), ('just', 'RB'), ('last', 'JJ'), ('week', 'NN'), ('and', 'CC'), ('he', 'PRP'), ('will', 'MD'), ('follow', 'VB'), ('it', 'PRP'), ('up', 'RP'), ('this', 'DT'), ('week', 'NN')], [('i', 'NN'), ('have', 'VBP'), ('an', 'DT'), ('interview', 'NN'), ('at', 'IN'), ('xxxxxxx', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('and', 'CC'), ('i', 'NN'), ('fly', 'VBP'), ('back', 'RB'), ('monday', 'JJ'), ('evening', 'NN')], [('we', 'PRP'), ('hope', 'VBP'), ('to', 'TO'), ('wrap', 'VB'), ('it', 'PRP'), ('up', 'RP'), ('by', 'IN'), ('tomorrow', 'NN'), ('morning', 'NN')], [('we', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('ship', 'VB'), ('all', 'DT'), ('changes', 'NNS'), ('by', 'IN'), ('tomorrow', 'NN')], [('xxxxx', 'NN'), ('has', 'VBZ'), ('some', 'DT'), ('work', 'NN'), ('in', 'IN'), ('his', 'PRP$'), ('office', 'NN'), ('so', 'RB'), ('he', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('available', 'JJ'), ('x600', 'JJ'), ('pm', 'NN'), ('tomorrow', 'NN'), ('5th', 'CD'), ('june', 'NN'), ('for', 'IN'), ('telecon', 'NN')], [('the', 'DT'), ('hr', 'JJ'), ('head', 'NN'), ('is', 'VBZ'), ('on', 'IN'), ('leave', 'JJ'), ('today', 'NN'), ('so', 'IN'), ('i', 'JJ'), ('will', 'MD'), ('sync', 'VB'), ('up', 'RP'), ('tomorrow', 'NN'), ('and', 'CC'), ('revert', 'NN'), ('to', 'TO'), ('you', 'PRP')], [('hi', 'NN'), ('xxxxxxxxxxxx', 'NNP'), ('xxx', 'NNP'), ('form', 'NN'), ('yy', 'NN'), ('will', 'MD'), ('be', 'VB'), ('issued', 'VBN'), ('around', 'IN'), ('15th', 'CD'), ('june', 'NN')], [('xxxxx', 'NN'), ('campaign', 'NN'), ('goes', 'VBZ'), ('live', 'JJ'), ('on', 'IN'), ('july', 'NN'), ('1', 'CD')], [('all', 'DT'), ('check', 'VBP'), ('the', 'DT'), ('xxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('of', 'IN'), ('xxxxx', 'NNP'), ('xxx', 'NNP'), ('on', 'IN'), ('6th', 'CD'), ('july', 'NN'), ('this', 'DT'), ('sunday', 'NN')], [('flight', 'NN'), ('tg', 'NN'), ('yyy', 'NN'), ('xxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxxxxxxxxx', 'NNP'), ('fri', 'VBD'), ('23', 'CD'), ('may', 'MD'), ('2014', 'CD'), ('departure', 'NN'), ('xxxxxx', 'NNP'), ('mm', 'NN'), ('mingaladon', 'VBD'), ('23', 'CD'), ('may', 'MD'), ('1455', 'CD'), ('xxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('th', 'NN'), ('xxxxxxxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('23', 'CD'), ('may', 'MD'), ('1650', 'VB')], [('i', 'NN'), ('realize', 'VBP'), ('it', 'PRP'), ('is', 'VBZ'), ('a', 'DT'), ('month', 'NN'), ('out', 'IN'), ('from', 'IN'), ('now', 'RB'), ('but', 'CC'), ('xxxxx', 'NNP'), ('doesnt', 'VBP'), ('return', 'NN'), ('to', 'TO'), ('the', 'DT'), ('office', 'NN'), ('until', 'IN'), ('aug', 'JJ'), ('18that', 'CD'), ('is', 'VBZ'), ('2', 'CD'), ('weeks', 'NNS'), ('beyond', 'IN'), ('his', 'PRP$'), ('return', 'NN')], [('she', 'PRP'), ('will', 'MD'), ('return', 'VB'), ('begin', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('an', 'DT'), ('era', 'NN'), ('of', 'IN'), ('mobile', 'JJ'), ('killer', 'NN'), ('apps', 'NN'), ('in', 'IN'), ('a', 'DT'), ('transforming', 'NN'), ('xxxxxxx', 'NN'), ('xxxxxxxxx', 'VBD'), ('17th', 'CD'), ('july', 'NN'), ('2014', 'CD'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('xxxxx', 'NN')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('back', 'RB'), ('in', 'IN'), ('office', 'NN'), ('on', 'IN'), ('30th', 'CD'), ('july', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('planning', 'VBG'), ('to', 'TO'), ('install', 'VB'), ('the', 'DT'), ('same', 'JJ'), ('at', 'IN'), ('our', 'PRP$'), ('customer', 'NN'), ('place', 'NN'), ('on', 'IN'), ('saturday', 'NN'), ('24052014', 'CD')], [('by', 'IN'), ('xxxxxx', 'NNP'), ('xx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('august', 'VBD'), ('13', 'CD'), ('at', 'IN'), ('253', 'CD'), ('pm', 'NN')], [('18th', 'CD'), ('june', 'NN'), ('2014', 'CD'), ('next', 'JJ'), ('gen', 'NN'), ('xxxxxxxx', 'NNP'), ('xxxxx', 'VBZ'), ('27th', 'CD'), ('june', 'NN'), ('2014', 'CD'), ('xxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxxx', 'VBD'), ('04th', 'CD'), ('july', 'NN'), ('2014', 'CD'), ('internet', 'NN'), ('of', 'IN'), ('things', 'NNS'), ('xxxxxxxxx', '$'), ('11th', 'CD'), ('july', 'NN'), ('2014', 'CD'), ('xxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('yy', 'NNP'), ('yyy', 'NN'), ('startups', 'NN'), ('presents', 'NNS'), ('tbtf', 'VBP'), ('a', 'DT'), ('premier', 'JJR'), ('series', 'NN'), ('of', 'IN'), ('technology', 'NN')], [('we', 'PRP'), ('propose', 'VBP'), ('to', 'TO'), ('come', 'VB'), ('with', 'IN'), ('all', 'DT'), ('originals', 'NNS'), ('on', 'IN'), ('monday', 'NN'), ('or', 'CC'), ('tuesday', 'NN'), ('on', 'IN'), ('your', 'PRP$'), ('confirmation', 'NN'), ('and', 'CC'), ('show', 'VB'), ('them', 'PRP'), ('to', 'TO'), ('h', 'VB'), ('d', 'JJ'), ('f', 'JJ'), ('c', 'NN'), ('and', 'CC'), ('or', 'CC'), ('your', 'PRP$'), ('advocate', 'JJ'), ('sign', 'NN'), ('the', 'DT'), ('agreement', 'NN'), ('collect', 'VBP'), ('the', 'DT'), ('xxxxxxx', 'NN'), ('and', 'CC'), ('return', 'VB'), ('if', 'IN'), ('possible', 'JJ'), ('same', 'JJ'), ('day', 'NN')], [('i', 'NN'), ('will', 'MD'), ('schedule', 'VB'), ('a', 'DT'), ('test', 'NN'), ('run', 'NN'), ('first', 'RB'), ('with', 'IN'), ('our', 'PRP$'), ('staging', 'VBG'), ('server', 'NN'), ('sometime', 'RB'), ('next', 'JJ'), ('week', 'NN')], [('the', 'DT'), ('first', 'JJ'), ('and', 'CC'), ('foremost', 'JJ'), ('priority', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('get', 'VB'), ('ready', 'JJ'), ('the', 'DT'), ('platform', 'NN'), ('for', 'IN'), ('xxxxxxxxx', 'NN'), ('and', 'CC'), ('xxxx', 'NNP'), ('yy', 'NN'), ('by', 'IN'), ('the', 'DT'), ('aug', 'NN'), ('8', 'CD'), ('2014', 'CD')], [('i', 'NN'), ('will', 'MD'), ('travelling', 'VBG'), ('this', 'DT'), ('friday', 'NN')], [('it', 'PRP'), ('officially', 'RB'), ('ends', 'VBZ'), ('on', 'IN'), ('june', 'NN'), ('4th', 'CD'), ('2014', 'CD')], [('xxxx', 'JJ'), ('xx', 'NNP'), ('xxxx', 'NNP'), ('july', 'NN')], [('project', 'NN'), ('xxxxx', 'NNP'), ('date', 'NN'), ('4th', 'CD'), ('august', 'NN'), ('2014', 'CD')], [('i', 'NN'), ('would', 'MD'), ('be', 'VB'), ('sharing', 'VBG'), ('effort', 'NN'), ('with', 'IN'), ('description', 'NN'), ('with', 'IN'), ('him', 'PRP'), ('tomorrow', 'NN')], [('i', 'NN'), ('think', 'VBP'), ('it', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('good', 'JJ'), ('idea', 'NN'), ('for', 'IN'), ('us', 'PRP'), ('to', 'TO'), ('first', 'RB'), ('go', 'VB'), ('over', 'RP'), ('some', 'DT'), ('business', 'NN'), ('items', 'NNS'), ('during', 'IN'), ('our', 'PRP$'), ('meeting', 'NN'), ('next', 'JJ'), ('week', 'NN'), ('or', 'CC'), ('even', 'RB'), ('do', 'VBP'), ('a', 'DT'), ('separate', 'JJ'), ('business', 'NN'), ('meeting', 'NN'), ('with', 'IN'), ('smaller', 'JJR'), ('group', 'NN'), ('before', 'IN'), ('next', 'JJ'), ('thursday', 'NN')], [('this', 'DT'), ('is', 'VBZ'), ('just', 'RB'), ('a', 'DT'), ('reminder', 'NN'), ('that', 'IN'), ('the', 'DT'), ('xxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxx', 'NNP'), ('will', 'MD'), ('take', 'VB'), ('place', 'NN'), ('on', 'IN'), ('saturday', 'NN'), ('august', 'VBP'), ('23rd', 'CD')], [('tomorrow', 'NN'), ('is', 'VBZ'), ('her', 'PRP$'), ('last', 'JJ'), ('class', 'NN'), ('using', 'VBG'), ('toc', 'NN'), ('as', 'IN'), ('she', 'PRP'), ('leaves', 'VBZ'), ('to', 'TO'), ('xxxxxxxxx', 'VB'), ('and', 'CC'), ('will', 'MD'), ('back', 'VB'), ('only', 'RB'), ('after', 'IN'), ('xxxxxxxxxxxxx', 'VB'), ('it', 'PRP'), ('be', 'VB'), ('dealt', 'VBN'), ('with', 'IN'), ('on', 'IN'), ('an', 'DT'), ('urgent', 'JJ'), ('basis', 'NN'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('have', 'VBP'), ('her', 'PRP$'), ('happy', 'JJ'), ('tomorrowsent', 'NN'), ('from', 'IN'), ('my', 'PRP$'), ('i', 'NN'), ('phone', 'NN')], [('at', 'IN'), ('1700', 'CD'), ('hrs', 'NN'), ('on', 'IN'), ('5', 'CD'), ('aug', 'NN'), ('2014', 'CD'), ('tuesday', 'NN')], [('date', 'NN'), ('yyyyyyyy', 'NN'), ('sunday', 'JJ'), ('xxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('speaking', 'VBG'), ('to', 'TO'), ('an', 'DT'), ('exadobe', 'NN'), ('designer', 'NN'), ('as', 'IN'), ('a', 'DT'), ('special', 'JJ'), ('case', 'NN'), ('for', 'IN'), ('xxxxxxx', 'NN'), ('and', 'CC'), ('they', 'PRP'), ('told', 'VBD'), ('me', 'PRP'), ('that', 'IN'), ('they', 'PRP'), ('dont', 'VBP'), ('work', 'NN'), ('on', 'IN'), ('weekends', 'NNS'), ('so', 'RB'), ('waiting', 'VBG'), ('until', 'IN'), ('sunday', 'JJ'), ('night', 'NN'), ('to', 'TO'), ('speak', 'VB'), ('to', 'TO'), ('them', 'PRP')], [('i', 'NNS'), ('have', 'VBP'), ('surgery', 'NN'), ('scheduled', 'VBN'), ('for', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('ill', 'RB'), ('carve', 'VB'), ('out', 'RP'), ('time', 'NN'), ('to', 'TO'), ('file', 'VB'), ('tonight', 'NN'), ('or', 'CC'), ('tomorrow', 'NN'), ('as', 'IN'), ('intent', 'NN'), ('to', 'TO'), ('use', 'VB')], [('here', 'RB'), ('are', 'VBP'), ('some', 'DT'), ('mobile', 'JJ'), ('comments', 'NNS'), ('website', 'WDT'), ('will', 'MD'), ('follow', 'VB'), ('tomorrow', 'NN')], [('finally', 'RB'), ('but', 'CC'), ('not', 'RB'), ('least', 'JJS'), ('our', 'PRP$'), ('2015', 'CD'), ('annual', 'JJ'), ('conference', 'NN'), ('will', 'MD'), ('be', 'VB'), ('held', 'VBN'), ('in', 'IN'), ('xxx', 'JJ'), ('xxxxxxxxx', 'NN'), ('from', 'IN'), ('july', 'NN'), ('yyyyy', 'JJ'), ('2015', 'CD'), ('at', 'IN'), ('the', 'DT'), ('xxxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('y', 'NN')], [('the', 'DT'), ('reporter', 'NN'), ('will', 'MD'), ('do', 'VB'), ('a', 'DT'), ('follow', 'VB'), ('up', 'RP'), ('with', 'IN'), ('xxxxx', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('xxx', 'NN'), ('xxxxxx', 'NN'), ('told', 'VBD'), ('me', 'PRP'), ('that', 'IN'), ('he', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('showcase', 'VB'), ('the', 'DT'), ('final', 'JJ'), ('xx', 'NN'), ('tomorrow', 'NN'), ('am', 'VBP')], [('hi', 'NN'), ('all', 'DT'), ('looking', 'VBG'), ('forward', 'RB'), ('to', 'TO'), ('meeting', 'VBG'), ('you', 'PRP'), ('all', 'DT'), ('in', 'IN'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('next', 'JJ'), ('week', 'NN')], [('xx', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('out', 'IN'), ('of', 'IN'), ('office', 'NN'), ('today', 'NN'), ('and', 'CC'), ('would', 'MD'), ('be', 'VB'), ('interested', 'JJ'), ('to', 'TO'), ('have', 'VB'), ('call', 'NN'), ('and', 'CC'), ('understand', 'VB'), ('more', 'JJR'), ('on', 'IN'), ('these', 'DT'), ('areas', 'NNS'), ('sometime', 'RB'), ('tomorrow', 'NN')], [('today', 'NN'), ('discussion', 'NN'), ('with', 'IN'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('to', 'TO'), ('xxx', 'VB'), ('let', 'VB'), ('us', 'PRP'), ('discuss', 'VB'), ('the', 'DT'), ('business', 'NN'), ('expansion', 'NN'), ('plans', 'NNS'), ('tomorrow', 'NN')], [('since', 'IN'), ('the', 'DT'), ('final', 'JJ'), ('is', 'VBZ'), ('pushed', 'VBN'), ('to', 'TO'), ('sunday', 'VB'), ('morning', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('nets', 'NNS'), ('on', 'IN'), ('saturday', 'JJ'), ('morning', 'NN'), ('at', 'IN'), ('xxxx', 'NN')], [('i', 'NN'), ('will', 'MD'), ('come', 'VB'), ('and', 'CC'), ('help', 'VB'), ('on', 'IN'), ('the', 'DT'), ('2nd', 'CD'), ('july', 'NN')], [('pls', 'NNS'), ('have', 'VBP'), ('it', 'PRP'), ('fixed', 'VBD'), ('the', 'DT'), ('client', 'NN'), ('sees', 'VBZ'), ('it', 'PRP'), ('tomorrow', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('surat', 'VB'), ('tomorrow', 'NN'), ('for', 'IN'), ('couple', 'NN'), ('of', 'IN'), ('school', 'NN'), ('demos', 'NNS'), ('and', 'CC'), ('training', 'VBG'), ('a', 'DT'), ('potential', 'JJ'), ('partner', 'NN'), ('xxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxxx', 'NN'), ('from', 'IN'), ('xxx', 'NN'), ('should', 'MD'), ('email', 'VB'), ('the', 'DT'), ('content', 'NN'), ('in', 'IN'), ('next', 'JJ'), ('one', 'CD'), ('hour', 'NN')], [('this', 'DT'), ('is', 'VBZ'), ('to', 'TO'), ('inform', 'VB'), ('you', 'PRP'), ('all', 'PDT'), ('that', 'IN'), ('our', 'PRP$'), ('new', 'JJ'), ('office', 'NN'), ('timing', 'NN'), ('is', 'VBZ'), ('yyyy', 'RB'), ('am', 'VBP'), ('to', 'TO'), ('yyyy', 'VB'), ('xxxx', 'JJ'), ('every', 'DT'), ('xxxx', 'NN'), ('has', 'VBZ'), ('to', 'TO'), ('follow', 'VB'), ('this', 'DT'), ('timing', 'NN'), ('from', 'IN'), ('monday', 'JJ'), ('onward', 'NN')], [('my', 'PRP$'), ('colleague', 'NN'), ('xxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('and', 'CC'), ('i', 'VB'), ('will', 'MD'), ('be', 'VB'), ('traveling', 'VBG'), ('to', 'TO'), ('xxxxx', 'NNP'), ('next', 'JJ'), ('week', 'NN'), ('for', 'IN'), ('the', 'DT'), ('xx', 'NNP'), ('xxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxx', 'NN')], [('we', 'PRP'), ('invite', 'VBP'), ('you', 'PRP'), ('to', 'TO'), ('attend', 'VB'), ('the', 'DT'), ('alumni', 'NNS'), ('meet', 'NN'), ('on', 'IN'), ('yyst', 'NN'), ('june', 'NN'), ('2014', 'CD'), ('and', 'CC'), ('request', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('fill', 'VB'), ('the', 'DT'), ('details', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('registration', 'NN'), ('form', 'NN'), ('posted', 'VBD'), ('below', 'IN')], [('i', 'NN'), ('will', 'MD'), ('need', 'VB'), ('to', 'TO'), ('go', 'VB'), ('to', 'TO'), ('the', 'DT'), ('warehouse', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('scan', 'VB'), ('the', 'DT'), ('print', 'NN')], [('let', 'VB'), ('us', 'PRP'), ('do', 'VB'), ('it', 'PRP'), ('today', 'NN'), ('positively', 'RB'), ('by', 'IN'), ('yyyy', 'NN'), ('pm', 'NN'), ('to', 'TO'), ('take', 'VB'), ('lead', 'NN'), ('for', 'IN'), ('tomorrows', 'NNS'), ('trainin', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('add', 'VB'), ('these', 'DT'), ('to', 'TO'), ('our', 'PRP$'), ('next', 'JJ'), ('week', 'NN'), ('sprint', 'NN')], [('since', 'IN'), ('i', 'NN'), ('am', 'VBP'), ('not', 'RB'), ('back', 'RB'), ('till', 'VB'), ('early', 'JJ'), ('aug', 'NN'), ('we', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('figure', 'VB'), ('out', 'RP'), ('how', 'WRB'), ('to', 'TO'), ('make', 'VB'), ('the', 'DT'), ('actual', 'JJ'), ('payment', 'NN')], [('maintaince', 'NN'), ('charges', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('uploaded', 'VBN'), ('through', 'IN'), ('online', 'NN'), ('today', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('will', 'MD'), ('send', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('cheques', 'NNS'), ('for', 'IN'), ('credit', 'NN'), ('card', 'NN'), ('statement', 'NN'), ('tomorrow', 'NN'), ('to', 'TO'), ('your', 'PRP$'), ('office', 'NN'), ('for', 'IN'), ('signature', 'NN')], [('the', 'DT'), ('latest', 'JJS'), ('version', 'NN'), ('should', 'MD'), ('be', 'VB'), ('up', 'RP'), ('not', 'RB'), ('later', 'RB'), ('than', 'IN'), ('monday', 'RB'), ('25th', 'CD'), ('aug', 'NN')], [('this', 'DT'), ('is', 'VBZ'), ('just', 'RB'), ('to', 'TO'), ('give', 'VB'), ('you', 'PRP'), ('a', 'DT'), ('heads', 'NNS'), ('up', 'RP'), ('for', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('xxx', 'NN'), ('meeting', 'NN'), ('scheduled', 'VBN'), ('on', 'IN'), ('saturday', 'JJ'), ('24th', 'CD'), ('may', 'MD'), ('2014', 'CD'), ('in', 'IN'), ('xxxx', 'NN')], [('great', 'JJ'), ('incentive', 'NN'), ('to', 'TO'), ('join', 'VB'), ('the', 'DT'), ('run', 'NN'), ('tomorrow', 'NN')], [('make', 'VB'), ('it', 'PRP'), ('work', 'VB'), ('by', 'IN'), ('tomorrow', 'NN'), ('and', 'CC'), ('give', 'VB'), ('both', 'DT'), ('xx', 'NNP'), ('and', 'CC'), ('xxx', 'VB'), ('the', 'DT'), ('access', 'NN'), ('they', 'PRP'), ('have', 'VBP'), ('been', 'VBN'), ('asking', 'VBG'), ('for', 'IN')], [('will', 'MD'), ('return', 'VB'), ('your', 'PRP$'), ('call', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('having', 'VBG'), ('the', 'DT'), ('chapter', 'NN'), ('by', 'IN'), ('friday', 'NN'), ('is', 'VBZ'), ('fine', 'JJ')], [('i', 'NN'), ('will', 'MD'), ('see', 'VB'), ('him', 'PRP'), ('wed', 'VB'), ('at', 'IN'), ('an', 'DT'), ('event', 'NN'), ('at', 'IN'), ('stanford', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('pleased', 'JJ'), ('to', 'TO'), ('invite', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('our', 'PRP$'), ('end', 'NN'), ('of', 'IN'), ('season', 'NN'), ('sale', 'NN'), ('starting', 'VBG'), ('tomorrow', 'NN'), ('26th', 'CD'), ('june', 'NN'), ('thursday', 'NN'), ('from', 'IN'), ('11am', 'CD'), ('till', 'NN'), ('9', 'CD'), ('pm', 'NN'), ('at', 'IN'), ('our', 'PRP$'), ('boutique', 'NN'), ('in', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('mall', 'NN'), ('xxxxxxx', 'NN')], [('as', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('planned', 'VBN'), ('earlier', 'RBR'), ('we', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('release', 'VB'), ('our', 'PRP$'), ('mobile', 'JJ'), ('xxx', 'NN'), ('xxxx', 'NNP'), ('version', 'NN'), ('in', 'IN'), ('this', 'DT'), ('week', 'NN')], [('we', 'PRP'), ('have', 'VBP'), ('critical', 'JJ'), ('releases', 'NNS'), ('this', 'DT'), ('week', 'NN'), ('for', 'IN'), ('xxxxxxx', 'NN'), ('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('y', 'VBN'), ('xxxxxx', 'JJ'), ('5s', 'CD'), ('or', 'CC'), ('ipod', 'VB'), ('y', 'NN'), ('with', 'IN'), ('xxx', 'NNP'), ('y', 'NNP'), ('till', 'NN'), ('friday', 'NN')], [('xxxxxxx', 'NN'), ('has', 'VBZ'), ('cleared', 'VBN'), ('2nd', 'CD'), ('round', 'NN'), ('and', 'CC'), ('scheduled', 'VBN'), ('to', 'TO'), ('talk', 'VB'), ('to', 'TO'), ('xxxxxxx', 'VB'), ('tomorrow', 'NN')], [('i', 'NNS'), ('have', 'VBP'), ('many', 'JJ'), ('comingup', 'NNS'), ('this', 'DT'), ('week', 'NN'), ('including', 'VBG'), ('one', 'CD'), ('later', 'RB'), ('today', 'NN'), ('evening', 'VBG')], [('scheduled', 'VBN'), ('for', 'IN'), ('thursday', 'NN'), ('at', 'IN'), ('4', 'CD'), ('pm', 'NN')], [('mo', 'NN'), ('xxxx', 'NN'), ('and', 'CC'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('xxx', 'NN'), ('from', 'IN'), ('monday', 'NN'), ('to', 'TO'), ('wednesday', 'VB'), ('next', 'JJ'), ('week', 'NN'), ('as', 'IN'), ('our', 'PRP$'), ('meeting', 'NN'), ('with', 'IN'), ('xxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('and', 'CC'), ('other', 'JJ'), ('officials', 'NNS'), ('of', 'IN'), ('xxx', 'NN'), ('has', 'VBZ'), ('moved', 'VBN')], [('we', 'PRP'), ('wanted', 'VBD'), ('to', 'TO'), ('let', 'VB'), ('you', 'PRP'), ('know', 'VB'), ('that', 'IN'), ('your', 'PRP$'), ('12', 'CD'), ('month', 'NN'), ('introductory', 'NN'), ('xxx', 'NNP'), ('xxxx', 'NNP'), ('xxxx', 'NNP'), ('usage', 'NN'), ('is', 'VBZ'), ('set', 'VBN'), ('to', 'TO'), ('expire', 'VB'), ('on', 'IN'), ('may', 'MD'), ('31', 'CD'), ('2014', 'CD'), ('for', 'IN'), ('account', 'NN'), ('yyyyyyyyyyyy', 'NN')], [('in', 'IN'), ('case', 'NN'), ('you', 'PRP'), ('need', 'VBP'), ('a', 'DT'), ('physical', 'JJ'), ('copy', 'NN'), ('of', 'IN'), ('the', 'DT'), ('annual', 'JJ'), ('xxxxxx', 'NN'), ('2014', 'CD'), ('of', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('you', 'PRP'), ('could', 'MD'), ('accordingly', 'RB'), ('reply', 'VB'), ('to', 'TO'), ('this', 'DT'), ('email', 'NN'), ('or', 'CC'), ('send', 'VB'), ('your', 'PRP$'), ('request', 'NN'), ('by', 'IN'), ('a', 'DT'), ('separate', 'JJ'), ('post', 'NN'), ('before', 'IN'), ('the', 'DT'), ('17th', 'CD'), ('of', 'IN'), ('june', 'NN'), ('2014', 'CD')], [('xxxxx', 'NN'), ('is', 'VBZ'), ('back', 'RB'), ('this', 'DT'), ('week', 'NN'), ('will', 'MD'), ('work', 'VB'), ('with', 'IN'), ('her', 'PRP'), ('over', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('2', 'CD'), ('days', 'NNS'), ('send', 'VBP'), ('out', 'RP'), ('feedback', 'NN')], [('our', 'PRP$'), ('xxx', 'NN'), ('may', 'MD'), ('be', 'VB'), ('in', 'IN'), ('july', 'NN'), ('2014', 'CD')], [('textcleaning', 'VBG'), ('today', 'NN'), ('till', 'NN'), ('monday', 'NN')], [('i', 'NN'), ('will', 'MD'), ('synch', 'VB'), ('with', 'IN'), ('kamal', 'JJ'), ('later', 'RB'), ('this', 'DT'), ('week', 'NN')], [('ooto', 'NN'), ('on', 'IN'), ('friday', 'JJ'), ('ie', 'JJ'), ('2nd', 'CD'), ('may', 'MD'), ('and', 'CC'), ('leaving', 'VBG'), ('early', 'JJ'), ('today', 'NN'), ('to', 'TO'), ('catch', 'VB'), ('bus', 'NN'), ('as', 'IN'), ('i', 'NN'), ('am', 'VBP'), ('going', 'VBG'), ('my', 'PRP$'), ('home', 'NN'), ('town', 'NN')], [('arun', 'RB'), ('qa', 'RB'), ('s', 'JJ'), ('reference', 'NN'), ('who', 'WP'), ('can', 'MD'), ('join', 'VB'), ('asap', 'JJ'), ('is', 'VBZ'), ('coming', 'VBG'), ('on', 'IN'), ('monday', 'NN')], [('the', 'DT'), ('office', 'NN'), ('of', 'IN'), ('xxxxx', 'NNP'), ('xxxxxxxxxxxx', 'NNP'), ('has', 'VBZ'), ('requested', 'VBN'), ('him', 'PRP'), ('to', 'TO'), ('visit', 'VB'), ('in', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('week', 'NN'), ('of', 'IN'), ('june', 'NN'), ('when', 'WRB'), ('they', 'PRP'), ('will', 'MD'), ('inform', 'VB'), ('on', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('date', 'NN'), ('of', 'IN'), ('hearing', 'NN'), ('in', 'IN'), ('the', 'DT'), ('matter', 'NN')], [('currently', 'RB'), ('we', 'PRP'), ('are', 'VBP'), ('tracking', 'VBG'), ('yy', 'PRP'), ('key', 'JJ'), ('words', 'NNS'), ('and', 'CC'), ('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('adding', 'VBG'), ('yy', 'PRP'), ('more', 'RBR'), ('keywords', 'NNS'), ('this', 'DT'), ('week', 'NN')], [('midjuly', 'NN'), ('works', 'VBZ'), ('well', 'RB'), ('since', 'IN'), ('i', 'NN'), ('will', 'MD'), ('also', 'RB'), ('be', 'VB'), ('back', 'RB'), ('from', 'IN'), ('my', 'PRP$'), ('travels', 'NNS'), ('then', 'RB'), ('adding', 'VBG'), ('xxxx', 'NN'), ('to', 'TO'), ('set', 'VB'), ('it', 'PRP'), ('up', 'RP'), ('for', 'IN'), ('week', 'NN'), ('of', 'IN'), ('july', 'NN'), ('21', 'CD')], [('at', 'IN'), ('xxxxxxx', 'NNP'), ('we', 'PRP'), ('are', 'VBP'), ('ready', 'JJ'), ('with', 'IN'), ('the', 'DT'), ('demo', 'NN'), ('and', 'CC'), ('beta', 'NN'), ('product', 'NN'), ('will', 'MD'), ('be', 'VB'), ('available', 'JJ'), ('in', 'IN'), ('mid', 'NN'), ('august', 'NN')], [('xxx', 'JJ'), ('et', 'NN'), ('al', 'NNS'), ('are', 'VBP'), ('coming', 'VBG'), ('in', 'IN'), ('tomorrow', 'NN'), ('to', 'TO'), ('sign', 'VB'), ('the', 'DT'), ('documents', 'NNS')], [('with', 'IN'), ('reference', 'NN'), ('to', 'TO'), ('our', 'PRP$'), ('forthcoming', 'VBG'), ('premier', 'JJ'), ('security', 'NN'), ('event', 'NN'), ('an', 'DT'), ('intimate', 'NN'), ('learning', 'NN'), ('high', 'JJ'), ('level', 'NN'), ('networking', 'VBG'), ('forum', 'JJ'), ('xxxxxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('2014', 'CD'), ('scheduled', 'VBD'), ('to', 'TO'), ('happen', 'VB'), ('at', 'IN'), ('xxxxx', 'PDT'), ('the', 'DT'), ('lalit', 'NN'), ('xxxxxx', 'NN'), ('on', 'IN'), ('6th', 'CD'), ('november', 'NNS'), ('y', 'NN')], [('pilot', 'NN'), ('will', 'MD'), ('begin', 'VB'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('month', 'NN')], [('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('him', 'PRP'), ('tomorrow', 'NN'), ('and', 'CC'), ('let', 'VB'), ('you', 'PRP'), ('guys', 'VB'), ('know', 'VB'), ('how', 'WRB'), ('it', 'PRP'), ('went', 'VBD')], [('xxxxxxxx', 'NN'), ('to', 'TO'), ('have', 'VB'), ('a', 'DT'), ('get', 'NN'), ('together', 'RB'), ('at', 'IN'), ('home', 'NN'), ('on', 'IN'), ('sunday', 'JJ'), ('evening', 'NN'), ('towards', 'NNS'), ('niyatis', 'RB'), ('birthday', 'VBP'), ('on', 'IN'), ('monday', 'NN')], [('please', 'VB'), ('note', 'NN'), ('that', 'IN'), ('the', 'DT'), ('due', 'JJ'), ('date', 'NN'), ('for', 'IN'), ('remittance', 'NN'), ('of', 'IN'), ('tds', 'NN'), ('for', 'IN'), ('march', 'NN'), ('14', 'CD'), ('and', 'CC'), ('bills', 'NNS'), ('pertaining', 'VBG'), ('to', 'TO'), ('last', 'JJ'), ('fy', 'NN'), ('yyyyyyy', 'NN'), ('which', 'WDT'), ('are', 'VBP'), ('accounted', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('month', 'NN'), ('of', 'IN'), ('april', '$'), ('14', 'CD'), ('tds', 'NN'), ('needs', 'NNS'), ('to', 'TO'), ('be', 'VB'), ('remitted', 'VBN'), ('before', 'IN'), ('30th', 'CD'), ('april', 'NN'), ('14', 'CD')], [('so', 'RB'), ('yyyy', 'JJ'), ('pm', 'NN'), ('monday', 'NN'), ('will', 'MD'), ('be', 'VB'), ('yyyy', 'VBN'), ('am', 'VBP'), ('tuesday', 'JJ'), ('my', 'PRP$'), ('time', 'NN')], [('tuesday', 'NN'), ('june', 'VBZ'), ('17', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('1000', 'CD'), ('am', 'VBP'), ('pt100', 'JJ'), ('pm', 'NN'), ('xx', 'NNP'), ('xxxxxxxx', 'VBZ'), ('60', 'CD'), ('minutes', 'NNS'), ('with', 'IN'), ('cloud', 'NN'), ('there', 'EX'), ('is', 'VBZ'), ('no', 'DT'), ('top', 'JJ'), ('performing', 'NN'), ('or', 'CC'), ('fastest', 'JJS'), ('cloud', 'JJ'), ('infrastructure', 'NN')], [('so', 'RB'), ('if', 'IN'), ('yyyy', 'NN'), ('is', 'VBZ'), ('a', 'DT'), ('holiday', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('deliver', 'VB'), ('that', 'DT'), ('on', 'IN'), ('friday', 'NN'), ('1082014', 'CD')], [('we', 'PRP'), ('will', 'MD'), ('post', 'VB'), ('a', 'DT'), ('miniquiz', 'NN'), ('next', 'JJ'), ('week', 'NN'), ('quiz', 'NN'), ('y', 'NN'), ('that', 'WDT'), ('will', 'MD'), ('serve', 'VB'), ('as', 'IN'), ('a', 'DT'), ('course', 'NN')], [('i', 'NNS'), ('have', 'VBP'), ('many', 'JJ'), ('comingup', 'NNS'), ('this', 'DT'), ('week', 'NN'), ('including', 'VBG'), ('one', 'CD'), ('later', 'RB'), ('today', 'NN'), ('evening', 'VBG')], [('sure', 'RB'), ('will', 'MD'), ('set', 'VB'), ('up', 'RP'), ('an', 'DT'), ('auto', 'NN'), ('forward', 'NN'), ('and', 'CC'), ('reset', 'VB'), ('account', 'NN'), ('once', 'RB'), ('i', 'JJ'), ('get', 'VBP'), ('to', 'TO'), ('xx', 'VB'), ('tomorrow', 'NN')], [('xxxxxxxx', 'NN'), ('now', 'RB'), ('for', 'IN'), ('xxxxxx', 'NN'), ('may', 'MD'), ('yyyyy', 'VB'), ('2014xxxxxs', 'CD'), ('xxxxxxx', 'NNP'), ('xxxxxxxxxxxxxxxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('presented', 'VBN'), ('by', 'IN'), ('tie', 'JJ'), ('sv', 'NN'), ('a', 'DT'), ('volunteer', 'NN'), ('led', 'VBN'), ('nonprofit', 'JJ'), ('organization', 'NN')], [('zee', 'NN'), ('will', 'MD'), ('have', 'VB'), ('a', 'DT'), ('call', 'NN'), ('this', 'DT'), ('week', 'NN'), ('for', 'IN'), ('onboarding', 'VBG'), ('and', 'CC'), ('then', 'RB'), ('take', 'VB'), ('it', 'PRP'), ('up', 'RP')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('meeting', 'VBG'), ('with', 'IN'), ('them', 'PRP'), ('later', 'RB'), ('this', 'DT'), ('week', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('opportunities', 'NNS'), ('to', 'TO'), ('profile', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('the', 'DT'), ('edx', 'NN'), ('blog', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('wrapping', 'VBG'), ('our', 'PRP$'), ('work', 'NN'), ('with', 'IN'), ('xxxx', 'JJ'), ('by', 'IN'), ('this', 'DT'), ('month', 'NN'), ('end', 'NN'), ('as', 'IN'), ('we', 'PRP'), ('require', 'VBP')], [('dear', 'JJ'), ('xxx', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('investigate', 'VB'), ('this', 'DT'), ('n', 'NN'), ('revert', 'VB'), ('back', 'RB'), ('tomorrow', 'NN')], [('i', 'VB'), ('shall', 'MD'), ('be', 'VB'), ('part', 'NN'), ('of', 'IN'), ('the', 'DT'), ('session', 'NN'), ('happening', 'VBG'), ('this', 'DT'), ('sunday', 'NN'), ('in', 'IN'), ('kioc', 'NN')], [('saturday', 'JJ'), ('july', 'RB'), ('26', 'CD'), ('2014', 'CD'), ('xxxxx', 'IN'), ('your', 'PRP$'), ('package', 'NN'), ('at', 'IN')], [('so', 'IN'), ('we', 'PRP'), ('might', 'MD'), ('have', 'VB'), ('to', 'TO'), ('meet', 'VB'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN')], [('i', 'NN'), ('did', 'VBD'), ('have', 'VB'), ('a', 'DT'), ('call', 'NN'), ('with', 'IN'), ('xxxxxxx', 'NN'), ('on', 'IN'), ('saturday', 'JJ'), ('evening', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('release', 'VB'), ('phase', 'NN'), ('y', 'NN'), ('within', 'IN'), ('this', 'DT'), ('week', 'NN')], [('i', 'NNS'), ('need', 'VBP'), ('raghavendra', 'NN'), ('for', 'IN'), ('around', 'IN'), ('2', 'CD'), ('hours', 'NNS'), ('today', 'NN'), ('for', 'IN'), ('vdonce', 'NN'), ('a', 'DT'), ('the', 'DT'), ('initial', 'JJ'), ('cut', 'NN'), ('is', 'VBZ'), ('prepared', 'VBN'), ('he', 'PRP'), ('will', 'MD'), ('just', 'RB'), ('have', 'VB'), ('to', 'TO'), ('guide', 'VB'), ('xxxxx', 'NN')], [('soe', 'NN'), ('i', 'VB'), ('shall', 'MD'), ('be', 'VB'), ('out', 'IN'), ('of', 'IN'), ('office', 'NN'), ('first', 'RB'), ('half', 'NN'), ('of', 'IN'), ('the', 'DT'), ('day', 'NN'), ('tomorrow', 'NN')], [('of', 'IN'), ('course', 'NN'), ('were', 'VBD'), ('still', 'RB'), ('open', 'JJ'), ('for', 'IN'), ('something', 'NN'), ('post', 'NN'), ('may', 'MD'), ('18th', 'VB')], [('as', 'IN'), ('you', 'PRP'), ('know', 'VBP'), ('the', 'DT'), ('story', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('filed', 'VBN'), ('for', 'IN'), ('the', 'DT'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('so', 'IN'), ('we', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('share', 'NN'), ('the', 'DT'), ('release', 'NN'), ('with', 'IN'), ('xxxxx', 'NNP'), ('soon', 'RB')], [('when', 'WRB'), ('tue', 'NN'), ('may', 'MD'), ('6', 'CD'), ('2014', 'CD'), ('1145am', 'CD'), ('2', 'CD'), ('pm', 'NN'), ('xxxxxxx', 'NN'), ('time', 'NN'), ('where', 'WRB'), ('the', 'DT'), ('fabric', 'NN'), ('xxxxxx', 'NN'), ('who', 'WP')], [('from', 'IN'), ('tomorrow', 'NN'), ('onward', 'IN'), ('we', 'PRP'), ('will', 'MD'), ('come', 'VB'), ('at', 'IN'), ('8', 'CD'), ('am', 'VBP'), ('until', 'IN'), ('this', 'DT'), ('project', 'NN'), ('gets', 'VBZ'), ('over', 'IN'), ('and', 'CC'), ('leave', 'VB'), ('early', 'JJ')], [('i', 'NN'), ('contacted', 'VBD'), ('manish', 'JJ'), ('and', 'CC'), ('he', 'PRP'), ('said', 'VBD'), ('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('done', 'VBN'), ('this', 'DT'), ('weekend', 'NN'), ('but', 'CC'), ('this', 'DT'), ('is', 'VBZ'), ('really', 'RB'), ('urgent', 'JJ')], [('payload', 'NN'), ('over', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('week', 'NN'), ('we', 'PRP'), ('all', 'DT'), ('need', 'VBP'), ('to', 'TO'), ('give', 'VB'), ('inputs', 'NNS'), ('and', 'CC'), ('come', 'VB'), ('up', 'RP'), ('with', 'IN'), ('the', 'DT'), ('xxxxxxxxxxxx', 'NN'), ('of', 'IN'), ('content', 'JJ'), ('xxxxxxxxxx', 'JJ'), ('structure', 'NN'), ('on', 'IN'), ('level1', 'NN'), ('y', 'NN')], [('lets', 'NNS'), ('review', 'VBP'), ('tomorrow', 'NN'), ('and', 'CC'), ('finalize', 'VB'), ('the', 'DT'), ('final', 'JJ'), ('sprint', 'NN')], [('kindly', 'RB'), ('wait', 'VBP'), ('till', 'JJ'), ('next', 'JJ'), ('weekend', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('on', 'IN'), ('this', 'DT')], [('i', 'NN'), ('will', 'MD'), ('get', 'VB'), ('it', 'PRP'), ('done', 'VBN'), ('this', 'DT'), ('week', 'NN')], [('please', 'VB'), ('complete', 'JJ'), ('it', 'PRP'), ('as', 'RB'), ('soon', 'RB'), ('as', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('since', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('interviewing', 'VBG'), ('others', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('role', 'NN'), ('today', 'NN'), ('and', 'CC'), ('tomorrow', 'NN'), ('as', 'RB'), ('well', 'RB'), ('and', 'CC'), ('want', 'VBP'), ('to', 'TO'), ('bring', 'VB'), ('on', 'IN'), ('board', 'NN'), ('someone', 'NN'), ('by', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('week', 'NN')], [('xxxxxxxxx', 'JJ'), ('xxxxxxxxx', 'NN'), ('on', 'IN'), ('thursday', 'JJ'), ('xxx', 'NNP'), ('aug', 'NN'), ('as', 'IN'), ('8th', 'CD'), ('is', 'VBZ'), ('a', 'DT'), ('festival', 'NN')], [('xxx', 'JJ'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('opens', 'VBZ'), ('july', 'RB'), ('24th', 'CD')], [('once', 'RB'), ('that', 'DT'), ('is', 'VBZ'), ('complete', 'JJ'), ('i', 'NN'), ('will', 'MD'), ('circulate', 'VB'), ('the', 'DT'), ('dashboard', 'NN'), ('excel', 'NN'), ('with', 'IN'), ('updated', 'JJ'), ('statistics', 'NNS'), ('during', 'IN'), ('the', 'DT'), ('day', 'NN'), ('tomorrow', 'NN')], [('kindly', 'RB'), ('clear', 'JJ'), ('this', 'DT'), ('bill', 'NN'), ('before', 'IN'), ('7th', 'CD'), ('of', 'IN'), ('july', 'NN'), ('to', 'TO'), ('avoid', 'VB'), ('late', 'JJ'), ('payment', 'NN'), ('charges', 'NNS')], [('as', 'IN'), ('i', 'JJ'), ('am', 'VBP'), ('busy', 'JJ'), ('this', 'DT'), ('week', 'NN'), ('with', 'IN'), ('my', 'PRP$'), ('daughters', 'NNS'), ('wedding', 'VBG')], [('after', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('and', 'CC'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('is', 'VBZ'), ('making', 'VBG'), ('a', 'DT'), ('foray', 'NN'), ('into', 'IN'), ('xxxxx', 'NN'), ('with', 'IN'), ('xxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('on', 'IN'), ('september', 'NN'), ('26th', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('xxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NN')], [('sure', 'JJ'), ('saturday', 'JJ'), ('12', 'CD'), ('pm', 'NN'), ('is', 'VBZ'), ('good', 'JJ')], [('hi', 'NN'), ('xxxxxxxxx', 'NN'), ('called', 'VBN'), ('up', 'RP'), ('kanchan', 'NN'), ('just', 'RB'), ('now', 'RB'), ('am', 'VBP'), ('working', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('icon', 'NN'), ('set', 'VBN'), ('right', 'RB'), ('now', 'RB'), ('once', 'RB'), ('that', 'DT'), ('is', 'VBZ'), ('done', 'VBN'), ('will', 'MD'), ('update', 'VB'), ('the', 'DT'), ('detail', 'NN'), ('view', 'NN'), ('along', 'IN'), ('with', 'IN'), ('the', 'DT'), ('feedback', 'NN'), ('from', 'IN'), ('xxxxxxx', 'NNP'), ('she', 'PRP'), ('said', 'VBD'), ('monday', 'NN'), ('will', 'MD'), ('go', 'VB'), ('over', 'IN'), ('the', 'DT'), ('list', 'NN'), ('and', 'CC'), ('take', 'VB'), ('it', 'PRP'), ('further', 'RB')], [('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('a', 'DT'), ('time', 'NN'), ('goal', 'NN'), ('and', 'CC'), ('did', 'VBD'), ('a', 'DT'), ('time', 'NN'), ('trial', 'NN'), ('on', 'IN'), ('wed', 'VBN'), ('read', 'VBP'), ('the', 'DT'), ('below', 'JJ'), ('email', 'NN'), ('from', 'IN'), ('santhosh', 'NN')], [('will', 'MD'), ('bring', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('wed', 'VBN'), ('as', 'IN'), ('i', 'JJ'), ('am', 'VBP'), ('running', 'VBG'), ('at', 'IN'), ('cubbon', 'NN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('think', 'VBP'), ('execution', 'NN'), ('will', 'MD'), ('happen', 'VB'), ('next', 'JJ'), ('week', 'NN')], [('xxxxxxx', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('free', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('as', 'IN'), ('he', 'PRP'), ('has', 'VBZ'), ('to', 'TO'), ('work', 'VB'), ('on', 'IN'), ('a', 'DT'), ('couple', 'NN'), ('of', 'IN'), ('crs', 'NN')], [('sunday', 'JJ'), ('evening', 'NN'), ('i', 'NN'), ('shall', 'MD'), ('get', 'VB'), ('the', 'DT'), ('detailed', 'JJ'), ('info', 'NN'), ('about', 'IN'), ('the', 'DT'), ('budget', 'NN'), ('and', 'CC'), ('the', 'DT'), ('best', 'JJS'), ('things', 'NNS'), ('to', 'TO'), ('do', 'VB'), ('there', 'RB')], [('i', 'NN'), ('am', 'VBP'), ('meeting', 'VBG'), ('an', 'DT'), ('important', 'JJ'), ('person', 'NN'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('initiate', 'VB'), ('the', 'DT'), ('discussion', 'NN'), ('tomorrow', 'NN'), ('morning', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('available', 'JJ'), ('in', 'IN'), ('xxxx', 'NNP'), ('till', 'NN'), ('thursday', 'NN'), ('night', 'NN')], [('even', 'RB'), ('i', 'VB'), ('am', 'VBP'), ('not', 'RB'), ('in', 'IN'), ('xxxxxxxxx', 'NN'), ('this', 'DT'), ('weekend', 'NN')], [('the', 'DT'), ('signed', 'VBN'), ('hard', 'RB'), ('copy', 'NN'), ('of', 'IN'), ('the', 'DT'), ('xxx', 'NNP'), ('is', 'VBZ'), ('ready', 'JJ'), ('and', 'CC'), ('will', 'MD'), ('be', 'VB'), ('handdelivered', 'VBN'), ('to', 'TO'), ('you', 'PRP'), ('tomorrow', 'NN'), ('morning', 'NN')], [('we', 'PRP'), ('look', 'VBP'), ('forward', 'RB'), ('to', 'TO'), ('seeing', 'VBG'), ('you', 'PRP'), ('on', 'IN'), ('tuesday', 'NN'), ('june', 'NN'), ('24', 'CD'), ('for', 'IN'), ('the', 'DT'), ('internet', 'NN'), ('of', 'IN'), ('things', 'NNS'), ('an', 'DT'), ('afternoon', 'NN'), ('with', 'IN'), ('xxxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('and', 'CC'), ('guests', 'NNS')], [('this', 'DT'), ('weeks', 'NNS'), ('recommendations', 'NNS'), ('for', 'IN'), ('you', 'PRP'), ('shirt', 'VBP'), ('with', 'IN'), ('cutout', 'NN'), ('at', 'IN'), ('xxxx', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('planning', 'VBG'), ('to', 'TO'), ('set', 'VB'), ('up', 'RP'), ('the', 'DT'), ('dry', 'JJ'), ('run', 'NN'), ('of', 'IN'), ('the', 'DT'), ('demo', 'NN'), ('with', 'IN'), ('xxx', 'NN'), ('tomorrow', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('get', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('ballpark', 'NN'), ('pricing', 'NN'), ('tomorrow', 'NN')], [('the', 'DT'), ('company', 'NN'), ('will', 'MD'), ('be', 'VB'), ('coming', 'VBG'), ('into', 'IN'), ('the', 'DT'), ('office', 'NN'), ('to', 'TO'), ('sign', 'NN'), ('and', 'CC'), ('date', 'NN'), ('their', 'PRP$'), ('documents', 'NNS'), ('tomorrow', 'NN'), ('so', 'RB'), ('please', 'JJ'), ('date', 'NN'), ('the', 'DT'), ('documents', 'NNS'), ('for', 'IN'), ('tomorrow', 'NN'), ('at', 'IN'), ('the', 'DT'), ('earliest', 'JJS')], [('xxxx', 'NN'), ('might', 'MD'), ('have', 'VB'), ('a', 'DT'), ('holiday', 'NN'), ('on', 'IN'), ('thursday', 'JJ'), ('31st', 'CD'), ('july', 'NN'), ('due', 'JJ'), ('to', 'TO'), ('a', 'DT'), ('strike', 'NN'), ('called', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('local', 'JJ'), ('organizations', 'NNS'), ('in', 'IN'), ('xxxxxxxxx', 'NN')], [('but', 'CC'), ('ill', 'MD'), ('make', 'VB'), ('it', 'PRP'), ('done', 'VBN'), ('by', 'IN'), ('this', 'DT'), ('weekend', 'NN')], [('xxxxxx', 'NN'), ('can', 'MD'), ('help', 'VB'), ('us', 'PRP'), ('with', 'IN'), ('this', 'DT'), ('just', 'RB'), ('the', 'DT'), ('way', 'NN'), ('he', 'PRP'), ('did', 'VBD'), ('it', 'PRP'), ('for', 'IN'), ('mm', 'NN'), ('as', 'RB'), ('soon', 'RB'), ('as', 'IN'), ('hes', 'NNS'), ('back', 'RB'), ('in', 'IN'), ('office', 'NN'), ('which', 'WDT'), ('i', 'NN'), ('believe', 'VBP'), ('would', 'MD'), ('be', 'VB'), ('tomorrow', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('planning', 'VBG'), ('to', 'TO'), ('have', 'VB'), ('an', 'DT'), ('offsite', 'NN'), ('on', 'IN'), ('20th', 'CD'), ('of', 'IN'), ('july', 'NN')], [('request', 'NN'), ('you', 'PRP'), ('to', 'TO'), ('grant', 'VB'), ('approval', 'NN'), ('for', 'IN'), ('a', 'DT'), ('leave', 'NN'), ('on', 'IN'), ('the', 'DT'), ('13th', 'CD'), ('of', 'IN'), ('august', 'NN')], [('i', 'NNS'), ('have', 'VBP'), ('mailed', 'VBN'), ('them', 'PRP'), ('that', 'IN'), ('one', 'CD'), ('of', 'IN'), ('our', 'PRP$'), ('cofounders', 'NNS'), ('will', 'MD'), ('get', 'VB'), ('in', 'IN'), ('touch', 'NN'), ('tomorrow', 'NN')], [('dear', 'JJ'), ('xxxxxxxxxxxxx', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('very', 'RB'), ('sorry', 'JJ'), ('to', 'TO'), ('announce', 'VB'), ('that', 'DT'), ('xxxxxxxxx', 'NN'), ('will', 'MD'), ('be', 'VB'), ('shutting', 'VBG'), ('down', 'RP'), ('on', 'IN'), ('june', 'NN'), ('25th', 'CD')], [('as', 'IN'), ('per', 'IN'), ('our', 'PRP$'), ('terms', 'NNS'), ('of', 'IN'), ('employment', 'NN'), ('xxxxxxs', 'NN'), ('relieving', 'VBG'), ('date', 'NN'), ('will', 'MD'), ('be', 'VB'), ('7th', 'CD'), ('july', 'NN'), ('2014', 'CD')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('home', 'NN'), ('this', 'DT'), ('weekend', 'NN'), ('and', 'CC'), ('the', 'DT'), ('next', 'JJ')], [('we', 'PRP'), ('are', 'VBP'), ('speaking', 'VBG'), ('tomorrow', 'NN'), ('at', 'IN'), ('y', 'NN')], [('as', 'IN'), ('communicated', 'VBN'), ('by', 'IN'), ('xxxxxxxx', 'NN'), ('he', 'PRP'), ('is', 'VBZ'), ('ok', 'JJ'), ('with', 'IN'), ('the', 'DT'), ('user', 'NN'), ('mode', 'NN'), ('by', 'IN'), ('june', 'NN'), ('19th', 'CD')], [('i', 'NN'), ('will', 'MD'), ('simulate', 'VB'), ('the', 'DT'), ('changes', 'NNS'), ('in', 'IN'), ('cluster', 'NN'), ('center', 'NN'), ('values', 'NNS'), ('for', 'IN'), ('most', 'JJS'), ('recent', 'JJ'), ('5', 'CD'), ('days', 'NNS'), ('in', 'IN'), ('xaxis', 'NN'), ('and', 'CC'), ('post', 'VB'), ('the', 'DT'), ('graphs', 'NN'), ('tomorrow', 'NN'), ('as', 'RB'), ('soon', 'RB'), ('as', 'IN'), ('possible', 'JJ')], [('the', 'DT'), ('platform', 'NN'), ('maintenance', 'NN'), ('scheduled', 'VBN'), ('for', 'IN'), ('saturday', 'JJ'), ('august', 'CD'), ('23', 'CD'), ('2014', 'CD'), ('will', 'MD'), ('now', 'RB'), ('run', 'VB'), ('from', 'IN'), ('500am', 'CD'), ('to', 'TO'), ('700am', 'CD'), ('xx', 'NNS'), ('xxx', 'VBD'), ('400', 'CD')], [('i', 'NNS'), ('leave', 'VBP'), ('tomorrow', 'NN')], [('well', 'RB'), ('look', 'NN'), ('at', 'IN'), ('these', 'DT'), ('tomorrow', 'NN'), ('and', 'CC'), ('over', 'IN'), ('the', 'DT'), ('weekend', 'NN'), ('so', 'RB'), ('as', 'IN'), ('to', 'TO'), ('have', 'VB'), ('these', 'DT'), ('fixed', 'VBN'), ('by', 'IN'), ('monday', 'NN')], [('on', 'IN'), ('or', 'CC'), ('before', 'IN'), ('june', 'NNS'), ('20th', 'JJ'), ('2014', 'CD'), ('we', 'PRP'), ('ask', 'VBP'), ('that', 'IN'), ('users', 'NNS'), ('accept', 'VBP'), ('these', 'DT'), ('new', 'JJ'), ('terms', 'NNS'), ('of', 'IN'), ('xxxxxxx', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('select', 'VB'), ('an', 'DT'), ('api', 'NN'), ('by', 'IN'), ('tomorrow', 'NN'), ('and', 'CC'), ('send', 'VB'), ('the', 'DT'), ('estimate', 'NN')], [('as', 'IN'), ('you', 'PRP'), ('all', 'DT'), ('know', 'VBP'), ('we', 'PRP'), ('have', 'VBP'), ('rr', 'VBN'), ('outing', 'VBG'), ('to', 'TO'), ('xxxx', 'VB'), ('xxxxxx', 'NNP'), ('tomorrow', 'NN')], [('please', 'VB'), ('assign', 'NN'), ('named', 'VBN'), ('resource', 'NN'), ('by', 'IN'), ('tomorrow', 'NN')], [('xxxxxxx', 'NN'), ('june', 'NN'), ('16', 'CD'), ('ygn', 'NN'), ('npt', 'RB'), ('700', 'CD'), ('am', 'VBP'), ('xx', 'JJ'), ('xxxxxx', 'NN'), ('xxxxxx', 'NN')], [('me', 'PRP'), ('and', 'CC'), ('xxxxxx', 'VB'), ('can', 'MD'), ('flash', 'VB'), ('them', 'PRP'), ('in', 'IN'), ('campus', 'NN'), ('on', 'IN'), ('convocation', 'NN'), ('d', 'NN'), ('3rd', 'CD'), ('aug', 'NN')], [('will', 'MD'), ('let', 'VB'), ('you', 'PRP'), ('know', 'VB'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('in', 'IN'), ('this', 'DT'), ('regard', 'NN'), ('further', 'RBR')], [('saturday', 'NN'), ('being', 'VBG'), ('a', 'DT'), ('half', 'JJ'), ('day', 'NN'), ('inter', 'VB'), ('bank', 'NN'), ('some', 'DT'), ('times', 'NNS'), ('does', 'VBZ'), ('not', 'RB'), ('work', 'VB'), ('fast', 'RB')], [('if', 'IN'), ('youre', 'JJ'), ('ready', 'JJ'), ('to', 'TO'), ('explore', 'VB'), ('how', 'WRB'), ('to', 'TO'), ('bring', 'VB'), ('to', 'TO'), ('life', 'NN'), ('the', 'DT'), ('ideas', 'NNS'), ('you', 'PRP'), ('came', 'VBD'), ('up', 'RP'), ('with', 'IN'), ('and', 'CC'), ('prototyped', 'VBD'), ('during', 'IN'), ('technology', 'NN'), ('entrepreneurship', 'NN'), ('i', 'NN'), ('highly', 'RB'), ('encourage', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('check', 'VB'), ('out', 'RP'), ('this', 'DT'), ('course', 'NN'), ('starting', 'VBG'), ('september', 'JJ'), ('15', 'CD')], [('going', 'VBG'), ('to', 'TO'), ('crash', 'VB'), ('now', 'RB'), ('will', 'MD'), ('talk', 'VB'), ('tomorrow', 'NN')], [('tomorrow', 'NN'), ('might', 'MD'), ('be', 'VB'), ('a', 'DT'), ('better', 'JJR'), ('day', 'NN'), ('to', 'TO'), ('sync', 'VB')], [('dear', 'JJ'), ('xxxxx', 'NN'), ('here', 'RB'), ('is', 'VBZ'), ('your', 'PRP$'), ('copy', 'NN'), ('of', 'IN'), ('the', 'DT'), ('august', 'NN'), ('2014', 'CD'), ('xxxxxxx', 'NN'), ('xxxxxxxxx', 'NNP'), ('xxxxxx', 'NN')], [('title', 'NN'), ('xxxxxxxx', 'JJ'), ('meeting', 'NN'), ('on', 'IN'), ('xxxxxxx', 'NN'), ('towards', 'NNS'), ('xxx', 'VBP'), ('xxxxxxx', 'JJ'), ('date', 'NN'), ('june', 'NN'), ('11', 'CD'), ('xxxxx', 'JJ'), ('time', 'NN'), ('930', 'CD'), ('am', 'VBP'), ('xxxxxxxxxx', 'JJ'), ('xx', 'NN'), ('time', 'NN')], [('lets', 'NNS'), ('tentatively', 'RB'), ('schedule', 'JJ'), ('xxxxxxxxxs', 'NNP'), ('interview', 'NN'), ('for', 'IN'), ('monday', 'NN')], [('we', 'PRP'), ('have', 'VBP'), ('yyyy', 'VBN'), ('annotations', 'NNS'), ('each', 'DT'), ('and', 'CC'), ('will', 'MD'), ('try', 'VB'), ('to', 'TO'), ('finish', 'VB'), ('as', 'RB'), ('much', 'JJ'), ('as', 'IN'), ('possible', 'JJ'), ('by', 'IN'), ('tonight', 'NN'), ('and', 'CC'), ('send', 'VB'), ('an', 'DT'), ('update', 'NN'), ('by', 'IN'), ('tomorrow', 'NN')], [('remember', 'VB'), ('me', 'PRP'), ('to', 'TO'), ('tell', 'VB'), ('you', 'PRP'), ('about', 'IN'), ('it', 'PRP'), ('tomorrow', 'NN')], [('xxxxxx', 'JJ'), ('xxxx', 'NN'), ('saturday', 'NN'), ('x', 'VBD'), ('300', 'CD'), ('pm', 'NN')], [('when', 'WRB'), ('26th', 'CD'), ('july', 'NN'), ('saturday', 'NN'), ('where', 'WRB'), ('yyyyy', 'NN'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('time', 'NN'), ('10', 'CD'), ('am', 'VBP'), ('2', 'CD'), ('pm', 'JJ'), ('xxxxxxxx', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('limited', 'VBN'), ('seats', 'NNS'), ('please', 'VBP'), ('register', 'NN'), ('by', 'IN'), ('24th', 'CD'), ('to', 'TO'), ('get', 'VB'), ('confirmations', 'NNS')], [('will', 'MD'), ('catch', 'VB'), ('up', 'RP'), ('this', 'DT'), ('weekend', 'NN'), ('over', 'IN'), ('drinks', 'NNS')], [('xxxxxx', 'NN'), ('1100', 'CD'), ('am', 'VBP'), ('on', 'IN'), ('the', 'DT'), ('10th', 'CD'), ('of', 'IN'), ('august', 'NN')], [('once', 'RB'), ('i', 'JJ'), ('reach', 'VBP'), ('xxxxxxxxx', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('constantly', 'RB'), ('available', 'JJ'), ('on', 'IN'), ('phoneemailskype', 'NN')], [('other', 'JJ'), ('directors', 'NNS'), ('can', 'MD'), ('send', 'VB'), ('us', 'PRP'), ('signed', 'VBN'), ('original', 'JJ'), ('copies', 'NNS'), ('by', 'IN'), ('tomorrow', 'NN')], [('xxxxxxxx', 'NN'), ('now', 'RB'), ('for', 'IN'), ('xxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('the', 'DT'), ('xxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('june', 'NN'), ('yyy', 'NN'), ('2014', 'CD'), ('and', 'CC'), ('save', 'VB'), ('yyy', 'NN')], [('we', 'PRP'), ('expect', 'VBP'), ('draft', 'JJ'), ('docs', 'NN'), ('to', 'TO'), ('come', 'VB'), ('by', 'IN'), ('tuesday', 'JJ'), ('next', 'JJ')], [('xxxxx', 'NN'), ('i', 'NN'), ('will', 'MD'), ('give', 'VB'), ('you', 'PRP'), ('a', 'DT'), ('ring', 'NN'), ('tomorrow', 'NN')], [('arrival', 'NN'), ('date', 'NN'), ('xxxxxxx', 'NN'), ('date', 'NN'), ('07202014', 'CD'), ('departure', 'NN'), ('date', 'NN'), ('departure', 'NN'), ('date', 'NN'), ('07222014', 'CD'), ('number', 'NN'), ('of', 'IN'), ('surfers', 'NNS'), ('y', 'VBP')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('back', 'RB'), ('in', 'IN'), ('the', 'DT'), ('office', 'NN'), ('on', 'IN'), ('16th', 'CD'), ('july', 'NN')], [('this', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('company', 'NN'), ('we', 'PRP'), ('are', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('prospect', 'VB'), ('with', 'IN'), ('a', 'DT'), ('ppt', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('we', 'PRP'), ('shd', 'VBP'), ('have', 'VBP'), ('something', 'NN'), ('by', 'IN'), ('this', 'DT'), ('week', 'NN')], [('xxxxxxxxxis', 'NN'), ('visiting', 'VBG'), ('the', 'DT'), ('xx', 'NN'), ('this', 'DT'), ('week', 'NN'), ('and', 'CC'), ('next', 'JJ')], [('thank', 'NN'), ('you', 'PRP'), ('for', 'IN'), ('your', 'PRP$'), ('email', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('traveling', 'VBG'), ('to', 'TO'), ('xxxxxxxx', 'VB'), ('xxxxxx', 'NNP'), ('in', 'IN'), ('xxxxxx', 'NNP'), ('and', 'CC'), ('will', 'MD'), ('be', 'VB'), ('back', 'RB'), ('onilne', 'JJ'), ('july', 'NN'), ('7', 'CD')], [('yes', 'NNS'), ('understand', 'VBP'), ('your', 'PRP$'), ('schedule', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('are', 'VBP'), ('fine', 'JJ'), ('with', 'IN'), ('you', 'PRP'), ('sending', 'VBG'), ('chapter', 'NN'), ('y', 'NN'), ('earlier', 'RBR'), ('next', 'JJ'), ('week', 'NN')], [('we', 'PRP'), ('at', 'IN'), ('xxxxx', 'NNP'), ('invite', 'VBP'), ('you', 'PRP'), ('for', 'IN'), ('xxxxxxxxx', 'JJ'), ('2014', 'CD'), ('this', 'DT'), ('sunday', 'JJ'), ('13', 'CD'), ('july', 'NN'), ('at', 'IN'), ('xxx', 'NNP'), ('higher', 'JJR'), ('secondary', 'JJ'), ('school', 'NN'), ('xxxxxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxxx', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('thinking', 'VBG'), ('about', 'IN'), ('your', 'PRP$'), ('feedback', 'NN'), ('in', 'IN'), ('regards', 'NNS'), ('to', 'TO'), ('parallax', 'VB'), ('on', 'IN'), ('the', 'DT'), ('homepage', 'NN'), ('i', 'NN'), ('will', 'MD'), ('provide', 'VB'), ('feedback', 'NN'), ('tomorrow', 'NN')], [('xxxxxxxxxxxxxxxx', 'RB'), ('request', 'NN'), ('you', 'PRP'), ('to', 'TO'), ('check', 'VB'), ('the', 'DT'), ('xxxxxxxx', 'NNP'), ('score', 'NN'), ('bucketing', 'NN'), ('and', 'CC'), ('report', 'NN'), ('by', 'IN'), ('sunday', 'JJ'), ('xxx', 'NNS')], [('my', 'PRP$'), ('fri', 'NN'), ('calendar', 'NN'), ('is', 'VBZ'), ('open', 'JJ')], [('please', 'VB'), ('pull', 'VB'), ('yourself', 'PRP'), ('together', 'RB'), ('for', 'IN'), ('one', 'CD'), ('more', 'JJR'), ('day', 'NN'), ('of', 'IN'), ('intense', 'JJ'), ('work', 'NN'), ('tomorrow', 'NN')], [('he', 'PRP'), ('has', 'VBZ'), ('another', 'DT'), ('offer', 'NN'), ('in', 'IN'), ('hand', 'NN'), ('and', 'CC'), ('serving', 'VBG'), ('his', 'PRP$'), ('notice', 'NN'), ('period', 'NN'), ('august', 'IN'), ('first', 'JJ'), ('week', 'NN'), ('would', 'MD'), ('be', 'VB'), ('last', 'JJ'), ('working', 'JJ'), ('week', 'NN')], [('we', 'PRP'), ('would', 'MD'), ('need', 'VB'), ('the', 'DT'), ('approval', 'NN'), ('today', 'NN'), ('in', 'IN'), ('order', 'NN'), ('to', 'TO'), ('release', 'VB'), ('the', 'DT'), ('apps', 'NN'), ('by', 'IN'), ('friday', 'JJ'), ('yyyyy', 'NNS')], [('from', 'IN'), ('here', 'RB'), ('i', 'VBN'), ('will', 'MD'), ('let', 'VB'), ('xxxxxxx', 'NNP'), ('and', 'CC'), ('xxxx', 'NNP'), ('set', 'VBD'), ('up', 'RP'), ('a', 'DT'), ('meeting', 'NN'), ('with', 'IN'), ('you', 'PRP'), ('this', 'DT'), ('saturday', 'NN')], [('rains', 'NNS'), ('have', 'VBP'), ('the', 'DT'), ('final', 'JJ'), ('say', 'NN'), ('and', 'CC'), ('i', 'NN'), ('am', 'VBP'), ('postponing', 'VBG'), ('it', 'PRP'), ('to', 'TO'), ('mid', 'VB'), ('xxxx', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('not', 'RB'), ('in', 'IN'), ('xxxxx', 'JJ'), ('right', 'NN'), ('now', 'RB'), ('and', 'CC'), ('travelling', 'VBG'), ('in', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('week', 'NN')], [('dd', 'NN'), ('is', 'VBZ'), ('in', 'IN'), ('the', 'DT'), ('final', 'JJ'), ('stage', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('will', 'MD'), ('discuss', 'VB'), ('the', 'DT'), ('final', 'JJ'), ('list', 'NN'), ('of', 'IN'), ('issues', 'NNS'), ('next', 'IN'), ('week', 'NN'), ('and', 'CC'), ('then', 'RB'), ('by', 'IN'), ('10th', 'CD'), ('july', 'NN'), ('all', 'DT'), ('hands', 'NNS'), ('meeting', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('draft', 'NN'), ('docs', 'NN')], [('kindly', 'RB'), ('schedule', 'NN'), ('it', 'PRP'), ('tomorrow', 'NN')], [('given', 'VBN'), ('tomorrow', 'NN'), ('would', 'MD'), ('be', 'VB'), ('my', 'PRP$'), ('first', 'JJ'), ('day', 'NN'), ('at', 'IN'), ('work', 'NN'), ('here', 'RB'), ('i', 'RB'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('get', 'VB'), ('a', 'DT'), ('ride', 'NN'), ('to', 'TO'), ('work', 'VB')], [('xxxxxx', 'JJ'), ('deadline', 'NN'), ('june', 'NN'), ('xxxx', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('traveling', 'VBG'), ('part', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN'), ('so', 'RB'), ('the', 'DT'), ('week', 'NN'), ('after', 'IN'), ('that', 'DT'), ('will', 'MD'), ('be', 'VB'), ('better', 'JJR'), ('for', 'IN'), ('me', 'PRP'), ('as', 'IN'), ('well', 'RB')], [('the', 'DT'), ('deadline', 'NN'), ('for', 'IN'), ('completing', 'VBG'), ('the', 'DT'), ('questionnaire', 'NN'), ('is', 'VBZ'), ('21072014', 'CD')], [('the', 'DT'), ('shipment', 'NN'), ('will', 'MD'), ('reach', 'VB'), ('the', 'DT'), ('address', 'NN'), ('provided', 'VBD'), ('below', 'IN'), ('within', 'IN'), ('the', 'DT'), ('expected', 'JJ'), ('delivery', 'NN'), ('date', 'NN'), ('thursday', 'NN'), ('jun', 'VBZ'), ('26', 'CD'), ('2014', 'CD')], [('just', 'RB'), ('reached', 'VBN'), ('xxxxx', 'RB'), ('worried', 'JJ'), ('about', 'IN'), ('tomorrows', 'NNS'), ('clas', 'NNS')], [('i', 'NN'), ('continued', 'VBD'), ('to', 'TO'), ('feel', 'VB'), ('good', 'JJ'), ('on', 'IN'), ('sunday', 'NN'), ('and', 'CC'), ('had', 'VBD'), ('a', 'DT'), ('great', 'JJ'), ('strengthening', 'NN'), ('workout', 'NN'), ('too', 'RB')], [('im', 'NN'), ('having', 'VBG'), ('some', 'DT'), ('doubts', 'NNS'), ('i', 'VBP'), ('will', 'MD'), ('come', 'VB'), ('to', 'TO'), ('you', 'PRP'), ('tomorrow', 'NN')], [('check', 'NN'), ('in', 'IN'), ('july', 'NN'), ('08', 'CD'), ('2014', 'CD')], [('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('utilize', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('spm', 'NN'), ('may', 'MD'), ('31st', 'CD'), ('2014', 'CD')], [('title', 'NN'), ('xxxx', 'NN'), ('mtg', 'NN'), ('this', 'DT'), ('week', 'NN'), ('only', 'RB'), ('when', 'WRB'), ('tue', 'NN'), ('may', 'MD'), ('20', 'CD'), ('2014', 'CD'), ('430', 'CD'), ('pm', 'NN'), ('530', 'CD'), ('pm', 'NN'), ('xxxxxxx', 'NN'), ('time', 'NN'), ('where', 'WRB'), ('office', 'NN'), ('conf', 'NN'), ('room', 'NN'), ('xxxxx', 'NNP'), ('call', 'NN'), ('join', 'NN'), ('video', 'NN'), ('call', 'NN'), ('who', 'WP')], [('my', 'PRP$'), ('colleague', 'NN'), ('xxxxx', 'NN'), ('is', 'VBZ'), ('flying', 'VBG'), ('to', 'TO'), ('xxxxxxxxx', 'VB'), ('on', 'IN'), ('fri', 'JJ'), ('6th', 'CD'), ('june', 'NN')], [('please', 'VB'), ('note', 'NN'), ('that', 'IN'), ('this', 'DT'), ('decision', 'NN'), ('on', 'IN'), ('the', 'DT'), ('title', 'NN'), ('has', 'VBZ'), ('become', 'VBN'), ('urgent', 'JJ'), ('as', 'IN'), ('documents', 'NNS'), ('such', 'JJ'), ('as', 'IN'), ('isds', 'NN'), ('will', 'MD'), ('need', 'VB'), ('to', 'TO'), ('be', 'VB'), ('sent', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('xxxxxxxx', 'NN'), ('within', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('day', 'NN'), ('or', 'CC'), ('so', 'RB')], [('sure', 'JJ'), ('raghava', 'NN'), ('i', 'NN'), ('would', 'MD'), ('talk', 'VB'), ('to', 'TO'), ('xxxxxx', 'VB'), ('tomorrow', 'NN'), ('we', 'PRP'), ('could', 'MD'), ('share', 'NN'), ('screen', 'JJ'), ('via', 'IN'), ('xxxxx', 'NN'), ('and', 'CC'), ('my', 'PRP$'), ('developer', 'NN'), ('in', 'IN'), ('xxxxx', 'NN'), ('could', 'MD'), ('join', 'VB'), ('as', 'RB'), ('well', 'RB')], [('xx', 'JJ'), ('sure', 'NN'), ('i', 'NN'), ('will', 'MD'), ('ask', 'VB'), ('for', 'IN'), ('permission', 'NN'), ('on', 'IN'), ('wednesday', 'NN'), ('with', 'IN'), ('principal', 'JJ'), ('and', 'CC'), ('update', 'JJ'), ('you', 'PRP'), ('about', 'IN'), ('it', 'PRP')], [('we', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('two', 'CD'), ('people', 'NNS'), ('joining', 'VBG'), ('us', 'PRP'), ('on', 'IN'), ('1st', 'CD'), ('july', 'NN')], [('i', 'NN'), ('was', 'VBD'), ('wondering', 'VBG'), ('if', 'IN'), ('we', 'PRP'), ('could', 'MD'), ('skype', 'VB'), ('and', 'CC'), ('discuss', 'VB'), ('the', 'DT'), ('soft', 'JJ'), ('launch', 'NN'), ('we', 'PRP'), ('are', 'VBP'), ('planning', 'VBG'), ('to', 'TO'), ('do', 'VB'), ('this', 'DT'), ('month', 'NN')], [('i', 'NN'), ('feel', 'VBP'), ('he', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('an', 'DT'), ('absolutely', 'RB'), ('key', 'JJ'), ('member', 'NN'), ('of', 'IN'), ('the', 'DT'), ('teami', 'NN'), ('would', 'MD'), ('like', 'VB'), ('you', 'PRP'), ('folks', 'NNS'), ('to', 'TO'), ('meet', 'VB'), ('xxxxxx', 'NNP'), ('will', 'MD'), ('be', 'VB'), ('on', 'IN'), ('vacation', 'NN'), ('starting', 'VBG'), ('tomorrow', 'NN'), ('but', 'CC'), ('please', 'JJ'), ('try', 'NN'), ('to', 'TO'), ('meetthanksujwalsent', 'VB'), ('using', 'VBG'), ('xxxxxxxxxx', 'NNS')], [('eg', 'JJ'), ('events', 'NNS'), ('planned', 'VBN'), ('for', 'IN'), ('tomorrow', 'NN'), ('friday', 'NN'), ('as', 'IN'), ('everybody', 'NN'), ('is', 'VBZ'), ('aware', 'JJ'), ('tomorrow', 'NN'), ('friday', 'NN'), ('is', 'VBZ'), ('xxx', 'JJ'), ('day', 'NN')], [('please', 'VB'), ('expect', 'VB'), ('your', 'PRP$'), ('payment', 'NN'), ('by', 'IN'), ('10th', 'CD'), ('august', 'NN')], [('ill', 'NN'), ('share', 'NN'), ('that', 'IN'), ('list', 'NN'), ('and', 'CC'), ('also', 'RB'), ('hospital', 'JJ'), ('list', 'NN'), ('on', 'IN'), ('coming', 'VBG'), ('thursday', 'NN')], [('your', 'PRP$'), ('xxxxx', 'NN'), ('xxxxxxx', 'NN'), ('associated', 'VBN'), ('with', 'IN'), ('the', 'DT'), ('domain', 'NN'), ('xxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('will', 'MD'), ('renew', 'VB'), ('on', 'IN'), ('06082014', 'CD'), ('and', 'CC'), ('your', 'PRP$'), ('credit', 'NN'), ('card', 'NN'), ('or', 'CC'), ('xxxxxx', 'JJ'), ('account', 'NN'), ('will', 'MD'), ('be', 'VB'), ('charged', 'VBN')], [('respected', 'VBN'), ('xxx', 'JJ'), ('my', 'PRP$'), ('son', 'NN'), ('xxxxxxx', 'NNP'), ('xxxxxxxs', 'NNP'), ('wedding', 'NN'), ('is', 'VBZ'), ('planned', 'VBN'), ('on', 'IN'), ('25th', 'CD'), ('may', 'MD'), ('sunday', 'VB'), ('2014', 'CD')], [('we', 'PRP'), ('may', 'MD'), ('have', 'VB'), ('a', 'DT'), ('skype', 'JJ'), ('discussion', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('working', 'VBG'), ('tomorrow', 'NN')], [('your', 'PRP$'), ('15', 'CD'), ('days', 'NNS'), ('metisme', 'RB'), ('premium', 'JJ'), ('trial', 'NN'), ('expires', 'VBZ'), ('tomorrow', 'NN')], [('well', 'RB'), ('get', 'VB'), ('to', 'TO'), ('work', 'VB'), ('on', 'IN'), ('it', 'PRP'), ('first', 'JJ'), ('thing', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('please', 'NN'), ('fill', 'VB'), ('the', 'DT'), ('attached', 'VBN'), ('declaration', 'NN'), ('forms', 'NNS'), ('with', 'IN'), ('actualproposed', 'JJ'), ('figures', 'NNS'), ('and', 'CC'), ('sign', 'NN'), ('at', 'IN'), ('the', 'DT'), ('end', 'NN'), ('to', 'TO'), ('calculate', 'VB'), ('your', 'PRP$'), ('income', 'NN'), ('tax', 'NN'), ('for', 'IN'), ('the', 'DT'), ('year', 'NN'), ('yyyyyyy', 'RB'), ('please', 'JJ'), ('send', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('tomorrow', 'NN'), ('evening', 'NN'), ('or', 'CC'), ('else', 'JJ'), ('tax', 'NN'), ('will', 'MD'), ('be', 'VB'), ('deducted', 'VBN'), ('as', 'IN'), ('per', 'IN'), ('applicable', 'NN'), ('for', 'IN'), ('the', 'DT'), ('month', 'NN'), ('of', 'IN'), ('may', 'MD'), ('2014', 'VB')], [('i', 'NN'), ('will', 'MD'), ('respond', 'VB'), ('by', 'IN'), ('xxx', 'JJ'), ('tomorrow', 'NN'), ('on', 'IN'), ('supporting', 'VBG'), ('the', 'DT'), ('alpha', 'NN'), ('beta', 'NN'), ('test', 'NN')], [('i', 'NN'), ('fly', 'VBP'), ('back', 'RB'), ('tomorrow', 'NN'), ('and', 'CC'), ('get', 'VB'), ('into', 'IN'), ('xxxxxx', 'NN'), ('at', 'IN'), ('midnight', 'NN')], [('this', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('optimisation', 'NN'), ('which', 'WDT'), ('is', 'VBZ'), ('going', 'VBG'), ('to', 'TO'), ('be', 'VB'), ('implemented', 'VBN'), ('on', 'IN'), ('july', 'NN'), ('1', 'CD')], [('my', 'PRP$'), ('mother', 'NN'), ('will', 'MD'), ('be', 'VB'), ('undergoing', 'VBG'), ('a', 'DT'), ('major', 'JJ'), ('surgery', 'NN'), ('so', 'RB'), ('i', 'RB'), ('will', 'MD'), ('have', 'VB'), ('to', 'TO'), ('be', 'VB'), ('with', 'IN'), ('her', 'PRP'), ('in', 'IN'), ('the', 'DT'), ('hospital', 'NN'), ('she', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('discharged', 'VBN'), ('on', 'IN'), ('15th', 'CD'), ('june', 'NN')], [('key', 'JJ'), ('discussion', 'NN'), ('for', 'IN'), ('the', 'DT'), ('tuesday', 'NN'), ('call', 'NN'), ('improving', 'VBG'), ('funnel', 'NNS'), ('steps', 'NNS')], [('xxxx', 'JJ'), ('x', 'NNP'), ('estimated', 'VBD'), ('shipment', 'JJ'), ('date', 'NN'), ('apr', 'NN'), ('26', 'CD'), ('2014', 'CD'), ('estimated', 'VBN'), ('delivery', 'NN'), ('date', 'NN'), ('apr', 'NN'), ('29', 'CD'), ('2014', 'CD'), ('ordered', 'JJ'), ('quantity', 'NN'), ('y', 'NN'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('rs', 'NN')], [('the', 'DT'), ('xxxxxxxxxxxx', 'NN'), ('of', 'IN'), ('xxxxx', 'NNS'), ('are', 'VBP'), ('catching', 'VBG'), ('up', 'RP'), ('on', 'IN'), ('28th', 'CD'), ('june', 'NN'), ('with', 'IN'), ('a', 'DT'), ('plan', 'NN'), ('in', 'IN'), ('place', 'NN'), ('the', 'DT'), ('key', 'JJ'), ('theme', 'NN'), ('is', 'VBZ'), ('utilizing', 'JJ'), ('pr', 'NN'), ('effectively', 'RB'), ('for', 'IN'), ('your', 'PRP$'), ('startup', 'NN')], [('xxx', 'NN'), ('i', 'NN'), ('will', 'MD'), ('plan', 'VB'), ('to', 'TO'), ('come', 'VB'), ('in', 'IN'), ('on', 'IN'), ('the', 'DT'), ('2nd', 'CD'), ('morning', 'NN'), ('from', 'IN'), ('xxxxxxxxx', 'NN'), ('will', 'MD'), ('be', 'VB'), ('with', 'IN'), ('you', 'PRP'), ('all', 'DT'), ('day', 'NN'), ('on', 'IN'), ('the', 'DT'), ('3rd', 'CD'), ('julyon', 'NN'), ('the', 'DT'), ('afternoon', 'NN'), ('of', 'IN'), ('the', 'DT'), ('2nd', 'CD'), ('and', 'CC'), ('on', 'IN'), ('the', 'DT'), ('4th', 'CD'), ('i', 'NN'), ('will', 'MD'), ('plan', 'VB'), ('other', 'JJ'), ('business', 'NN'), ('meetingsi', 'NN'), ('will', 'MD'), ('return', 'VB'), ('on', 'IN'), ('the', 'DT'), ('5th', 'CD'), ('july', 'NN')], [('tomorrow', 'NN'), ('is', 'VBZ'), ('a', 'DT'), ('working', 'JJ'), ('day', 'NN'), ('at', 'IN'), ('xxxxxxx', 'NN')], [('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('invite', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('my', 'PRP$'), ('marriage', 'NN'), ('on', 'IN'), ('aug', 'JJ'), ('31st', 'CD'), ('sunday', 'NN'), ('at', 'IN'), ('xxxxxxxxxx', 'NN')], [('he', 'PRP'), ('is', 'VBZ'), ('going', 'VBG'), ('to', 'TO'), ('send', 'VB'), ('his', 'PRP$'), ('profile', 'NN'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('week', 'NN')], [('it', 'PRP'), ('is', 'VBZ'), ('essential', 'JJ'), ('for', 'IN'), ('us', 'PRP'), ('to', 'TO'), ('finish', 'VB'), ('this', 'DT'), ('css', 'NN'), ('saga', 'NN'), ('tomorrow', 'NN'), ('monday', 'NN'), ('to', 'TO'), ('implement', 'VB'), ('it', 'PRP'), ('and', 'CC'), ('launch', 'VB'), ('the', 'DT'), ('redesigned', 'VBN'), ('site', 'NN'), ('later', 'RBR'), ('this', 'DT'), ('week', 'NN')], [('have', 'VB'), ('requested', 'VBN'), ('him', 'PRP'), ('to', 'TO'), ('send', 'VB'), ('it', 'PRP'), ('before', 'IN'), ('monday', 'NN')], [('pls', 'JJ'), ('send', 'NN'), ('in', 'IN'), ('your', 'PRP$'), ('investment', 'NN'), ('declaration', 'NN'), ('forms', 'NNS'), ('by', 'IN'), ('noon', 'NN'), ('tomorrow', 'NN')], [('they', 'PRP'), ('are', 'VBP'), ('graduating', 'VBG'), ('this', 'DT'), ('friday', 'NN')], [('it', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('good', 'JJ'), ('to', 'TO'), ('discuss', 'VB'), ('it', 'PRP'), ('with', 'IN'), ('whiteboard', 'NN'), ('during', 'IN'), ('week', 'NN'), ('of', 'IN'), ('16th', 'CD'), ('till', 'NN'), ('mon', 'VBD'), ('23rd', 'CD')], [('hence', 'NN'), ('xxxxxxx', 'NN'), ('and', 'CC'), ('myself', 'PRP'), ('are', 'VBP'), ('working', 'VBG'), ('from', 'IN'), ('home', 'NN'), ('on', 'IN'), ('sunday', 'NN'), ('may', 'MD'), ('11', 'CD'), ('2014', 'CD')], [('xxxxxx', 'NN'), ('will', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('complete', 'VB'), ('this', 'DT'), ('by', 'IN'), ('400', 'CD'), ('pm', 'NN'), ('tomorrow', 'NN'), ('only', 'RB')], [('xxxxxxxxx', 'JJ'), ('xxxxxxxxx', 'NNP'), ('xxxx', 'VBD'), ('the', 'DT'), ('dates', 'NNS'), ('for', 'IN'), ('this', 'DT'), ('event', 'NN'), ('are', 'VBP'), ('fixed', 'VBN'), ('on', 'IN'), ('22nd', 'CD'), ('and', 'CC'), ('23rd', 'CD'), ('august', 'NN'), ('across', 'IN'), ('y', 'NN'), ('cities', 'NNS')], [('please', 'NN'), ('join', 'VB'), ('my', 'PRP$'), ('meeting', 'NN'), ('jun', 'NN'), ('3', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('1000', 'CD'), ('am', 'VBP'), ('xxx', 'JJ')], [('anyway', 'RB'), ('i', 'NN'), ('will', 'MD'), ('ensure', 'VB'), ('you', 'PRP'), ('get', 'VB'), ('reimbursed', 'VBN'), ('at', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('month', 'NN')], [('registration', 'NN'), ('will', 'MD'), ('b', 'VB'), ('closed', 'JJ'), ('friday', 'NN'), ('midnight', 'NN'), ('xxxxx', 'VBZ'), ('up', 'RP'), ('folks', 'NNS')], [('fyi', 'NN'), ('im', 'VBZ'), ('out', 'RP'), ('on', 'IN'), ('vacation', 'NN'), ('tomorrow', 'NN'), ('through', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('ill', 'JJ'), ('start', 'VB'), ('demoing', 'VBG'), ('to', 'TO'), ('people', 'NNS'), ('from', 'IN'), ('tomorrow', 'NN'), ('onwards', 'NNS')], [('she', 'PRP'), ('needs', 'VBZ'), ('two', 'CD'), ('more', 'JJR'), ('donors', 'NNS'), ('one', 'CD'), ('tomorrow', 'NN'), ('thursday', 'NN'), ('and', 'CC'), ('another', 'DT'), ('day', 'NN'), ('after', 'IN'), ('friday', 'NN')], [('on', 'IN'), ('july', 'NN'), ('1st', 'CD'), ('2014', 'CD'), ('your', 'PRP$'), ('price', 'NN'), ('forus', 'NN'), ('will', 'MD'), ('increase', 'VB'), ('by', 'IN'), ('yyyy', 'NN')], [('please', 'VB'), ('allow', 'VB'), ('us', 'PRP'), ('to', 'TO'), ('meet', 'VB'), ('you', 'PRP'), ('along', 'IN'), ('with', 'IN'), ('our', 'PRP$'), ('private', 'JJ'), ('cloud', 'NN'), ('practice', 'NN'), ('xxxx', 'NN'), ('on', 'IN'), ('yyyy', 'NN'), ('thursday', 'NN'), ('or', 'CC'), ('1st', 'CD'), ('august', 'JJ'), ('friday', 'NN'), ('to', 'TO'), ('present', 'VB'), ('ctrls', 'NN'), ('credentials', 'NNS'), ('and', 'CC'), ('summarize', 'VB'), ('our', 'PRP$'), ('value', 'NN'), ('proposition', 'NN')], [('let', 'VB'), ('us', 'PRP'), ('schedule', 'VB'), ('some', 'DT'), ('time', 'NN'), ('to', 'TO'), ('talk', 'VB'), ('next', 'JJ'), ('week', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('still', 'RB'), ('believe', 'VB'), ('our', 'PRP$'), ('approach', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('correct', 'JJ'), ('i', 'NNS'), ('am', 'VBP'), ('not', 'RB'), ('fully', 'RB'), ('convinced', 'VBN'), ('that', 'IN'), ('the', 'DT'), ('applock', 'NN'), ('approach', 'NN'), ('is', 'VBZ'), ('correct', 'JJ'), ('as', 'IN'), ('it', 'PRP'), ('provides', 'VBZ'), ('too', 'RB'), ('much', 'JJ'), ('flexibility', 'NN'), ('and', 'CC'), ('distraction', 'NN')], [('he', 'PRP'), ('will', 'MD'), ('start', 'VB'), ('joining', 'VBG'), ('the', 'DT'), ('daily', 'JJ'), ('calls', 'NNS'), ('from', 'IN'), ('tomorrow', 'NN'), ('with', 'IN'), ('pad', 'NN'), ('along', 'IN'), ('with', 'IN'), ('ravindra', 'NN'), ('on', 'IN'), ('the', 'DT'), ('xxxxxx', 'NNP'), ('xxx', 'NNP'), ('project', 'NN')], [('we', 'PRP'), ('think', 'VBP'), ('signing', 'VBG'), ('and', 'CC'), ('closing', 'NN'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('august', 'NN')], [('september', 'VB'), ('1', 'CD'), ('y', 'NN'), ('2014', 'CD'), ('xxxxxx', 'NN'), ('xxxxxxx', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('a', 'DT'), ('separate', 'JJ'), ('meeting', 'NN'), ('on', 'IN'), ('the', 'DT'), ('ml', 'NN'), ('priorities', 'NNS'), ('next', 'IN'), ('week', 'NN')], [('we', 'PRP'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('get', 'VB'), ('designs', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('client', 'NN'), ('asap', 'VBZ'), ('no', 'DT'), ('later', 'JJR'), ('than', 'IN'), ('friday', 'JJ'), ('morning', 'NN'), ('these', 'DT'), ('should', 'MD'), ('be', 'VB'), ('very', 'RB'), ('very', 'RB'), ('simple', 'JJ')], [('i', 'NN'), ('am', 'VBP'), ('xxxxxxx', 'JJ'), ('xxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('at', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('of', 'IN'), ('xxxxxxxxxx', 'NNP'), ('graduating', 'VBG'), ('in', 'IN'), ('july14', 'NN')], [('this', 'DT'), ('wednesday', 'NN'), ('i', 'VB'), ('will', 'MD'), ('bring', 'VB'), ('my', 'PRP$'), ('car', 'NN'), ('to', 'TO'), ('xxxxxx', 'VB'), ('xxxxxx', 'NNP'), ('have', 'VBP'), ('an', 'DT'), ('alto', 'NN'), ('so', 'RB'), ('y', 'RB'), ('more', 'RBR'), ('people', 'NNS'), ('can', 'MD'), ('join', 'VB'), ('me', 'PRP')], [('wednesday', 'JJ'), ('5', 'CD'), ('pm', 'NN'), ('xxx', 'NN'), ('is', 'VBZ'), ('perfect', 'JJ'), ('forgot', 'NNS'), ('about', 'IN'), ('xxxxxxxx', 'JJ'), ('trip', 'NN'), ('the', 'DT'), ('thursday', 'JJ'), ('timeslots', 'NNS'), ('are', 'VBP'), ('impossible', 'JJ'), ('even', 'RB'), ('with', 'IN'), ('jetlag', 'NN')], [('hi', 'NN'), ('after', 'IN'), ('making', 'VBG'), ('one', 'CD'), ('change', 'NN'), ('to', 'TO'), ('accommodate', 'VB'), ('a', 'DT'), ('reasonable', 'JJ'), ('request', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('sending', 'VBG'), ('you', 'PRP'), ('the', 'DT'), ('final', 'JJ'), ('copy', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('weeks', 'NNS'), ('program', 'NN')], [('your', 'PRP$'), ('trial', 'NN'), ('will', 'MD'), ('be', 'VB'), ('active', 'JJ'), ('until', 'IN'), ('saturday', 'JJ'), ('august', 'VBP'), ('23', 'CD'), ('2014', 'CD')], [('further', 'RB'), ('to', 'TO'), ('xxxxxs', 'VB'), ('email', 'NN'), ('below', 'IN'), ('and', 'CC'), ('your', 'PRP$'), ('reply', 'NN'), ('17th', 'CD'), ('july', 'NN'), ('is', 'VBZ'), ('what', 'WP'), ('has', 'VBZ'), ('now', 'RB'), ('been', 'VBN'), ('finalized', 'VBN')], [('you', 'PRP'), ('can', 'MD'), ('expect', 'VB'), ('to', 'TO'), ('hear', 'VB'), ('from', 'IN'), ('me', 'PRP'), ('in', 'IN'), ('this', 'DT'), ('week', 'NN')], [('this', 'DT'), ('workshop', 'NN'), ('is', 'VBZ'), ('tomorrow', 'NN')], [('will', 'MD'), ('be', 'VB'), ('happy', 'JJ'), ('to', 'TO'), ('chat', 'VB'), ('with', 'IN'), ('you', 'PRP'), ('next', 'JJ'), ('week', 'NN')], [('ill', 'NN'), ('be', 'VB'), ('back', 'RB'), ('on', 'IN'), ('sunday', 'NN'), ('if', 'IN'), ('sony', 'JJ'), ('work', 'NN'), ('gets', 'VBZ'), ('over', 'RP'), ('by', 'IN'), ('then', 'RB')], [('please', 'NN'), ('transfer', 'VB'), ('rs2', 'JJ'), ('yyy', 'NN'), ('to', 'TO'), ('xxxxx', 'VB'), ('as', 'IN'), ('advance', 'NN'), ('he', 'PRP'), ('has', 'VBZ'), ('submit', 'VBN'), ('all', 'PDT'), ('the', 'DT'), ('bills', 'NNS'), ('for', 'IN'), ('rs2', 'NN'), ('yyy', 'NN'), ('before', 'IN'), ('30th', 'CD'), ('june', 'NN'), ('2014', 'CD'), ('to', 'TO'), ('close', 'VB'), ('the', 'DT'), ('accounts', 'NNS')], [('after', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('and', 'CC'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('is', 'VBZ'), ('making', 'VBG'), ('a', 'DT'), ('foray', 'NN'), ('into', 'IN'), ('xxxxx', 'NN'), ('with', 'IN'), ('xxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('on', 'IN'), ('september', 'NN'), ('26th', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('xxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NN')], [('yyyyyyy', 'RB'), ('xxxxxxxxxx', 'JJ'), ('meeting', 'NN'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('class', 'NN'), ('tue', 'NN'), ('jul', 'NN'), ('01', 'CD')], [('xxxxx', 'NN'), ('this', 'DT'), ('fri', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('around', 'VBN'), ('y', 'CD'), ('people', 'NNS')], [('schedule', 'NN'), ('july', 'RB'), ('8', 'CD'), ('xxxxxx', 'JJ'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('xxx', 'VBD'), ('700', 'CD'), ('am', 'VBP'), ('xx', 'JJ'), ('xxxxxxx', 'NN'), ('xxxxxx', 'NN')], [('we', 'PRP'), ('hope', 'VBP'), ('to', 'TO'), ('wrap', 'VB'), ('it', 'PRP'), ('up', 'RP'), ('by', 'IN'), ('tomorrow', 'NN'), ('morning', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('taking', 'VBG'), ('it', 'PRP'), ('across', 'IN'), ('the', 'DT'), ('site', 'NN'), ('probably', 'RB'), ('next', 'JJ'), ('week', 'NN')], [('xxxxxxxxx', 'NN'), ('thursday', 'NN'), ('xxxxxxx', 'IN'), ('with', 'IN'), ('xx', 'NNP'), ('xxxxx', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('accepting', 'VBG'), ('this', 'DT'), ('offer', 'NN'), ('and', 'CC'), ('definitly', 'RB'), ('join', 'VB'), ('from', 'IN'), ('16', 'CD'), ('june', 'NN')], [('so', 'RB'), ('i', 'JJ'), ('will', 'MD'), ('be', 'VB'), ('going', 'VBG'), ('back', 'RB'), ('to', 'TO'), ('the', 'DT'), ('hospital', 'NN'), ('tomorrow', 'NN'), ('to', 'TO'), ('pull', 'VB'), ('out', 'RP'), ('these', 'DT'), ('wires', 'NNS')], [('we', 'PRP'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('invite', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('the', 'DT'), ('high', 'JJ'), ('level', 'NN'), ('workshop', 'NN'), ('on', 'IN'), ('july', 'NN'), ('18', 'CD'), ('to', 'TO'), ('finalize', 'VB'), ('the', 'DT'), ('xxxxx', 'NNP'), ('bank', 'NN'), ('financed', 'VBD'), ('health', 'NN'), ('project', 'NN')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('touch', 'JJ'), ('tomorrow', 'NN')], [('that', 'DT'), ('would', 'MD'), ('mean', 'VB'), ('we', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('to', 'TO'), ('do', 'VB'), ('some', 'DT'), ('heavy', 'JJ'), ('lifting', 'NN'), ('this', 'DT'), ('weekend', 'NN')], [('have', 'VB'), ('a', 'DT'), ('great', 'JJ'), ('one', 'CD'), ('and', 'CC'), ('dont', 'VB'), ('forget', 'VB'), ('the', 'DT'), ('treat', 'NN'), ('next', 'JJ'), ('weekend', 'NN'), ('for', 'IN'), ('all', 'DT'), ('of', 'IN'), ('us', 'PRP')], [('please', 'VB'), ('log', 'NN'), ('on', 'IN'), ('to', 'TO'), ('and', 'CC'), ('submit', 'VB'), ('your', 'PRP$'), ('tax', 'NN'), ('declaration', 'NN'), ('for', 'IN'), ('financial', 'JJ'), ('year', 'NN'), ('20142015', 'CD'), ('and', 'CC'), ('the', 'DT'), ('same', 'JJ'), ('will', 'MD'), ('be', 'VB'), ('updated', 'VBN'), ('in', 'IN'), ('aug', 'JJ'), ('2014', 'CD'), ('xxxxxxx', 'NN')], [('i', 'NN'), ('will', 'MD'), ('continue', 'VB'), ('testing', 'VBG'), ('the', 'DT'), ('same', 'JJ'), ('on', 'IN'), ('browsers', 'NNS'), ('tomorrow', 'NN')], [('tuesday', 'NN'), ('may', 'MD'), ('20th', 'CD'), ('finalization', 'NN'), ('of', 'IN'), ('all', 'DT'), ('functional', 'JJ'), ('specs', 'NN')], [('sorry', 'NN'), ('sir', 'NN'), ('i', 'NN'), ('had', 'VBD'), ('a', 'DT'), ('test', 'NN'), ('last', 'JJ'), ('week', 'NN'), ('so', 'RB'), ('that', 'IN'), ('im', 'NN'), ('unable', 'JJ'), ('to', 'TO'), ('study', 'VB'), ('python', 'NN'), ('from', 'IN'), ('today', 'NN'), ('onwords', 'NNS'), ('i', 'RB'), ('started', 'VBD'), ('to', 'TO'), ('study', 'VB'), ('and', 'CC'), ('i', 'VB'), ('have', 'VBP'), ('seen', 'VBN'), ('your', 'PRP$'), ('mail', 'NN'), ('now', 'RB'), ('onlyi', 'VBP'), ('will', 'MD'), ('complete', 'VB'), ('this', 'DT'), ('programs', 'NNS'), ('with', 'IN'), ('in', 'IN'), ('this', 'DT'), ('week', 'NN')], [('also', 'RB'), ('please', 'NN'), ('can', 'MD'), ('the', 'DT'), ('xxx', 'NNP'), ('admin', 'NN'), ('module', 'NN'), ('be', 'VB'), ('checked', 'VBN'), ('tomorrow', 'NN'), ('since', 'IN'), ('the', 'DT'), ('class', 'NN'), ('that', 'IN'), ('start', 'NN'), ('at', 'IN'), ('yyyy', 'NN'), ('xxxxxxx', 'NN'), ('time', 'NN'), ('will', 'MD'), ('finish', 'VB'), ('at', 'IN'), ('yyyy', 'NN'), ('pm', 'NN'), ('today', 'NN')], [('xxxxx', 'NN'), ('and', 'CC'), ('i', 'NN'), ('are', 'VBP'), ('meeting', 'VBG'), ('tomorrow', 'NN'), ('at', 'IN'), ('8am', 'CD'), ('at', 'IN'), ('xxxxxx', 'NN'), ('in', 'IN'), ('xxxxxxxxx', 'NNP'), ('address', 'NN'), ('below', 'IN')], [('its', 'PRP$'), ('for', 'IN'), ('hosting', 'NN'), ('in', 'IN'), ('august', 'NN'), ('for', 'IN'), ('five', 'CD'), ('days', 'NNS'), ('yyyy', 'RB'), ('though', 'IN')], [('so', 'RB'), ('will', 'MD'), ('be', 'VB'), ('available', 'JJ'), ('in', 'IN'), ('office', 'NN'), ('from', 'IN'), ('1200', 'CD'), ('noon', 'NN'), ('tomorrow', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('on', 'IN'), ('leave', 'NN'), ('from', 'IN'), ('tomorrow', 'NN'), ('through', 'IN'), ('sunday', 'NN')], [('i', 'NN'), ('will', 'MD'), ('return', 'VB'), ('to', 'TO'), ('my', 'PRP$'), ('office', 'NN'), ('on', 'IN'), ('thursday', 'NN'), ('3rd', 'CD'), ('july', 'NN'), ('for', 'IN'), ('one', 'CD'), ('day', 'NN'), ('and', 'CC'), ('then', 'RB'), ('will', 'MD'), ('be', 'VB'), ('at', 'IN'), ('international', 'JJ'), ('conferences', 'NNS'), ('until', 'IN'), ('monday', 'JJ'), ('21st', 'CD'), ('july', 'NN')], [('this', 'DT'), ('weekend', 'NN'), ('we', 'PRP'), ('wont', 'VBP'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('come', 'VB'), ('there', 'RB'), ('and', 'CC'), ('the', 'DT'), ('thing', 'NN'), ('is', 'VBZ'), ('sat', 'JJ'), ('my', 'PRP$'), ('close', 'JJ'), ('friend', 'NN'), ('has', 'VBZ'), ('a', 'DT'), ('devi', 'NN'), ('pooja', 'NN'), ('and', 'CC'), ('she', 'PRP'), ('needed', 'VBD'), ('help', 'NN'), ('frisat', 'VB'), ('morning', 'NN'), ('to', 'TO'), ('get', 'VB'), ('the', 'DT'), ('things', 'NNS'), ('set', 'VBD'), ('up', 'RP')], [('i', 'RB'), ('shall', 'MD'), ('talk', 'VB'), ('to', 'TO'), ('xxx', 'VB'), ('xxxxxxxxxx', 'NNP'), ('and', 'CC'), ('confirm', 'NN'), ('to', 'TO'), ('you', 'PRP'), ('only', 'RB'), ('by', 'IN'), ('tomorrow', 'NN'), ('morning', 'NN'), ('as', 'IN'), ('he', 'PRP'), ('may', 'MD'), ('not', 'RB'), ('be', 'VB'), ('available', 'JJ'), ('today', 'NN')], [('xxxxxxxxxx', 'NN'), ('bootcamp', 'NN'), ('august', 'RB'), ('9', 'CD'), ('2014', 'CD'), ('xxxxx', 'NN'), ('xxxxxxxxx', 'NN'), ('from', 'IN'), ('an', 'DT'), ('industry', 'NN'), ('expert', 'NN')], [('pilot', 'NN'), ('will', 'MD'), ('be', 'VB'), ('carried', 'VBN'), ('for', 'IN'), ('a', 'DT'), ('period', 'NN'), ('of', 'IN'), ('four', 'CD'), ('weeks', 'NNS'), ('starting', 'VBG'), ('from', 'IN'), ('30', 'CD'), ('june', 'NN'), ('2014', 'CD')], [('your', 'PRP$'), ('xxxx', 'NN'), ('xxxxxxx', 'NN'), ('is', 'VBZ'), ('xxxxxxxxxx', 'JJ'), ('and', 'CC'), ('this', 'DT'), ('voucher', 'NN'), ('will', 'MD'), ('be', 'VB'), ('valid', 'JJ'), ('upto', 'JJ'), ('june', 'NN'), ('30', 'CD'), ('2014', 'CD')], [('as', 'IN'), ('we', 'PRP'), ('head', 'VBP'), ('into', 'IN'), ('the', 'DT'), ('roc', 'NN'), ('meeting', 'NN'), ('on', 'IN'), ('tuesday', 'NN'), ('july', 'RB'), ('1', 'CD'), ('we', 'PRP'), ('are', 'VBP'), ('planning', 'VBG'), ('for', 'IN'), ('consultations', 'NNS'), ('more', 'JJR'), ('meetings', 'NNS'), ('with', 'IN'), ('moh', 'NN'), ('and', 'CC'), ('then', 'RB'), ('an', 'DT'), ('appraisal', 'NN'), ('mission', 'NN'), ('to', 'TO'), ('start', 'VB'), ('july', 'NN'), ('14', 'CD')], [('have', 'VB'), ('set', 'VBN'), ('all', 'DT'), ('timers', 'NNS'), ('to', 'TO'), ('monday', 'VB'), ('for', 'IN'), ('us', 'PRP'), ('to', 'TO'), ('evaluate', 'VB'), ('again', 'RB')], [('xxxxxx', 'JJ'), ('xxxxx', 'NNP'), ('chatting', 'VBG'), ('with', 'IN'), ('you', 'PRP'), ('over', 'IN'), ('coffee', 'NN'), ('this', 'DT'), ('week', 'NN')], [('hi', 'NN'), ('xxxx', 'NN'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('ooto', 'VBN'), ('on', 'IN'), ('monday', 'NN'), ('and', 'CC'), ('tuesday', 'NN')], [('xxx', 'NN'), ('is', 'VBZ'), ('very', 'RB'), ('keen', 'JJ'), ('for', 'IN'), ('us', 'PRP'), ('to', 'TO'), ('stick', 'VB'), ('to', 'TO'), ('board', 'NN'), ('date', 'NN'), ('in', 'IN'), ('sept', 'JJ'), ('end', 'NN')], [('i', 'NN'), ('will', 'MD'), ('revert', 'VB'), ('on', 'IN'), ('monday', 'NN'), ('with', 'IN'), ('a', 'DT'), ('definitive', 'JJ'), ('schedule', 'NN'), ('for', 'IN'), ('him', 'PRP')], [('i', 'NNS'), ('hope', 'VBP'), ('the', 'DT'), ('august', 'JJ'), ('6', 'CD'), ('internal', 'JJ'), ('xxx', 'NN'), ('meeting', 'NN'), ('go', 'VBP'), ('as', 'IN'), ('planned', 'VBN'), ('given', 'VBN'), ('the', 'DT'), ('changes', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('ministry', 'NN')], [('youre', 'NN'), ('reminded', 'VBD'), ('to', 'TO'), ('review', 'VB'), ('the', 'DT'), ('files', 'NNS'), ('for', 'IN'), ('tomorrows', 'NNS'), ('big', 'JJ'), ('meeting', 'NN')], [('please', 'VB'), ('pull', 'VB'), ('yourself', 'PRP'), ('together', 'RB'), ('for', 'IN'), ('one', 'CD'), ('more', 'JJR'), ('day', 'NN'), ('of', 'IN'), ('intense', 'JJ'), ('work', 'NN'), ('tomorrow', 'NN')], [('the', 'DT'), ('updated', 'JJ'), ('terms', 'NNS'), ('of', 'IN'), ('xxxxxxx', 'NN'), ('and', 'CC'), ('xxxxxxx', 'VB'), ('xxxxxx', 'NNP'), ('go', 'VB'), ('into', 'IN'), ('effect', 'NN'), ('on', 'IN'), ('august', 'NN'), ('11', 'CD'), ('2014', 'CD')], [('3', 'CD'), ('we', 'PRP'), ('will', 'MD'), ('like', 'VB'), ('to', 'TO'), ('visit', 'VB'), ('the', 'DT'), ('site', 'NN'), ('on', 'IN'), ('sunday', 'NN'), ('at', 'IN'), ('yyyyy', 'NN'), ('am', 'VBP')], [('ill', 'JJ'), ('send', 'VB'), ('a', 'DT'), ('redesigned', 'JJ'), ('homepage', 'NN'), ('tomorrow', 'NN')], [('harish', 'JJ'), ('sent', 'VBD'), ('invitation', 'NN'), ('for', 'IN'), ('thu', 'NN'), ('at', 'IN'), ('3', 'CD'), ('pm', 'NN')], [('xxxxxxxxxxxxxxxx', 'RB'), ('request', 'NN'), ('you', 'PRP'), ('to', 'TO'), ('check', 'VB'), ('the', 'DT'), ('xxxxxxxx', 'NNP'), ('score', 'NN'), ('bucketing', 'NN'), ('and', 'CC'), ('report', 'NN'), ('by', 'IN'), ('sunday', 'JJ'), ('xxx', 'NNS')], [('i', 'NN'), ('am', 'VBP'), ('traveling', 'VBG'), ('all', 'DT'), ('of', 'IN'), ('june', 'NN'), ('and', 'CC'), ('early', 'JJ'), ('july', 'NN')], [('xxxxxx', 'JJ'), ('october', '$'), ('15', 'CD'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('call', 'NN'), ('for', 'IN'), ('xxxxxx', 'NN'), ('closing', 'NN'), ('soon', 'RB')], [('will', 'MD'), ('do', 'VB'), ('a', 'DT'), ('date', 'NN'), ('check', 'NN'), ('tomorrow', 'NN'), ('to', 'TO'), ('validate', 'VB')], [('i', 'NN'), ('am', 'VBP'), ('fairly', 'RB'), ('open', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('except', 'IN'), ('wednesday', 'NN')], [('check', 'NN'), ('in', 'IN'), ('18', 'CD'), ('june', 'NN'), ('check', 'NN'), ('out', 'IN'), ('20', 'CD'), ('june', 'NN')], [('august', 'RB'), ('1st', 'CD'), ('it', 'PRP'), ('is', 'VBZ'), ('this', 'DT'), ('year', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('discussing', 'VBG'), ('internally', 'RB'), ('and', 'CC'), ('will', 'MD'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('by', 'IN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('need', 'VB'), ('to', 'TO'), ('figure', 'VB'), ('this', 'DT'), ('out', 'RP'), ('before', 'IN'), ('tomorrows', 'NNS'), ('meeting', 'VBG'), ('with', 'IN'), ('xxx', 'NNP'), ('xxxx', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('continue', 'VB'), ('our', 'PRP$'), ('classes', 'NNS'), ('from', 'IN'), ('next', 'JJ'), ('saturday', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('working', 'VBG'), ('on', 'IN'), ('this', 'DT'), ('and', 'CC'), ('will', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('share', 'NN'), ('it', 'PRP'), ('late', 'JJ'), ('afternoon', 'NN'), ('tomorrow', 'NN')], [('the', 'DT'), ('payment', 'NN'), ('would', 'MD'), ('be', 'VB'), ('made', 'VBN'), ('today', 'NN'), ('tomorrow', 'NN')], [('xxxxxxxxx', 'JJ'), ('xxxx', 'NNP'), ('xxx', 'NNP'), ('friday', 'NN'), ('may', 'MD'), ('23', 'CD'), ('2014', 'CD')], [('yeah', 'NN'), ('sure', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('come', 'VB'), ('tomorrow', 'NN')], [('xxxxxxxx', 'JJ'), ('xxxx', 'NN'), ('is', 'VBZ'), ('available', 'JJ'), ('for', 'IN'), ('telephonic', 'JJ'), ('interview', 'NN'), ('x', 'VBD'), ('200', 'CD'), ('pm', 'NN'), ('tomorrow', 'NN'), ('20th', 'CD'), ('may', 'MD'), ('and', 'CC'), ('heres', 'VB'), ('the', 'DT'), ('attached', 'JJ'), ('resume', 'NN')], [('i', 'NN'), ('was', 'VBD'), ('able', 'JJ'), ('to', 'TO'), ('manage', 'VB'), ('a', 'DT'), ('train', 'NN'), ('booking', 'NN'), ('in', 'IN'), ('ii', 'JJ'), ('class', 'NN'), ('by', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxx', 'NNP'), ('yy00', 'NNP'), ('am', 'VBP'), ('and', 'CC'), ('xxxxxxx', 'VBP'), ('230', 'CD'), ('pm', 'NN'), ('on', 'IN'), ('aug', 'NN'), ('26th', 'CD'), ('tuesday', 'NN')], [('date', 'NN'), ('7012014', 'CD'), ('xxxxx', 'NN'), ('xxxxx', 'NNP'), ('usyyyyy', 'JJ'), ('payment', 'NN'), ('method', 'NN'), ('visayyyy', 'NN'), ('xxxxxxx', 'NNP'), ('yyyyyyyyy', 'NN')], [('the', 'DT'), ('meeting', 'NN'), ('is', 'VBZ'), ('now', 'RB'), ('fixed', 'VBN'), ('on', 'IN'), ('15th', 'CD'), ('july', 'NN'), ('2014', 'CD'), ('between', 'IN'), ('1030', 'CD'), ('am', 'VBP'), ('and', 'CC'), ('yy', 'VBP'), ('yy', 'JJR'), ('am', 'VBP'), ('at', 'IN'), ('xxxx', 'NNP'), ('xxxxx', 'NNP'), ('2nd', 'CD'), ('floor', 'NN'), ('xxxxx', 'CD'), ('xxxx', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('the', 'DT'), ('docs', 'NN'), ('ready', 'JJ'), ('by', 'IN'), ('monday', 'NN')], [('xxxxxx', 'NN'), ('will', 'MD'), ('drop', 'VB'), ('in', 'IN'), ('for', 'IN'), ('the', 'DT'), ('session', 'NN'), ('tomorrow', 'NN')], [('i', 'NN'), ('feel', 'VBP'), ('xxxxs', 'JJ'), ('operation', 'NN'), ('was', 'VBD'), ('first', 'JJ'), ('fixed', 'VBN'), ('on', 'IN'), ('a', 'DT'), ('friday', 'NN'), ('or', 'CC'), ('saturday', 'NN'), ('i', 'NNS'), ('do', 'VBP'), ('not', 'RB'), ('remember', 'VB')], [('submission', 'NN'), ('deadline', 'NN'), ('extended', 'VBN'), ('yyy', 'RB'), ('august', 'JJ'), ('2014', 'CD')], [('xxxxxxxxx', 'JJ'), ('xxxx', 'NNP'), ('xxx', 'NNP'), ('friday', 'NN'), ('may', 'MD'), ('23', 'CD'), ('2014', 'CD')], [('sure', 'JJ'), ('tomorrow', 'NN'), ('i', 'NN'), ('will', 'MD'), ('fix', 'VB'), ('the', 'DT'), ('issue', 'NN')], [('this', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('optimisation', 'NN'), ('which', 'WDT'), ('is', 'VBZ'), ('going', 'VBG'), ('to', 'TO'), ('be', 'VB'), ('implemented', 'VBN'), ('on', 'IN'), ('july', 'NN'), ('1', 'CD')], [('xxxx', 'RB'), ('6', 'CD'), ('from', 'IN'), ('130', 'CD'), ('pm230', 'NN'), ('pm', 'NN'), ('at', 'IN'), ('yyy', 'JJ'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('in', 'IN'), ('xxxxx', 'NNP'), ('xxxx', 'NN')], [('sorry', 'NN'), ('i', 'NN'), ('wont', 'VBP'), ('be', 'VB'), ('at', 'IN'), ('the', 'DT'), ('apartment', 'NN'), ('until', 'IN'), ('tomorrow', 'NN'), ('yyyyp', 'NN')], [('note', 'NN'), ('xxxx', 'NN'), ('reminder', 'NN'), ('tomorrow', 'NN'), ('is', 'VBZ'), ('a', 'DT'), ('green', 'JJ'), ('xxx', 'NN'), ('xxxxxxxxxxx', 'NN'), ('for', 'IN'), ('xxx', 'NNP'), ('primary', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('upload', 'VB'), ('the', 'DT'), ('cash', 'NN'), ('reimbursement', 'NN'), ('through', 'IN'), ('online', 'NN'), ('to', 'TO'), ('your', 'PRP$'), ('account', 'NN'), ('tomorrow', 'NN')], [('he', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('free', 'JJ'), ('by', 'IN'), ('tomorrow', 'NN'), ('to', 'TO'), ('take', 'VB'), ('this', 'DT'), ('up', 'RP')], [('we', 'PRP'), ('will', 'MD'), ('talk', 'VB'), ('to', 'TO'), ('xxxxxx', 'VB'), ('today', 'NN'), ('to', 'TO'), ('find', 'VB'), ('out', 'RP'), ('his', 'PRP$'), ('relocation', 'NN'), ('needs', 'NNS'), ('and', 'CC'), ('roll', 'NN'), ('out', 'RP'), ('the', 'DT'), ('offer', 'NN'), ('by', 'IN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('planto', 'VBP'), ('release', 'VB'), ('the', 'DT'), ('first', 'JJ'), ('version', 'NN'), ('of', 'IN'), ('the', 'DT'), ('active', 'JJ'), ('candidate', 'NN'), ('search', 'NN'), ('engine', 'NN'), ('by', 'IN'), ('aug', 'NN'), ('mid', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('product', 'NN'), ('we', 'PRP'), ('are', 'VBP'), ('working', 'VBG'), ('on', 'IN'), ('at', 'IN'), ('the', 'DT'), ('moment', 'NN')], [('xxxxx', 'JJ'), ('xxxxxxxxx', 'NNP'), ('invited', 'VBD'), ('you', 'PRP'), ('to', 'TO'), ('xxxxxxxxs', 'VB'), ('yyy', 'JJ'), ('birthday', 'NN'), ('on', 'IN'), ('07182014', 'CD'), ('at', 'IN'), ('0700', 'CD'), ('pm', 'NN'), ('hosted', 'VBN'), ('by', 'IN'), ('xxxxx', 'NNP'), ('xxxxxxxx', 'NN')], [('i', 'RB'), ('agree', 'VBP'), ('it', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('really', 'RB'), ('great', 'JJ'), ('if', 'IN'), ('xxxxxx', 'NNS'), ('can', 'MD'), ('visit', 'VB'), ('in', 'IN'), ('xxxx', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('try', 'VB'), ('to', 'TO'), ('schedule', 'VB'), ('something', 'NN'), ('in', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('few', 'JJ'), ('days', 'NNS'), ('i', 'VBP'), ('am', 'VBP'), ('pretty', 'RB'), ('open', 'JJ'), ('on', 'IN'), ('this', 'DT'), ('friday', 'NN'), ('but', 'CC'), ('traveling', 'VBG'), ('early', 'JJ'), ('part', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('please', 'NN'), ('expect', 'VB'), ('some', 'DT'), ('turbulence', 'NN'), ('in', 'IN'), ('the', 'DT'), ('timings', 'NNS'), ('of', 'IN'), ('drop', 'NN'), ('off', 'IN'), ('and', 'CC'), ('pick', 'VB'), ('up', 'RP'), ('by', 'IN'), ('the', 'DT'), ('van', 'NN'), ('for', 'IN'), ('this', 'DT'), ('week', 'NN'), ('it', 'PRP'), ('is', 'VBZ'), ('the', 'DT'), ('first', 'JJ'), ('week', 'NN'), ('and', 'CC'), ('the', 'DT'), ('driver', 'NN'), ('needs', 'VBZ'), ('some', 'DT'), ('time', 'NN'), ('to', 'TO'), ('understand', 'VB'), ('the', 'DT'), ('logistics', 'NNS')], [('have', 'VB'), ('a', 'DT'), ('great', 'JJ'), ('run', 'NN'), ('tomorrow', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('leaving', 'VBG'), ('for', 'IN'), ('xxxxxx', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('we', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('send', 'VB'), ('this', 'DT'), ('to', 'TO'), ('the', 'DT'), ('client', 'NN'), ('tomorrow', 'NN')], [('he', 'PRP'), ('returns', 'VBZ'), ('to', 'TO'), ('the', 'DT'), ('office', 'NN'), ('on', 'IN'), ('aug', 'NN'), ('18', 'CD'), ('but', 'CC'), ('hes', 'NNS'), ('in', 'IN'), ('many', 'JJ'), ('day', 'NN'), ('long', 'JJ'), ('sessions', 'NNS'), ('following', 'VBG')], [('aug', 'NN'), ('is', 'VBZ'), ('round', 'VBN'), ('the', 'DT'), ('corner', 'NN')], [('will', 'MD'), ('ensure', 'VB'), ('we', 'PRP'), ('send', 'VBP'), ('the', 'DT'), ('first', 'JJ'), ('invoice', 'NN'), ('positively', 'RB'), ('on', 'IN'), ('monday', 'NN')], [('before', 'IN'), ('end', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN'), ('all', 'PDT'), ('the', 'DT'), ('above', 'JJ'), ('items', 'NNS'), ('except', 'IN'), ('4', 'CD'), ('will', 'MD'), ('be', 'VB'), ('done', 'VBN')], [('thursday', 'JJ'), ('morning', 'NN'), ('11', 'CD'), ('am', 'VBP'), ('sounds', 'VBZ'), ('great', 'JJ')], [('we', 'PRP'), ('will', 'MD'), ('need', 'VB'), ('you', 'PRP'), ('for', 'IN'), ('the', 'DT'), ('xxxx', 'NNP'), ('y', 'NNP'), ('launch', 'JJ'), ('preparation', 'NN'), ('on', 'IN'), ('aug', 'NN'), ('27th', 'CD'), ('and', 'CC'), ('28th', 'CD')], [('we', 'PRP'), ('are', 'VBP'), ('starting', 'VBG'), ('a', 'DT'), ('pilot', 'NN'), ('with', 'IN'), ('xx', 'NNP'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('college', 'NN'), ('in', 'IN'), ('xxxx', 'NN'), ('from', 'IN'), ('coming', 'VBG'), ('monday', 'JJ'), ('onwards', 'NNS'), ('for', 'IN'), ('around', 'IN'), ('4', 'CD'), ('weeks', 'NNS')], [('the', 'DT'), ('pad', 'NN'), ('has', 'VBZ'), ('to', 'TO'), ('go', 'VB'), ('out', 'RP'), ('to', 'TO'), ('xxxxxx', 'VB'), ('on', 'IN'), ('tuesday', 'JJ'), ('june', 'NN'), ('17', 'CD')], [('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('discuss', 'VB'), ('next', 'JJ'), ('week', 'NN')], [('he', 'PRP'), ('will', 'MD'), ('revert', 'VB'), ('on', 'IN'), ('the', 'DT'), ('below', 'NN'), ('points', 'NNS'), ('by', 'IN'), ('monday', 'NN')], [('hi', 'NN'), ('xxxxx', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('travelling', 'VBG'), ('yy', 'NN'), ('yy', 'NN'), ('and', 'CC'), ('will', 'MD'), ('miss', 'VB'), ('volunteering', 'VBG'), ('this', 'DT'), ('month', 'NN')], [('hi', 'NN'), ('xxxxxxxxx', 'NN'), ('called', 'VBN'), ('up', 'RP'), ('kanchan', 'NN'), ('just', 'RB'), ('now', 'RB'), ('am', 'VBP'), ('working', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('icon', 'NN'), ('set', 'VBN'), ('right', 'RB'), ('now', 'RB'), ('once', 'RB'), ('that', 'DT'), ('is', 'VBZ'), ('done', 'VBN'), ('will', 'MD'), ('update', 'VB'), ('the', 'DT'), ('detail', 'NN'), ('view', 'NN'), ('along', 'IN'), ('with', 'IN'), ('the', 'DT'), ('feedback', 'NN'), ('from', 'IN'), ('xxxxxxx', 'NNP'), ('she', 'PRP'), ('said', 'VBD'), ('monday', 'NN'), ('will', 'MD'), ('go', 'VB'), ('over', 'IN'), ('the', 'DT'), ('list', 'NN'), ('and', 'CC'), ('take', 'VB'), ('it', 'PRP'), ('further', 'RB')], [('image', 'NN'), ('xxxxxx', 'JJ'), ('growth', 'NN'), ('hacking', 'VBG'), ('online', 'JJ'), ('xxxxxx', 'NNP'), ('july', 'NN'), ('26', 'CD'), ('filling', 'VBG'), ('fast', 'RB'), ('did', 'VBD'), ('you', 'PRP'), ('know', 'VBP'), ('that', 'IN'), ('growth', 'NN'), ('hacker', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('new', 'JJ'), ('vp', 'NN'), ('of', 'IN'), ('xxxxxxxxx', 'NN')], [('we', 'PRP'), ('have', 'VBP'), ('read', 'VBN'), ('up', 'RP'), ('to', 'TO'), ('an', 'DT'), ('extent', 'NN'), ('and', 'CC'), ('well', 'RB'), ('try', 'VB'), ('understanding', 'VBG'), ('more', 'JJR'), ('of', 'IN'), ('it', 'PRP'), ('by', 'IN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('cordially', 'RB'), ('inviting', 'VBG'), ('you', 'PRP'), ('for', 'IN'), ('the', 'DT'), ('inauguration', 'NN'), ('of', 'IN'), ('xxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('phase', 'NN'), ('iii', 'NN'), ('buildings', 'NNS'), ('consisting', 'VBG'), ('of', 'IN'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('complex', 'NN'), ('and', 'CC'), ('xxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('on', 'IN'), ('23rd', 'CD'), ('august', 'NN'), ('2014', 'CD')], [('i', 'NNS'), ('need', 'VBP'), ('the', 'DT'), ('set', 'NN'), ('up', 'RP'), ('to', 'TO'), ('be', 'VB'), ('installed', 'VBN'), ('with', 'IN'), ('the', 'DT'), ('smooth', 'JJ'), ('operation', 'NN'), ('within', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('xxxxxxxxx', 'JJ'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NN'), ('on', 'IN'), ('sat', 'NN')], [('requesting', 'VBG'), ('for', 'IN'), ('a', 'DT'), ('hangout', 'NN'), ('sometime', 'RB'), ('in', 'IN'), ('early', 'JJ'), ('july', 'NN')], [('bitte', 'NN'), ('teilen', 'NN'), ('sie', 'NN'), ('mir', 'NN'), ('mit', 'NN'), ('ob', 'IN'), ('sie', 'NN'), ('am', 'VBP'), ('xxxxxx', '$'), ('21072014', 'CD'), ('um', 'JJ'), ('yyyyy', 'NN'), ('xxx', 'NNP'), ('zu', 'NNP'), ('einer', 'NN'), ('xxxxxxxxxxxx', 'NNP'), ('kommen', 'NNS'), ('knnen', 'VBD'), ('ich', 'JJ'), ('teile', 'NN'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('die', 'NN'), ('genaue', 'NN'), ('anschrift', 'NN'), ('mit', 'NN')], [('please', 'VB'), ('complete', 'JJ'), ('this', 'DT'), ('by', 'IN'), ('eod', 'NN'), ('friday', 'NN')], [('as', 'IN'), ('you', 'PRP'), ('may', 'MD'), ('be', 'VB'), ('aware', 'JJ'), ('tomorrow', 'NN'), ('is', 'VBZ'), ('going', 'VBG'), ('to', 'TO'), ('be', 'VB'), ('my', 'PRP$'), ('penultimate', 'JJ'), ('day', 'NN'), ('at', 'IN'), ('xxxxxxxxx', 'NN')], [('xxxx', 'NN'), ('you', 'PRP'), ('will', 'MD'), ('talk', 'VB'), ('to', 'TO'), ('mrsuresh', 'VB'), ('this', 'DT'), ('week', 'NN'), ('and', 'CC'), ('inform', 'VB'), ('him', 'PRP'), ('about', 'IN'), ('the', 'DT'), ('work', 'NN'), ('schedule', 'NN')], [('this', 'DT'), ('is', 'VBZ'), ('for', 'IN'), ('your', 'PRP$'), ('kind', 'NN'), ('information', 'NN'), ('the', 'DT'), ('reopening', 'NN'), ('date', 'NN'), ('for', 'IN'), ('the', 'DT'), ('classes', 'NNS'), ('y', 'VBP'), ('to', 'TO'), ('y', 'VB'), ('is', 'VBZ'), ('rescheduled', 'VBN'), ('to', 'TO'), ('june', 'VB'), ('9th', 'CD'), ('2014', 'CD'), ('and', 'CC'), ('for', 'IN'), ('xxxxxxx', 'NNP'), ('pp1', 'NN'), ('and', 'CC'), ('pp2', 'NN'), ('are', 'VBP'), ('rescheduled', 'VBN'), ('on', 'IN'), ('june', 'NN'), ('11th', 'CD'), ('2014', 'CD')], [('hi', 'NN'), ('alli', 'NN'), ('am', 'VBP'), ('joining', 'VBG'), ('along', 'IN'), ('with', 'IN'), ('xxxxxx', 'NNP'), ('as', 'IN'), ('i', 'JJ'), ('start', 'VBP'), ('tomorrow', 'NN'), ('regards', 'NNS'), ('xxxxxx', 'VBP')], [('xxxxxxxx', 'NN'), ('xxxxxxxxxxxxx', 'NN'), ('will', 'MD'), ('be', 'VB'), ('held', 'VBN'), ('october', 'RB'), ('1', 'CD'), ('2014', 'CD')], [('we', 'PRP'), ('will', 'MD'), ('finalize', 'VB'), ('the', 'DT'), ('modeling', 'NN'), ('framework', 'NN'), ('early', 'RB'), ('next', 'JJ'), ('week', 'NN')], [('on', 'IN'), ('this', 'DT'), ('special', 'JJ'), ('day', 'NN'), ('we', 'PRP'), ('wish', 'VBP'), ('you', 'PRP'), ('all', 'PDT'), ('the', 'DT'), ('very', 'RB'), ('best', 'JJS'), ('all', 'PDT'), ('the', 'DT'), ('joy', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('ever', 'RB'), ('have', 'VB'), ('and', 'CC'), ('may', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('blessed', 'VBN'), ('abundantly', 'RB'), ('today', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('the', 'DT'), ('days', 'NNS'), ('to', 'TO'), ('come', 'VB')], [('just', 'RB'), ('wanted', 'VBN'), ('to', 'TO'), ('let', 'VB'), ('you', 'PRP'), ('know', 'VB'), ('that', 'DT'), ('tomorrow', 'NN'), ('thursday', 'NN'), ('may', 'MD'), ('15th', 'CD'), ('marks', 'NNS'), ('the', 'DT'), ('100th', 'JJ'), ('episode', 'NN'), ('of', 'IN'), ('icc', 'NN'), ('cricket', 'NN'), ('yyy', 'NN')], [('xxxxxx', 'NN'), ('could', 'MD'), ('start', 'VB'), ('from', 'IN'), ('tomorrow', 'NN'), ('if', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('critical', 'JJ'), ('to', 'TO'), ('start', 'VB'), ('tomorrow', 'NN')], [('no', 'DT'), ('no', 'DT'), ('saturday', 'NN'), ('is', 'VBZ'), ('very', 'RB'), ('busy', 'JJ')], [('please', 'NN'), ('block', 'VB'), ('good', 'JJ'), ('rooms', 'NNS'), ('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('check', 'VBN'), ('in', 'IN'), ('by', 'IN'), ('15th', 'CD'), ('aug', 'NNS'), ('by', 'IN'), ('yy', 'JJ'), ('noon', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('check', 'VB'), ('out', 'RP'), ('by', 'IN'), ('17th', 'CD'), ('aug', 'NNS'), ('morning', 'NN'), ('before', 'IN'), ('9', 'CD'), ('am', 'VBP')], [('as', 'IN'), ('you', 'PRP'), ('know', 'VBP'), ('it', 'PRP'), ('is', 'VBZ'), ('important', 'JJ'), ('to', 'TO'), ('close', 'VB'), ('the', 'DT'), ('interactions', 'NNS'), ('with', 'IN'), ('all', 'PDT'), ('the', 'DT'), ('entrepreneurs', 'NNS'), ('in', 'IN'), ('today', 'NN'), ('and', 'CC'), ('tomorrow', 'NN')], [('otherwise', 'RB'), ('the', 'DT'), ('team', 'NN'), ('can', 'MD'), ('join', 'VB'), ('xx', 'NNP'), ('in', 'IN'), ('the', 'DT'), ('morning', 'NN'), ('30th', 'CD'), ('may', 'MD'), ('1st', 'CD'), ('april', 'NN')], [('im', 'NN'), ('departing', 'VBG'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxx', 'NN'), ('on', 'IN'), ('sunday', 'JJ'), ('330', 'CD'), ('pm', 'NN'), ('pg', 'NN'), ('yyy', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('expecting', 'VBG'), ('this', 'DT'), ('to', 'TO'), ('be', 'VB'), ('finished', 'VBN'), ('by', 'IN'), ('sunday', 'NN'), ('late', 'JJ'), ('afternoon', 'NN'), ('hopefully', 'RB')], [('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('tomorrow', 'NN'), ('some', 'DT'), ('slides', 'NNS'), ('that', 'IN'), ('i', 'NN'), ('had', 'VBD'), ('started', 'VBN'), ('putting', 'VBG'), ('together', 'RB'), ('mainly', 'RB'), ('updating', 'VBG'), ('some', 'DT'), ('of', 'IN'), ('yours', 'NNS'), ('with', 'IN'), ('more', 'RBR'), ('recent', 'JJ'), ('data', 'NN'), ('and', 'CC'), ('the', 'DT'), ('facilities', 'NNS'), ('to', 'TO'), ('be', 'VB'), ('covers', 'NNS'), ('by', 'IN'), ('the', 'DT'), ('project', 'NN')], [('you', 'PRP'), ('had', 'VBD'), ('few', 'JJ'), ('deliverables', 'NNS'), ('this', 'DT'), ('week', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('speaking', 'VBG'), ('to', 'TO'), ('the', 'DT'), ('developer', 'NN'), ('tomorrow', 'NN'), ('to', 'TO'), ('find', 'VB'), ('out', 'RP'), ('more', 'JJR')], [('xxxxxxx', 'NNS'), ('kindly', 'RB'), ('suggest', 'VBP'), ('as', 'RB'), ('well', 'RB'), ('by', 'IN'), ('friday', 'JJ'), ('cob', 'JJ'), ('please', 'NN'), ('sorry', 'NN'), ('for', 'IN'), ('the', 'DT'), ('short', 'JJ'), ('notice', 'NN')], [('in', 'IN'), ('xxxxxxxx', 'NNP'), ('casual', 'JJ'), ('leave', 'NN'), ('has', 'VBZ'), ('to', 'TO'), ('applied', 'VBN'), ('before', 'IN'), ('20', 'CD'), ('days', 'NNS'), ('and', 'CC'), ('my', 'PRP$'), ('date', 'NN'), ('of', 'IN'), ('travel', 'NN'), ('is', 'VBZ'), ('on', 'IN'), ('jun', 'NN'), ('3', 'CD')], [('subject', 'JJ'), ('call', 'NN'), ('lead', 'NN'), ('for', 'IN'), ('counseling', 'VBG'), ('due', 'JJ'), ('date', 'NN'), ('20140807', 'CD')], [('regarding', 'VBG'), ('the', 'DT'), ('removing', 'NN'), ('of', 'IN'), ('some', 'DT'), ('features', 'NNS'), ('from', 'IN'), ('our', 'PRP$'), ('platform', 'NN'), ('ill', 'NN'), ('come', 'VB'), ('up', 'RP'), ('with', 'IN'), ('a', 'DT'), ('separate', 'JJ'), ('email', 'NN'), ('in', 'IN'), ('detail', 'NN'), ('by', 'IN'), ('today', 'NN'), ('or', 'CC'), ('tomorrow', 'NN')], [('see', 'VB'), ('u', 'JJ'), ('tomorrow', 'NN')], [('so', 'RB'), ('given', 'VBN'), ('this', 'DT'), ('we', 'PRP'), ('understand', 'VBP'), ('the', 'DT'), ('client', 'NN'), ('side', 'NN'), ('development', 'NN'), ('start', 'NN'), ('date', 'NN'), ('will', 'MD'), ('be', 'VB'), ('august', 'RB'), ('18th', 'CD')], [('our', 'PRP$'), ('demo', 'NN'), ('will', 'MD'), ('be', 'VB'), ('much', 'RB'), ('stronger', 'JJR'), ('towards', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('xxxx', 'NN'), ('with', 'IN'), ('the', 'DT'), ('xxx', 'NN'), ('xx', 'NN')], [('as', 'IN'), ('i', 'NN'), ('mentioned', 'VBD'), ('xxxxx', 'NNP'), ('and', 'CC'), ('xxxxx', 'NNP'), ('are', 'VBP'), ('both', 'DT'), ('travelling', 'VBG'), ('tomorrow', 'NN'), ('and', 'CC'), ('day', 'NN'), ('after', 'IN')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('xxxxxxxxx', 'NNP'), ('june', 'NN'), ('26', 'CD'), ('till', 'NN'), ('july', 'NN'), ('1', 'CD'), ('and', 'CC'), ('then', 'RB'), ('on', 'IN'), ('july', 'NN'), ('8th', 'CD'), ('and', 'CC'), ('9th', 'CD')], [('they', 'PRP'), ('are', 'VBP'), ('having', 'VBG'), ('an', 'DT'), ('event', 'NN'), ('tomorrow', 'NN'), ('where', 'WRB'), ('potential', 'JJ'), ('business', 'NN'), ('ideas', 'NNS'), ('can', 'MD'), ('be', 'VB'), ('pitched', 'VBN'), ('in', 'IN'), ('front', 'NN'), ('of', 'IN'), ('an', 'DT'), ('audience', 'NN'), ('and', 'CC'), ('seek', 'VB'), ('their', 'PRP$'), ('feedbackvalidation', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('hosting', 'VBG'), ('a', 'DT'), ('webcast', 'NN'), ('on', 'IN'), ('emerging', 'VBG'), ('xxxxxxxxxxxxx', 'NN'), ('in', 'IN'), ('indian', 'JJ'), ('pharmaceuticals', 'NNS'), ('industry', 'NN'), ('with', 'IN'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('principal', 'NN'), ('of', 'IN'), ('mp', 'NN'), ('xxxxxxxx', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('the', 'DT'), ('23rd', 'CD'), ('june', 'NN'), ('at', 'IN'), ('yyyy', 'NN'), ('pm', 'NN'), ('let', 'VBD'), ('us', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('attend', 'VB'), ('we', 'PRP'), ('will', 'MD'), ('rsvp', 'VB'), ('and', 'CC'), ('help', 'VB'), ('arrange', 'VB'), ('access', 'NN'), ('details', 'NNS')], [('lets', 'NNS'), ('wait', 'VBP'), ('for', 'IN'), ('response', 'NN'), ('from', 'IN'), ('xxxxxxx', 'NN'), ('to', 'TO'), ('take', 'VB'), ('advantage', 'NN'), ('of', 'IN'), ('this', 'DT'), ('opportunity', 'NN'), ('to', 'TO'), ('present', 'VB'), ('on', 'IN'), ('august', 'NN'), ('with', 'IN'), ('opendns', 'NN')], [('there', 'EX'), ('is', 'VBZ'), ('a', 'DT'), ('corporate', 'JJ'), ('cricket', 'NN'), ('tournament', 'NN'), ('on', 'IN'), ('14th', 'CD'), ('and', 'CC'), ('15th', 'CD'), ('june', 'NN')], [('will', 'MD'), ('enable', 'VB'), ('xxx', 'JJ'), ('reports', 'NNS'), ('for', 'IN'), ('you', 'PRP'), ('by', 'IN'), ('tomorrow', 'NN')], [('i', 'NN'), ('will', 'MD'), ('prepare', 'VB'), ('xxxxxx', 'NNP'), ('yy', 'NNP'), ('slides', 'VBZ'), ('along', 'IN'), ('with', 'IN'), ('r', 'NN'), ('script', 'NN'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('wednesday', 'NN'), ('and', 'CC'), ('send', 'VB'), ('them', 'PRP')], [('should', 'MD'), ('you', 'PRP'), ('require', 'VB'), ('any', 'DT'), ('further', 'JJ'), ('assistance', 'NN'), ('you', 'PRP'), ('may', 'MD'), ('contact', 'VB'), ('us', 'PRP'), ('on', 'IN'), ('our', 'PRP$'), ('helpline', 'NN'), ('number', 'NN'), ('yyyyyyyyyyyyyyy', 'NN'), ('between', 'IN'), ('900am', 'CD'), ('to', 'TO'), ('0900', 'CD'), ('pm', 'NN'), ('and', 'CC'), ('sundays', 'NNS'), ('between', 'IN'), ('1000am', 'CD'), ('to', 'TO'), ('0700pm', 'CD'), ('or', 'CC'), ('email', 'VB'), ('us', 'PRP'), ('at', 'IN'), ('xxxxxxxxxxxxxxxxxxxxxxxxxx', 'NN')], [('i', 'NN'), ('will', 'MD'), ('work', 'VB'), ('on', 'IN'), ('putting', 'VBG'), ('some', 'DT'), ('more', 'JJR'), ('thoughts', 'NNS'), ('and', 'CC'), ('data', 'NNS'), ('points', 'NNS'), ('in', 'IN'), ('to', 'TO'), ('have', 'VB'), ('further', 'JJ'), ('discussions', 'NNS'), ('next', 'IN'), ('week', 'NN')], [('xxxxxxx', 'JJ'), ('velocloudperspicacoast', 'NN'), ('teams', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('most', 'RBS'), ('likely', 'JJ'), ('going', 'VBG'), ('out', 'RP'), ('on', 'IN'), ('thursday', 'NN'), ('for', 'IN'), ('a', 'DT'), ('small', 'JJ'), ('team', 'NN'), ('building', 'NN'), ('event', 'NN')], [('i', 'NN'), ('may', 'MD'), ('get', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('this', 'DT'), ('week', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('circle', 'VB'), ('back', 'RB'), ('with', 'IN'), ('you', 'PRP'), ('next', 'JJ'), ('week', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('traveling', 'VBG'), ('on', 'IN'), ('and', 'CC'), ('off', 'IN'), ('until', 'IN'), ('july', 'JJ'), ('16', 'CD'), ('so', 'IN'), ('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('difficult', 'JJ'), ('for', 'IN'), ('me', 'PRP'), ('to', 'TO'), ('meet', 'VB'), ('until', 'IN'), ('then', 'RB'), ('but', 'CC'), ('perhaps', 'RB'), ('xxxxx', 'NNS'), ('can', 'MD'), ('meet', 'VB'), ('and', 'CC'), ('if', 'IN'), ('diligence', 'NN'), ('for', 'IN'), ('mv', 'NN'), ('fund', 'NN'), ('perhaps', 'RB'), ('bring', 'VB'), ('an', 'DT'), ('excisco', 'JJ'), ('person', 'NN'), ('who', 'WP'), ('is', 'VBZ'), ('very', 'RB'), ('savvy', 'JJ'), ('in', 'IN'), ('this', 'DT'), ('space', 'NN'), ('xxxxx', 'NN'), ('i', 'JJ'), ('mean', 'VBP'), ('xxxx', 'NN')], [('will', 'MD'), ('review', 'VB'), ('tomorrow', 'NN')], [('16', 'CD'), ('jun', 'NN'), ('2014', 'CD'), ('departing', 'VBG'), ('blr', 'NN'), ('by', 'IN'), ('tg', 'JJ'), ('yyy', 'NN'), ('at', 'IN'), ('0030', 'CD'), ('and', 'CC'), ('arriving', 'VBG'), ('rgn', 'NN'), ('by', 'IN'), ('tg', 'JJ'), ('yyy', 'NN'), ('at', 'IN'), ('0850', 'CD'), ('hrs', 'NN')], [('monday', 'NN'), ('is', 'VBZ'), ('a', 'DT'), ('good', 'JJ'), ('day', 'NN'), ('2nd', 'CD'), ('half', 'NN'), ('anytime', 'NN')], [('we', 'PRP'), ('have', 'VBP'), ('made', 'VBN'), ('some', 'DT'), ('changes', 'NNS'), ('in', 'IN'), ('goal', 'NN'), ('settings', 'NNS'), ('will', 'MD'), ('know', 'VB'), ('the', 'DT'), ('result', 'NN'), ('tomorrow', 'NN'), ('only', 'RB')], [('i', 'NN'), ('am', 'VBP'), ('in', 'IN'), ('for', 'IN'), ('august', 'JJ'), ('10', 'CD'), ('xxxxxx', 'NN'), ('sent', 'NN'), ('from', 'IN'), ('my', 'PRP$'), ('xxxx', 'JJ'), ('xxxxxx', 'NNP'), ('smartphone', 'NN'), ('xx', 'NNP'), ('wrote', 'VBD'), ('im', 'RB'), ('good', 'JJ'), ('with', 'IN'), ('volunteering', 'VBG'), ('on', 'IN'), ('august', 'NN'), ('10th', 'CD')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('adding', 'VBG'), ('it', 'PRP'), ('to', 'TO'), ('the', 'DT'), ('collector', 'NN'), ('tomorrow', 'NN'), ('morning', 'NN'), ('once', 'RB'), ('i', 'JJ'), ('get', 'VBP'), ('confirmation', 'NN'), ('that', 'IN'), ('it', 'PRP'), ('works', 'VBZ'), ('well', 'RB')], [('multiple', 'JJ'), ('additional', 'JJ'), ('benefits', 'NNS'), ('along', 'IN'), ('with', 'IN'), ('the', 'DT'), ('package', 'NN'), ('like', 'IN'), ('complimentary', 'JJ'), ('breakfast', 'NN'), ('airport', 'NN'), ('transfers', 'NNS'), ('discounts', 'NNS'), ('etc', 'VBP'), ('valid', 'JJ'), ('between', 'IN'), ('1st', 'CD'), ('march', 'NN'), ('and', 'CC'), ('30th', 'CD'), ('june', 'NN'), ('2014', 'CD'), ('on', 'IN'), ('a', 'DT'), ('minimum', 'JJ'), ('stay', 'NN'), ('of', 'IN'), ('three', 'CD'), ('nights', 'NNS')], [('i', 'NN'), ('will', 'MD'), ('review', 'VB'), ('the', 'DT'), ('comments', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('spreadsheet', 'NN'), ('once', 'RB'), ('i', 'RB'), ('have', 'VBP'), ('the', 'DT'), ('access', 'NN'), ('xxx', 'NN'), ('tomorrow', 'NN')], [('will', 'MD'), ('work', 'VB'), ('on', 'IN'), ('it', 'PRP'), ('tomorrow', 'NN'), ('really', 'RB'), ('zombied', 'VBD'), ('out', 'RP'), ('today', 'NN')], [('the', 'DT'), ('global', 'JJ'), ('leadership', 'NN'), ('xxxxxx', 'NNP'), ('xxx', 'NNP'), ('is', 'VBZ'), ('taking', 'VBG'), ('place', 'NN'), ('next', 'JJ'), ('month', 'NN'), ('and', 'CC'), ('you', 'PRP'), ('could', 'MD'), ('network', 'NN'), ('with', 'IN'), ('over', 'IN'), ('yyy', 'NN'), ('global', 'JJ'), ('seniorlevel', 'NN'), ('executives', 'NNS'), ('and', 'CC'), ('hear', 'VBP'), ('from', 'IN'), ('great', 'JJ'), ('speakers', 'NNS')], [('hangout', 'NN'), ('in', 'IN'), ('early', 'JJ'), ('july', 'NN'), ('sounds', 'NNS'), ('good', 'JJ')], [('xxxxxx', 'NN'), ('is', 'VBZ'), ('in', 'IN'), ('xxxxx', 'NNP'), ('until', 'IN'), ('mid', 'JJ'), ('july', 'NNS'), ('but', 'CC'), ('i', 'JJ'), ('am', 'VBP'), ('happy', 'JJ'), ('to', 'TO'), ('meet', 'VB')], [('deadline', 'NN'), ('for', 'IN'), ('abstract', 'JJ'), ('submission', 'NN'), ('30th', 'CD'), ('september', 'NN'), ('2014', 'CD')], [('xxxxxxxxx', 'NN'), ('is', 'VBZ'), ('getting', 'VBG'), ('relieved', 'VBN'), ('this', 'DT'), ('friday', 'NN'), ('and', 'CC'), ('can', 'MD'), ('come', 'VB'), ('for', 'IN'), ('a', 'DT'), ('personal', 'JJ'), ('interview', 'NN'), ('next', 'IN'), ('week', 'NN')], [('today', 'NN'), ('i', 'VB'), ('shall', 'MD'), ('be', 'VB'), ('leaving', 'VBG'), ('office', 'NN'), ('quite', 'RB'), ('late', 'RB'), ('as', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('doing', 'VBG'), ('some', 'DT'), ('preparation', 'NN'), ('for', 'IN'), ('a', 'DT'), ('demo', 'NN'), ('tomorrow', 'NN')], [('im', 'NNS'), ('so', 'RB'), ('sorry', 'JJ'), ('but', 'CC'), ('the', 'DT'), ('office', 'NN'), ('in', 'IN'), ('xxxx', 'NNP'), ('xxxx', 'NNP'), ('is', 'VBZ'), ('packed', 'VBN'), ('tomorrow', 'NN'), ('as', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('a', 'DT'), ('delegation', 'NN'), ('visiting', 'VBG'), ('in', 'IN'), ('addition', 'NN'), ('to', 'TO'), ('our', 'PRP$'), ('regular', 'JJ'), ('team', 'NN'), ('meetings', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('morning', 'NN')], [('xxxxx', 'JJ'), ('look', 'VB'), ('forward', 'RB'), ('to', 'TO'), ('meeting', 'VBG'), ('you', 'PRP'), ('tomorrow', 'NN')], [('please', 'VB'), ('put', 'VB'), ('your', 'PRP$'), ('full', 'JJ'), ('force', 'NN'), ('to', 'TO'), ('complete', 'VB'), ('this', 'DT'), ('you', 'PRP'), ('know', 'VBP'), ('how', 'WRB'), ('urgent', 'JJ'), ('is', 'VBZ'), ('this', 'DT'), ('bcoz', 'NN'), ('xxxx', 'VBZ'), ('xxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('of', 'IN'), ('xxx', 'NNP'), ('xxxxxxx', 'NNP'), ('is', 'VBZ'), ('visiting', 'VBG'), ('there', 'RB'), ('plant', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('26052014', 'CD')], [('and', 'CC'), ('tomorrow', 'NN'), ('is', 'VBZ'), ('last', 'JJ'), ('working', 'JJ'), ('day', 'NN'), ('of', 'IN'), ('my', 'PRP$'), ('current', 'JJ'), ('sprint', 'NN'), ('because', 'IN'), ('of', 'IN'), ('long', 'JJ'), ('weekend', 'NN')], [('guys', 'NNS'), ('hes', 'NNS'), ('coming', 'VBG'), ('in', 'IN'), ('at', 'IN'), ('2', 'CD'), ('pm', 'NN'), ('tomorrow', 'NN')], [('updated', 'JJ'), ('ctc', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('available', 'JJ'), ('yeti', 'NNS'), ('can', 'MD'), ('share', 'NN'), ('the', 'DT'), ('new', 'JJ'), ('salary', 'JJ'), ('slip', 'NN'), ('by', 'IN'), ('2nd', 'CD'), ('of', 'IN'), ('augoverall', 'NN'), ('its', 'PRP$'), ('yy', 'NN'), ('hike', 'NN'), ('on', 'IN'), ('what', 'WP'), ('ive', 'JJ'), ('shared', 'VBN'), ('herethere', 'EX'), ('is', 'VBZ'), ('pf', 'JJ'), ('amount', 'NN'), ('yyy', 'RB'), ('every', 'DT'), ('month', 'NN')], [('to', 'TO'), ('apply', 'VB'), ('deadline', 'NN'), ('tuesday', 'NN'), ('29th', 'CD'), ('july', 'NN'), ('2014', 'CD')], [('as', 'IN'), ('i', 'NN'), ('had', 'VBD'), ('mentioned', 'VBN'), ('earlier', 'RBR'), ('i', 'JJ'), ('am', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('be', 'VB'), ('out', 'IN'), ('of', 'IN'), ('town', 'NN'), ('for', 'IN'), ('most', 'JJS'), ('of', 'IN'), ('the', 'DT'), ('week', 'NN'), ('4th', 'CD'), ('of', 'IN'), ('july', 'NN'), ('weekend', 'NN'), ('and', 'CC'), ('there', 'EX'), ('a', 'DT'), ('bunch', 'NN'), ('of', 'IN'), ('things', 'NNS'), ('that', 'IN'), ('i', 'VBP'), ('need', 'VBP'), ('to', 'TO'), ('take', 'VB'), ('care', 'NN'), ('of', 'IN'), ('before', 'IN'), ('i', 'NNS'), ('leave', 'VBP')], [('xxx', 'RB'), ('furthermore', 'RB'), ('as', 'IN'), ('discussed', 'VBN'), ('procurement', 'NN'), ('team', 'NN'), ('will', 'MD'), ('be', 'VB'), ('looking', 'VBG'), ('at', 'IN'), ('procurement', 'NN'), ('at', 'IN'), ('township', 'NN'), ('and', 'CC'), ('below', 'IN'), ('during', 'IN'), ('their', 'PRP$'), ('field', 'NN'), ('visit', 'IN'), ('the', 'DT'), ('week', 'NN'), ('of', 'IN'), ('june', 'NN'), ('12', 'CD')], [('your', 'PRP$'), ('relieving', 'NN'), ('date', 'NN'), ('would', 'MD'), ('be', 'VB'), ('18th', 'CD'), ('july', 'JJ'), ('2014', 'CD'), ('friday', 'NN')], [('this', 'DT'), ('is', 'VBZ'), ('to', 'TO'), ('inform', 'VB'), ('you', 'PRP'), ('that', 'IN'), ('the', 'DT'), ('xxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('dt01092004', 'NN'), ('entered', 'VBN'), ('by', 'IN'), ('xxxx', 'NNP'), ('xx', 'NNP'), ('xxxxxxxxxxxxx', 'NNP'), ('with', 'IN'), ('you', 'PRP'), ('for', 'IN'), ('his', 'PRP$'), ('property', 'NN'), ('situated', 'VBD'), ('at', 'IN'), ('xxx', 'NNP'), ('xxxyy', 'NNP'), ('xxx', 'NNP'), ('xxxy', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('expires', 'VBZ'), ('on', 'IN'), ('31082014', 'CD')], [('the', 'DT'), ('new', 'JJ'), ('batch', 'NN'), ('starts', 'VBZ'), ('from', 'IN'), ('august', 'NN'), ('2014', 'CD')], [('this', 'DT'), ('will', 'MD'), ('reduce', 'VB'), ('from', 'IN'), ('next', 'JJ'), ('month', 'NN'), ('as', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('zeroed', 'VBN'), ('in', 'IN'), ('on', 'IN'), ('the', 'DT'), ('format', 'NN'), ('of', 'IN'), ('financials', 'NNS'), ('to', 'TO'), ('be', 'VB'), ('presented', 'VBN'), ('unless', 'IN'), ('there', 'EX'), ('is', 'VBZ'), ('an', 'DT'), ('increase', 'NN'), ('in', 'IN'), ('volume', 'NN'), ('of', 'IN'), ('transactions', 'NNS')], [('kindly', 'RB'), ('bring', 'VBG'), ('the', 'DT'), ('following', 'JJ'), ('documents', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('date', 'NN'), ('of', 'IN'), ('joining', 'VBG'), ('172014', 'CD')], [('yesterday', 'NN'), ('evening', 'VBG'), ('we', 'PRP'), ('got', 'VBD'), ('the', 'DT'), ('clearance', 'NN'), ('from', 'IN'), ('client', 'NN'), ('and', 'CC'), ('i', 'NN'), ('am', 'VBP'), ('travelling', 'VBG'), ('to', 'TO'), ('xxxxxxxxx', 'VB'), ('on', 'IN'), ('friday', 'NN'), ('for', 'IN'), ('the', 'DT'), ('project', 'NN'), ('closure', 'NN'), ('formalities', 'NNS')], [('our', 'PRP$'), ('annual', 'JJ'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('is', 'VBZ'), ('tomorrow', 'NN')], [('we', 'PRP'), ('may', 'MD'), ('have', 'VB'), ('to', 'TO'), ('do', 'VB'), ('the', 'DT'), ('installation', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('an', 'DT'), ('update', 'NN'), ('on', 'IN'), ('the', 'DT'), ('may', 'MD'), ('10', 'CD'), ('yy', 'NNS'), ('moonlight', 'VBD'), ('ride', 'NN')], [('remember', 'VB'), ('to', 'TO'), ('register', 'VB'), ('for', 'IN'), ('the', 'DT'), ('up', 'JJ'), ('xxxxx', 'NN'), ('xxxxxx', 'NN'), ('in', 'IN'), ('xxxx', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('not', 'RB'), ('there', 'RB'), ('for', 'IN'), ('the', 'DT'), ('meeting', 'NN'), ('on', 'IN'), ('july', 'NN'), ('15th', 'CD')], [('lets', 'NNS'), ('try', 'VBP'), ('to', 'TO'), ('close', 'VB'), ('all', 'DT'), ('of', 'IN'), ('these', 'DT'), ('before', 'IN'), ('eod', 'NN'), ('this', 'DT'), ('week', 'NN'), ('20th', 'CD'), ('june', 'NN'), ('2014', 'CD'), ('as', 'IN'), ('the', 'DT'), ('program', 'NN'), ('launch', 'NN'), ('date', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('so', 'RB'), ('far', 'RB')], [('this', 'DT'), ('domain', 'NN'), ('will', 'MD'), ('expire', 'VB'), ('on', 'IN'), ('7142014', 'CD'), ('11956', 'CD'), ('am', 'VBP')], [('we', 'PRP'), ('will', 'MD'), ('try', 'VB'), ('to', 'TO'), ('fix', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN'), ('and', 'CC'), ('keep', 'VB'), ('you', 'PRP'), ('updated', 'JJ')], [('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('sharing', 'VBG'), ('this', 'DT'), ('by', 'IN'), ('29th', 'CD'), ('april', 'NNS')], [('the', 'DT'), ('articles', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('sent', 'VBN'), ('next', 'JJ'), ('week', 'NN'), ('its', 'PRP$'), ('been', 'VBN'), ('a', 'DT'), ('bit', 'NN'), ('busy', 'JJ'), ('around', 'IN'), ('here', 'RB'), ('hence', 'NN'), ('could', 'MD'), ('not', 'RB'), ('get', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('you', 'PRP'), ('at', 'IN'), ('the', 'DT'), ('earliest', 'JJS')], [('we', 'PRP'), ('recognize', 'VBP'), ('the', 'DT'), ('value', 'NN'), ('and', 'CC'), ('importance', 'NN'), ('of', 'IN'), ('networking', 'VBG'), ('to', 'TO'), ('you', 'PRP'), ('and', 'CC'), ('we', 'PRP'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('open', 'VB'), ('the', 'DT'), ('platform', 'NN'), ('until', 'IN'), ('16th', 'CD'), ('july', 'NN'), ('to', 'TO'), ('allow', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('make', 'VB'), ('and', 'CC'), ('accept', 'VB'), ('new', 'JJ'), ('connections', 'NNS')], [('i', 'NN'), ('am', 'VBP'), ('writing', 'VBG'), ('this', 'DT'), ('email', 'NN'), ('as', 'IN'), ('a', 'DT'), ('personal', 'JJ'), ('reminder', 'NN'), ('as', 'IN'), ('you', 'PRP'), ('may', 'MD'), ('have', 'VB'), ('missed', 'VBN'), ('the', 'DT'), ('details', 'NNS'), ('that', 'IN'), ('we', 'PRP'), ('had', 'VBD'), ('sent', 'VBN'), ('earlier', 'RB'), ('on', 'IN'), ('the', 'DT'), ('xxxxxxx', 'NNP'), ('xx', 'NNP'), ('xxxxxx', 'NNP'), ('2014', 'CD'), ('scheduled', 'VBD'), ('on', 'IN'), ('july', 'NN'), ('23rd', 'CD'), ('till', 'NN'), ('24th', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('in', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NN')], [('lets', 'NNS'), ('put', 'VBD'), ('an', 'DT'), ('awesome', 'JJ'), ('show', 'NN'), ('tomorrow', 'NN')], [('xxxxx', 'JJ'), ('xxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('is', 'VBZ'), ('having', 'VBG'), ('the', 'DT'), ('first', 'JJ'), ('all', 'DT'), ('women', 'NNS'), ('hackathon', 'VBP'), ('in', 'IN'), ('xxxxxxx', 'NN'), ('on', 'IN'), ('25th', 'CD'), ('july', 'NN')], [('my', 'PRP$'), ('first', 'JJ'), ('legitimately', 'RB'), ('free', 'JJ'), ('chunk', 'NN'), ('of', 'IN'), ('time', 'NN'), ('to', 'TO'), ('available', 'JJ'), ('to', 'TO'), ('concentrate', 'VB'), ('on', 'IN'), ('new', 'JJ'), ('and', 'CC'), ('interesting', 'JJ'), ('technologies', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('the', 'DT'), ('morning', 'NN'), ('of', 'IN'), ('thursday', 'NN'), ('july', 'NN'), ('24', 'CD')], [('rescheduled', 'VBN'), ('xxxxx', 'JJ'), ('xxxxxxxxxxs', 'NNP'), ('interview', 'NN'), ('to', 'TO'), ('thursday', 'VB')], [('we', 'PRP'), ('can', 'MD'), ('use', 'VB'), ('that', 'DT'), ('to', 'TO'), ('check', 'VB'), ('interest', 'NN'), ('levels', 'NNS'), ('with', 'IN'), ('our', 'PRP$'), ('investors', 'NNS'), ('over', 'IN'), ('next', 'JJ'), ('month', 'NN'), ('while', 'IN'), ('you', 'PRP'), ('also', 'RB'), ('get', 'VBP'), ('closer', 'JJR'), ('to', 'TO'), ('yyyyy', 'VB'), ('of', 'IN'), ('your', 'PRP$'), ('target', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('then', 'RB'), ('come', 'VB'), ('in', 'IN'), ('and', 'CC'), ('fill', 'VB'), ('the', 'DT'), ('round', 'NN'), ('with', 'IN'), ('yyyy', 'NN'), ('or', 'CC'), ('slightly', 'RB'), ('more', 'JJR')], [('title', 'NN'), ('xxxx', 'NNP'), ('xxxxxxxxxx', 'NN'), ('when', 'WRB'), ('mon', 'NN'), ('sep', 'VBD'), ('1', 'CD'), ('2014', 'CD'), ('2', 'CD'), ('pm', 'NN'), ('5', 'CD'), ('pm', 'NN'), ('xxxxx', 'NNP'), ('standard', 'NN'), ('time', 'NN'), ('where', 'WRB'), ('xxxxxxxxx', 'NN'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('call', 'NN'), ('join', 'NN'), ('video', 'NN'), ('call', 'NN'), ('who', 'WP')], [('subsequent', 'NN'), ('to', 'TO'), ('our', 'PRP$'), ('last', 'JJ'), ('meeting', 'NN'), ('we', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('make', 'VB'), ('some', 'DT'), ('changes', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('board', 'NN'), ('composition', 'NN'), ('and', 'CC'), ('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('your', 'PRP$'), ('ratification', 'NN'), ('of', 'IN'), ('this', 'DT'), ('matter', 'NN'), ('via', 'IN'), ('circular', 'NN'), ('in', 'IN'), ('order', 'NN'), ('to', 'TO'), ('have', 'VB'), ('the', 'DT'), ('board', 'NN'), ('composition', 'NN'), ('in', 'IN'), ('place', 'NN'), ('prior', 'RB'), ('to', 'TO'), ('our', 'PRP$'), ('board', 'NN'), ('meeting', 'NN'), ('next', 'JJ'), ('monday', 'NN'), ('june', 'NN'), ('2nd', 'CD')], [('we', 'PRP'), ('are', 'VBP'), ('assuming', 'VBG'), ('next', 'JJ'), ('xx', 'NN'), ('will', 'MD'), ('share', 'NN'), ('full', 'JJ'), ('functional', 'NN'), ('and', 'CC'), ('tested', 'VBD'), ('apis', 'NN'), ('with', 'IN'), ('tj', 'NN'), ('by', 'IN'), ('25th', 'CD'), ('sepyy', 'NNS'), ('y', 'NN')], [('this', 'DT'), ('is', 'VBZ'), ('to', 'TO'), ('to', 'TO'), ('inform', 'VB'), ('that', 'DT'), ('are', 'VBP'), ('consignment', 'NN'), ('has', 'VBZ'), ('arrived', 'VBN'), ('and', 'CC'), ('it', 'PRP'), ('is', 'VBZ'), ('awaiting', 'VBG'), ('custom', 'JJ'), ('clearance', 'NN'), ('and', 'CC'), ('it', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('done', 'VBN'), ('by', 'IN'), ('wednesday', 'NN'), ('the', 'DT'), ('21st', 'CD'), ('may', 'MD'), ('2014', 'CD'), ('and', 'CC'), ('we', 'PRP'), ('will', 'MD'), ('delivery', 'NN'), ('it', 'PRP'), ('by', 'IN'), ('thursday', 'NN')], [('xxxxxxxxx', 'JJ'), ('xxxxs', 'NNP'), ('interview', 'NN'), ('has', 'VBZ'), ('been', 'VBN'), ('rescheduled', 'VBN'), ('to', 'TO'), ('9072014', 'CD'), ('at', 'IN'), ('1000', 'CD'), ('am', 'VBP'), ('as', 'RB'), ('concerned', 'JJ'), ('person', 'NN'), ('was', 'VBD'), ('not', 'RB'), ('available', 'JJ'), ('to', 'TO'), ('take', 'VB'), ('the', 'DT'), ('interview', 'NN')], [('following', 'VBG'), ('members', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('supporting', 'VBG'), ('on', 'IN'), ('sunday', 'NN')], [('please', 'VB'), ('make', 'VB'), ('sure', 'JJ'), ('we', 'PRP'), ('accomplish', 'VBP'), ('this', 'DT'), ('by', 'IN'), ('friday', 'JJ'), ('xxxx', 'NNP'), ('xxx', 'NN')], [('xxxxx', 'JJ'), ('session', 'NN'), ('at', 'IN'), ('yyyy', 'NN'), ('pm', 'NN'), ('tomorrow', 'NN')], [('xxxxx', 'NN'), ('will', 'MD'), ('be', 'VB'), ('leaving', 'VBG'), ('today', 'NN'), ('and', 'CC'), ('ill', 'NN'), ('have', 'VBP'), ('to', 'TO'), ('manage', 'VB'), ('on', 'IN'), ('my', 'PRP$'), ('own', 'JJ'), ('till', 'JJ'), ('end', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('xxxxxxx', 'NN'), ('is', 'VBZ'), ('out', 'IN'), ('of', 'IN'), ('town', 'NN'), ('hence', 'NN'), ('will', 'MD'), ('reply', 'VB'), ('next', 'JJ'), ('week', 'NN')], [('if', 'IN'), ('that', 'DT'), ('hasnt', 'NN'), ('been', 'VBN'), ('completed', 'VBN'), ('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('it', 'PRP'), ('in', 'IN'), ('the', 'DT'), ('coming', 'JJ'), ('days', 'NNS')], [('instead', 'RB'), ('of', 'IN'), ('flying', 'VBG'), ('to', 'TO'), ('xxxxxx', 'VB'), ('on', 'IN'), ('monday', 'JJ'), ('ive', 'JJ'), ('now', 'RB'), ('scheduled', 'VBN'), ('my', 'PRP$'), ('flight', 'NN'), ('out', 'RP'), ('for', 'IN'), ('tuesday', 'NN')], [('expect', 'VB'), ('to', 'TO'), ('hear', 'VB'), ('about', 'IN'), ('this', 'DT'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('friday', 'NN')], [('please', 'NN'), ('sign', 'VB'), ('up', 'RP'), ('on', 'IN'), ('the', 'DT'), ('xxxxxxx', 'NNP'), ('portal', 'NN'), ('and', 'CC'), ('the', 'DT'), ('deadline', 'NN'), ('to', 'TO'), ('register', 'NN'), ('is', 'VBZ'), ('july', 'RB'), ('21st', 'CD'), ('at', 'IN'), ('9am', 'CD'), ('xxx', 'NN')], [('please', 'NN'), ('do', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('enrolling', 'VBG'), ('xxxxxx', 'NN'), ('in', 'IN'), ('swimming', 'VBG'), ('classes', 'NNS'), ('from', 'IN'), ('this', 'DT'), ('weekend', 'NN'), ('or', 'CC'), ('next', 'JJ'), ('weekend', 'NN')], [('trending', 'VBG'), ('this', 'DT'), ('week', 'NN')], [('if', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('release', 'VB'), ('that', 'DT'), ('for', 'IN'), ('15', 'CD'), ('aug', 'JJ'), ('deadline', 'NN'), ('it', 'PRP'), ('is', 'VBZ'), ('important', 'JJ'), ('to', 'TO'), ('start', 'VB'), ('collection', 'NN'), ('asap', 'NN')], [('i', 'NN'), ('will', 'MD'), ('simulate', 'VB'), ('the', 'DT'), ('changes', 'NNS'), ('in', 'IN'), ('cluster', 'NN'), ('center', 'NN'), ('values', 'NNS'), ('for', 'IN'), ('most', 'JJS'), ('recent', 'JJ'), ('5', 'CD'), ('days', 'NNS'), ('in', 'IN'), ('xaxis', 'NN'), ('and', 'CC'), ('post', 'VB'), ('the', 'DT'), ('graphs', 'NN'), ('tomorrow', 'NN'), ('as', 'RB'), ('soon', 'RB'), ('as', 'IN'), ('possible', 'JJ')], [('also', 'RB'), ('on', 'IN'), ('4th', 'CD'), ('august', 'NN'), ('at', 'IN'), ('our', 'PRP$'), ('xxx', 'JJ'), ('xxxxxx', 'NN'), ('we', 'PRP'), ('are', 'VBP'), ('kicking', 'VBG'), ('off', 'RP'), ('the', 'DT'), ('next', 'JJ'), ('big', 'JJ'), ('idea', 'NN'), ('with', 'IN'), ('xxxxxxx', 'JJ'), ('xxxxxxx', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('open', 'JJ'), ('on', 'IN'), ('20', 'CD'), ('may', 'MD'), ('fully', 'RB')], [('the', 'DT'), ('45th', 'JJ'), ('day', 'NN'), ('incidentally', 'RB'), ('falls', 'VBZ'), ('on', 'IN'), ('june', 'NN'), ('27', 'CD'), ('2014', 'CD')], [('i', 'NNS'), ('have', 'VBP'), ('checked', 'VBN'), ('the', 'DT'), ('home', 'NN'), ('page', 'NN'), ('i', 'JJ'), ('couldnt', 'NN'), ('find', 'VBP'), ('the', 'DT'), ('issue', 'NN'), ('xxxx', 'NNP'), ('and', 'CC'), ('the', 'DT'), ('team', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('available', 'JJ'), ('on', 'IN'), ('weekend', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('check', 'VB'), ('and', 'CC'), ('fix', 'VB'), ('the', 'DT'), ('issues', 'NNS'), ('on', 'IN'), ('monday', 'NN')], [('ill', 'RB'), ('return', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('monday', 'NN')], [('tomorrow', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('day', 'NN'), ('trip', 'NN')], [('i', 'NN'), ('would', 'MD'), ('prefer', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('be', 'VB'), ('tomorrow', 'NN')], [('whatever', 'WDT'), ('can', 'MD'), ('not', 'RB'), ('be', 'VB'), ('finished', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('specified', 'VBN'), ('day', 'NN'), ('will', 'MD'), ('naturally', 'RB'), ('fold', 'VB'), ('over', 'RP'), ('into', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('day', 'NN')], [('will', 'MD'), ('work', 'VB'), ('on', 'IN'), ('thursday', 'NN')], [('all', 'PDT'), ('the', 'DT'), ('four', 'CD'), ('subjects', 'NNS'), ('answerbooks', 'RB'), ('would', 'MD'), ('be', 'VB'), ('distributed', 'VBN'), ('tomorrow', 'NN'), ('between', 'IN'), ('yyyyy', 'NN'), ('am11', 'NN'), ('am', 'VBP')], [('we', 'PRP'), ('are', 'VBP'), ('taking', 'VBG'), ('this', 'DT'), ('course', 'NN'), ('to', 'TO'), ('the', 'DT'), ('colleges', 'NNS'), ('so', 'IN'), ('the', 'DT'), ('recording', 'NN'), ('should', 'MD'), ('start', 'VB'), ('as', 'RB'), ('soon', 'RB'), ('as', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('familiarized', 'VBN'), ('yourself', 'PRP'), ('with', 'IN'), ('r', 'NN'), ('with', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('live', 'JJ'), ('session', 'NN'), ('for', 'IN'), ('r', 'NN'), ('to', 'TO'), ('be', 'VB'), ('conducted', 'VBN'), ('september', 'RB'), ('1st', 'CD'), ('week', 'NN')], [('ill', 'VB'), ('call', 'NN'), ('tomorrow', 'NN')], [('i', 'JJ'), ('think', 'VBP'), ('i', 'NN'), ('will', 'MD'), ('wait', 'VB'), ('till', 'JJ'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('week', 'NN'), ('to', 'TO'), ('get', 'VB'), ('confirmation', 'NN'), ('on', 'IN'), ('your', 'PRP$'), ('teams', 'NNS'), ('availability', 'NN')], [('please', 'VB'), ('kindly', 'RB'), ('book', 'NN'), ('the', 'DT'), ('flight', 'NN'), ('ticket', 'NN'), ('for', 'IN'), ('july', 'NN'), ('11', 'CD'), ('as', 'IN'), ('per', 'IN'), ('following', 'VBG'), ('information', 'NN')], [('sow', 'NN'), ('should', 'MD'), ('be', 'VB'), ('done', 'VBN'), ('by', 'IN'), ('jun', 'NN'), ('18th', 'CD')], [('this', 'DT'), ('can', 'MD'), ('be', 'VB'), ('modified', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('country', 'NN'), ('settings', 'VBZ'), ('section', 'NN'), ('on', 'IN'), ('xxxxxx', 'NNP'), ('your', 'PRP$'), ('kindlethe', 'NN'), ('xxxxx', 'NN'), ('xxxx', 'NNP'), ('xxx', 'NNP'), ('promotion', 'NN'), ('applies', 'NNS'), ('to', 'TO'), ('selected', 'VBN'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('and', 'CC'), ('runs', 'VBZ'), ('until', 'IN'), ('yyyyy', 'JJ'), ('pm', 'NNS'), ('xxxxx', 'JJ'), ('time', 'NN'), ('on', 'IN'), ('sunday', 'JJ'), ('april', 'IN'), ('27', 'CD'), ('2014', 'CD'), ('the', 'DT'), ('xxxxxxxxxxx', 'JJ'), ('period', 'NN')], [('please', 'VB'), ('expedite', 'VB'), ('the', 'DT'), ('completion', 'NN'), ('of', 'IN'), ('pages', 'NNS'), ('by', 'IN'), ('tomorrow', 'NN'), ('as', 'IN'), ('promised', 'VBN')], [('tomorrow', 'NN'), ('afternoon', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('xxxxx', 'VBN'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('meeting', 'NN'), ('in', 'IN'), ('xxx', 'NN')], [('as', 'IN'), ('communicated', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('previous', 'JJ'), ('mail', 'NN'), ('xxxx', 'NN'), ('has', 'VBZ'), ('a', 'DT'), ('holiday', 'NN'), ('on', 'IN'), ('thursday', 'JJ'), ('31st', 'CD'), ('july', 'NN'), ('due', 'JJ'), ('to', 'TO'), ('a', 'DT'), ('strike', 'NN'), ('called', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('local', 'JJ'), ('organizations', 'NNS'), ('in', 'IN'), ('xxxxxxxxx', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('very', 'RB'), ('pleased', 'JJ'), ('to', 'TO'), ('announce', 'VB'), ('our', 'PRP$'), ('traditional', 'JJ'), ('embroidery', 'NN'), ('workshop', 'NN'), ('to', 'TO'), ('be', 'VB'), ('held', 'VBN'), ('in', 'IN'), ('june', 'NN'), ('this', 'DT'), ('year', 'NN')], [('xxxxxxx', 'NN'), ('and', 'CC'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('out', 'IN'), ('of', 'IN'), ('town', 'NN'), ('may', 'MD'), ('16th', 'CD'), ('fri', 'NNS'), ('to', 'TO'), ('may', 'MD'), ('19th', 'CD'), ('mon', 'NN')], [('as', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('going', 'VBG'), ('into', 'IN'), ('production', 'NN'), ('kindly', 'RB'), ('revert', 'VBZ'), ('back', 'RB'), ('to', 'TO'), ('my', 'PRP$'), ('email', 'NN'), ('with', 'IN'), ('your', 'PRP$'), ('xxxxxx', 'NN'), ('xxxxx', 'NN'), ('name', 'NN'), ('before', 'IN'), ('yy', 'JJ'), ('noon', 'NN'), ('on', 'IN'), ('4', 'CD'), ('july', 'NN'), ('2014', 'CD'), ('friday', 'NN'), ('xxxxxxxxx', 'VBD'), ('time', 'NN')], [('payment', 'NN'), ('due', 'JJ'), ('date', 'NN'), ('ddmmyyyy', 'NN'), ('y', 'NN'), ('yyyyyy', 'NN'), ('y', 'NN'), ('yyyyyy', '$'), ('06062014', 'CD'), ('your', 'PRP$'), ('latest', 'JJS'), ('estatement', 'NN'), ('or', 'CC'), ('duplicate', 'VB'), ('estatement', 'NN'), ('as', 'IN'), ('requested', 'VBN'), ('by', 'IN'), ('you', 'PRP'), ('is', 'VBZ'), ('attached', 'VBN'), ('with', 'IN'), ('this', 'DT'), ('mail', 'NN')], [('we', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('target', 'VB'), ('to', 'TO'), ('finish', 'VB'), ('entire', 'JJ'), ('design', 'NN'), ('by', 'IN'), ('tomorrow', 'NN'), ('noon', 'NN')], [('requesting', 'VBG'), ('for', 'IN'), ('a', 'DT'), ('half', 'JJ'), ('day', 'NN'), ('off', 'IN'), ('tomorrow', 'NN'), ('first', 'RB'), ('half', 'NN')], [('you', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('a', 'DT'), ('look', 'NN'), ('at', 'IN'), ('it', 'PRP'), ('tomorrow', 'NN'), ('or', 'CC'), ('i', 'NN'), ('will', 'MD'), ('drop', 'VB'), ('a', 'DT'), ('mail', 'NN'), ('after', 'IN'), ('finishing', 'VBG')], [('will', 'MD'), ('arrange', 'VB'), ('for', 'IN'), ('your', 'PRP$'), ('accommodation', 'NN'), ('and', 'CC'), ('cab', 'NN'), ('from', 'IN'), ('13th', 'CD'), ('july', 'NN'), ('as', 'IN'), ('discussed', 'VBN'), ('over', 'IN'), ('phone', 'NN')], [('i', 'NNS'), ('leave', 'VBP'), ('xxxxxx', 'VBN'), ('tuesday', 'JJ'), ('evening', 'NN'), ('but', 'CC'), ('im', 'NN'), ('available', 'JJ'), ('this', 'DT'), ('afternoon', 'NN'), ('after', 'IN'), ('3', 'CD'), ('pm', 'NN'), ('and', 'CC'), ('tomorrow', 'NN'), ('until', 'IN'), ('4', 'CD'), ('pm', 'NNS')], [('i', 'NN'), ('will', 'MD'), ('get', 'VB'), ('back', 'RB'), ('by', 'IN'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN')], [('she', 'PRP'), ('is', 'VBZ'), ('in', 'IN'), ('need', 'NN'), ('of', 'IN'), ('platelets', 'NNS'), ('for', 'IN'), ('tomorrow', 'NN')], [('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('xxxxxx', 'VB'), ('tomorrow', 'NN')], [('hi', 'NN'), ('team', 'NN'), ('we', 'PRP'), ('dont', 'VBP'), ('have', 'VBP'), ('enough', 'JJ'), ('people', 'NNS'), ('for', 'IN'), ('tomorrows', 'JJ'), ('net', 'NN')], [('looking', 'VBG'), ('forward', 'RB'), ('to', 'TO'), ('getting', 'VBG'), ('together', 'RB'), ('next', 'JJ'), ('week', 'NN'), ('for', 'IN'), ('coffee', 'NN')], [('from', 'IN'), ('tomorrow', 'NN'), ('he', 'PRP'), ('can', 'MD'), ('perhaps', 'RB'), ('call', 'VB'), ('me', 'PRP'), ('from', 'IN'), ('security', 'NN'), ('plaza', 'NN'), ('and', 'CC'), ('i', 'NN'), ('will', 'MD'), ('ask', 'VB'), ('them', 'PRP'), ('to', 'TO'), ('issue', 'VB'), ('visitor', 'NN'), ('badge', 'NN')], [('xxxxx', 'RB'), ('be', 'VB'), ('good', 'JJ'), ('to', 'TO'), ('go', 'VB'), ('over', 'IN'), ('these', 'DT'), ('together', 'RB'), ('so', 'RB'), ('that', 'IN'), ('you', 'PRP'), ('understand', 'VBP'), ('the', 'DT'), ('requirements', 'NNS'), ('from', 'IN'), ('the', 'DT'), ('visual', 'JJ'), ('side', 'NN'), ('of', 'IN'), ('thingsplease', 'NN'), ('ping', 'VBG'), ('me', 'PRP'), ('later', 'RB'), ('this', 'DT'), ('afternoon', 'NN'), ('after', 'IN'), ('130', 'CD'), ('or', 'CC'), ('in', 'IN'), ('the', 'DT'), ('morning', 'NN'), ('tomorrow', 'NN')], [('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('take', 'VB'), ('leave', 'VB'), ('on', 'IN'), ('28', 'CD'), ('aug', 'JJ'), ('2014', 'CD'), ('as', 'IN'), ('its', 'PRP$'), ('a', 'DT'), ('big', 'JJ'), ('festival', 'NN'), ('for', 'IN'), ('us', 'PRP')], [('the', 'DT'), ('fifth', 'JJ'), ('elephant', 'NN'), ('on', 'IN'), ('big', 'JJ'), ('data', 'NNS'), ('and', 'CC'), ('analytics', 'NNS'), ('is', 'VBZ'), ('up', 'RP'), ('next', 'JJ'), ('july', 'NN'), ('yyyyy', 'NN')], [('yyy', 'NN'), ('on', 'IN'), ('tyfree', 'NN'), ('offer', 'NN'), ('valid', 'JJ'), ('till', 'NN'), ('monday', 'VBZ'), ('18th', 'CD'), ('august', 'NN')], [('decathlon', 'NN'), ('selling', 'VBG'), ('900ml', 'CD'), ('ones', 'NNS'), ('for', 'IN'), ('yyy', 'NN'), ('as', 'IN'), ('special', 'JJ'), ('offer', 'NN'), ('when', 'WRB'), ('i', 'NN'), ('visited', 'VBD'), ('them', 'PRP'), ('this', 'DT'), ('weekend', 'NN')], [('here', 'RB'), ('is', 'VBZ'), ('a', 'DT'), ('link', 'NN'), ('which', 'WDT'), ('provides', 'VBZ'), ('logistics', 'NNS'), ('plan', 'NN'), ('for', 'IN'), ('saturday', 'JJ'), ('24jun', 'CD')], [('xxxxx', 'NN'), ('is', 'VBZ'), ('back', 'RB'), ('in', 'IN'), ('xx', 'NN'), ('this', 'DT'), ('saturday', 'NN')], [('hi', 'NN'), ('xxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('wanted', 'VBD'), ('to', 'TO'), ('remind', 'VB'), ('you', 'PRP'), ('that', 'IN'), ('xxxxxxxxs', 'VBZ'), ('yyy', 'JJ'), ('birthday', 'NN'), ('is', 'VBZ'), ('coming', 'VBG'), ('up', 'RP'), ('on', 'IN'), ('friday', 'JJ'), ('july', 'NN'), ('18', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('700', 'CD'), ('xxxx', 'FW'), ('your', 'PRP$'), ('current', 'JJ'), ('reply', 'NN'), ('to', 'TO'), ('this', 'DT'), ('invitation', 'NN'), ('not', 'RB'), ('yet', 'RB'), ('decided', 'VBN')], [('it', 'PRP'), ('gives', 'VBZ'), ('me', 'PRP'), ('great', 'JJ'), ('pleasure', 'NN'), ('to', 'TO'), ('announce', 'VB'), ('the', 'DT'), ('launch', 'NN'), ('of', 'IN'), ('the', 'DT'), ('new', 'JJ'), ('book', 'NN'), ('soul', 'NN'), ('xxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('of', 'IN'), ('xxxxxxxxx', 'NNP'), ('by', 'IN'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxxxxxxxx', 'NNP'), ('in', 'IN'), ('xxxxxxxxx', 'NNP'), ('at', 'IN'), ('xxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxx', 'NNP'), ('on', 'IN'), ('1st', 'CD'), ('aug', 'NN')], [('xxxxx', 'NN'), ('we', 'PRP'), ('kickoff', 'VBP'), ('on', 'IN'), ('games', 'NNS'), ('tomorrow', 'NN'), ('at', 'IN'), ('our', 'PRP$'), ('scheduled', 'JJ'), ('meeting', 'NN'), ('time', 'NN')], [('living', 'VBG'), ('situation', 'NN'), ('is', 'VBZ'), ('a', 'DT'), ('little', 'JJ'), ('uncertain', 'JJ'), ('next', 'JJ'), ('week', 'NN')], [('check', 'NN'), ('in', 'IN'), ('june', 'NN'), ('18', 'CD'), ('2014', 'CD')], [('xxxxxx', 'NN'), ('had', 'VBD'), ('no', 'DT'), ('assignments', 'NNS'), ('for', 'IN'), ('past', 'JJ'), ('twothree', 'JJ'), ('days', 'NNS'), ('and', 'CC'), ('since', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('not', 'RB'), ('getting', 'VBG'), ('any', 'DT'), ('visibility', 'NN'), ('until', 'IN'), ('next', 'JJ'), ('week', 'NN'), ('from', 'IN'), ('xxxxx', 'NN'), ('i', 'NN'), ('might', 'MD'), ('allocate', 'VB'), ('her', 'PRP$'), ('on', 'IN'), ('some', 'DT'), ('other', 'JJ'), ('assignment', 'NN'), ('meanwhile', 'NN')], [('will', 'MD'), ('be', 'VB'), ('doing', 'VBG'), ('more', 'JJR'), ('tomorrow', 'NN')], [('the', 'DT'), ('plans', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('uploaded', 'VBN'), ('before', 'RB'), ('may', 'MD'), ('25', 'CD'), ('2014', 'CD'), ('and', 'CC'), ('judging', 'VBG'), ('will', 'MD'), ('take', 'VB'), ('place', 'NN'), ('between', 'IN'), ('yy', 'NN'), ('may', 'MD'), ('2014', 'CD'), ('and', 'CC'), ('15', 'CD'), ('june', 'NN'), ('2014', 'CD')], [('as', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('aware', 'JJ'), ('we', 'PRP'), ('had', 'VBD'), ('announced', 'VBN'), ('that', 'IN'), ('there', 'EX'), ('will', 'MD'), ('be', 'VB'), ('no', 'DT'), ('leave', 'JJ'), ('encashment', 'NN'), ('and', 'CC'), ('those', 'DT'), ('who', 'WP'), ('want', 'VBP'), ('it', 'PRP'), ('would', 'MD'), ('have', 'VB'), ('to', 'TO'), ('wait', 'VB'), ('till', 'NN'), ('july', 'NN')], [('as', 'IN'), ('of', 'IN'), ('now', 'RB'), ('looks', 'VBZ'), ('like', 'IN'), ('till', 'NN'), ('august', 'RB'), ('1st', 'CD'), ('week', 'NN')], [('kindly', 'RB'), ('transfer', 'VB'), ('the', 'DT'), ('amount', 'NN'), ('before', 'IN'), ('the', 'DT'), ('session', 'NN'), ('on', 'IN'), ('sunday', 'NN')], [('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('feasible', 'JJ'), ('for', 'IN'), ('me', 'PRP'), ('to', 'TO'), ('make', 'VB'), ('it', 'PRP'), ('after', 'IN'), ('tuesday', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('that', 'WDT'), ('would', 'MD'), ('be', 'VB'), ('after', 'IN'), ('10th', 'CD')], [('xxxxxx', 'JJ'), ('xxxxx', 'NN'), ('hes', 'NNS'), ('available', 'JJ'), ('on', 'IN'), ('monday', 'JJ'), ('16th', 'CD'), ('june', 'NN'), ('x', 'NN'), ('1100', 'CD'), ('am', 'VBP')], [('xxxxxxx', 'NN'), ('will', 'MD'), ('join', 'VB'), ('us', 'PRP'), ('from', 'IN'), ('this', 'DT'), ('wednesday', 'NN')], [('hes', 'NNS'), ('coming', 'VBG'), ('in', 'IN'), ('at', 'IN'), ('4', 'CD'), ('pm', 'NN'), ('on', 'IN'), ('thursday', 'NN')], [('our', 'PRP$'), ('next', 'JJ'), ('evaluation', 'NN'), ('meeting', 'NN'), ('will', 'MD'), ('happen', 'VB'), ('on', 'IN'), ('16th', 'CD'), ('june', 'NN'), ('2014', 'CD')], [('xxxxxxxxxxxxx', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('have', 'VB'), ('a', 'DT'), ('call', 'NN'), ('with', 'IN'), ('my', 'PRP$'), ('manager', 'NN'), ('on', 'IN'), ('tuesday', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('the', 'DT'), ('projects', 'NNS'), ('and', 'CC'), ('about', 'IN'), ('consulting', 'VBG'), ('companies', 'NNS'), ('in', 'IN'), ('xxxxx', 'NN')], [('xxx', 'JJ'), ('xxxxxxxxx', 'NNP'), ('xxx', 'NNP'), ('version', 'NN'), ('y', 'NN'), ('of', 'IN'), ('wireframes', 'NNS'), ('yy', 'VBP'), ('in', 'IN'), ('sync', 'NN'), ('with', 'IN'), ('specs', 'NN'), ('will', 'MD'), ('be', 'VB'), ('out', 'RP'), ('tomorrow', 'NN')], [('monday', 'NN'), ('we', 'PRP'), ('take', 'VBP'), ('off', 'RP'), ('for', 'IN'), ('xxx', 'NN'), ('on', 'IN'), ('cdd', 'NN'), ('and', 'CC'), ('will', 'MD'), ('be', 'VB'), ('back', 'RB'), ('in', 'IN'), ('xxxxxx', 'NN'), ('on', 'IN'), ('wed', 'NNS'), ('night', 'NN')], [('good', 'JJ'), ('luck', 'NN'), ('to', 'TO'), ('everyone', 'NN'), ('running', 'VBG'), ('tomorrow', 'NN'), ('and', 'CC'), ('especially', 'RB'), ('those', 'DT'), ('who', 'WP'), ('are', 'VBP'), ('running', 'VBG'), ('their', 'PRP$'), ('very', 'NN'), ('first', 'RB'), ('yy', 'VB')], [('the', 'DT'), ('winners', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('announced', 'VBN'), ('at', 'IN'), ('the', 'DT'), ('xxx', 'NNP'), ('xxxxxxx', 'NNP'), ('yyy', 'NN'), ('global', 'JJ'), ('event', 'NN'), ('in', 'IN'), ('xxx', 'NNP'), ('xxxxxxx', 'NNP'), ('november', 'NNP'), ('yyyyy', 'NN'), ('2014', 'CD')], [('tomorrow', 'NN'), ('xxxxxxxxx', 'NN'), ('developments', 'NNS'), ('will', 'MD'), ('make', 'VB'), ('you', 'PRP'), ('highly', 'RB'), ('competitive', 'JJ'), ('in', 'IN'), ('market', 'NN'), ('at', 'IN'), ('xxxxxxx', 'NN')], [('please', 'VB'), ('block', 'VB'), ('your', 'PRP$'), ('calendar', 'NN'), ('on', 'IN'), ('thursday', 'NN'), ('august', 'IN'), ('21', 'CD'), ('2014', 'CD'), ('for', 'IN'), ('a', 'DT'), ('talk', 'NN'), ('by', 'IN'), ('xxx', 'NNP'), ('xx', 'NNP'), ('xxxxxxx', 'NNP'), ('historian', 'NN'), ('and', 'CC'), ('journalist', 'NN')], [('monday', 'JJ'), ('morning', 'NN'), ('i', 'NN'), ('will', 'MD'), ('try', 'VB'), ('to', 'TO'), ('sort', 'VB'), ('out', 'RP'), ('this', 'DT'), ('problem', 'NN'), ('so', 'RB'), ('that', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('the', 'DT'), ('actual', 'JJ'), ('look', 'NN'), ('of', 'IN'), ('the', 'DT'), ('page', 'NN')], [('please', 'VB'), ('make', 'VB'), ('sure', 'JJ'), ('the', 'DT'), ('platform', 'NN'), ('is', 'VBZ'), ('good', 'JJ'), ('for', 'IN'), ('demo', 'NN'), ('tomorrow', 'NN')], [('likely', 'RB'), ('next', 'JJ'), ('week', 'NN'), ('got', 'VBD'), ('pushed', 'VBN'), ('once', 'RB'), ('already', 'RB')], [('this', 'DT'), ('will', 'MD'), ('accelerate', 'VB'), ('our', 'PRP$'), ('testing', 'VBG'), ('in', 'IN'), ('the', 'DT'), ('coming', 'VBG'), ('week', 'NN')], [('though', 'IN'), ('team', 'NN'), ('would', 'MD'), ('be', 'VB'), ('working', 'VBG'), ('tomorrow', 'NN'), ('but', 'CC'), ('as', 'IN'), ('i', 'NN'), ('mentioned', 'VBD'), ('this', 'DT'), ('would', 'MD'), ('take', 'VB'), ('a', 'DT'), ('while', 'NN'), ('so', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('targeting', 'VBG'), ('for', 'IN'), ('tuesday', 'NN'), ('july', 'NN'), ('21st', 'CD'), ('release', 'NN')], [('im', 'NN'), ('pleased', 'VBD'), ('to', 'TO'), ('introduce', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('your', 'PRP$'), ('pmdesignate', 'NN'), ('xxxxx', 'NN'), ('xxxxx', 'NN'), ('who', 'WP'), ('is', 'VBZ'), ('raring', 'VBG'), ('to', 'TO'), ('commence', 'VB'), ('the', 'DT'), ('planning', 'NN'), ('from', 'IN'), ('tomorrow', 'NN'), ('wednesday', 'NN')], [('from', 'IN'), ('this', 'DT'), ('acedemic', 'JJ'), ('season', 'NN'), ('jun', 'NN'), ('2014', 'CD'), ('onwards', 'IN'), ('we', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('having', 'VBG'), ('students', 'NNS'), ('from', 'IN'), ('xxxxx', 'JJ'), ('xxxxx', 'NNP'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('in', 'IN'), ('our', 'PRP$'), ('platform', 'NN'), ('for', 'IN'), ('following', 'VBG'), ('requirements', 'NNS'), ('y', 'VB')], [('please', 'VB'), ('give', 'VB'), ('us', 'PRP'), ('time', 'NN'), ('until', 'IN'), ('tuesday', 'JJ')], [('back', 'RB'), ('in', 'IN'), ('xxxxxxxxx', 'NN'), ('on', 'IN'), ('coming', 'VBG'), ('sunday', 'NN'), ('which', 'WDT'), ('means', 'VBZ'), ('i', 'NN'), ('will', 'MD'), ('miss', 'VB'), ('all', 'PDT'), ('the', 'DT'), ('sessions', 'NNS'), ('this', 'DT'), ('week', 'NN'), ('too', 'RB')], [('should', 'MD'), ('have', 'VB'), ('an', 'DT'), ('update', 'JJ'), ('by', 'IN'), ('eod', 'JJ'), ('today', 'NN'), ('or', 'CC'), ('tomorrow', 'NN')], [('i', 'NN'), ('will', 'MD'), ('definitely', 'RB'), ('ping', 'VBG'), ('you', 'PRP'), ('tomorrow', 'NN')], [('xxxxxx', 'NN'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('xxxxxxxxx', 'NN'), ('on', 'IN'), ('thursday', 'NN'), ('may', 'MD'), ('22nd', 'VB')], [('the', 'DT'), ('deal', 'NN'), ('is', 'VBZ'), ('progressing', 'VBG'), ('to', 'TO'), ('its', 'PRP$'), ('next', 'JJ'), ('stage', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('are', 'VBP'), ('looking', 'VBG'), ('at', 'IN'), ('closing', 'VBG'), ('this', 'DT'), ('by', 'IN'), ('this', 'DT'), ('month', 'NN')], [('lets', 'NNS'), ('review', 'VBP'), ('tomorrow', 'NN'), ('and', 'CC'), ('finalize', 'VB'), ('the', 'DT'), ('final', 'JJ'), ('sprint', 'NN')], [('i', 'NNS'), ('have', 'VBP'), ('to', 'TO'), ('admit', 'VB'), ('that', 'IN'), ('i', 'NN'), ('have', 'VBP'), ('forgot', 'VBN'), ('all', 'DT'), ('i', 'JJ'), ('knew', 'VBD'), ('about', 'IN'), ('this', 'DT'), ('project', 'NN'), ('i', 'NN'), ('will', 'MD'), ('work', 'VB'), ('on', 'IN'), ('this', 'DT'), ('project', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('with', 'IN'), ('an', 'DT'), ('updated', 'JJ'), ('dl', 'NN'), ('soon', 'RB'), ('after', 'IN')], [('please', 'VB'), ('take', 'VB'), ('a', 'DT'), ('few', 'JJ'), ('minutes', 'NNS'), ('after', 'IN'), ('the', 'DT'), ('last', 'JJ'), ('session', 'NN'), ('tomorrow', 'NN'), ('to', 'TO'), ('complete', 'VB'), ('this', 'DT'), ('very', 'RB'), ('short', 'JJ'), ('survey', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('currently', 'RB'), ('scheduled', 'VBN'), ('to', 'TO'), ('come', 'VB'), ('back', 'RB'), ('on', 'IN'), ('the', 'DT'), ('23rd', 'CD'), ('of', 'IN'), ('may', 'MD'), ('late', 'VB'), ('night', 'NN'), ('as', 'IN'), ('usual', 'JJ')], [('bill', 'NN'), ('xxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxx', 'NNP'), ('yyyyy', 'NNP'), ('payment', 'NN'), ('due', 'JJ'), ('date', 'NN'), ('05292014', 'CD')], [('we', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('a', 'DT'), ('meeting', 'NN'), ('with', 'IN'), ('xxxxx', 'NN'), ('on', 'IN'), ('next', 'JJ'), ('monday', 'NN')], [('a', 'DT'), ('dedicated', 'JJ'), ('manager', 'NN'), ('for', 'IN'), ('maintenance', 'NN'), ('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('place', 'NN'), ('from', 'IN'), ('1st', 'CD'), ('june', 'NN')], [('hosts', 'NNS'), ('xxx', 'VBP'), ('xxxxxxxxxx', 'JJ'), ('and', 'CC'), ('xxx', 'JJ'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('date', 'NN'), ('and', 'CC'), ('time', 'NN'), ('monday', 'JJ'), ('9', 'CD'), ('june', 'NN'), ('yyyyy', 'NN'), ('am', 'VBP'), ('onwards', 'NNS'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('ff', 'NN'), ('xxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxx', 'NN')], [('i', 'NN'), ('might', 'MD'), ('not', 'RB'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('see', 'VB'), ('your', 'PRP$'), ('reply', 'NN'), ('today', 'NN'), ('and', 'CC'), ('i', 'NN'), ('will', 'MD'), ('have', 'VB'), ('little', 'JJ'), ('internet', 'JJ'), ('access', 'NN'), ('but', 'CC'), ('if', 'IN'), ('anything', 'NN'), ('needs', 'VBZ'), ('amends', 'VBZ'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('take', 'VB'), ('care', 'NN'), ('of', 'IN'), ('it', 'PRP'), ('tomorrow', 'NN'), ('before', 'IN'), ('noon', 'NN')], [('additionally', 'RB'), ('i', 'NNS'), ('have', 'VBP'), ('a', 'DT'), ('webinar', 'NN'), ('to', 'TO'), ('deliver', 'VB'), ('at', 'IN'), ('300', 'CD'), ('pm', 'NN'), ('i', 'NN'), ('would', 'MD'), ('request', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('please', 'VB'), ('postpone', 'VB'), ('the', 'DT'), ('visit', 'NN'), ('for', 'IN'), ('tomorrow', 'NN'), ('at', 'IN'), ('300', 'CD'), ('pm', 'JJ'), ('please', 'NN'), ('confirm', 'NN'), ('if', 'IN'), ('this', 'DT'), ('time', 'NN'), ('suits', 'NNS'), ('you', 'PRP'), ('and', 'CC'), ('your', 'PRP$'), ('team', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('piloting', 'VBG'), ('the', 'DT'), ('tamil', 'NN'), ('videos', 'NN'), ('in', 'IN'), ('july', 'NN')], [('will', 'MD'), ('do', 'VB'), ('the', 'DT'), ('needful', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('please', 'VB'), ('check', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('could', 'MD'), ('help', 'VB'), ('out', 'RP'), ('next', 'JJ'), ('sat', 'JJ'), ('28jun', 'CD'), ('as', 'IN'), ('we', 'PRP'), ('need', 'VBP'), ('more', 'JJR'), ('volunteers', 'NNS'), ('next', 'IN'), ('sat', 'NN')], [('xxxx', 'NN'), ('is', 'VBZ'), ('your', 'PRP$'), ('contact', 'NN'), ('to', 'TO'), ('this', 'DT'), ('issue', 'NN'), ('xxxx', 'VBZ'), ('please', 'JJ'), ('set', 'VB'), ('the', 'DT'), ('time', 'NN'), ('with', 'IN'), ('xxxx', 'JJ'), ('xxxx', 'NN'), ('tomorrow', 'NN'), ('morning', 'NN')], [('this', 'DT'), ('email', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('notify', 'VB'), ('you', 'PRP'), ('that', 'IN'), ('your', 'PRP$'), ('xxxxxx', 'NNP'), ('gold', 'NN'), ('membership', 'NN'), ('will', 'MD'), ('expire', 'VB'), ('on', 'IN'), ('may', 'MD'), ('28', 'CD'), ('2014', 'CD')], [('xxxxxxxxx', 'NN'), ('will', 'MD'), ('be', 'VB'), ('done', 'VBN'), ('by', 'IN'), ('xxx', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('expect', 'VBP'), ('initial', 'JJ'), ('set', 'VBN'), ('early', 'RB'), ('next', 'JJ'), ('week', 'NN')], [('july', 'RB'), ('25', 'CD'), ('at', 'IN'), ('xxxxxx', 'NNP'), ('xxxxxxxxxxx', 'NNP'), ('xxxxx', 'NN')], [('i', 'JJ'), ('shall', 'MD'), ('update', 'VB'), ('the', 'DT'), ('sheet', 'NN'), ('before', 'IN'), ('our', 'PRP$'), ('call', 'NN'), ('tomorrow', 'NN')], [('i', 'NN'), ('scheduled', 'VBD'), ('it', 'PRP'), ('for', 'IN'), ('tomorrow', 'NN'), ('my', 'PRP$'), ('bad', 'JJ')], [('we', 'PRP'), ('are', 'VBP'), ('all', 'DT'), ('set', 'NN'), ('to', 'TO'), ('launch', 'VB'), ('the', 'DT'), ('website', 'NN'), ('on', 'IN'), ('11th', 'CD'), ('august', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('proceed', 'VB'), ('with', 'IN'), ('the', 'DT'), ('xxxxxxx', 'NNP'), ('video', 'NN'), ('once', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('finished', 'VBN'), ('with', 'IN'), ('the', 'DT'), ('final', 'JJ'), ('app', 'NN'), ('name', 'NN'), ('icon', 'NN'), ('and', 'CC'), ('the', 'DT'), ('logo', 'NN'), ('that', 'WDT'), ('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('the', 'DT'), ('beginning', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('1517th', 'CD'), ('aug', 'JJ'), ('xxxxx', 'NNP'), ('yyyyy', 'NN'), ('xxxxxxxxx', 'NN'), ('and', 'CC'), ('xxxxxxxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxx', 'NNP'), ('xxxx', 'NNP'), ('yyyy', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxx', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('targetting', 'VBG'), ('to', 'TO'), ('complete', 'VB'), ('the', 'DT'), ('project', 'NN'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('week', 'NN')], [('xxxxxxx', 'NN'), ('are', 'VBP'), ('continuing', 'VBG'), ('to', 'TO'), ('look', 'VB'), ('into', 'IN'), ('the', 'DT'), ('issue', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('will', 'MD'), ('provision', 'NN'), ('another', 'DT'), ('test', 'NN'), ('entry', 'NN'), ('point', 'NN'), ('to', 'TO'), ('keep', 'VB'), ('the', 'DT'), ('investigations', 'NNS'), ('going', 'VBG')], [('kindly', 'RB'), ('take', 'VB'), ('my', 'PRP$'), ('mail', 'NN'), ('as', 'IN'), ('a', 'DT'), ('bitter', 'NN'), ('pill', 'NN'), ('for', 'IN'), ('good', 'JJ'), ('and', 'CC'), ('i', 'JJ'), ('request', 'VBP'), ('the', 'DT'), ('engineering', 'NN'), ('team', 'NN'), ('to', 'TO'), ('meet', 'VB'), ('tomorrow', 'NN'), ('at', 'IN'), ('yyyyy', 'NN'), ('am', 'VBP')], [('i', 'NN'), ('will', 'MD'), ('update', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('that', 'DT'), ('by', 'IN'), ('tomorrow', 'NN')], [('the', 'DT'), ('shipment', 'NN'), ('will', 'MD'), ('reach', 'VB'), ('the', 'DT'), ('address', 'NN'), ('provided', 'VBD'), ('below', 'IN'), ('within', 'IN'), ('the', 'DT'), ('expected', 'JJ'), ('delivery', 'NN'), ('date', 'NN'), ('wednesday', 'NN'), ('jun', 'VBZ'), ('04', 'CD'), ('2014', 'CD')], [('in', 'IN'), ('the', 'DT'), ('month', 'NN'), ('of', 'IN'), ('august', 'NN'), ('we', 'PRP'), ('are', 'VBP'), ('reaching', 'VBG'), ('a', 'DT'), ('record', 'NN'), ('media', 'NNS'), ('spend', 'VBP'), ('and', 'CC'), ('close', 'RB'), ('to', 'TO'), ('being', 'VBG'), ('break', 'VB'), ('even', 'RB')], [('please', 'VB'), ('mention', 'NN'), ('when', 'WRB'), ('you', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('available', 'JJ'), ('for', 'IN'), ('recordings', 'NNS'), ('on', 'IN'), ('sunday', 'JJ'), ('20th', 'CD'), ('july', 'NN')], [('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('schedule', 'VB'), ('a', 'DT'), ('f2f', 'NN'), ('with', 'IN'), ('ria', 'NN'), ('tomorrow', 'NN'), ('or', 'CC'), ('on', 'IN'), ('saturday', 'NN')], [('the', 'DT'), ('shipment', 'NN'), ('will', 'MD'), ('reach', 'VB'), ('the', 'DT'), ('address', 'NN'), ('provided', 'VBD'), ('below', 'IN'), ('within', 'IN'), ('the', 'DT'), ('expected', 'JJ'), ('delivery', 'NN'), ('date', 'NN'), ('monday', 'NN'), ('jun', 'VBZ'), ('16', 'CD'), ('2014', 'CD')], [('isnt', 'NN'), ('that', 'IN'), ('the', 'DT'), ('best', 'JJS'), ('way', 'NN'), ('to', 'TO'), ('start', 'VB'), ('june', 'NN')], [('as', 'IN'), ('discussed', 'VBN'), ('i', 'NN'), ('will', 'MD'), ('come', 'VB'), ('early', 'JJ'), ('tomorrow', 'NN'), ('at', 'IN'), ('1', 'CD'), ('pm', 'NN'), ('to', 'TO'), ('setup', 'VB'), ('the', 'DT'), ('database', 'NN'), ('with', 'IN'), ('you', 'PRP')], [('i', 'NN'), ('shall', 'MD'), ('do', 'VB'), ('the', 'DT'), ('needful', 'JJ'), ('tomorrow', 'NN'), ('and', 'CC'), ('will', 'MD'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP')], [('will', 'MD'), ('work', 'VB'), ('on', 'IN'), ('it', 'PRP'), ('tomorrow', 'NN'), ('sat', 'VBD'), ('and', 'CC'), ('push', 'JJ'), ('changes', 'NNS')], [('we', 'PRP'), ('look', 'VBP'), ('forward', 'RB'), ('to', 'TO'), ('begin', 'VB'), ('the', 'DT'), ('campaigns', 'NNS'), ('by', 'IN'), ('august', 'JJ'), ('1', 'CD'), ('and', 'CC'), ('build', 'VB'), ('a', 'DT'), ('great', 'JJ'), ('partnership', 'NN')], [('she', 'PRP'), ('is', 'VBZ'), ('down', 'RB'), ('with', 'IN'), ('fever', 'NN'), ('so', 'IN'), ('she', 'PRP'), ('will', 'MD'), ('send', 'VB'), ('across', 'IN'), ('the', 'DT'), ('required', 'VBN'), ('details', 'NNS'), ('by', 'IN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('updating', 'VBG'), ('the', 'DT'), ('logo', 'NN'), ('that', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('working', 'VBG'), ('on', 'IN'), ('and', 'CC'), ('will', 'MD'), ('share', 'NN'), ('that', 'IN'), ('with', 'IN'), ('you', 'PRP'), ('tomorrow', 'NN')], [('but', 'CC'), ('she', 'PRP'), ('told', 'VBD'), ('she', 'PRP'), ('will', 'MD'), ('manage', 'VB'), ('to', 'TO'), ('get', 'VB'), ('relieved', 'VBN'), ('before', 'RB'), ('27th', 'CD'), ('so', 'IN'), ('that', 'IN'), ('she', 'PRP'), ('can', 'MD'), ('join', 'VB'), ('us', 'PRP'), ('by', 'IN'), ('27th', 'CD'), ('of', 'IN'), ('this', 'DT'), ('month', 'NN')], [('medical', 'JJ'), ('test', 'NN'), ('done', 'VBN'), ('and', 'CC'), ('will', 'MD'), ('show', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN')], [('busy', 'JJ'), ('tomorrow', 'NN'), ('until', 'IN'), ('midafternoon', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('send', 'VB'), ('you', 'PRP'), ('some', 'DT'), ('interesting', 'JJ'), ('profiles', 'NNS'), ('for', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('shortlist', 'VB'), ('by', 'IN'), ('tomorrow', 'NN')], [('should', 'MD'), ('be', 'VB'), ('done', 'VBN'), ('by', 'IN'), ('tomorrow', 'NN'), ('10', 'CD'), ('am', 'VBP')], [('will', 'MD'), ('start', 'VB'), ('early', 'JJ'), ('tomorrow', 'NN')], [('i', 'NN'), ('will', 'MD'), ('catch', 'VB'), ('up', 'RP'), ('with', 'IN'), ('a', 'DT'), ('few', 'JJ'), ('technical', 'JJ'), ('people', 'NNS'), ('when', 'WRB'), ('i', 'NN'), ('am', 'VBP'), ('back', 'RB'), ('in', 'IN'), ('country', 'NN'), ('next', 'JJ'), ('week', 'NN')], [('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('on', 'IN'), ('wednesday', 'NN')], [('today', 'NN'), ('i', 'NNS'), ('have', 'VBP'), ('worked', 'VBN'), ('player', 'NN'), ('chatting', 'VBG'), ('ui', 'JJ'), ('and', 'CC'), ('web', 'JJ'), ('service', 'NN'), ('implementation', 'NN'), ('but', 'CC'), ('its', 'PRP$'), ('not', 'RB'), ('complete', 'JJ'), ('so', 'IN'), ('i', 'JJ'), ('will', 'MD'), ('work', 'VB'), ('on', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('by', 'IN'), ('tomorrow', 'NN')], [('allow', 'VB'), ('me', 'PRP'), ('until', 'IN'), ('tomorrow', 'NN')], [('hi', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('not', 'RB'), ('in', 'IN'), ('office', 'NN'), ('till', 'NN'), ('1st', 'CD'), ('august', 'NN'), ('i', 'NN'), ('would', 'MD'), ('be', 'VB'), ('having', 'VBG'), ('limited', 'JJ'), ('access', 'NN'), ('to', 'TO'), ('my', 'PRP$'), ('emails', 'NNS')], [('xxxxxxxxxx', 'NN'), ('bootcamp', 'NN'), ('august', 'RB'), ('9', 'CD'), ('2014', 'CD'), ('xxxxx', 'NN'), ('xxxxxxxxx', 'NN'), ('from', 'IN'), ('an', 'DT'), ('industry', 'NN'), ('expert', 'NN')], [('if', 'IN'), ('you', 'PRP'), ('dont', 'VBP'), ('want', 'VBP'), ('this', 'DT'), ('room', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('pay', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('y', 'NN'), ('yyy', 'NN'), ('xxxx', 'NNP'), ('gross', 'JJ'), ('lump', 'NN'), ('sum', 'NN'), ('with', 'IN'), ('your', 'PRP$'), ('first', 'JJ'), ('payroll', 'JJ'), ('end', 'NN'), ('of', 'IN'), ('july', 'NN')], [('our', 'PRP$'), ('office', 'NN'), ('is', 'VBZ'), ('reviewing', 'VBG'), ('organizations', 'NNS'), ('needs', 'NNS'), ('and', 'CC'), ('requirement', 'NN'), ('in', 'IN'), ('various', 'JJ'), ('areas', 'NNS'), ('and', 'CC'), ('will', 'MD'), ('revert', 'VB'), ('to', 'TO'), ('you', 'PRP'), ('next', 'JJ'), ('week', 'NN'), ('with', 'IN'), ('more', 'JJR'), ('information', 'NN')], [('actually', 'RB'), ('saturday', 'JJ'), ('would', 'MD'), ('be', 'VB'), ('pretty', 'RB'), ('busy', 'JJ'), ('for', 'IN'), ('him', 'PRP'), ('so', 'RB'), ('hes', 'VBZ'), ('requesting', 'VBG'), ('to', 'TO'), ('make', 'VB'), ('it', 'PRP'), ('either', 'DT'), ('sunday', 'NN'), ('or', 'CC'), ('monday', 'VB'), ('any', 'DT'), ('time', 'NN')], [('we', 'PRP'), ('could', 'MD'), ('discuss', 'VB'), ('on', 'IN'), ('monday', 'NN'), ('to', 'TO'), ('get', 'VB'), ('some', 'DT'), ('closure', 'NN'), ('on', 'IN'), ('that', 'DT'), ('piece', 'NN')], [('xxx', 'NN'), ('xxxxxxxxxx', 'NN'), ('will', 'MD'), ('come', 'VB'), ('to', 'TO'), ('your', 'PRP$'), ('house', 'NN'), ('within', 'IN'), ('1', 'CD'), ('hour', 'NN'), ('today', 'NN'), ('to', 'TO'), ('collect', 'VB'), ('the', 'DT'), ('document', 'NN')], [('not', 'RB'), ('certain', 'JJ'), ('but', 'CC'), ('will', 'MD'), ('check', 'VB'), ('and', 'CC'), ('revert', 'VB'), ('tomorrow', 'NN')], [('xx', 'NN'), ('ill', 'NN'), ('come', 'VB'), ('in', 'IN'), ('first', 'JJ'), ('thing', 'NN'), ('next', 'JJ'), ('week', 'NN'), ('for', 'IN'), ('the', 'DT'), ('review', 'NN')], [('in', 'IN'), ('light', 'NN'), ('of', 'IN'), ('the', 'DT'), ('xxxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('tomorrow', 'NN'), ('the', 'DT'), ('xxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('will', 'MD'), ('not', 'RB'), ('be', 'VB'), ('accessible', 'JJ'), ('via', 'IN'), ('the', 'DT'), ('main', 'JJ'), ('gates', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('diamond', 'NN'), ('xxxxxxxx', 'NN'), ('complex', 'VBP'), ('all', 'DT'), ('gates', 'NNS'), ('facing', 'VBG'), ('old', 'JJ'), ('airport', 'NN'), ('xxxx', 'NN')], [('xxxx', 'NN'), ('to', 'TO'), ('catch', 'VB'), ('you', 'PRP'), ('soon', 'RB'), ('and', 'CC'), ('before', 'IN'), ('you', 'PRP'), ('leave', 'VBP'), ('have', 'VBP'), ('a', 'DT'), ('look', 'NN'), ('at', 'IN'), ('a', 'DT'), ('really', 'RB'), ('cool', 'JJ'), ('video', 'NN'), ('we', 'PRP'), ('saw', 'VBD'), ('this', 'DT'), ('week', 'NN')], [('suggest', 'VB'), ('one', 'CD'), ('visiting', 'VBG'), ('card', 'NN'), ('design', 'NN'), ('for', 'IN'), ('our', 'PRP$'), ('xxxxxxxxx', 'NN'), ('by', 'IN'), ('the', 'DT'), ('tomorrow', 'NN'), ('morning', 'NN'), ('yy', 'NN'), ('am', 'VBP')], [('i', 'NNS'), ('have', 'VBP'), ('to', 'TO'), ('be', 'VB'), ('out', 'RP'), ('on', 'IN'), ('monday', 'NN'), ('and', 'CC'), ('tuesday', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('ensure', 'VB'), ('this', 'DT'), ('gets', 'VBZ'), ('updated', 'VBN'), ('before', 'IN'), ('next', 'JJ'), ('friday', 'NN')], [('if', 'IN'), ('everything', 'NN'), ('goes', 'VBZ'), ('well', 'RB'), ('she', 'PRP'), ('can', 'MD'), ('join', 'VB'), ('on', 'IN'), ('monday', 'NN'), ('or', 'CC'), ('wednesday', 'NN')], [('hds', 'NN'), ('url', 'NN'), ('from', 'IN'), ('purple', 'NN'), ('has', 'VBZ'), ('some', 'DT'), ('issues', 'NNS'), ('will', 'MD'), ('get', 'VB'), ('it', 'PRP'), ('resolved', 'VBD'), ('as', 'RB'), ('soon', 'RB'), ('as', 'IN'), ('i', 'JJ'), ('reach', 'VBP'), ('pune', 'NN'), ('tomorrow', 'NN')], [('mostly', 'RB'), ('monday', 'JJ'), ('i', 'NN'), ('will', 'MD'), ('let', 'VB'), ('you', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('i', 'JJ'), ('need', 'VBP'), ('help', 'NN')], [('xxx', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('only', 'RB'), ('available', 'JJ'), ('on', 'IN'), ('tuesday', 'NN'), ('that', 'IN'), ('week', 'NN')], [('have', 'VBP'), ('been', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('middle', 'JJ'), ('east', 'NN'), ('and', 'CC'), ('now', 'RB'), ('xxxxxx', 'VB'), ('this', 'DT'), ('week', 'NN')], [('in', 'IN'), ('an', 'DT'), ('announcement', 'NN'), ('late', 'RB'), ('monday', 'JJ'), ('evening', 'VBG'), ('the', 'DT'), ('company', 'NN'), ('said', 'VBD'), ('it', 'PRP'), ('will', 'MD'), ('shut', 'VB'), ('its', 'PRP$'), ('five', 'CD'), ('cashandcarry', 'NN'), ('stores', 'NNS'), ('in', 'IN'), ('xxxxx', 'NN'), ('by', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('september', 'NN')], [('freedompoints', 'NNS'), ('are', 'VBP'), ('expiring', 'VBG'), ('on', 'IN'), ('31st', 'CD'), ('july', 'NN'), ('2014', 'CD')], [('please', 'NN'), ('plan', 'NN'), ('to', 'TO'), ('be', 'VB'), ('in', 'IN'), ('xxxxxxx', 'NN'), ('in', 'IN'), ('the', 'DT'), ('week', 'NN'), ('of', 'IN'), ('august', 'JJ'), ('18', 'CD'), ('to', 'TO'), ('spend', 'VB'), ('5', 'CD'), ('days', 'NNS'), ('on', 'IN'), ('acceptance', 'NN'), ('testing', 'NN'), ('of', 'IN'), ('toc', 'NN'), ('v6', 'NN')], [('am', 'VBP'), ('out', 'RP'), ('on', 'IN'), ('friday', 'NN'), ('and', 'CC'), ('saturday', 'NN'), ('for', 'IN'), ('nets', 'NNS')], [('xxxxxxxx', 'NN'), ('team', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('attend', 'VB'), ('monthly', 'JJ'), ('timeout', 'NN'), ('event', 'NN'), ('on', 'IN'), ('monday', 'JJ'), ('5th', 'CD'), ('may', 'MD'), ('2014', 'VB')], [('so', 'RB'), ('i', 'RB'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('come', 'VB'), ('across', 'IN'), ('on', 'IN'), ('coming', 'VBG'), ('thursday', 'NN'), ('and', 'CC'), ('pick', 'VB'), ('up', 'RP'), ('the', 'DT'), ('money', 'NN'), ('you', 'PRP'), ('will', 'MD'), ('appreciate', 'VB'), ('that', 'IN'), ('i', 'NN'), ('have', 'VBP'), ('been', 'VBN'), ('patient', 'VBN'), ('so', 'RB'), ('far', 'RB'), ('on', 'IN'), ('this', 'DT')], [('speciality', 'NN'), ('xxxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('check', 'VB'), ('city', 'NN'), ('xxxxxx', 'NNP'), ('xxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxx', 'NNP'), ('name', 'NN'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('date', 'NN'), ('09072014', 'CD'), ('remarks', 'NNS')], [('npc', 'JJ'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xx', 'NNP'), ('xxxxxxxx', 'NNP'), ('30', 'CD'), ('may', 'MD'), ('2014', 'VB')], [('we', 'PRP'), ('shall', 'MD'), ('discuss', 'VB'), ('internally', 'RB'), ('and', 'CC'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('with', 'IN'), ('details', 'NNS'), ('on', 'IN'), ('this', 'DT'), ('tomorrow', 'NN'), ('for', 'IN'), ('sure', 'JJ')], [('kindly', 'RB'), ('organize', 'VB'), ('the', 'DT'), ('logistics', 'NNS'), ('for', 'IN'), ('our', 'PRP$'), ('appraisal', 'JJ'), ('mission', 'NN'), ('to', 'TO'), ('xxx', 'VB'), ('from', 'IN'), ('august', 'JJ'), ('yyyyy', 'NN')], [('kindly', 'RB'), ('submit', 'VB'), ('your', 'PRP$'), ('kras', 'NNS'), ('to', 'TO'), ('your', 'PRP$'), ('respective', 'JJ'), ('supervisor', 'NN'), ('by', 'IN'), ('13th', 'CD'), ('of', 'IN'), ('june', 'NN'), ('2014', 'CD')], [('i', 'NN'), ('am', 'VBP'), ('sorry', 'NN'), ('to', 'TO'), ('inform', 'VB'), ('that', 'DT'), ('xxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('class', 'NN'), ('yy', 'NN'), ('will', 'MD'), ('not', 'RB'), ('happen', 'VB'), ('on', 'IN'), ('4th', 'CD'), ('may', 'MD'), ('and', 'CC'), ('is', 'VBZ'), ('postponed', 'VBN'), ('until', 'IN'), ('further', 'JJ'), ('notice', 'NN'), ('as', 'IN'), ('our', 'PRP$'), ('instructor', 'NN'), ('is', 'VBZ'), ('engaged', 'VBN'), ('have', 'VBP'), ('some', 'DT'), ('personal', 'JJ'), ('priorities', 'NNS')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('free', 'JJ'), ('after', 'IN'), ('22nd', 'CD'), ('this', 'DT'), ('month', 'NN')], [('for', 'IN'), ('tomorrow', 'NN'), ('xxxxxxxxx', 'NN'), ('requirements', 'NNS'), ('mvslidepadiothinknext', 'JJ'), ('link', 'NN'), ('should', 'MD'), ('be', 'VB'), ('active', 'JJ')], [('yy', 'NN'), ('points', 'NNS'), ('on', 'IN'), ('summer', 'NN'), ('rentalsearn', 'NN'), ('double', 'JJ'), ('points', 'NNS'), ('this', 'DT'), ('summer', 'NN'), ('on', 'IN'), ('xxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('of', 'IN'), ('xxxxxxxx', 'NNP'), ('or', 'CC'), ('larger', 'JJR'), ('vehicles', 'NNS'), ('through', 'IN'), ('82214', 'CD'), ('with', 'IN'), ('pc', 'NN'), ('yyyyyy', 'NN')], [('topic', 'NN'), ('presentation', 'NN'), ('skills', 'NNS'), ('date', 'NN'), ('25th', 'CD'), ('april', 'NN'), ('2014', 'CD'), ('friday', 'JJ'), ('time', 'NN'), ('400pm', 'CD')], [('i', 'NN'), ('am', 'VBP'), ('leaving', 'VBG'), ('for', 'IN'), ('delhi', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('june', 'NN'), ('23rd', 'CD'), ('by', 'IN'), ('xxx', 'JJ'), ('via', 'IN'), ('xxxxx', 'NN'), ('and', 'CC'), ('return', 'NN'), ('on', 'IN'), ('july', 'NN'), ('7th', 'CD'), ('around', 'IN'), ('11am', 'CD')], [('as', 'IN'), ('discussed', 'VBN'), ('we', 'PRP'), ('would', 'MD'), ('want', 'VB'), ('xxxxxx', 'NN'), ('and', 'CC'), ('xxxxxxxx', 'JJ'), ('start', 'NN'), ('from', 'IN'), ('tomorrow', 'NN')], [('xxxxxxx', 'NN'), ('said', 'VBD'), ('yesterday', 'NN'), ('that', 'IN'), ('it', 'PRP'), ('will', 'MD'), ('happen', 'VB'), ('may', 'MD'), ('first', 'VB'), ('week', 'NN'), ('max', 'NN')], [('applications', 'NNS'), ('close', 'RB'), ('on', 'IN'), ('jul', 'NN'), ('25th', 'CD'), ('for', 'IN'), ('our', 'PRP$'), ('first', 'JJ'), ('home', 'NN'), ('automation', 'NN'), ('cohort', 'NN'), ('at', 'IN'), ('the', 'DT'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxxxx', 'NNP'), ('in', 'IN'), ('xxxxxxx', 'NN')], [('ends', 'NNS'), ('tomorrow', 'NN')], [('but', 'CC'), ('definitely', 'RB'), ('not', 'RB'), ('this', 'DT'), ('month', 'NN')], [('here', 'RB'), ('is', 'VBZ'), ('a', 'DT'), ('link', 'NN'), ('which', 'WDT'), ('provides', 'VBZ'), ('logistics', 'NNS'), ('plan', 'NN'), ('for', 'IN'), ('saturday', 'JJ'), ('24jun', 'CD')], [('xxxxxxxxx', 'JJ'), ('xxxx', 'NNP'), ('xxx', 'NNP'), ('friday', 'NN'), ('may', 'MD'), ('23', 'CD'), ('2014', 'CD')], [('if', 'IN'), ('xxx', 'VBN'), ('xx', 'NN'), ('has', 'VBZ'), ('to', 'TO'), ('leave', 'VB'), ('for', 'IN'), ('xxxxxx', 'NN'), ('he', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('leave', 'VB'), ('office', 'NN'), ('by', 'IN'), ('yyyy', 'NN'), ('yyyy', 'NN'), ('pm', 'NN'), ('on', 'IN'), ('20th', 'CD'), ('august', 'NN')], [('our', 'PRP$'), ('tentative', 'JJ'), ('location', 'NN'), ('is', 'VBZ'), ('at', 'IN'), ('xxxxxxxx', 'JJ'), ('xxxxxx', 'NN'), ('in', 'IN'), ('xxxxxxxxx', 'NN'), ('but', 'CC'), ('the', 'DT'), ('date', 'NN'), ('is', 'VBZ'), ('fixed', 'VBN'), ('xxxx', 'JJ'), ('27', 'CD'), ('28th', 'CD')], [('but', 'CC'), ('i', 'JJ'), ('am', 'VBP'), ('sorry', 'JJ'), ('i', 'NN'), ('have', 'VBP'), ('to', 'TO'), ('miss', 'VB'), ('these', 'DT'), ('festivities', 'NNS'), ('as', 'IN'), ('i', 'NN'), ('am', 'VBP'), ('booked', 'VBN'), ('up', 'RP'), ('tomorrow', 'NN'), ('evening', 'VBG'), ('with', 'IN'), ('xxxxxx', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('consider', 'VB'), ('it', 'PRP'), ('from', 'IN'), ('aug', 'VBG'), ('14', 'CD'), ('onwards', 'NNS'), ('for', 'IN'), ('your', 'PRP$'), ('salary', 'JJ'), ('tax', 'NN'), ('liability', 'NN'), ('computation', 'NN')], [('please', 'NN'), ('join', 'VB'), ('my', 'PRP$'), ('meeting', 'NN'), ('apr', 'RB'), ('29', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('330', 'CD'), ('pm', 'NN'), ('xxx', 'NN')], [('the', 'DT'), ('alpha', 'NN'), ('will', 'MD'), ('be', 'VB'), ('released', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('appstore', 'NN'), ('in', 'IN'), ('august', 'NN')], [('xxxxxxx', 'NN'), ('will', 'MD'), ('review', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('thursday', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('will', 'MD'), ('sign', 'VB'), ('off', 'RP'), ('on', 'IN'), ('this', 'DT'), ('latest', 'JJS'), ('by', 'IN'), ('friday', 'NN')], [('as', 'IN'), ('discussed', 'VBN'), ('and', 'CC'), ('planned', 'VBN'), ('xx', 'NNP'), ('xxxx', 'NNP'), ('will', 'MD'), ('take', 'VB'), ('tomorrows', 'NNS'), ('build', 'VB'), ('and', 'CC'), ('will', 'MD'), ('not', 'RB'), ('test', 'VB'), ('anything', 'NN'), ('on', 'IN'), ('this', 'DT'), ('build', 'NN')], [('as', 'IN'), ('part', 'NN'), ('of', 'IN'), ('this', 'DT'), ('effort', 'NN'), ('our', 'PRP$'), ('swimming', 'VBG'), ('pool', 'NN'), ('will', 'MD'), ('be', 'VB'), ('under', 'IN'), ('maintenance', 'NN'), ('from', 'IN'), ('yy', '$'), ('26', 'CD'), ('july', 'NN'), ('2014', 'CD'), ('and', 'CC'), ('therefore', 'VB'), ('it', 'PRP'), ('will', 'MD'), ('not', 'RB'), ('be', 'VB'), ('available', 'JJ'), ('for', 'IN'), ('use', 'NN')], [('for', 'IN'), ('the', 'DT'), ('pair', 'NN'), ('object', 'IN'), ('we', 'PRP'), ('need', 'VBP'), ('two', 'CD'), ('dates', 'NNS'), ('and', 'CC'), ('in', 'IN'), ('this', 'DT'), ('case', 'NN'), ('we', 'PRP'), ('must', 'MD'), ('obtain', 'VB'), ('the', 'DT'), ('first', 'JJ'), ('date', 'NN'), ('from', 'IN'), ('next', 'JJ'), ('thursday', 'NN'), ('and', 'CC'), ('the', 'DT'), ('second', 'JJ'), ('date', 'NN'), ('from', 'IN'), ('the', 'DT'), ('12th', 'CD'), ('june', 'NNS'), ('part', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('happy', 'JJ'), ('to', 'TO'), ('announce', 'VB'), ('that', 'DT'), ('xxxxxxxxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('realtor', 'NN'), ('omr', 'NN'), ('mobile', 'JJ'), ('yyyyyyyyyyyyyy', 'NN'), ('xxxxx', 'NNP'), ('xxxxxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('has', 'VBZ'), ('been', 'VBN'), ('promoted', 'VBN'), ('as', 'IN'), ('senior', 'JJ'), ('realtor', 'NN'), ('from', 'IN'), ('realtor', 'NN'), ('with', 'IN'), ('effect', 'NN'), ('from', 'IN'), ('24th', 'CD'), ('july', 'NN'), ('2014', 'CD')], [('xxxxxxx', 'JJ'), ('xxxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('august', 'VBD'), ('15th', 'CD'), ('600', 'CD'), ('pm', 'JJ'), ('entry', 'NN'), ('rs', 'NN'), ('yyy', 'VBZ'), ('only', 'RB'), ('tickets', 'NNS'), ('available', 'JJ'), ('at', 'IN'), ('the', 'DT'), ('venue', 'NN'), ('for', 'IN'), ('booking', 'VBG'), ('tickets', 'NNS'), ('contact', 'JJ'), ('yyyyyyyyyyy', 'NN')], [('as', 'IN'), ('discussed', 'VBN'), ('last', 'JJ'), ('week', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('a', 'DT'), ('demo', 'NN'), ('coming', 'VBG'), ('up', 'RP'), ('with', 'IN'), ('tcs', 'NN'), ('on', 'IN'), ('wednesday', 'NN')], [('next', 'JJ'), ('week', 'NN'), ('bangalore', 'RB'), ('maybe', 'RB'), ('difficult', 'JJ'), ('but', 'CC'), ('will', 'MD'), ('try', 'VB'), ('to', 'TO'), ('do', 'VB'), ('vc', 'NNS'), ('between', 'IN'), ('xxxxxxxxx', 'NNP'), ('and', 'CC'), ('xxxxxxx', 'VB')], [('i', 'NN'), ('will', 'MD'), ('approve', 'VB'), ('these', 'DT'), ('invoices', 'NNS'), ('immediately', 'RB'), ('after', 'IN'), ('we', 'PRP'), ('watch', 'VBP'), ('the', 'DT'), ('process', 'NN'), ('through', 'IN'), ('the', 'DT'), ('course', 'NN'), ('of', 'IN'), ('this', 'DT'), ('week', 'NN')], [('the', 'DT'), ('new', 'JJ'), ('updates', 'NNS'), ('to', 'TO'), ('these', 'DT'), ('will', 'MD'), ('take', 'VB'), ('effect', 'NN'), ('on', 'IN'), ('31', 'CD'), ('july', 'NN'), ('2014', 'CD')], [('minor', 'JJ'), ('formatting', 'VBG'), ('issues', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('tackled', 'VBN'), ('by', 'IN'), ('monday', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('hope', 'VBP'), ('to', 'TO'), ('dispatch', 'VB'), ('our', 'PRP$'), ('response', 'NN'), ('to', 'TO'), ('xxxxx', 'VB'), ('xxxxxx', 'NN'), ('on', 'IN'), ('the', 'DT'), ('due', 'JJ'), ('date', 'NN'), ('monday', 'NN'), ('21', 'CD'), ('july', 'NN'), ('2014', 'CD')], [('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('returning', 'VBG'), ('from', 'IN'), ('a', 'DT'), ('xxx', 'JJ'), ('xxxx', 'NN'), ('meeting', 'NN'), ('so', 'IN'), ('not', 'RB'), ('going', 'VBG'), ('to', 'TO'), ('xxx', 'VB'), ('xxxxx', 'NNP'), ('tomorrow', 'NN'), ('afternoon', 'NN')], [('to', 'TO'), ('avoid', 'VB'), ('excess', 'JJ'), ('tds', 'JJ'), ('deduction', 'NN'), ('submit', 'VBD'), ('the', 'DT'), ('investment', 'NN'), ('declaration', 'NN'), ('on', 'IN'), ('or', 'CC'), ('before', 'IN'), ('25th', 'CD'), ('april', 'NN'), ('2014', 'CD'), ('for', 'IN'), ('the', 'DT'), ('year', 'NN'), ('yyyyyyy', 'NN')], [('since', 'IN'), ('most', 'JJS'), ('of', 'IN'), ('you', 'PRP'), ('prefer', 'VBP'), ('25th', 'CD'), ('july', 'NNS'), ('friday', 'JJ'), ('for', 'IN'), ('team', 'NN'), ('outing', 'VBG'), ('we', 'PRP'), ('have', 'VBP'), ('decided', 'VBN'), ('to', 'TO'), ('finalize', 'VB'), ('on', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('date', 'NN')], [('sure', 'NN'), ('i', 'VBZ'), ('shall', 'MD'), ('make', 'VB'), ('myself', 'PRP'), ('available', 'JJ'), ('and', 'CC'), ('will', 'MD'), ('reach', 'VB'), ('xxxxxxx', 'NNP'), ('xxx', 'NNP'), ('office', 'NN'), ('on', 'IN'), ('12th', 'CD'), ('june', 'NN'), ('at', 'IN'), ('yyyyyam', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('writing', 'VBG'), ('this', 'DT'), ('email', 'NN'), ('as', 'IN'), ('a', 'DT'), ('personal', 'JJ'), ('reminder', 'NN'), ('as', 'IN'), ('you', 'PRP'), ('may', 'MD'), ('have', 'VB'), ('missed', 'VBN'), ('the', 'DT'), ('details', 'NNS'), ('that', 'IN'), ('we', 'PRP'), ('had', 'VBD'), ('sent', 'VBN'), ('earlier', 'RB'), ('on', 'IN'), ('the', 'DT'), ('xxxxxxx', 'NNP'), ('xx', 'NNP'), ('xxxxxx', 'NNP'), ('2014', 'CD'), ('scheduled', 'VBD'), ('on', 'IN'), ('july', 'NN'), ('23rd', 'CD'), ('till', 'NN'), ('24th', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('in', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NN')], [('on', 'IN'), ('friday', 'NN'), ('there', 'EX'), ('is', 'VBZ'), ('symposium', 'NN'), ('of', 'IN'), ('the', 'DT'), ('statistics', 'NNS'), ('department', 'NN')]], [[('lets', 'NNS'), ('talk', 'VBP'), ('tomorrow', 'NN'), ('or', 'CC'), ('sometime', 'NN')], [('tomorrow', 'NN'), ('noon', 'NN'), ('works', 'NN'), ('for', 'IN'), ('me', 'PRP'), ('as', 'IN'), ('well', 'RB')], [('see', 'VB'), ('you', 'PRP'), ('all', 'DT'), ('tomorrow', 'NN')], [('warmly', 'RB'), ('welcome', 'JJ'), ('and', 'CC'), ('see', 'VB'), ('you', 'PRP'), ('again', 'RB'), ('next', 'JJ'), ('week', 'NN')], [('lets', 'NNS'), ('meet', 'VBP'), ('up', 'RP'), ('tomorrow', 'NN'), ('morning', 'NN'), ('as', 'IN'), ('usual', 'JJ'), ('at', 'IN'), ('xxx', 'NNP'), ('determine', 'NN'), ('if', 'IN'), ('anything', 'NN'), ('else', 'JJ'), ('hinders', 'NNS'), ('us', 'PRP'), ('from', 'IN'), ('starting', 'VBG'), ('operations', 'NNS'), ('by', 'IN'), ('dec', 'NN'), ('1st', 'CD')], [('lets', 'NNS'), ('catch', 'VBP'), ('up', 'RP'), ('sometime', 'RB'), ('tomorrow', 'NN')], [('do', 'VB'), ('send', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('deck', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('could', 'MD'), ('speak', 'VB'), ('tomorrow', 'NN'), ('say', 'VBP'), ('at', 'IN'), ('yy', 'NN')], [('else', 'RB'), ('i', 'JJ'), ('shall', 'MD'), ('meet', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN'), ('in', 'IN'), ('office', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('chat', 'VB'), ('next', 'JJ'), ('week', 'NN'), ('sometime', 'RB')], [('will', 'MD'), ('call', 'VB'), ('this', 'DT'), ('week', 'NN')], [('just', 'RB'), ('confirming', 'VBG'), ('the', 'DT'), ('call', 'NN'), ('at', 'IN'), ('5pm', 'CD'), ('today', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('catch', 'VB'), ('up', 'RP'), ('today', 'NN'), ('on', 'IN'), ('skype', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('and', 'CC'), ('close', 'VB'), ('these', 'DT'), ('issues', 'NNS')], [('do', 'VBP'), ('you', 'PRP'), ('think', 'VB'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('today', 'NN')], [('would', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('free', 'JJ'), ('tomorrow', 'NN'), ('at', 'IN'), ('730', 'CD'), ('on', 'IN'), ('xxxxx', 'NN')], [('11pm', 'CD'), ('works', 'NNS')], [('i', 'NN'), ('regret', 'VBP'), ('to', 'TO'), ('say', 'VB'), ('that', 'IN'), ('the', 'DT'), ('meet', 'NN'), ('up', 'RP'), ('scheduled', 'VBN'), ('tomorrow', 'NN'), ('has', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('rescheduled', 'VBN')], [('thanks', 'NNS'), ('see', 'VBP'), ('you', 'PRP'), ('tomorrow', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('reschedule', 'VB'), ('xxxxxx', 'NNP'), ('for', 'IN'), ('an', 'DT'), ('earlier', 'JJR'), ('time', 'NN'), ('anytime', 'NN'), ('during', 'IN'), ('the', 'DT'), ('week', 'NN'), ('is', 'VBZ'), ('fine', 'JJ')], [('we', 'PRP'), ('will', 'MD'), ('catch', 'VB'), ('up', 'RP'), ('tomorrow', 'NN')], [('confirmed', 'VBN'), ('for', 'IN'), ('35pm', 'CD'), ('tuesday', 'NN')], [('call', 'VB'), ('me', 'PRP'), ('tomorrow', 'NN'), ('yyyyyyyyyyyyy', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('to', 'TO'), ('do', 'VB'), ('tuesday', 'RB'), ('or', 'CC'), ('wednesday', 'JJ'), ('i', 'NNS'), ('am', 'VBP'), ('flying', 'VBG'), ('out', 'IN'), ('of', 'IN'), ('town', 'NN'), ('for', 'IN'), ('the', 'DT'), ('xxxxxxxxxxxx', 'NN'), ('holiday', 'NN'), ('thursday', 'NN')], [('how', 'WRB'), ('about', 'RB'), ('meeting', 'NN'), ('at', 'IN'), ('single', 'JJ'), ('barrel', 'NN'), ('tomorrow', 'NN'), ('evening', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('sms', 'VB'), ('tomorrow', 'NN'), ('after', 'IN'), ('y', 'NN'), ('and', 'CC'), ('discuss', 'NN'), ('in', 'IN'), ('real', 'JJ'), ('time', 'NN'), ('when', 'WRB'), ('to', 'TO'), ('meet', 'VB')], [('xxxxxxx', 'NN'), ('is', 'VBZ'), ('set', 'VBN'), ('for', 'IN'), ('thursday', 'NN'), ('at', 'IN'), ('5', 'CD'), ('pm', 'NN'), ('at', 'IN'), ('xx', 'JJ'), ('brewery', 'NN'), ('outside', 'IN'), ('apple', 'NN'), ('campus', 'NN')], [('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN'), ('to', 'TO'), ('sync', 'VB'), ('up', 'RP')], [('lets', 'NNS'), ('catch', 'VBP'), ('up', 'RB'), ('today', 'NN'), ('to', 'TO'), ('discus', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('up', 'RP'), ('sometime', 'RB'), ('today', 'NN')], [('ok', 'JJ'), ('lets', 'NNS'), ('talk', 'VBP'), ('about', 'IN'), ('it', 'PRP'), ('tomorrow', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('tomorrow', 'NN'), ('around', 'IN'), ('1130am', 'CD')], [('does', 'VBZ'), ('next', 'JJ'), ('wed', 'VBD'), ('27th', 'CD'), ('xxxx', 'JJ'), ('2', 'CD'), ('5', 'CD'), ('pm', 'NN'), ('work', 'NN')], [('let', 'VB'), ('us', 'PRP'), ('do', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('thursday', 'NN')], [('ankit', 'JJ'), ('lets', 'NNS'), ('work', 'VBP'), ('on', 'IN'), ('it', 'PRP'), ('tomorrow', 'NN')], [('would', 'MD'), ('it', 'PRP'), ('be', 'VB'), ('possible', 'JJ'), ('to', 'TO'), ('chat', 'VB'), ('with', 'IN'), ('the', 'DT'), ('founder', 'NN'), ('sometime', 'RB'), ('next', 'JJ'), ('week', 'NN'), ('about', 'IN'), ('your', 'PRP$'), ('business', 'NN')], [('will', 'MD'), ('it', 'PRP'), ('be', 'VB'), ('possible', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('you', 'PRP'), ('sometime', 'RB'), ('this', 'DT'), ('week', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('the', 'DT'), ('same', 'JJ')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('availability', 'NN'), ('for', 'IN'), ('skype', 'NN'), ('call', 'NN'), ('tomorrow', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('block', 'VB'), ('the', 'DT'), ('calender', 'NN'), ('accordingly', 'RB')], [('27th', 'JJ'), ('november', 'NN'), ('seems', 'VBZ'), ('fine', 'JJ')], [('we', 'PRP'), ('can', 'MD'), ('catch', 'VB'), ('up', 'RP'), ('over', 'IN'), ('skype', 'JJ'), ('tomorrow', 'NN'), ('instead', 'RB')], [('would', 'MD'), ('you', 'PRP'), ('like', 'IN'), ('to', 'TO'), ('touch', 'VB'), ('base', 'NN'), ('on', 'IN'), ('things', 'NNS'), ('sometime', 'RB'), ('this', 'DT'), ('weekend', 'NN')], [('if', 'IN'), ('you', 'PRP'), ('want', 'VBP'), ('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('brief', 'JJ'), ('discussion', 'NN'), ('wednesday', 'NN'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('time', 'NN')], [('xxxxxx', 'JJ'), ('lets', 'NNS'), ('discuss', 'VBP'), ('tomorrow', 'NN')], [('confirmed', 'VBN'), ('for', 'IN'), ('tomorrow', 'NN'), ('wed', 'VBD'), ('yyyyy', 'NNS'), ('at', 'IN'), ('noon', 'NN'), ('at', 'IN'), ('this', 'DT'), ('office', 'NN')], [('confirmed', 'VBN'), ('for', 'IN'), ('monday', 'NN'), ('yyyyy', 'JJ'), ('lets', 'NNS'), ('make', 'VBP'), ('it', 'PRP'), ('315pm', 'CD')], [('xxxxx', 'NN'), ('and', 'CC'), ('xxxxxxxx', 'NN'), ('will', 'MD'), ('see', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN'), ('wednesday', 'NN'), ('at', 'IN'), ('1030am', 'CD'), ('here', 'RB')], [('sure', 'JJ'), ('but', 'CC'), ('are', 'VBP'), ('we', 'PRP'), ('talking', 'VBG'), ('about', 'IN'), ('this', 'DT'), ('week', 'NN'), ('or', 'CC'), ('next', 'JJ'), ('week', 'NN')], [('could', 'MD'), ('i', 'VB'), ('call', 'VB'), ('you', 'PRP'), ('sometime', 'RB'), ('next', 'JJ'), ('week', 'NN'), ('and', 'CC'), ('i', 'NN'), ('am', 'VBP'), ('traveling', 'VBG'), ('till', 'NN'), ('friday', 'JJ'), ('night', 'NN')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('up', 'RP'), ('in', 'IN'), ('that', 'DT'), ('area', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('could', 'MD'), ('meet', 'VB'), ('around', 'IN'), ('10am', 'CD'), ('if', 'IN'), ('that', 'DT'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP')], [('hi', 'NN'), ('xxxxxxxx', 'NN'), ('does', 'VBZ'), ('thursday', 'JJ'), ('nov', 'VB'), ('21', 'CD'), ('or', 'CC'), ('friday', 'JJ'), ('nov', 'JJ'), ('22', 'CD'), ('at', 'IN'), ('1000am', 'CD'), ('or', 'CC'), ('1100', 'CD'), ('am', 'VBP'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('thursday', 'NN'), ('works', 'VBZ'), ('for', 'IN'), ('me', 'PRP')], [('friday', 'RB'), ('11', 'CD'), ('am', 'VBP'), ('works', 'NNS'), ('well', 'RB'), ('for', 'IN'), ('us', 'PRP')], [('we', 'PRP'), ('are', 'VBP'), ('available', 'JJ'), ('today', 'NN'), ('and', 'CC'), ('tomorrow', 'NN'), ('as', 'RB'), ('well', 'RB')], [('lets', 'NNS'), ('try', 'VBP'), ('to', 'TO'), ('reschedule', 'VB'), ('it', 'PRP'), ('for', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('maybe', 'RB'), ('we', 'PRP'), ('could', 'MD'), ('connect', 'VB'), ('sometime', 'RB'), ('in', 'IN'), ('december', 'NN'), ('as', 'IN'), ('per', 'IN'), ('your', 'PRP$'), ('convenience', 'NN')], [('xxxxx', 'NN'), ('we', 'PRP'), ('meet', 'VBP'), ('at', 'IN'), ('5pm', 'CD'), ('tomorrow', 'NN'), ('at', 'IN'), ('the', 'DT'), ('xxxx', 'NNP'), ('office', 'NN'), ('opposite', 'RB'), ('xxxxxxx', 'CD'), ('xxxxxxxxxx', 'NNS')], [('tomorrow', 'NN'), ('5pm', 'CD'), ('should', 'MD'), ('be', 'VB'), ('fine', 'JJ')], [('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('up', 'RP'), ('tomorrow', 'NN'), ('evening', 'VBG'), ('for', 'IN'), ('dinner', 'NN')], [('meeting', 'VBG'), ('with', 'IN'), ('xxxxxx', 'NNP'), ('3pm', 'CD'), ('tomorrow', 'NN'), ('when', 'WRB'), ('thu', 'NN'), ('november', 'RB'), ('21', 'CD'), ('3pm', 'CD'), ('4pm', 'CD'), ('xxx0530', 'NN'), ('where', 'WRB'), ('at', 'IN'), ('xxxxx', 'NNP'), ('xwho', 'NNP'), ('default', 'NN'), ('xxxxxx', 'NNP'), ('xxxxxxxxx', 'NN')], [('ill', 'VB'), ('call', 'NN'), ('you', 'PRP'), ('again', 'RB'), ('this', 'DT'), ('week', 'NN')], [('hi', 'NN'), ('xxxxx', 'VBD'), ('27th', 'CD'), ('11am', 'CD'), ('is', 'VBZ'), ('fine', 'JJ'), ('with', 'IN'), ('me', 'PRP')], [('i', 'NN'), ('will', 'MD'), ('definitely', 'RB'), ('talk', 'VB'), ('to', 'TO'), ('you', 'PRP'), ('both', 'DT'), ('in', 'IN'), ('the', 'DT'), ('weekend', 'NN')], [('well', 'RB'), ('meet', 'RB'), ('tomorrow', 'NN'), ('thursday', 'JJ'), ('november', 'RB'), ('21', 'CD'), ('from', 'IN'), ('12', 'CD'), ('to', 'TO'), ('1', 'CD'), ('pm', 'NN'), ('in', 'IN'), ('mc409', 'NN'), ('which', 'WDT'), ('is', 'VBZ'), ('located', 'VBN'), ('in', 'IN'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxxxxx', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('chat', 'VB'), ('monday', 'NN')], [('will', 'MD'), ('connect', 'VB'), ('today', 'NN'), ('sridar', 'NN')], [('id', 'NN'), ('love', 'NN'), ('to', 'TO'), ('chat', 'VB'), ('with', 'IN'), ('you', 'PRP'), ('sometime', 'VBP'), ('to', 'TO'), ('understand', 'VB'), ('how', 'WRB'), ('you', 'PRP'), ('connect', 'VBP'), ('and', 'CC'), ('engage', 'VBP'), ('with', 'IN'), ('your', 'PRP$'), ('users', 'NNS'), ('today', 'NN'), ('and', 'CC'), ('what', 'WP'), ('you', 'PRP'), ('would', 'MD'), ('want', 'VB'), ('to', 'TO'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('do', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('segment', 'NN'), ('users', 'NNS'), ('and', 'CC'), ('talk', 'VB'), ('to', 'TO'), ('them', 'PRP')], [('would', 'MD'), ('it', 'PRP'), ('be', 'VB'), ('possible', 'JJ'), ('for', 'IN'), ('everyone', 'NN'), ('to', 'TO'), ('do', 'VB'), ('december', 'VB'), ('5th', 'CD'), ('at', 'IN'), ('5', 'CD'), ('pm', 'JJ'), ('instead', 'RB'), ('of', 'IN'), ('december', 'JJ'), ('4th', 'CD'), ('at', 'IN'), ('5', 'CD'), ('pm', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('this', 'DT'), ('weekend', 'NN')], [('will', 'MD'), ('talk', 'VB'), ('to', 'TO'), ('you', 'PRP'), ('today', 'NN')], [('how', 'WRB'), ('about', 'RB'), ('connecting', 'VBG'), ('on', 'IN'), ('phone', 'NN'), ('today', 'NN'), ('at', 'IN'), ('6pm', 'CD')], [('i', 'NN'), ('would', 'MD'), ('request', 'VB'), ('all', 'DT'), ('of', 'IN'), ('to', 'TO'), ('assemble', 'VB'), ('in', 'IN'), ('the', 'DT'), ('garage', 'NN'), ('by', 'IN'), ('1130', 'CD'), ('am', 'VBP'), ('on', 'IN'), ('saturday', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('saturday', 'JJ'), ('xxxxxxx', 'NNP'), ('xxxx', 'NN')], [('i', 'NNS'), ('would', 'MD'), ('want', 'VB'), ('all', 'DT'), ('you', 'PRP'), ('guys', 'VBP'), ('to', 'TO'), ('be', 'VB'), ('part', 'NN'), ('of', 'IN'), ('the', 'DT'), ('call', 'NN'), ('today', 'NN')], [('yes', 'NNS'), ('lets', 'VBZ'), ('meet', 'NN'), ('at', 'IN'), ('2pm', 'CD')], [('next', 'JJ'), ('week', 'NN'), ('wed', 'VBD'), ('about', 'IN'), ('23pm', 'CD'), ('is', 'VBZ'), ('ok', 'VBN'), ('for', 'IN'), ('me', 'PRP')], [('4pm', 'CD')], [('i', 'NNS'), ('have', 'VBP'), ('postponed', 'VBN'), ('resource', 'NN'), ('meeting', 'NN'), ('to', 'TO'), ('tomorrow', 'NN'), ('22nd', 'CD'), ('3', 'CD'), ('4', 'CD'), ('pm', 'JJ'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('this', 'DT'), ('isok', 'NN'), ('with', 'IN'), ('everyone', 'NN')], [('as', 'IN'), ('discussed', 'VBN'), ('im', 'NN'), ('rescheduling', 'VBG'), ('the', 'DT'), ('call', 'NN'), ('to', 'TO'), ('tomorrow', 'NN'), ('4', 'CD'), ('pm', 'NN')], [('sure', 'JJ'), ('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('at', 'IN'), ('6pm', 'CD'), ('tomorrow', 'NN')], [('sure', 'JJ'), ('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN'), ('at', 'IN'), ('5pm', 'CD')], [('can', 'MD'), ('i', 'VB'), ('talk', 'NN'), ('to', 'TO'), ('you', 'PRP'), ('about', 'IN'), ('these', 'DT'), ('bills', 'NNS'), ('tomorrow', 'NN')], [('can', 'MD'), ('i', 'VB'), ('come', 'VBN'), ('in', 'IN'), ('tomorrow', 'NN'), ('or', 'CC'), ('sunday', 'NN'), ('in', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('half', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('free', 'JJ'), ('tomorrow', 'NN'), ('afternoon', 'NN')], [('xxxxxx', 'NN'), ('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('today', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('the', 'DT'), ('same', 'JJ')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('today', 'NN')], [('xxx', 'NN'), ('call', 'VB'), ('me', 'PRP'), ('tomorrow', 'NN'), ('to', 'TO'), ('plan', 'VB'), ('for', 'IN'), ('the', 'DT'), ('above', 'NN')], [('call', 'VB'), ('me', 'PRP'), ('at', 'IN'), ('1pm', 'CD')], [('we', 'PRP'), ('will', 'MD'), ('meet', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('monday', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('about', 'IN'), ('the', 'DT'), ('app', 'NN')], [('xxxx', 'JJ'), ('xxxx', 'NN'), ('is', 'VBZ'), ('best', 'RBS'), ('only', 'RB'), ('3pm', 'CD'), ('works', 'NNS'), ('for', 'IN'), ('me', 'PRP')], [('xxxx', 'NNS'), ('im', 'VBP'), ('free', 'JJ'), ('noon4pm', 'NN'), ('es', 'NN')], [('i', 'NN'), ('can', 'MD'), ('meet', 'VB'), ('you', 'PRP'), ('there', 'RB'), ('from', 'IN'), ('2pm', 'CD')], [('let', 'VB'), ('get', 'VB'), ('together', 'RB'), ('this', 'DT'), ('sunday', 'NN')], [('if', 'IN'), ('not', 'RB'), ('perhaps', 'RB'), ('5pm', 'CD'), ('will', 'MD'), ('work', 'VB'), ('for', 'IN'), ('you', 'PRP'), ('all', 'DT')], [('i', 'NN'), ('prefer', 'VBP'), ('somewhat', 'RB'), ('early', 'JJ'), ('in', 'IN'), ('the', 'DT'), ('day', 'NN'), ('say', 'VBP'), ('9am', 'CD'), ('early', 'JJ'), ('lunch', 'NN'), ('11am', 'CD'), ('i', 'NN'), ('need', 'VBP'), ('to', 'TO'), ('be', 'VB'), ('back', 'RB'), ('at', 'IN'), ('work', 'NN'), ('at', 'IN'), ('1230', 'CD'), ('or', 'CC'), ('after', 'IN'), ('530pm', 'CD')], [('can', 'MD'), ('i', 'VB'), ('call', 'VB'), ('him', 'PRP'), ('sunday', 'JJ'), ('between', 'IN'), ('yy', 'NN'), ('xxxx', '$'), ('1', 'CD'), ('pm', 'NN')], [('lets', 'NNS'), ('talk', 'VBP'), ('over', 'IN'), ('phone', 'NN'), ('when', 'WRB'), ('you', 'PRP'), ('have', 'VBP'), ('time', 'NN'), ('im', 'VBN'), ('available', 'JJ'), ('most', 'JJS'), ('of', 'IN'), ('the', 'DT'), ('day', 'NN'), ('tod', 'VB')], [('how', 'WRB'), ('about', 'RB'), ('monday', 'NN'), ('or', 'CC'), ('tuesday', 'NN')], [('oh', 'NN'), ('in', 'IN'), ('that', 'DT'), ('case', 'NN'), ('well', 'RB'), ('meet', 'RB'), ('today', 'NN')], [('if', 'IN'), ('you', 'PRP'), ('like', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('the', 'DT'), ('call', 'NN'), ('anytime', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('that', 'WDT'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP')], [('call', 'VB'), ('me', 'PRP'), ('on', 'IN'), ('monday', 'NN'), ('xxx', 'NNP'), ('free', 'JJ')], [('i', 'NN'), ('am', 'VBP'), ('around', 'RB'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('talk', 'VB'), ('tomorrow', 'NN')], [('wednesday', 'NN'), ('is', 'VBZ'), ('fine', 'JJ'), ('xxx', 'NN')], [('i', 'RB'), ('wanted', 'VBD'), ('to', 'TO'), ('meet', 'VB'), ('tomorrow', 'NN'), ('to', 'TO'), ('start', 'VB'), ('on', 'IN'), ('the', 'DT'), ('process', 'NN'), ('of', 'IN'), ('defining', 'VBG'), ('the', 'DT'), ('mvp', 'NN')], [('xxx', 'VB'), ('our', 'PRP$'), ('first', 'JJ'), ('xxxxxxxxxxxxxx', 'JJ'), ('conference', 'NN'), ('will', 'MD'), ('be', 'VB'), ('held', 'VBN'), ('this', 'DT'), ('coming', 'VBG'), ('friday', 'JJ'), ('november', '$'), ('29', 'CD')], [('can', 'MD'), ('we', 'PRP'), ('go', 'VB'), ('over', 'IN'), ('the', 'DT'), ('plan', 'NN'), ('for', 'IN'), ('the', 'DT'), ('remaining', 'VBG'), ('diligence', 'NN'), ('tomorrow', 'NN'), ('or', 'CC'), ('tuesday', 'NN')], [('hi', 'NN'), ('xxxx', 'VBZ'), ('5pm', 'CD'), ('on', 'IN'), ('monday', 'NN'), ('or', 'CC'), ('tuesday', 'NN'), ('or', 'CC'), ('11am', 'CD'), ('tuesday', 'NN'), ('would', 'MD'), ('work', 'VB')], [('please', 'VB'), ('confirm', 'NN'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('make', 'VB'), ('the', 'DT'), ('call', 'NN'), ('with', 'IN'), ('sakaisan', 'NN'), ('between', 'IN'), ('1pm', 'CD'), ('and', 'CC'), ('3', 'CD'), ('pm', 'NN'), ('jst', 'NN'), ('today', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('open', 'JJ'), ('on', 'IN'), ('monday', 'JJ'), ('1030', 'CD'), ('to', 'TO'), ('1130', 'CD'), ('or', 'CC'), ('after', 'IN'), ('5pm', 'CD'), ('anytime', 'NN')], [('xxxx', 'JJ'), ('tue', 'NN'), ('am', 'VBP')], [('tomorrow', 'NN'), ('morning', 'NN'), ('it', 'PRP'), ('is', 'VBZ'), ('then', 'RB')], [('could', 'MD'), ('we', 'PRP'), ('have', 'VBP'), ('the', 'DT'), ('meeting', 'NN'), ('on', 'IN'), ('wednesday', 'NN'), ('27th', 'CD'), ('nov', 'NN'), ('before', 'IN'), ('5pm', 'CD'), ('or', 'CC'), ('the', 'DT'), ('next', 'JJ'), ('monday', 'NN'), ('2nd', 'CD'), ('dec', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('next', 'JJ'), ('week', 'NN')], [('would', 'MD'), ('3pm', 'CD'), ('wednesday', 'JJ'), ('work', 'NN'), ('for', 'IN'), ('our', 'PRP$'), ('meeting', 'NN')], [('lets', 'NNS'), ('make', 'VBP'), ('it', 'PRP'), ('x', 'VBZ'), ('4pm', 'CD'), ('done', 'VBN')], [('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('post', 'JJ'), ('dec', 'NNS'), ('1st', 'CD'), ('for', 'IN'), ('sure', 'JJ')], [('see', 'VB'), ('you', 'PRP'), ('this', 'DT'), ('friday', 'JJ'), ('xxxx', 'NNP'), ('xxxxxx', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('speak', 'VB'), ('wed', 'VBD'), ('morning', 'NN'), ('at', 'IN'), ('9am', 'CD')], [('could', 'MD'), ('we', 'PRP'), ('reconnect', 'VB'), ('next', 'JJ'), ('week', 'NN'), ('and', 'CC'), ('plan', 'NN'), ('to', 'TO'), ('meet', 'VB')], [('then', 'RB'), ('we', 'PRP'), ('will', 'MD'), ('meet', 'VB'), ('on', 'IN'), ('thursday', 'NN')], [('let', 'VB'), ('us', 'PRP'), ('talk', 'VB'), ('later', 'RBR'), ('today', 'NN'), ('or', 'CC'), ('tomorrow', 'NN'), ('as', 'IN'), ('suggested', 'VBN'), ('i', 'NN'), ('really', 'RB'), ('look', 'VB'), ('forward', 'RB'), ('to', 'TO'), ('closing', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('specifics', 'NNS')], [('xxx', 'JJ'), ('rescheduling', 'VBG'), ('your', 'PRP$'), ('1pm', 'CD'), ('today', 'NN'), ('for', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('anytime', 'RB'), ('after', 'IN'), ('2pm', 'CD'), ('is', 'VBZ'), ('currently', 'RB'), ('open', 'JJ'), ('that', 'DT'), ('day', 'NN')], [('could', 'MD'), ('we', 'PRP'), ('confirm', 'VB'), ('yyyy', 'RB'), ('at', 'IN'), ('3pm', 'CD'), ('over', 'IN'), ('coffee', 'NN'), ('in', 'IN'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxxxxxxxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('somewhere', 'RB'), ('near', 'IN'), ('yyy', 'NN')], [('confirmed', 'VBN'), ('for', 'IN'), ('monday', 'NN'), ('yyyy', 'NN'), ('at', 'IN'), ('5pm', 'CD'), ('at', 'IN'), ('xxxxs', 'NNP'), ('xxxxxx', 'NN')], [('or', 'CC'), ('tomorrow', 'NN'), ('morning', 'NN'), ('at', 'IN'), ('830am', 'CD')], [('xxxxxxx', 'NN'), ('confirmed', 'VBD'), ('for', 'IN'), ('monday', 'NN'), ('yyyy', 'NN'), ('at', 'IN'), ('230pm', 'CD'), ('pt', 'NN'), ('530pm', 'CD'), ('xx', 'NN')], [('lets', 'NNS'), ('fix', 'VBP'), ('4', 'CD'), ('pm', 'NN'), ('on', 'IN'), ('tue', 'NN'), ('yyyy', 'NN'), ('at', 'IN'), ('palo', 'JJ'), ('alto', 'JJ'), ('office', 'NN'), ('for', 'IN'), ('this', 'DT')], [('confirmed', 'VBN'), ('for', 'IN'), ('tuesday', 'NN'), ('yyyyy', 'NN'), ('at', 'IN'), ('3pm', 'CD'), ('here', 'RB')], [('can', 'MD'), ('i', 'VB'), ('call', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('friday', 'NN'), ('at', 'IN'), ('0930am', 'CD')], [('10am', 'CD'), ('is', 'VBZ'), ('fine', 'JJ')], [('lets', 'NNS'), ('talk', 'VBP'), ('about', 'IN'), ('it', 'PRP'), ('today', 'NN')], [('looking', 'VBG'), ('forward', 'RB'), ('for', 'IN'), ('your', 'PRP$'), ('call', 'NN'), ('by', 'IN'), ('3pm', 'CD'), ('today', 'NN')], [('does', 'VBZ'), ('tuesday', 'JJ'), ('yyy', 'VB'), ('pm', 'JJ'), ('xxxxxxx', 'NNP'), ('work', 'NN')], [('am', 'VBP'), ('off', 'RB'), ('to', 'TO'), ('chennai', 'VB'), ('over', 'IN'), ('the', 'DT'), ('weekend', 'NN'), ('we', 'PRP'), ('could', 'MD'), ('also', 'RB'), ('do', 'VB'), ('next', 'RB'), ('week', 'NN'), ('if', 'IN'), ('this', 'DT'), ('week', 'NN'), ('is', 'VBZ'), ('difficult', 'JJ'), ('for', 'IN'), ('you', 'PRP')], [('do', 'VB'), ('tell', 'VB'), ('me', 'PRP'), ('when', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('catch', 'VB'), ('up', 'RP'), ('am', 'VBP'), ('free', 'JJ'), ('this', 'DT'), ('tuesday', 'NN'), ('today', 'NN'), ('and', 'CC'), ('thursday', 'NN')], [('how', 'WRB'), ('about', 'RB'), ('45pm', 'CD'), ('this', 'DT'), ('friday', 'NN')], [('or', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('at', 'IN'), ('the', 'DT'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxxxxx', 'NNP'), ('demo', 'NN'), ('day', 'NN'), ('this', 'DT'), ('friday', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('time', 'NN')], [('would', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('be', 'VB'), ('to', 'TO'), ('chat', 'VB'), ('sometime', 'RB'), ('this', 'DT'), ('week', 'NN')], [('please', 'VB'), ('meet', 'VB'), ('me', 'PRP'), ('individually', 'RB'), ('tomorrow', 'NN'), ('so', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('review', 'VB'), ('all', 'DT'), ('your', 'PRP$'), ('timesheets', 'NNS')], [('may', 'MD'), ('i', 'VB'), ('please', 'VB'), ('request', 'JJS'), ('yyyyy', 'NN'), ('minutes', 'NNS'), ('of', 'IN'), ('your', 'PRP$'), ('time', 'NN'), ('this', 'DT'), ('week', 'NN'), ('or', 'CC'), ('next', 'JJ')], [('will', 'MD'), ('call', 'VB'), ('by', 'IN'), ('tomorrow', 'NN'), ('again', 'RB')], [('let', 'VB'), ('us', 'PRP'), ('try', 'VB'), ('and', 'CC'), ('catchup', 'VB'), ('today', 'NN'), ('at', 'IN'), ('3pm', 'CD')], [('i', 'NN'), ('will', 'MD'), ('return', 'VB'), ('to', 'TO'), ('xxxxxxxxx', 'VB'), ('for', 'IN'), ('10', 'CD'), ('days', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('second', 'JJ'), ('half', 'NN'), ('of', 'IN'), ('december', 'NN'), ('when', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('touch', 'VB'), ('bases', 'NNS'), ('again', 'RB'), ('and', 'CC'), ('discuss', 'VB'), ('further', 'RB'), ('if', 'IN'), ('need', 'VBN'), ('be', 'VB')], [('hi', 'NN'), ('xxxxxx', 'NNS'), ('are', 'VBP'), ('rahul', 'JJ'), ('andor', 'IN'), ('xxxxx', 'NNP'), ('available', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('on', 'IN'), ('friday', 'JJ'), ('morning', 'NN'), ('at', 'IN'), ('9am', 'CD')], [('5pm', 'CD'), ('on', 'IN'), ('monday', 'NN'), ('is', 'VBZ'), ('fine', 'JJ'), ('for', 'IN'), ('both', 'DT'), ('of', 'IN'), ('us', 'PRP')], [('xxx', 'JJ'), ('december', 'NN'), ('1st', 'CD'), ('week', 'NN'), ('main', 'JJ'), ('free', 'JJ'), ('honge', 'NN')], [('thursday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('245pm', 'CD'), ('will', 'MD'), ('be', 'VB'), ('perfect', 'JJ')], [('lets', 'NNS'), ('talk', 'VBP'), ('today', 'NN'), ('and', 'CC'), ('finalize', 'VB')], [('lets', 'NNS'), ('talk', 'VBP'), ('in', 'IN'), ('person', 'NN'), ('today', 'NN')], [('how', 'WRB'), ('about', 'RB'), ('thursday', 'NN')], [('xxxx', 'JJ'), ('lets', 'NNS'), ('catchup', 'VBP'), ('friday', 'NN'), ('at', 'IN'), ('the', 'DT'), ('accelerato', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('discuss', 'VB'), ('this', 'DT'), ('during', 'IN'), ('our', 'PRP$'), ('call', 'NN'), ('today', 'NN')], [('i', 'NN'), ('can', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('11am', 'CD'), ('tomorrow', 'NN'), ('or', 'CC'), ('friday', 'NN')], [('3pm', 'CD')], [('we', 'PRP'), ('are', 'VBP'), ('available', 'JJ'), ('anytime', 'NN'), ('between', 'IN'), ('930', 'CD'), ('am', 'VBP'), ('to', 'TO'), ('1230', 'CD'), ('pm', 'NN'), ('ist', 'NN'), ('tomorrow', 'NN')], [('xxxxxxx', 'JJ'), ('xxx', 'NN'), ('i', 'NN'), ('have', 'VBP'), ('moved', 'VBN'), ('the', 'DT'), ('meeting', 'NN'), ('to', 'TO'), ('tomorrow', 'NN'), ('same', 'JJ'), ('time', 'NN')], [('but', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('call', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('friday', 'NN'), ('from', 'IN'), ('the', 'DT'), ('land', 'NN'), ('line', 'NN'), ('since', 'IN'), ('the', 'DT'), ('signal', 'NN'), ('here', 'RB'), ('is', 'VBZ'), ('weak', 'JJ')], [('tomorrow', 'NN'), ('morning', 'NN'), ('yy', 'NN'), ('am', 'VBP')], [('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('later', 'RBR'), ('today', 'NN'), ('or', 'CC'), ('tomorrow', 'NN')], [('lets', 'NNS'), ('meet', 'VBP'), ('around', 'IN'), ('6pm', 'CD'), ('today', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('this', 'DT')], [('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('the', 'DT'), ('call', 'NN'), ('tomorrow', 'NN'), ('at', 'IN'), ('1200', 'CD'), ('noon', 'NN')], [('tomorrow', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('open', 'JJ'), ('all', 'DT'), ('day', 'NN'), ('except', 'IN'), ('for', 'IN'), ('730930', 'CD'), ('am', 'VBP'), ('est', 'JJS')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('in', 'IN'), ('my', 'PRP$'), ('office', 'NN'), ('thursday', 'NN'), ('at', 'IN'), ('y', 'NN')], [('around', 'IN'), ('8pm', 'CD')], [('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('sometime', 'RB'), ('between', 'IN'), ('yyyyy', 'NN'), ('am', 'VBP'), ('and', 'CC'), ('yyyyy', 'VBP'), ('am', 'VBP'), ('est', 'JJS'), ('today', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('talk', 'VB'), ('anytime', 'RB'), ('tomorrow', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('in', 'IN'), ('the', 'DT'), ('xxxxx', 'NNP'), ('xxx', 'NNP'), ('or', 'CC'), ('peninsula', 'VB'), ('the', 'DT'), ('week', 'NN'), ('of', 'IN'), ('december', '$'), ('9', 'CD'), ('or', 'CC'), ('yy', 'VB')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('coming', 'VBG'), ('to', 'TO'), ('bangalore', 'VB'), ('to', 'TO'), ('meet', 'VB'), ('all', 'DT'), ('of', 'IN'), ('you', 'PRP'), ('on', 'IN'), ('the', 'DT'), ('17th', 'CD'), ('of', 'IN'), ('december', 'NN')], [('xxxxx', 'RB'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('invite', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('dinner', 'VB'), ('at', 'IN'), ('his', 'PRP$'), ('residence', 'NN'), ('30', 'CD'), ('november', 'NN'), ('2013', 'CD')], [('i', 'NN'), ('will', 'MD'), ('talk', 'VB'), ('to', 'TO'), ('you', 'PRP'), ('sometime', 'RB'), ('this', 'DT'), ('week', 'NN'), ('regarding', 'VBG'), ('this', 'DT')], [('could', 'MD'), ('we', 'PRP'), ('chat', 'VB'), ('next', 'JJ'), ('week', 'NN'), ('tuesday', 'JJ'), ('dec', 'VBZ'), ('3', 'CD'), ('at', 'IN'), ('1130am', 'CD')], [('lets', 'NNS'), ('connect', 'VBP'), ('on', 'IN'), ('tuesday', 'NN')], [('monday', 'NN'), ('morning', 'NN'), ('then', 'RB')], [('xxxx', 'NN'), ('monday', 'NN'), ('or', 'CC'), ('tuesday', 'NN'), ('sometime', 'RB'), ('in', 'IN'), ('the', 'DT'), ('morning', 'NN'), ('work', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('catchup', 'VB'), ('tomorrow', 'NN')], [('an', 'DT'), ('information', 'NN'), ('session', 'NN'), ('will', 'MD'), ('be', 'VB'), ('held', 'VBN'), ('tomorrow', 'NN'), ('at', 'IN'), ('200pm', 'CD'), ('just', 'RB'), ('before', 'IN'), ('the', 'DT'), ('xxxxxx', 'NN')], [('december', 'VB'), ('1st', 'CD'), ('xxx', 'NNP'), ('xxxxxxx', 'NNP'), ('yyy', 'NN'), ('pm', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('all', 'DT'), ('tomorrow', 'NN'), ('morning', 'NN'), ('at', 'IN'), ('y', 'NN'), ('am', 'VBP'), ('for', 'IN'), ('the', 'DT'), ('final', 'JJ'), ('dry', 'NN'), ('run', 'NN')], [('the', 'DT'), ('exceptions', 'NNS'), ('should', 'MD'), ('bee', 'VB'), ('wrapper', 'JJR'), ('yyyyyyyy', 'NN'), ('60232', 'CD'), ('pm', 'NN'), ('niketh', 'JJ'), ('thats', 'NNS'), ('weird', 'VBP'), ('yyyyyyyy', 'RB'), ('60310', 'CD'), ('pm', 'NN'), ('niketh', 'NNS'), ('xxxxxxxxx', 'WRB'), ('should', 'MD'), ('we', 'PRP'), ('postpone', 'VB'), ('the', 'DT'), ('call', 'NN'), ('to', 'TO'), ('tomorrow', 'NN'), ('after', 'IN'), ('checking', 'VBG'), ('the', 'DT'), ('xxxx', 'NN'), ('out', 'IN'), ('yyyyyyyy', '$'), ('60317', 'CD'), ('pm', 'NN'), ('niketh', 'NNS')], [('xxx', 'RB'), ('be', 'VB'), ('thr', 'VBN'), ('by', 'IN'), ('9am', 'CD'), ('in', 'IN'), ('accelerator', 'NN'), ('tomorrow', 'NN')], [('lets', 'NNS'), ('talk', 'VBP'), ('tomorrow', 'NN'), ('on', 'IN'), ('this', 'DT')], [('if', 'IN'), ('you', 'PRP'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('do', 'VB'), ('another', 'DT'), ('call', 'VB'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('too', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('something', 'NN'), ('post', 'VB'), ('our', 'PRP$'), ('demo', 'NN'), ('day', 'NN'), ('tomorrow', 'NN')], [('hi', 'NN'), ('xxxxxxxx', 'NN'), ('we', 'PRP'), ('could', 'MD'), ('catch', 'VB'), ('up', 'RP'), ('over', 'IN'), ('phone', 'NN'), ('tomorrowi', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN')], [('anyways', 'NNS'), ('lets', 'VBZ'), ('talk', 'NN'), ('tomorrow', 'NN')], [('lets', 'NNS'), ('speak', 'VBP'), ('at', 'IN'), ('8am', 'CD'), ('again', 'RB'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('see', 'VB'), ('where', 'WRB'), ('we', 'PRP'), ('are', 'VBP'), ('with', 'IN'), ('everything', 'NN')], [('dr', 'NN'), ('xxxxxxxxx', 'NN'), ('i', 'NN'), ('would', 'MD'), ('prefer', 'VB'), ('dec', 'VB'), ('11th', 'CD'), ('4pm', 'CD')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('out', 'RB'), ('in', 'IN'), ('the', 'DT'), ('morning', 'NN'), ('and', 'CC'), ('afternoon', 'NN'), ('but', 'CC'), ('i', 'NN'), ('should', 'MD'), ('be', 'VB'), ('free', 'JJ'), ('to', 'TO'), ('talk', 'VB'), ('after', 'IN'), ('4pm', 'CD'), ('ist', 'NN')], [('let', 'VB'), ('it', 'PRP'), ('be', 'VB'), ('sunday', 'JJ'), ('then', 'RB')], [('let', 'VB'), ('us', 'PRP'), ('meet', 'VB'), ('tomorrow', 'NN'), ('at', 'IN'), ('2', 'CD'), ('pm', 'NN')], [('sunday', 'NN'), ('works', 'VBZ'), ('better', 'RBR')], [('let', 'VB'), ('us', 'PRP'), ('catchup', 'VB'), ('on', 'IN'), ('xxxxx', 'NN'), ('tomorrow', 'NN')], [('allhands', 'NNS'), ('tomorrow', 'NN')], [('sure', 'RB'), ('6pm', 'CD')], [('sorry', 'NN'), ('could', 'MD'), ('not', 'RB'), ('talk', 'VB'), ('to', 'TO'), ('you', 'PRP'), ('on', 'IN'), ('this', 'DT'), ('today', 'NN'), ('lets', 'VBZ'), ('catch', 'VBP'), ('up', 'RP'), ('next', 'JJ'), ('week', 'NN')], [('let', 'VB'), ('us', 'PRP'), ('try', 'VB'), ('to', 'TO'), ('catch', 'VB'), ('up', 'RP'), ('on', 'IN'), ('sunday', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN')], [('monday', 'NN'), ('after', 'IN'), ('between', 'IN'), ('yy', 'NN'), ('and', 'CC'), ('y', 'NN'), ('is', 'VBZ'), ('also', 'RB'), ('ok', 'JJ'), ('with', 'IN'), ('me', 'PRP')], [('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('your', 'PRP$'), ('mobile', 'NN'), ('at', 'IN'), ('12noon', 'CD'), ('on', 'IN'), ('monday', 'NN')], [('i', 'NN'), ('plan', 'NN'), ('to', 'TO'), ('be', 'VB'), ('in', 'IN'), ('xxxxxxx', 'NNP'), ('in', 'IN'), ('february', 'JJ'), ('and', 'CC'), ('hope', 'NN'), ('to', 'TO'), ('see', 'VB'), ('you', 'PRP')], [('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('time', 'NN'), ('tomorrow', 'NN'), ('morningevening', 'VBG'), ('ist', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('then', 'RB')], [('how', 'WRB'), ('about', 'RB'), ('y', 'NN'), ('or', 'CC'), ('230pm', 'CD'), ('ist', 'NN'), ('tomorrow', 'NN')], [('xxxxx', 'NN'), ('we', 'PRP'), ('do', 'VBP'), ('that', 'DT'), ('on', 'IN'), ('sat', 'NNS'), ('morning', 'NN')], [('yeah', 'NN'), ('sat', 'VBD'), ('morning', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('catch', 'VB'), ('up', 'RP'), ('tomorrow', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('at', 'IN'), ('1230', 'CD'), ('tomorrow', 'NN'), ('at', 'IN'), ('xxx', 'NNP'), ('xxxxxx', 'NN')], [('should', 'MD'), ('work', 'VB'), ('on', 'IN'), ('monday', 'NN')], [('like', 'IN'), ('xxxxxx', 'NNP'), ('said', 'VBD'), ('the', 'DT'), ('dry', 'JJ'), ('run', 'NN'), ('for', 'IN'), ('lp', 'JJ'), ('presentation', 'NN'), ('starts', 'VBZ'), ('tomorrow', 'NN'), ('at', 'IN'), ('yyyy', 'NN'), ('am', 'VBP'), ('yyyyy', 'RB'), ('am', 'VBP'), ('tomorrow', 'NN'), ('so', 'RB'), ('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('do', 'VB'), ('this', 'DT'), ('call', 'NN'), ('at', 'IN'), ('yyyy', 'NN'), ('am', 'VBP')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('wed', 'VBN'), ('11', 'CD'), ('am', 'VBP'), ('works', 'NNS')], [('how', 'WRB'), ('about', 'RB'), ('wed', 'VBD'), ('morning', 'NN'), ('at', 'IN'), ('my', 'PRP$'), ('office', 'NN'), ('say', 'VBP'), ('10am', 'CD')], [('how', 'WRB'), ('is', 'VBZ'), ('your', 'PRP$'), ('schedule', 'NN'), ('tomorrow', 'NN'), ('mon', 'NN'), ('afternoon', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('suggest', 'VB'), ('me', 'PRP'), ('which', 'WDT'), ('time', 'NN'), ('slot', 'NN'), ('suits', 'NNS'), ('you', 'PRP'), ('for', 'IN'), ('the', 'DT'), ('meeting', 'NN'), ('on', 'IN'), ('thursday', 'NN'), ('or', 'CC'), ('friday', 'NN')], [('xxxxx', 'NNS'), ('can', 'MD'), ('we', 'PRP'), ('reschedule', 'VB'), ('this', 'DT'), ('to', 'TO'), ('1pm', 'CD')], [('would', 'MD'), ('it', 'PRP'), ('be', 'VB'), ('possible', 'JJ'), ('for', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('spend', 'VB'), ('30', 'CD'), ('minutes', 'NNS'), ('with', 'IN'), ('us', 'PRP'), ('sometime', 'RB'), ('tomorrow', 'NN'), ('afternoon', 'NN'), ('or', 'CC'), ('evening', 'NN')], [('xxxxx', 'NN'), ('does', 'VBZ'), ('wednesday', 'JJ'), ('work', 'VB'), ('for', 'IN'), ('you', 'PRP'), ('this', 'DT'), ('week', 'NN')], [('will', 'MD'), ('schedule', 'VB'), ('it', 'PRP'), ('for', 'IN'), ('tomorrow', 'NN')], [('sure', 'JJ'), ('xxxxxxx', 'NNP'), ('lets', 'NNS'), ('sync', 'VBP'), ('up', 'RP'), ('tomorrow', 'NN')], [('kindly', 'RB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('speak', 'VB'), ('on', 'IN'), ('fri', 'NN'), ('6th', 'CD')], [('we', 'PRP'), ('can', 'MD'), ('reschedule', 'VB'), ('for', 'IN'), ('later', 'RB'), ('in', 'IN'), ('the', 'DT'), ('week', 'NN')], [('i', 'NN'), ('will', 'MD'), ('interview', 'NN'), ('you', 'PRP'), ('after', 'IN'), ('the', 'DT'), ('coffee', 'NN'), ('xxxxxxx', 'NNP'), ('group', 'NN'), ('coffee', 'NN'), ('chat', 'NN'), ('at', 'IN'), ('1100', 'CD'), ('am', 'VBP'), ('on', 'IN'), ('wednesday', 'NN')], [('xxxx', 'NN'), ('is', 'VBZ'), ('this', 'DT'), ('call', 'NN'), ('confirmed', 'VBD'), ('for', 'IN'), ('tomorrow', 'NN')], [('thursday', 'NN'), ('or', 'CC'), ('wed', 'VBD')], [('are', 'VBP'), ('we', 'PRP'), ('still', 'RB'), ('on', 'IN'), ('for', 'IN'), ('1pm', 'CD')], [('yes', 'NNS'), ('they', 'PRP'), ('will', 'MD'), ('see', 'VB'), ('you', 'PRP'), ('at', 'IN'), ('1pm', 'CD'), ('today', 'NN'), ('at', 'IN'), ('the', 'DT'), ('address', 'NN'), ('below', 'IN'), ('in', 'IN'), ('xxxxx', 'NNP'), ('xxxxx', 'NN')], [('xxxxx', 'JJ'), ('xxxxx', 'NN'), ('and', 'CC'), ('xxxxxxxx', 'NN'), ('will', 'MD'), ('be', 'VB'), ('at', 'IN'), ('the', 'DT'), ('xxxxxxx', 'NNP'), ('office', 'NN'), ('today', 'NN'), ('and', 'CC'), ('are', 'VBP'), ('available', 'JJ'), ('to', 'TO'), ('talk', 'VB'), ('at', 'IN'), ('2pm', 'CD')], [('the', 'DT'), ('presentation', 'NN'), ('to', 'TO'), ('the', 'DT'), ('potential', 'JJ'), ('investor', 'NN'), ('xxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('really', 'RB'), ('nice', 'JJ'), ('guy', 'NN'), ('is', 'VBZ'), ('scheduled', 'VBN'), ('for', 'IN'), ('next', 'JJ'), ('friday', 'JJ'), ('yyyyy', 'NN'), ('at', 'IN'), ('9am', 'CD'), ('at', 'IN'), ('the', 'DT'), ('xxxx', 'NNP'), ('xxxx', 'NNP'), ('office', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('this', 'DT'), ('wednesday', 'JJ'), ('december', 'VB'), ('4', 'CD'), ('at', 'IN'), ('11am', 'CD')], [('1pm', 'CD'), ('pst', 'NN'), ('on', 'IN'), ('friday', 'NN'), ('works', 'NNS'), ('well', 'RB')], [('will', 'MD'), ('1030am', 'CD'), ('or', 'CC'), ('11am', 'CD'), ('work', 'NN'), ('for', 'IN'), ('u', 'JJ')], [('probably', 'RB'), ('tomorrow', 'NN'), ('after', 'IN'), ('lunch', 'NN'), ('will', 'MD'), ('work', 'VB'), ('best', 'RB')], [('im', 'NN'), ('at', 'IN'), ('dinner', 'NN'), ('can', 'MD'), ('i', 'VB'), ('call', 'NN'), ('at', 'IN'), ('9pm', 'CD')], [('tomorrow', 'NN'), ('130', 'CD'), ('pm', 'NN'), ('works', 'NNS'), ('well', 'RB')], [('are', 'VBP'), ('you', 'PRP'), ('free', 'JJ'), ('to', 'TO'), ('talk', 'VB'), ('sometime', 'RB'), ('today', 'NN')], [('hi', 'NN'), ('xxxxxx', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('free', 'JJ'), ('tomorrow', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('call', 'VBN'), ('on', 'IN'), ('tomorrow', 'NN'), ('3pm', 'CD')], [('i', 'NN'), ('am', 'VBP'), ('sorry', 'NN'), ('for', 'IN'), ('delaying', 'VBG'), ('this', 'DT'), ('can', 'MD'), ('we', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('meeting', 'NN'), ('tomorrow', 'NN'), ('evening', 'VBG'), ('x', '$'), ('4pm', 'CD'), ('to', 'TO'), ('discuss', 'VB'), ('on', 'IN'), ('this', 'DT')], [('10', 'CD'), ('am', 'VBP'), ('tomorrow', 'NN'), ('works', 'NNS'), ('for', 'IN'), ('xxxxx', 'NN')], [('xxxx', 'JJ'), ('xxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('call', 'NN'), ('is', 'VBZ'), ('confirmed', 'VBN'), ('for', 'IN'), ('10am', 'CD'), ('tomorrow', 'NN')], [('monday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('1030am', 'CD'), ('pt', 'NN')], [('i', 'NN'), ('could', 'MD'), ('do', 'VB'), ('tuesday', 'RB'), ('at', 'IN'), ('yy', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('traveling', 'VBG'), ('next', 'JJ'), ('week', 'NN'), ('xxxxxxx', 'NN'), ('but', 'CC'), ('wee', 'NN'), ('can', 'MD'), ('meet', 'VB'), ('thursday', 'JJ'), ('or', 'CC'), ('friday', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('make', 'VB'), ('that', 'DT')], [('next', 'JJ'), ('wednesday', 'NN'), ('yyyyy', 'NN'), ('at', 'IN'), ('11am', 'CD'), ('or', 'CC'), ('1pm', 'CD')], [('this', 'DT'), ('friday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('2pm', 'CD')], [('confirmed', 'VBN'), ('for', 'IN'), ('tuesday', 'NN'), ('yyyyy', 'NN'), ('at', 'IN'), ('11am', 'CD')], [('confirmed', 'VBN'), ('for', 'IN'), ('this', 'DT'), ('friday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('2pm', 'CD')], [('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('again', 'RB'), ('on', 'IN'), ('sat', 'NN'), ('for', 'IN'), ('broader', 'JJR'), ('discussions', 'NNS'), ('if', 'IN'), ('that', 'DT'), ('is', 'VBZ'), ('ok', 'JJ')], [('5pm', 'CD')], [('can', 'MD'), ('we', 'PRP'), ('catch', 'VB'), ('up', 'RP'), ('at', 'IN'), ('3pm', 'CD'), ('on', 'IN'), ('friday', 'NN')], [('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('free', 'JJ'), ('at', 'IN'), ('3pm', 'CD')], [('i', 'NN'), ('will', 'MD'), ('join', 'VB'), ('the', 'DT'), ('call', 'NN'), ('tomorrow', 'NN')], [('ill', 'RB'), ('be', 'VB'), ('happy', 'JJ'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('schedule', 'VB'), ('tomorrow', 'NN'), ('anytime', 'RB'), ('feasible', 'JJ'), ('to', 'TO'), ('you', 'PRP')], [('sure', 'JJ'), ('xxx', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('the', 'DT'), ('candidates', 'NNS'), ('as', 'RB'), ('well', 'RB'), ('as', 'IN'), ('recruiters', 'NNS'), ('tomorrow', 'NN'), ('at', 'IN'), ('our', 'PRP$'), ('xxxxxxx', 'NN'), ('2nd', 'CD'), ('xxxxxx', 'NN'), ('office', 'NN')], [('lets', 'NNS'), ('talk', 'VBP'), ('on', 'IN'), ('xxxxx', 'NN'), ('coming', 'VBG'), ('monday', 'JJ'), ('yyyy', 'NN'), ('pm', 'NN')], [('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN'), ('along', 'IN'), ('with', 'IN'), ('xxxxx', 'NN'), ('and', 'CC'), ('explain', 'VB'), ('the', 'DT'), ('expected', 'JJ'), ('delivery', 'NN'), ('from', 'IN'), ('our', 'PRP$'), ('side', 'NN'), ('and', 'CC'), ('timelines', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('same', 'JJ')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('this', 'DT'), ('meeting', 'NN'), ('tomorrow', 'NN'), ('at', 'IN'), ('5', 'CD'), ('pm', 'NN')], [('tuesday', 'NN'), ('is', 'VBZ'), ('fine', 'JJ'), ('with', 'IN'), ('me', 'PRP')], [('hey', 'JJ'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('could', 'MD'), ('come', 'VB'), ('on', 'IN'), ('skype', 'NN'), ('today', 'NN')], [('can', 'MD'), ('chat', 'VB'), ('on', 'IN'), ('friday', 'NN')], [('lets', 'NNS'), ('catchup', 'VBP'), ('tomorrow', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('plan', 'NN'), ('in', 'IN'), ('my', 'PRP$'), ('absence', 'NN')], [('say', 'NN'), ('tuesday', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('pretty', 'RB'), ('much', 'JJ'), ('open', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('other', 'JJ'), ('than', 'IN'), ('tuesday', 'JJ')], [('will', 'MD'), ('early', 'RB'), ('next', 'JJ'), ('week', 'NN'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('lets', 'NNS'), ('catchup', 'VBP'), ('mid', 'JJ'), ('next', 'JJ'), ('week', 'NN')], [('confirmed', 'VBN'), ('for', 'IN'), ('tomorrow', 'NN'), ('thursday', 'NN'), ('yyyy', 'NN'), ('at', 'IN'), ('11am', 'CD'), ('here', 'RB')], [('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('over', 'IN'), ('the', 'DT'), ('weekend', 'NN')], [('friday', 'RB'), ('10', 'CD'), ('am', 'VBP'), ('works', 'NNS'), ('very', 'RB'), ('well', 'RB')], [('lets', 'NNS'), ('try', 'VBP'), ('to', 'TO'), ('meet', 'VB'), ('over', 'IN'), ('the', 'DT'), ('weekend', 'NN')], [('confirmed', 'VBN'), ('for', 'IN'), ('lunch', 'NN'), ('tomorrow', 'NN')], [('lets', 'NNS'), ('continue', 'VBP'), ('our', 'PRP$'), ('discussion', 'NN'), ('next', 'IN'), ('week', 'NN')], [('lets', 'NNS'), ('meet', 'VBP'), ('over', 'IN'), ('lunch', 'NN'), ('today', 'NN')], [('do', 'VBP'), ('you', 'PRP'), ('want', 'VB'), ('to', 'TO'), ('catchup', 'VB'), ('tomorrow', 'NN'), ('over', 'IN'), ('lunch', 'NN'), ('at', 'IN'), ('xx', 'NNP'), ('xxxx', 'NNP'), ('around', 'IN'), ('1200', 'CD'), ('noon', 'NN')], [('can', 'MD'), ('call', 'VB'), ('tomorrow', 'NN'), ('evening', 'VBG'), ('to', 'TO'), ('talk', 'VB'), ('on', 'IN'), ('scheduling', 'NN'), ('and', 'CC'), ('needed', 'VBN'), ('steps', 'NNS')], [('we', 'PRP'), ('can', 'MD'), ('but', 'CC'), ('i', 'VB'), ('wont', 'VBP'), ('be', 'VB'), ('available', 'JJ'), ('to', 'TO'), ('talk', 'VB'), ('in', 'IN'), ('detail', 'NN'), ('before', 'IN'), ('sun', 'NN'), ('late', 'JJ'), ('afternoon', 'NN'), ('out', 'IN'), ('of', 'IN'), ('town', 'NN'), ('xxxxxxx', 'NNP'), ('am', 'VBP')], [('i', 'RB'), ('wanted', 'VBD'), ('to', 'TO'), ('see', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('could', 'MD'), ('meet', 'VB'), ('yyy', 'JJ'), ('sunday', 'NN'), ('yyyy', 'NN'), ('for', 'IN'), ('breakfast', 'NN'), ('lets', 'NNS'), ('say', 'VBP'), ('around', 'IN'), ('930am', 'CD'), ('at', 'IN'), ('the', 'DT'), ('xx', 'NNP'), ('xxxxxxx', 'NN')], [('yes', 'NNS'), ('i', 'VBP'), ('can', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN')], [('1030', 'CD'), ('tomorrow', 'NN'), ('is', 'VBZ'), ('fine', 'JJ')], [('can', 'MD'), ('we', 'PRP'), ('fix', 'VB'), ('to', 'TO'), ('meet', 'VB'), ('930', 'CD'), ('am', 'VBP'), ('tomorrow', 'NN')], [('lets', 'NNS'), ('discuss', 'VBP'), ('tomorrow', 'NN')], [('xxxxxxxx', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('call', 'VB'), ('me', 'PRP'), ('at', 'IN'), ('about', 'IN'), ('yyy', 'NN'), ('am', 'VBP'), ('today', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('chat', 'VB'), ('on', 'IN'), ('the', 'DT'), ('phone', 'NN'), ('today', 'NN')], [('phone', 'NN'), ('is', 'VBZ'), ('fine', 'JJ'), ('for', 'IN'), ('today', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('in', 'IN'), ('person', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('all', 'DT'), ('tomorrow', 'NN'), ('x', 'NNP'), ('xxxxxx', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('speak', 'VB'), ('on', 'IN'), ('tuesday', 'NN')], [('2pm', 'CD'), ('is', 'VBZ'), ('fine', 'JJ')], [('kindly', 'RB'), ('call', 'VB'), ('me', 'PRP'), ('tomorrow', 'NN'), ('around', 'IN'), ('1030', 'CD'), ('am', 'VBP')], [('will', 'MD'), ('catch', 'VB'), ('up', 'RP'), ('with', 'IN'), ('you', 'PRP'), ('over', 'IN'), ('the', 'DT'), ('weekend', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('open', 'VBP'), ('the', 'DT'), ('week', 'NN'), ('after', 'IN')], [('lets', 'NNS'), ('catch', 'VBP'), ('tomorrow', 'NN'), ('after', 'IN'), ('the', 'DT'), ('call', 'NN'), ('which', 'WDT'), ('is', 'VBZ'), ('2', 'CD'), ('pm', 'NN')], [('maybe', 'RB'), ('the', 'DT'), ('daytime', 'NN'), ('during', 'IN'), ('the', 'DT'), ('weekend', 'NN')], [('how', 'WRB'), ('bout', 'NN'), ('lunch', 'NN'), ('x', 'NNP'), ('mtrmaiyyas', 'NN'), ('on', 'IN'), ('this', 'DT'), ('sunday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('chat', 'VB'), ('anytime', 'RB'), ('today', 'NN')], [('xxxx', 'NN'), ('to', 'TO'), ('see', 'VB'), ('as', 'IN'), ('you', 'PRP'), ('at', 'IN'), ('the', 'DT'), ('dinner', 'NN'), ('wednesday', 'NN')], [('i', 'NN'), ('will', 'MD'), ('see', 'VB'), ('you', 'PRP'), ('both', 'DT'), ('soon', 'RB'), ('and', 'CC'), ('will', 'MD'), ('call', 'VB'), ('tomorrow', 'NN'), ('evening', 'VBG'), ('your', 'PRP$'), ('time', 'NN')], [('yes', 'RB'), ('this', 'DT'), ('coming', 'VBG'), ('tuesday', 'RB'), ('the', 'DT'), ('10th', 'NNS'), ('at', 'IN'), ('300', 'CD'), ('pm', 'NN'), ('xxxxxxx', 'NNP'), ('standard', 'NN'), ('time', 'NN'), ('will', 'MD'), ('work', 'VB'), ('for', 'IN'), ('me', 'PRP')], [('1', 'CD'), ('pm', 'NN'), ('tomorrow', 'NN'), ('is', 'VBZ'), ('confirmed', 'VBN')], [('xxxx', 'JJ'), ('let', 'VB'), ('us', 'PRP'), ('catch', 'VB'), ('up', 'RP'), ('tomorrow', 'NN'), ('mon', 'NN'), ('in', 'IN'), ('the', 'DT'), ('office', 'NN')], [('xx', 'NN'), ('tuesday', 'NN'), ('work', 'NN')], [('you', 'PRP'), ('and', 'CC'), ('i', 'VB'), ('will', 'MD'), ('still', 'RB'), ('keep', 'VB'), ('our', 'PRP$'), ('breakfast', 'NN'), ('meeting', 'NN'), ('tomorrow', 'NN'), ('as', 'IN'), ('planned', 'VBN'), ('at', 'IN'), ('900am', 'CD'), ('ist', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('on', 'IN'), ('wednesday', 'NN'), ('at', 'IN'), ('930am', 'CD'), ('instead', 'RB'), ('of', 'IN'), ('meeting', 'NN'), ('tomorrow', 'NN')], [('happy', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('sometime', 'RB'), ('this', 'DT'), ('week', 'NN')], [('thank', 'NN'), ('you', 'PRP'), ('xxxxxx', 'VBP'), ('can', 'MD'), ('we', 'PRP'), ('speak', 'VB'), ('on', 'IN'), ('friday', 'NN'), ('at', 'IN'), ('4pm', 'CD')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('speak', 'VB'), ('on', 'IN'), ('xxxxxxxxxxxxxx', 'NNP'), ('next', 'JJ'), ('week', 'NN')], [('a', 'DT'), ('meeting', 'NN'), ('post', 'NN'), ('2', 'CD'), ('pm', 'NN'), ('tomorrow', 'NN'), ('will', 'MD'), ('be', 'VB'), ('better', 'JJR'), ('for', 'IN'), ('us', 'PRP')], [('is', 'VBZ'), ('it', 'PRP'), ('yy', 'PRP'), ('or', 'CC'), ('yy', 'VB'), ('today', 'NN')], [('i', 'RB'), ('wanted', 'VBD'), ('to', 'TO'), ('check', 'VB'), ('in', 'IN'), ('and', 'CC'), ('see', 'VB'), ('if', 'IN'), ('this', 'DT'), ('evening', 'NN'), ('at', 'IN'), ('5pm', 'CD'), ('in', 'IN'), ('xxxxx', 'JJ'), ('xxxxx', 'NN'), ('or', 'CC'), ('xxxxxxxx', 'NN'), ('will', 'MD'), ('work', 'VB'), ('with', 'IN'), ('your', 'PRP$'), ('schedules', 'NNS')], [('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('in', 'IN'), ('xxxxxxxxx', 'NNP'), ('this', 'DT'), ('week', 'NN'), ('or', 'CC'), ('next', 'JJ'), ('can', 'MD'), ('i', 'VB'), ('take', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('coffee', 'VB')], [('confirmed', 'VBN'), ('for', 'IN'), ('wednesday', 'NN'), ('yyyyy', 'NN'), ('at', 'IN'), ('2pm', 'CD')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('by', 'IN'), ('phone', 'NN'), ('today', 'NN')], [('xxxxxxx', 'NN'), ('we', 'PRP'), ('both', 'DT'), ('can', 'MD'), ('catch', 'VB'), ('up', 'RP'), ('around', 'RB'), ('5pm', 'CD'), ('if', 'IN'), ('that', 'DT'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP')], [('what', 'WP'), ('is', 'VBZ'), ('your', 'PRP$'), ('availability', 'NN'), ('tomorrow', 'NN'), ('morning', 'NN')], [('let', 'VB'), ('us', 'PRP'), ('discuss', 'VB'), ('after', 'IN'), ('my', 'PRP$'), ('return', 'NN'), ('next', 'IN'), ('week', 'NN')], [('lets', 'NNS'), ('chat', 'RB'), ('today', 'NN'), ('as', 'IN'), ('you', 'PRP'), ('suggest', 'VBP')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('in', 'IN'), ('xxxxxx', 'NN'), ('on', 'IN'), ('thursday', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('move', 'VB'), ('the', 'DT'), ('meeting', 'NN'), ('to', 'TO'), ('2pm', 'CD'), ('and', 'CC'), ('keep', 'VB'), ('it', 'PRP'), ('open', 'JJ'), ('ended', 'VBD')], [('does', 'VBZ'), ('thursday', 'JJ'), ('10', 'CD'), ('am', 'VBP'), ('or', 'CC'), ('anytime', 'VBP'), ('after', 'IN'), ('4pm', 'CD'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('may', 'MD'), ('i', 'VB'), ('suggest', 'JJS'), ('in', 'IN'), ('the', 'DT'), ('afternoon', 'NN'), ('say', 'VBP'), ('1pm', 'CD')], [('this', 'DT'), ('friday', 'NN'), ('will', 'MD'), ('work', 'VB')], [('friday', 'JJ'), ('yyyyy', 'NN'), ('at', 'IN'), ('230pm', 'CD'), ('in', 'IN'), ('xxxx', 'NN'), ('xxxx', 'NN')], [('will', 'MD'), ('take', 'VB'), ('the', 'DT'), ('3pm', 'CD'), ('slot', 'NN')], [('xxxxxxx', 'RB'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('know', 'VB'), ('if', 'IN'), ('xxxxx', 'JJ'), ('and', 'CC'), ('team', 'NN'), ('are', 'VBP'), ('avail', 'NN'), ('for', 'IN'), ('lunch', 'NN'), ('from', 'IN'), ('12n', 'CD'), ('1pm', 'CD'), ('on', 'IN'), ('friday', 'NN')], [('i', 'NN'), ('think', 'VBP'), ('lets', 'VBZ'), ('meet', 'RB'), ('today', 'NN'), ('if', 'IN'), ('possible', 'JJ')], [('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('at', 'IN'), ('9am', 'CD'), ('tomorrow', 'NN')], [('can', 'MD'), ('i', 'VB'), ('speak', 'VB'), ('to', 'TO'), ('him', 'PRP'), ('perhaps', 'RB'), ('tomorrow', 'NN'), ('morning', 'NN'), ('on', 'IN'), ('phone', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('on', 'IN'), ('friday', 'NN'), ('or', 'CC'), ('next', 'JJ'), ('week', 'NN')], [('will', 'MD'), ('call', 'VB'), ('u', 'JJ'), ('tomorrow', 'NN')], [('sure', 'NN'), ('we', 'PRP'), ('could', 'MD'), ('speak', 'VB'), ('during', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('what', 'WP'), ('about', 'IN'), ('yyyyy', 'NN'), ('am', 'VBP'), ('on', 'IN'), ('tuesday', 'NN')], [('he', 'PRP'), ('is', 'VBZ'), ('available', 'JJ'), ('on', 'IN'), ('friday', 'NN'), ('after', 'IN'), ('500', 'CD'), ('pm', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('tomorrow', 'NN'), ('or', 'CC'), ('monday', 'NN'), ('around', 'IN'), ('200', 'CD'), ('near', 'IN'), ('xx', 'JJ'), ('city', 'NN'), ('or', 'CC'), ('near', 'IN'), ('indian', 'JJ'), ('express', 'NN'), ('junction', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('tomorrow', 'NN')], [('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('discuss', 'VB'), ('tomorrow', 'NN'), ('morning', 'NN'), ('ist', 'NN')], [('we', 'PRP'), ('could', 'MD'), ('meet', 'VB'), ('there', 'RB'), ('at', 'IN'), ('y', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('ill', 'NN'), ('ping', 'VBG'), ('you', 'PRP'), ('in', 'IN'), ('january', 'JJ'), ('to', 'TO'), ('grab', 'VB'), ('coffee', 'NN')], [('xxxxxxx', 'NN'), ('will', 'MD'), ('meet', 'VB'), ('with', 'IN'), ('you', 'PRP'), ('from', 'IN'), ('1011am', 'CD'), ('and', 'CC'), ('xxxxxxxx', 'VB'), ('from', 'IN'), ('11amnoon', 'CD')], [('monday', 'NN'), ('from', 'IN'), ('10amnoon', 'CD'), ('will', 'MD'), ('be', 'VB'), ('perfect', 'JJ')], [('friday', 'JJ'), ('yyyyy', 'NN'), ('from', 'IN'), ('23pm', 'CD'), ('is', 'VBZ'), ('perfect', 'JJ')], [('sure', 'JJ'), ('tomorrow', 'NN'), ('works', 'NN'), ('for', 'IN'), ('me', 'PRP')], [('how', 'WRB'), ('is', 'VBZ'), ('your', 'PRP$'), ('schedule', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('16th', 'CD')], [('ref', 'NN'), ('below', 'IN'), ('mail', 'NN'), ('does', 'VBZ'), ('18th', 'CD'), ('dec', 'NN'), ('at', 'IN'), ('yyyy', 'JJ'), ('pm', 'NN'), ('works', 'VBZ'), ('fine', 'JJ')], [('can', 'MD'), ('we', 'PRP'), ('schedule', 'VB'), ('for', 'IN'), ('tomorrow', 'NN')], [('xxx', 'NN'), ('tomorrow', 'NN')], [('i', 'NN'), ('will', 'MD'), ('cal', 'VB'), ('you', 'PRP'), ('during', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('half', 'NN'), ('tomorrow', 'NN')], [('lets', 'NNS'), ('try', 'VBP'), ('and', 'CC'), ('meet', 'VBP'), ('next', 'JJ'), ('week', 'NN')], [('i', 'NN'), ('ll', 'VBP'), ('catch', 'VB'), ('up', 'RP'), ('tomorrow', 'NN')], [('lets', 'NNS'), ('sit', 'VBP'), ('on', 'IN'), ('this', 'DT'), ('today', 'NN'), ('and', 'CC'), ('decide', 'VB'), ('the', 'DT'), ('next', 'JJ'), ('steps', 'NNS'), ('at', 'IN'), ('530pm', 'CD')], [('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('next', 'JJ'), ('tuesday', 'NN'), ('at', 'IN'), ('10am', 'CD')], [('or', 'CC'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN'), ('post', 'NN'), ('lunch', 'NN')], [('sure', 'NN'), ('we', 'PRP'), ('could', 'MD'), ('do', 'VB'), ('lunch', 'NN'), ('on', 'IN'), ('sunday', 'NN')], [('will', 'MD'), ('call', 'VB'), ('tomorrow', 'NN')], [('xxxxx', 'NN'), ('is', 'VBZ'), ('away', 'RB'), ('starting', 'VBG'), ('saturday', 'JJ'), ('if', 'IN'), ('xxxxxxx', 'NNS'), ('can', 'MD'), ('not', 'RB'), ('make', 'VB'), ('lunch', 'NN'), ('can', 'MD'), ('he', 'PRP'), ('meet', 'VB'), ('just', 'RB'), ('before', 'RB'), ('or', 'CC'), ('just', 'RB'), ('after', 'IN'), ('lunch', 'NN')], [('lets', 'NNS'), ('try', 'VBP'), ('to', 'TO'), ('connect', 'VB'), ('next', 'JJ'), ('monday', 'NN'), ('instead', 'RB')], [('anytime', 'RB'), ('after', 'IN'), ('tuesday', 'NN'), ('works', 'NNS')], [('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('next', 'JJ'), ('week', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('i', 'JJ'), ('can', 'MD'), ('schedule', 'VB'), ('him', 'PRP'), ('for', 'IN'), ('monday', 'NN'), ('or', 'CC'), ('else', 'JJ'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('the', 'DT'), ('other', 'JJ'), ('time', 'NN'), ('slots', 'NNS')], [('im', 'NN'), ('available', 'JJ'), ('2304pm', 'CD'), ('pst', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('sometime', 'RB'), ('tomorrow', 'NN'), ('in', 'IN'), ('detail', 'NN'), ('on', 'IN'), ('this', 'DT')], [('if', 'IN'), ('u', 'JJ'), ('r', 'NN'), ('having', 'VBG'), ('training', 'NN'), ('will', 'MD'), ('do', 'VB'), ('on', 'IN'), ('sunday', 'NN'), ('ok', 'JJ'), ('hi', 'NN'), ('hi', 'NN'), ('hi', 'NN'), ('lcs', 'NN')], [('no', 'DT'), ('issues', 'NNS'), ('xxxxxxx', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('talk', 'VB'), ('to', 'TO'), ('him', 'PRP'), ('next', 'JJ'), ('week', 'NN')], [('he', 'PRP'), ('suggested', 'VBD'), ('somewhere', 'RB'), ('on', 'IN'), ('xxxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('for', 'IN'), ('coffee', 'NN'), ('from', 'IN'), ('y', '$'), ('3pm', 'CD'), ('pt', 'NN')], [('at', 'IN'), ('6pm', 'CD'), ('or', 'CC'), ('630pm', 'CD')], [('confirmed', 'VBN'), ('for', 'IN'), ('2pm', 'CD'), ('today', 'NN')], [('xxxxxx', 'JJ'), ('worth', 'NN'), ('talking', 'VBG'), ('to', 'TO'), ('this', 'DT'), ('weekend', 'NN'), ('if', 'IN'), ('possible', 'JJ')], [('perhaps', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('chat', 'VB'), ('next', 'JJ'), ('week', 'NN'), ('or', 'CC'), ('in', 'IN'), ('the', 'DT'), ('xxx', 'JJ'), ('year', 'NN'), ('as', 'IN'), ('per', 'IN'), ('your', 'PRP$'), ('convenience', 'NN')], [('xxxxxxxx', 'NNS'), ('next', 'IN'), ('week', 'NN'), ('should', 'MD'), ('be', 'VB'), ('fine', 'JJ')], [('see', 'VB'), ('u', 'JJ'), ('at', 'IN'), ('yy', 'JJ'), ('noon', 'NN'), ('on', 'IN'), ('tuesday', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('monday', 'NN')], [('please', 'VB'), ('install', 'VB'), ('the', 'DT'), ('two', 'CD'), ('apps', 'NNS'), ('next', 'IN'), ('week', 'NN'), ('and', 'CC'), ('let', 'VB'), ('us', 'PRP'), ('discuss', 'VB'), ('how', 'WRB'), ('our', 'PRP$'), ('app', 'NN'), ('is', 'VBZ'), ('better', 'RBR')], [('can', 'MD'), ('we', 'PRP'), ('schedule', 'VB'), ('her', 'PRP$'), ('for', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('record', 'VB'), ('on', 'IN'), ('tuesday', 'JJ'), ('morning', 'NN'), ('when', 'WRB'), ('i', 'NN'), ('am', 'VBP'), ('at', 'IN'), ('panvel', 'NN'), ('yyyy', 'NN'), ('am', 'VBP')], [('we', 'PRP'), ('can', 'MD'), ('tentatively', 'RB'), ('plan', 'VB'), ('to', 'TO'), ('travel', 'VB'), ('on', 'IN'), ('wednesday', 'NN')], [('i', 'JJ'), ('shall', 'MD'), ('speak', 'VB'), ('to', 'TO'), ('xxxxxx', 'VB'), ('tomorrow', 'NN'), ('evening', 'NN'), ('and', 'CC'), ('get', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('best', 'JJS'), ('mode', 'NN'), ('to', 'TO'), ('connect', 'VB'), ('with', 'IN'), ('him', 'PRP')], [('how', 'WRB'), ('about', 'IN'), ('tuesday', 'NN')], [('could', 'MD'), ('we', 'PRP'), ('touch', 'VB'), ('base', 'NN'), ('briefly', 'NN'), ('today', 'NN'), ('after', 'IN'), ('the', 'DT'), ('sessions', 'NNS')], [('lets', 'NNS'), ('plan', 'VBP'), ('on', 'IN'), ('meeting', 'NN'), ('today', 'NN'), ('to', 'TO'), ('work', 'VB'), ('on', 'IN'), ('xxxxxxxxxxxs', 'JJ'), ('websit', 'NN')], [('dear', 'JJ'), ('xxxxxx', 'NNP'), ('xxxx', 'NNP'), ('tomorrow', 'NN'), ('300pm', 'CD'), ('be', 'VB'), ('ok', 'VBN'), ('with', 'IN'), ('you', 'PRP'), ('regards', 'VBP'), ('xxxxxxxx', 'VB')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('confirm', 'VB'), ('if', 'IN'), ('thursday', 'JJ'), ('6', 'CD'), ('pm', 'NN'), ('xxx', 'NN'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('yy', 'JJ'), ('yy', 'NN'), ('am', 'VBP'), ('tomorrow', 'NN'), ('works', 'NNS'), ('for', 'IN'), ('all', 'DT'), ('of', 'IN'), ('you', 'PRP')], [('does', 'VBZ'), ('10am', 'CD'), ('tomorrow', 'NN'), ('tuesday', 'NN'), ('work', 'NN')], [('talk', 'NN'), ('to', 'TO'), ('you', 'PRP'), ('tomorrow', 'NN'), ('tuesday', 'NN')], [('we', 'PRP'), ('could', 'MD'), ('meet', 'VB'), ('on', 'IN'), ('wednesday', 'NN')], [('xx', 'NNS'), ('so', 'RB'), ('2330', 'CD'), ('pm', 'NN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('shall', 'MD'), ('meet', 'VB'), ('xxxxxx', 'NN'), ('at', 'IN'), ('xxxxxx', 'NNP'), ('office', 'NN'), ('at', 'IN'), ('yyyy', 'NN'), ('today', 'NN')], [('xxx', 'IN'), ('they', 'PRP'), ('are', 'VBP'), ('based', 'VBN'), ('in', 'IN'), ('hsr', 'NN'), ('so', 'IN'), ('you', 'PRP'), ('may', 'MD'), ('want', 'VB'), ('to', 'TO'), ('plan', 'VB'), ('your', 'PRP$'), ('visit', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('meet', 'VB'), ('them', 'PRP'), ('if', 'IN'), ('possible', 'JJ'), ('since', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('be', 'VB'), ('here', 'RB'), ('in', 'IN'), ('the', 'DT'), ('area', 'NN')], [('lets', 'NNS'), ('anyway', 'RB'), ('catch', 'VB'), ('up', 'RP'), ('next', 'JJ'), ('week', 'NN'), ('when', 'WRB'), ('you', 'PRP'), ('are', 'VBP'), ('back', 'RB'), ('in', 'IN'), ('blr', 'NN')], [('monday', 'JJ'), ('anytime', 'NN'), ('between', 'IN'), ('10am', 'CD'), ('and', 'CC'), ('noon', 'NN'), ('works', 'NNS'), ('for', 'IN'), ('me', 'PRP'), ('just', 'RB'), ('call', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('connect', 'VB'), ('tomorrow', 'NN'), ('anytime', 'NN'), ('between', 'IN'), ('130', 'CD'), ('pm', 'NN'), ('to', 'TO'), ('8', 'CD'), ('pm', 'NN')], [('ohh', 'RB'), ('ok', 'JJ'), ('xxxxx', 'JJ'), ('sure', 'JJ'), ('lets', 'VBZ'), ('meet', 'JJ'), ('next', 'JJ'), ('week', 'NN')], [('xxxxxx', 'VB'), ('what', 'WP'), ('time', 'NN'), ('are', 'VBP'), ('you', 'PRP'), ('free', 'JJ'), ('tomorrow', 'NN')], [('lets', 'NNS'), ('meet', 'VBP'), ('over', 'IN'), ('the', 'DT'), ('weekend', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('availability', 'NN'), ('this', 'DT'), ('week', 'NN'), ('or', 'CC'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN')], [('thank', 'NN'), ('you', 'PRP'), ('xxxxx', 'VBP'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('talk', 'VB'), ('tomorrow', 'NN'), ('or', 'CC'), ('thursday', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('for', 'IN'), ('lunchcoffee', 'NN'), ('today', 'NN')], [('xxxxx', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('this', 'DT'), ('meeting', 'NN'), ('tomorrow', 'NN'), ('same', 'JJ'), ('time', 'NN')], [('call', 'VB'), ('me', 'PRP'), ('anytime', 'RB'), ('today', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('it', 'PRP'), ('at', 'IN'), ('length', 'NN'), ('tomorrow', 'NN')], [('xxxxx', 'NN'), ('we', 'PRP'), ('speak', 'VBP'), ('on', 'IN'), ('friday', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('i', 'JJ'), ('can', 'MD'), ('schedule', 'VB'), ('him', 'PRP'), ('for', 'IN'), ('thursday', 'NN'), ('or', 'CC'), ('else', 'JJ'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('the', 'DT'), ('other', 'JJ'), ('time', 'NN'), ('slots', 'NNS')], [('xxxxxxx', 'NN'), ('is', 'VBZ'), ('available', 'JJ'), ('on', 'IN'), ('thursday', 'JJ'), ('19dec13', 'CD'), ('x10', 'NN'), ('am', 'VBP'), ('to', 'TO'), ('attend', 'VB'), ('the', 'DT'), ('interview', 'NN'), ('at', 'IN'), ('xxxxx', 'NN')], [('ok', 'JJ'), ('sir', 'NN'), ('pl', 'NN'), ('come', 'VBP'), ('tomorrow', 'NN')], [('i', 'NN'), ('will', 'MD'), ('look', 'VB'), ('at', 'IN'), ('the', 'DT'), ('set', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('tomorrow', 'NN')], [('sure', 'JJ'), ('thursday', 'JJ'), ('3', 'CD'), ('pm', 'NN'), ('is', 'VBZ'), ('fine', 'JJ')], [('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('on', 'IN'), ('fri', 'NN'), ('or', 'CC'), ('sat', 'VB')], [('monday', 'NN'), ('430pm', 'CD')], [('sure', 'JJ'), ('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('then', 'RB'), ('between', 'IN'), ('y', 'NNS'), ('y', 'CD'), ('tomorrow', 'NN')], [('do', 'VBP'), ('you', 'PRP'), ('want', 'VB'), ('to', 'TO'), ('meet', 'VB'), ('there', 'RB'), ('at', 'IN'), ('1200', 'CD'), ('tomorrow', 'NN')], [('will', 'MD'), ('need', 'VB'), ('your', 'PRP$'), ('help', 'NN'), ('to', 'TO'), ('set', 'VB'), ('up', 'RP'), ('our', 'PRP$'), ('next', 'JJ'), ('meeting', 'NN'), ('after', 'IN'), ('jan', 'NN'), ('12', 'CD'), ('2014', 'CD')], [('if', 'IN'), ('the', 'DT'), ('emails', 'NNS'), ('are', 'VBP'), ('not', 'RB'), ('helping', 'VBG'), ('lets', 'NNS'), ('talk', 'VBP'), ('over', 'IN'), ('xxxxx', 'NN'), ('tomorrow', 'NN')], [('will', 'MD'), ('meet', 'VB'), ('around', 'IN'), ('jan', '$'), ('15', 'CD'), ('for', 'IN'), ('xxxxxxxx', 'NN'), ('and', 'CC'), ('take', 'VB'), ('discussion', 'NN'), ('forward', 'RB')], [('pl', 'NN'), ('call', 'VB'), ('me', 'PRP'), ('on', 'IN'), ('friday', 'NN'), ('this', 'DT'), ('week', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('meet', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('saturday', 'JJ'), ('21st', 'CD'), ('in', 'IN'), ('the', 'DT'), ('afternoon', 'NN'), ('in', 'IN'), ('xxxxxxxxxxx', 'NN')], [('xxxx', 'NN'), ('has', 'VBZ'), ('agreed', 'VBN'), ('to', 'TO'), ('connect', 'VB'), ('at', 'IN'), ('900', 'CD'), ('am', 'VBP'), ('xxx', 'RB'), ('thursday', 'JJ'), ('to', 'TO'), ('discuss', 'VB')], [('confirmed', 'VBN'), ('for', 'IN'), ('wednesday', 'NN'), ('yyy', 'NN'), ('at', 'IN'), ('130pm', 'CD'), ('here', 'RB')], [('10am', 'CD'), ('works', 'NNS'), ('for', 'IN'), ('you', 'PRP')], [('i', 'NN'), ('will', 'MD'), ('see', 'VB'), ('you', 'PRP'), ('x3pm', 'VBP'), ('tomorrow', 'NN')], [('could', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('next', 'JJ'), ('monday', 'NN'), ('at', 'IN'), ('0230pm', 'CD')], [('i', 'NN'), ('talked', 'VBD'), ('to', 'TO'), ('him', 'PRP'), ('today', 'NN'), ('evening', 'VBG'), ('he', 'PRP'), ('is', 'VBZ'), ('keen', 'JJ'), ('and', 'CC'), ('wanted', 'VBD'), ('to', 'TO'), ('meet', 'VB'), ('both', 'DT'), ('of', 'IN'), ('us', 'PRP'), ('tomorrow', 'NN'), ('to', 'TO'), ('understand', 'VB'), ('more', 'JJR'), ('on', 'IN'), ('the', 'DT'), ('projectnetwork', 'NN'), ('domain', 'NN')], [('xxxxxxx', 'NN'), ('in', 'IN'), ('that', 'DT'), ('case', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('the', 'DT'), ('call', 'NN'), ('on', 'IN'), ('tuesday', 'JJ'), ('24th', 'CD'), ('dec', 'NN'), ('at', 'IN'), ('1030am', 'CD')], [('sure', 'JJ'), ('understand', 'JJ'), ('lets', 'NNS'), ('catch', 'VBP'), ('up', 'RP'), ('in', 'IN'), ('jan', 'NN')], [('as', 'IN'), ('discussed', 'VBN'), ('on', 'IN'), ('phone', 'NN'), ('tomorrow', 'NN'), ('6pm', 'CD'), ('is', 'VBZ'), ('fine', 'JJ'), ('for', 'IN'), ('me', 'PRP')], [('xxxxxx', 'NN'), ('thursday', 'NN'), ('night', 'NN'), ('will', 'MD'), ('be', 'VB'), ('ok', 'JJ'), ('with', 'IN'), ('me', 'PRP')], [('may', 'MD'), ('x', 'VB'), ('also', 'RB'), ('schedule', 'NN'), ('another', 'DT'), ('meeting', 'NN'), ('towards', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('january', 'NN')], [('thanks', 'NNS'), ('xxxxxxx', 'VBP'), ('xxxxxxx', 'NN'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('there', 'RB'), ('tomorrow', 'NN'), ('and', 'CC'), ('would', 'MD'), ('love', 'VB'), ('to', 'TO'), ('connect', 'VB')], [('monday', 'NN'), ('x', 'VBZ'), ('12pm', 'CD'), ('works', 'NNS'), ('fine', 'VBP'), ('for', 'IN'), ('me', 'PRP')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('talk', 'VB'), ('next', 'JJ'), ('tuesday', 'NN'), ('dec', 'VBD'), ('24', 'CD'), ('at', 'IN'), ('1130am', 'CD')], [('xxxx', 'NN'), ('to', 'TO'), ('see', 'VB'), ('you', 'PRP'), ('sometime', 'RB'), ('tomorrow', 'NN')], [('can', 'MD'), ('i', 'VB'), ('request', 'NN'), ('to', 'TO'), ('reschedule', 'VB'), ('thursday', 'JJ'), ('sales', 'NNS'), ('call', 'NN'), ('to', 'TO'), ('friday', 'VB')], [('friday', 'NN'), ('is', 'VBZ'), ('fine', 'JJ'), ('with', 'IN'), ('me', 'PRP')], [('this', 'DT'), ('is', 'VBZ'), ('confirmed', 'VBN'), ('for', 'IN'), ('yyyy', 'NN'), ('pm', 'NN'), ('today', 'NN'), ('ist', 'VBP'), ('yyyyy', 'NN'), ('am', 'VBP'), ('xxx', 'NN')], [('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('when', 'WRB'), ('i', 'JJ'), ('land', 'VBP'), ('in', 'IN'), ('xxxxxxxxx', 'NNP'), ('tomorrow', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('work', 'VB'), ('out', 'RP'), ('the', 'DT'), ('logistics', 'NNS')], [('thursday', 'JJ'), ('evening', 'NN'), ('anytime', 'NN'), ('after', 'IN'), ('five', 'CD'), ('works', 'NNS'), ('for', 'IN'), ('me', 'PRP')], [('i', 'NN'), ('can', 'MD'), ('schedule', 'VB'), ('this', 'DT'), ('interview', 'NN'), ('for', 'IN'), ('friday', 'JJ'), ('second', 'JJ'), ('half', 'NN'), ('3pm', 'CD'), ('or', 'CC'), ('4pm', 'CD'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('that', 'DT'), ('is', 'VBZ'), ('fine', 'JJ')], [('xxxx', 'NN'), ('is', 'VBZ'), ('currently', 'RB'), ('travelling', 'VBG'), ('and', 'CC'), ('he', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('available', 'JJ'), ('on', 'IN'), ('friday', 'JJ'), ('xx', 'NNP'), ('pacific', 'NN'), ('time', 'NN')], [('it', 'PRP'), ('turns', 'VBZ'), ('out', 'RP'), ('that', 'IN'), ('the', 'DT'), ('date', 'NN'), ('that', 'WDT'), ('works', 'VBZ'), ('best', 'RBS'), ('for', 'IN'), ('almost', 'RB'), ('everyone', 'NN'), ('is', 'VBZ'), ('friday', 'JJ'), ('january', 'JJ'), ('17th', 'NNS')], [('xxxxx', 'RB'), ('trying', 'VBG'), ('to', 'TO'), ('fix', 'VB'), ('today', 'NN'), ('at', 'IN'), ('yyyy', 'NN'), ('pm', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('fine', 'NN'), ('for', 'IN'), ('the', 'DT'), ('second', 'JJ'), ('round', 'NN'), ('of', 'IN'), ('meeting', 'VBG'), ('anytime', 'NN'), ('between', 'IN'), ('jan', 'NN'), ('20', 'CD'), ('2014', 'CD'), ('and', 'CC'), ('jan', '$'), ('25', 'CD')], [('resending', 'VBG'), ('the', 'DT'), ('invite', 'NN'), ('for', 'IN'), ('yyyy', 'NN'), ('am', 'VBP'), ('est', 'JJS'), ('xxxxxyyyy', 'NN'), ('pm', 'NN'), ('ist', 'NN'), ('today', 'NN'), ('for', 'IN'), ('us', 'PRP')], [('if', 'IN'), ('require', 'VBN'), ('we', 'PRP'), ('can', 'MD'), ('connect', 'VB'), ('tomorrow', 'NN'), ('2nd', 'CD'), ('half', 'NN'), ('for', 'IN'), ('discussion', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('available', 'JJ'), ('today', 'NN'), ('or', 'CC'), ('tomorrow', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('talk', 'VB')], [('see', 'VB'), ('you', 'PRP'), ('next', 'JJ'), ('wednesday', 'NN'), ('then', 'RB')], [('lets', 'NNS'), ('catch', 'VBP'), ('up', 'RP'), ('next', 'JJ'), ('wednesday', 'NN'), ('then', 'RB')], [('saturday', 'JJ'), ('morning', 'NN'), ('11', 'CD'), ('am', 'VBP'), ('is', 'VBZ'), ('fine', 'JJ'), ('for', 'IN'), ('me', 'PRP')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('sunday', 'JJ'), ('afternoon', 'NN'), ('say', 'VBP'), ('2pm', 'CD'), ('est', 'JJS')], [('looking', 'VBG'), ('forward', 'RB'), ('to', 'TO'), ('see', 'VB'), ('you', 'PRP'), ('all', 'DT'), ('tomorrow', 'NN')], [('anyways', 'NNS'), ('lets', 'VBZ'), ('talk', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('as', 'IN'), ('discussed', 'VBN'), ('call', 'NN'), ('confirmed', 'VBN'), ('for', 'IN'), ('today', 'NN'), ('yyyyy', 'CD'), ('pm', 'NN'), ('ist8yyy', 'NN'), ('am', 'VBP'), ('pst', 'NN'), ('friday', 'NN')], [('i', 'NN'), ('will', 'MD'), ('dial', 'VB'), ('in', 'IN'), ('at', 'IN'), ('yyyy', 'NN'), ('am', 'VBP'), ('xxx', 'VBN'), ('friday', 'NN')], [('please', 'VB'), ('try', 'VB'), ('to', 'TO'), ('connect', 'VB'), ('on', 'IN'), ('sunday', 'NN'), ('or', 'CC'), ('monday', 'NN'), ('in', 'IN'), ('xxxxxxx', 'NNP'), ('based', 'VBN'), ('on', 'IN'), ('your', 'PRP$'), ('convenience', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('connect', 'VB'), ('on', 'IN'), ('monday', 'NN')], [('shd', 'NN'), ('we', 'PRP'), ('debrief', 'VBP'), ('over', 'IN'), ('the', 'DT'), ('weekend', 'NN')], [('do', 'VBP'), ('you', 'PRP'), ('want', 'VB'), ('to', 'TO'), ('catch', 'VB'), ('up', 'RP'), ('next', 'JJ'), ('week', 'NN'), ('sometime', 'RB')], [('can', 'MD'), ('we', 'PRP'), ('touch', 'VB'), ('base', 'NN'), ('next', 'JJ'), ('week', 'NN')], [('xxxx', 'JJ'), ('xxx', 'NNP'), ('xxx', 'NN'), ('on', 'IN'), ('tuesday', 'JJ'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('looking', 'VBG'), ('forward', 'RB'), ('to', 'TO'), ('meet', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('monday', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('today', 'NN')], [('how', 'WRB'), ('does', 'VBZ'), ('your', 'PRP$'), ('availability', 'NN'), ('look', 'NN'), ('for', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('available', 'JJ'), ('montue', 'NN'), ('after', 'IN'), ('6pm', 'CD'), ('or', 'CC'), ('wed', 'VBD'), ('morningxxxxxxxxx', 'NNS'), ('day', 'NN')], [('monday', 'JJ'), ('second', 'JJ'), ('half', 'NN'), ('works', 'NNS'), ('for', 'IN'), ('me', 'PRP')], [('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('up', 'RP'), ('today', 'NN')], [('xxxxxxx', 'NNS'), ('see', 'VBP'), ('you', 'PRP'), ('tomorrow', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('at', 'IN'), ('11am', 'CD')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('this', 'DT'), ('location', 'NN'), ('is', 'VBZ'), ('fine', 'JJ'), ('for', 'IN'), ('meeting', 'VBG'), ('xxx', 'JJ'), ('tomorrow', 'NN'), ('at', 'IN'), ('4', 'CD'), ('pm', 'NN')], [('lets', 'NNS'), ('keep', 'VBP'), ('it', 'PRP'), ('after', 'IN'), ('10pm', 'CD')], [('can', 'MD'), ('we', 'PRP'), ('do', 'VB'), ('y', 'RB'), ('or', 'CC'), ('6pm', 'CD')], [('tomorrow', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('the', 'DT'), ('call', 'NN')], [('im', 'JJ'), ('meeting', 'NN'), ('girish', 'JJ'), ('tomorrow', 'NN'), ('afternoon', 'NN'), ('at', 'IN'), ('330', 'CD'), ('pm', 'NN'), ('so', 'RB'), ('will', 'MD'), ('meet', 'VB'), ('you', 'PRP'), ('immediately', 'RB'), ('after', 'IN'), ('that', 'DT'), ('in', 'IN'), ('your', 'PRP$'), ('office', 'NN')], [('y', 'NN'), ('xxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('for', 'IN'), ('tomorrow', 'NN')], [('meeting', 'NN'), ('is', 'VBZ'), ('tomorrow', 'NN'), ('morning', 'NN')], [('after', 'IN'), ('5pm', 'CD')], [('so', 'RB'), ('today', 'NN'), ('would', 'MD'), ('work', 'VB'), ('best', 'RB')], [('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('tomorrow', 'NN'), ('am', 'VBP'), ('xxx', 'NN')], [('will', 'MD'), ('see', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('thursday', 'NN')], [('lets', 'NNS'), ('talk', 'VBP'), ('tomorrow', 'NN'), ('around', 'RB'), ('11', 'CD'), ('am', 'VBP')], [('m', 'NN'), ('today', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('call', 'VB'), ('you', 'PRP'), ('in', 'IN'), ('wk2', 'NN'), ('jan', 'NN')], [('are', 'VBP'), ('we', 'PRP'), ('having', 'VBG'), ('the', 'DT'), ('call', 'NN'), ('today', 'NN')], [('ill', 'RB'), ('be', 'VB'), ('available', 'JJ'), ('tomorrow', 'NN'), ('1530', 'CD'), ('2200', 'CD'), ('your', 'PRP$'), ('time', 'NN')], [('is', 'VBZ'), ('not', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('schedule', 'VB'), ('for', 'IN'), ('tomorrow', 'NN'), ('at', 'IN'), ('1530', 'CD'), ('your', 'PRP$'), ('time', 'NN')], [('people', 'NNS'), ('working', 'VBG'), ('on', 'IN'), ('xxxx', 'JJ'), ('requirement', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('meet', 'VB'), ('me', 'PRP'), ('today', 'NN')], [('lets', 'NNS'), ('do', 'VBP'), ('it', 'PRP'), ('tonight', 'VBD'), ('or', 'CC'), ('tomorrow', 'NN')], [('lets', 'NNS'), ('meet', 'VBP'), ('at', 'IN'), ('11am', 'CD'), ('on', 'IN'), ('sunday', 'NN'), ('at', 'IN'), ('xxxxxxxxxx', 'NNP'), ('xxx', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('chat', 'VB'), ('in', 'IN'), ('next', 'JJ'), ('one', 'CD'), ('hour', 'NN'), ('time', 'NN')], [('lets', 'NNS'), ('chat', 'VBP'), ('tomorrow', 'NN'), ('afternoon', 'NN')], [('does', 'VBZ'), ('11pm', 'CD'), ('ist', 'NN'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('i', 'NN'), ('am', 'VBP'), ('available', 'JJ'), ('till', 'NN'), ('12pm', 'CD'), ('today', 'NN')], [('wanted', 'VBN'), ('to', 'TO'), ('call', 'VB'), ('you', 'PRP'), ('this', 'DT'), ('evening', 'VBG'), ('but', 'CC'), ('got', 'VBD'), ('late', 'RB'), ('so', 'RB'), ('will', 'MD'), ('call', 'VB'), ('tomorrow', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('this', 'DT'), ('call', 'NN'), ('today', 'NN'), ('or', 'CC'), ('on', 'IN'), ('monday', 'NN')], [('xxxxx', 'NN'), ('we', 'PRP'), ('meet', 'VBP'), ('tomorrow', 'NN'), ('evening', 'NN')], [('meet', 'NN'), ('you', 'PRP'), ('guys', 'VBP'), ('around', 'IN'), ('11am', 'CD')], [('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('mid', 'JJ'), ('next', 'JJ'), ('week', 'NN')], [('can', 'MD'), ('i', 'VB'), ('call', 'VB'), ('you', 'PRP'), ('today', 'NN')], [('any', 'DT'), ('time', 'NN'), ('monday', 'NN'), ('works', 'VBZ'), ('for', 'IN'), ('me', 'PRP'), ('too', 'RB')], [('how', 'WRB'), ('about', 'RB'), ('y', 'NN'), ('or', 'CC'), ('5pm', 'CD')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('the', 'DT'), ('call', 'NN'), ('tomorrow', 'NN'), ('morning', 'NN')], [('would', 'MD'), ('love', 'VB'), ('to', 'TO'), ('catch', 'VB'), ('up', 'RP'), ('on', 'IN'), ('phone', 'NN'), ('or', 'CC'), ('skype', 'VB'), ('the', 'DT'), ('coming', 'VBG'), ('week', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('2nd', 'CD'), ('half', 'NN'), ('of', 'IN'), ('january', 'JJ')], [('xxxxx', 'NN'), ('we', 'PRP'), ('meet', 'VBP'), ('on', 'IN'), ('tue', 'NNS'), ('morning', 'NN'), ('instead', 'RB'), ('of', 'IN'), ('tom', 'NN')], [('xxxxxxxxx', 'JJ'), ('ok', 'JJ'), ('lets', 'NNS'), ('do', 'VBP'), ('730am', 'CD'), ('xxx', 'VB'), ('my', 'PRP$'), ('time', 'NN'), ('tomorrow', 'NN'), ('morning', 'NN'), ('morning', 'NN'), ('of', 'IN'), ('monday', 'NN'), ('dec', 'NN'), ('30', 'CD')], [('will', 'MD'), ('try', 'VB'), ('to', 'TO'), ('talk', 'VB'), ('to', 'TO'), ('you', 'PRP'), ('people', 'NNS'), ('sometime', 'RB'), ('today', 'NN')], [('how', 'WRB'), ('about', 'RB'), ('today', 'NN'), ('or', 'CC'), ('tomorrow', 'NN'), ('4pm', 'CD')], [('does', 'VBZ'), ('10pm', 'CD'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('at', 'IN'), ('3', 'CD'), ('pm', 'NN'), ('on', 'IN'), ('friday', 'NN')], [('how', 'WRB'), ('about', 'RB'), ('tomorrow', 'NN'), ('or', 'CC'), ('day', 'NN'), ('after', 'IN'), ('tomorrow', 'NN')], [('yes', 'NNS'), ('im', 'VBP'), ('back', 'RB'), ('and', 'CC'), ('can', 'MD'), ('see', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN')], [('tomorrow', 'NN'), ('at', 'IN'), ('1100', 'CD'), ('am', 'VBP')], [('talk', 'NN'), ('to', 'TO'), ('you', 'PRP'), ('on', 'IN'), ('thursday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('chat', 'VB'), ('today', 'NN')], [('i', 'NNS'), ('have', 'VBP'), ('copied', 'VBN'), ('xxxxxx', 'NN'), ('in', 'IN'), ('this', 'DT'), ('email', 'NN'), ('who', 'WP'), ('will', 'MD'), ('be', 'VB'), ('meeting', 'VBG'), ('you', 'PRP'), ('and', 'CC'), ('your', 'PRP$'), ('team', 'NN'), ('tomorrow', 'NN'), ('for', 'IN'), ('the', 'DT'), ('technical', 'JJ'), ('discussion', 'NN')], [('xxxxxxx', 'NN'), ('and', 'CC'), ('i', 'NN'), ('can', 'MD'), ('meet', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN'), ('tuesday', 'IN'), ('morning', 'NN'), ('1000', 'CD'), ('am', 'VBP')], [('if', 'IN'), ('not', 'RB'), ('possible', 'JJ'), ('lets', 'NNS'), ('try', 'VBP'), ('the', 'DT'), ('next', 'JJ'), ('day', 'NN')], [('feedback', 'NN'), ('meeting', 'NN'), ('tomorrow', 'NN'), ('please', 'NN'), ('forwarded', 'VBD'), ('message', 'NN'), ('from', 'IN'), ('to', 'TO'), ('xxxxxxxxxxxxxxxxxxx', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('tomorrow', 'NN'), ('early', 'JJ'), ('afternoon', 'NN'), ('say', 'VBP'), ('around', 'IN'), ('1230', 'CD'), ('pm', 'NN')], [('do', 'VBP'), ('you', 'PRP'), ('have', 'VB'), ('15', 'CD'), ('minutes', 'NNS'), ('available', 'JJ'), ('at', 'IN'), ('145pm', 'CD'), ('or', 'CC'), ('345pm', 'CD'), ('this', 'DT'), ('thursday', 'NN'), ('xxxx', 'VBZ'), ('2nd', 'CD')], [('happy', 'JJ'), ('to', 'TO'), ('talk', 'VB'), ('either', 'DT'), ('tomorrow', 'NN'), ('midday', 'NN'), ('or', 'CC'), ('sometime', 'JJ'), ('thu', 'NN'), ('or', 'CC'), ('fri', 'NN')], [('yes', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('and', 'CC'), ('discuss', 'VB'), ('but', 'CC'), ('can', 'MD'), ('we', 'PRP'), ('do', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN'), ('wednesday', 'NN')], [('otherwise', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('next', 'JJ'), ('monday', 'NN'), ('6th', 'CD'), ('jan', 'NN')], [('lets', 'NNS'), ('definitely', 'RB'), ('catch', 'VB'), ('up', 'RP'), ('in', 'IN'), ('january', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('discuss', 'VB'), ('them', 'PRP'), ('today', 'NN')], [('i', 'NN'), ('would', 'MD'), ('love', 'VB'), ('to', 'TO'), ('catch', 'VB'), ('up', 'RP'), ('on', 'IN'), ('wednesday', 'NN'), ('or', 'CC'), ('thursday', 'NN'), ('if', 'IN'), ('thats', 'NNS'), ('ok', 'VBP')], [('prabakar', 'NN'), ('i', 'NN'), ('spoke', 'VBD'), ('to', 'TO'), ('xxxxx', 'VB'), ('and', 'CC'), ('we', 'PRP'), ('are', 'VBP'), ('meeting', 'VBG'), ('at', 'IN'), ('yyy', 'NN'), ('tomorrow', 'NN'), ('morning', 'NN'), ('at', 'IN'), ('xxxxs', 'NNP'), ('coffee', 'NN')], [('speak', 'NN'), ('to', 'TO'), ('you', 'PRP'), ('tomorrow', 'NN')], [('how', 'WRB'), ('about', 'RB'), ('thursday', 'JJ'), ('or', 'CC'), ('friday', 'JJ'), ('xxx', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('today', 'NN'), ('in', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('couple', 'NN'), ('of', 'IN'), ('hrs', 'NN')], [('else', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('schedule', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN'), ('whenever', 'WRB'), ('it', 'PRP'), ('suits', 'NNS'), ('for', 'IN'), ('you', 'PRP')], [('m', 'NN'), ('today', 'NN'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('would', 'MD'), ('the', 'DT'), ('2nd', 'CD'), ('jan', 'NN'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('xxxxxxx', 'JJ'), ('lets', 'NNS'), ('see', 'VBP'), ('to', 'TO'), ('that', 'DT'), ('we', 'PRP'), ('catch', 'VBP'), ('up', 'RP'), ('tomorrow', 'NN'), ('evening', 'VBG'), ('for', 'IN'), ('integration', 'NN'), ('for', 'IN'), ('sure', 'JJ')], [('how', 'WRB'), ('about', 'IN'), ('lunchdinner', 'NN'), ('today', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('guys', 'VB'), ('on', 'IN'), ('monday', 'NN')], [('also', 'RB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('this', 'DT'), ('week', 'NN')], [('lets', 'NNS'), ('do', 'VBP'), ('one', 'CD'), ('thing', 'NN'), ('lets', 'VBZ'), ('schedule', 'VBP'), ('it', 'PRP'), ('for', 'IN'), ('tomorrow', 'NN'), ('4p', 'CD')], [('i', 'VB'), ('shall', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('weekly', 'JJ'), ('sales', 'NNS'), ('call', 'VBP'), ('tomorrow', 'NN'), ('2nd', 'CD'), ('jan', 'NN'), ('at', 'IN'), ('10am', 'CD')], [('bhai', 'NN'), ('1030', 'CD'), ('am', 'VBP'), ('hai', 'JJ'), ('ki', 'NN'), ('4pm', 'CD')], [('if', 'IN'), ('everyone', 'NN'), ('is', 'VBZ'), ('ok', 'JJ'), ('let', 'VB'), ('me', 'PRP'), ('book', 'NN'), ('the', 'DT'), ('xxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('office', 'NN'), ('room', 'NN'), ('for', 'IN'), ('friday', 'JJ'), ('morning', 'NN')], [('lets', 'NNS'), ('do', 'VBP'), ('that', 'IN'), ('first', 'JJ'), ('thing', 'NN'), ('tomorrow', 'NN')], [('friday', 'JJ'), ('morning', 'NN'), ('at', 'IN'), ('xxx', 'NNP'), ('foundation', 'NN'), ('office', 'NN'), ('at', 'IN'), ('y', 'NN'), ('then', 'RB')], [('say', 'VB'), ('around', 'IN'), ('11am', 'CD')], [('lets', 'NNS'), ('talk', 'VBP'), ('sometime', 'RB'), ('on', 'IN'), ('monday', 'NN')], [('so', 'RB'), ('if', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('shifting', 'VBG'), ('it', 'PRP'), ('let', 'VB'), ('us', 'PRP'), ('have', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN'), ('at', 'IN'), ('yyyyy', 'NN'), ('am', 'VBP')], [('we', 'PRP'), ('could', 'MD'), ('speak', 'VB'), ('tomorrow', 'NN')], [('let', 'VB'), ('us', 'PRP'), ('have', 'VB'), ('this', 'DT'), ('meeting', 'NN'), ('at', 'IN'), ('1130am', 'CD'), ('tomorrow', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('move', 'VB'), ('js', 'NNS'), ('automation', 'RB'), ('related', 'JJ'), ('meeting', 'NN'), ('to', 'TO'), ('tomorrow', 'NN'), ('2pm', 'CD'), ('which', 'WDT'), ('is', 'VBZ'), ('scheduled', 'VBN'), ('today', 'NN'), ('at', 'IN'), ('5pm', 'CD')], [('tuesday', 'RB'), ('712014', 'CD'), ('at', 'IN'), ('yyyy', 'NN'), ('pm', 'NN')], [('lets', 'NNS'), ('catch', 'VBP'), ('up', 'RP'), ('tomorrow', 'NN'), ('or', 'CC'), ('on', 'IN'), ('monday', 'NN')], [('lets', 'NNS'), ('do', 'VBP'), ('that11am', 'VB')], [('i', 'RB'), ('wanted', 'VBD'), ('to', 'TO'), ('invite', 'VB'), ('you', 'PRP'), ('for', 'IN'), ('our', 'PRP$'), ('new', 'JJ'), ('year', 'NN'), ('party', 'NN'), ('which', 'WDT'), ('is', 'VBZ'), ('scheduled', 'VBN'), ('for', 'IN'), ('tomorrow', 'NN')], [('5pm', 'CD'), ('today', 'NN'), ('works', 'NNS')], [('as', 'IN'), ('discussed', 'VBN'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('available', 'JJ'), ('tomorrow', 'NN'), ('for', 'IN'), ('the', 'DT'), ('call', 'NN')], [('lets', 'NNS'), ('do', 'VBP'), ('tomorrow', 'NN'), ('afternoon', 'NN')], [('maybe', 'RB'), ('around', 'IN'), ('1pm', 'CD'), ('your', 'PRP$'), ('time', 'NN')], [('1030am', 'CD'), ('tomorrow', 'NN'), ('could', 'MD'), ('work', 'VB'), ('well', 'RB')], [('we', 'PRP'), ('will', 'MD'), ('discuss', 'VB'), ('tomorrow', 'NN'), ('in', 'IN'), ('office', 'NN')], [('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('having', 'VBG'), ('sometime', 'RB'), ('to', 'TO'), ('meet', 'VB'), ('on', 'IN'), ('todayfriday', 'NN')], [('resume', 'VB'), ('mtg', 'NNS'), ('next', 'IN'), ('week', 'NN')], [('what', 'WP'), ('does', 'VBZ'), ('your', 'PRP$'), ('calendar', 'NN'), ('look', 'NN'), ('like', 'IN'), ('towards', 'NNS'), ('the', 'DT'), ('later', 'JJ'), ('part', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('pls', 'NN'), ('let', 'VBD'), ('us', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('you', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('today', 'NN'), ('tomorrow', 'NN')], [('if', 'IN'), ('possible', 'JJ'), ('well', 'RB'), ('meet', 'RB'), ('sunday', 'JJ')], [('xxx', 'NN'), ('was', 'VBD'), ('wondering', 'VBG'), ('if', 'IN'), ('monday', 'NN'), ('between', 'IN'), ('25pm', 'CD'), ('could', 'MD'), ('work', 'VB'), ('for', 'IN'), ('xxxxx', 'NN')], [('would', 'MD'), ('630pm', 'CD'), ('or', 'CC'), ('7pm', 'CD'), ('ist', 'NN'), ('on', 'IN'), ('tuesday', 'JJ'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('how', 'WRB'), ('does', 'VBZ'), ('tomorrow', 'NN'), ('morning', 'NN'), ('at', 'IN'), ('1000', 'CD'), ('or', 'CC'), ('1100', 'CD'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP'), ('in', 'IN'), ('xxxxx', 'CD'), ('xxxxx', 'NNS')], [('will', 'MD'), ('late', 'VB'), ('morning', 'NN'), ('or', 'CC'), ('afternoonbe', 'NN'), ('ok', 'NNS'), ('today', 'NN')], [('saturday', 'JJ'), ('night', 'NN'), ('is', 'VBZ'), ('better', 'JJR'), ('than', 'IN'), ('tonight', 'NN')], [('6pm', 'CD')], [('lets', 'NNS'), ('do', 'VBP'), ('monday', 'RB'), ('eve', 'VB')], [('lets', 'NNS'), ('push', 'VBZ'), ('out', 'RP'), ('to', 'TO'), ('postlunch', 'VB'), ('say', 'VB'), ('2pm', 'CD')], [('my', 'PRP$'), ('calendar', 'NN'), ('is', 'VBZ'), ('blocked', 'VBN'), ('till', 'JJ'), ('monday', 'NNS'), ('so', 'IN'), ('how', 'WRB'), ('about', 'RB'), ('7th', 'CD'), ('jan', 'NN'), ('tuesday', 'NN'), ('anytime', 'NN'), ('between', 'IN'), ('46pm', 'CD')], [('talk', 'NN'), ('tomorrow', 'NN')], [('sorry', 'NN'), ('does', 'VBZ'), ('the', 'DT'), ('5pm', 'CD'), ('slot', 'NN'), ('or', 'CC'), ('the', 'DT'), ('8am', 'CD'), ('slot', 'NN'), ('works', 'NNS'), ('please', 'VB')], [('xxxx', 'JJ'), ('anytime', 'RB'), ('free', 'JJ'), ('tomorrow', 'NN')], [('11th', 'CD'), ('jan', 'NN'), ('is', 'VBZ'), ('ok', 'JJ'), ('with', 'IN'), ('me', 'PRP'), ('xxxxx', 'VBP')], [('sometime', 'RB'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('works', 'NNS')], [('monday', 'NN')], [('would', 'MD'), ('mon', 'VB'), ('around', 'IN'), ('noon', 'JJ'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('at', 'IN'), ('4pm', 'CD')], [('do', 'VBP'), ('we', 'PRP'), ('have', 'VB'), ('the', 'DT'), ('call', 'NN'), ('today', 'NN')], [('preferably', 'RB'), ('tuesday', 'NN')], [('hey', 'JJ'), ('lets', 'NNS'), ('sit', 'VBP'), ('and', 'CC'), ('discuss', 'VBP'), ('on', 'IN'), ('monday', 'NN')], [('xxxx', 'NNS'), ('so', 'RB'), ('sunday', 'JJ'), ('morning', 'NN'), ('meeting', 'NN'), ('plan', 'NN'), ('is', 'VBZ'), ('guaranteed', 'VBN')], [('both', 'DT'), ('monday', 'NN'), ('and', 'CC'), ('wednesday', 'JJ'), ('work', 'NN'), ('for', 'IN'), ('me', 'PRP')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('day', 'NN'), ('works', 'VBZ'), ('best', 'RBS'), ('next', 'JJ'), ('week', 'NN'), ('will', 'MD'), ('swing', 'VB'), ('over', 'IN'), ('to', 'TO'), ('your', 'PRP$'), ('office', 'NN')], [('27th', 'CD'), ('january', 'JJ'), ('it', 'PRP'), ('is', 'VBZ'), ('then', 'RB')], [('we', 'PRP'), ('can', 'MD'), ('plan', 'VB'), ('to', 'TO'), ('meet', 'VB'), ('next', 'JJ'), ('sunday', 'NN'), ('maybe', 'RB')], [('does', 'VBZ'), ('wednesday', 'JJ'), ('work', 'VB')], [('can', 'MD'), ('me', 'PRP'), ('move', 'VB'), ('this', 'DT'), ('to', 'TO'), ('3pm', 'CD')], [('see', 'VB'), ('you', 'PRP'), ('guys', 'NNS'), ('at', 'IN'), ('yy', 'NN'), ('yy', 'NN'), ('am', 'VBP'), ('tomorrow', 'NN')], [('and', 'CC'), ('xxxxxx', 'VB'), ('when', 'WRB'), ('can', 'MD'), ('we', 'PRP'), ('chat', 'VB'), ('today', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('at', 'IN'), ('1000', 'CD'), ('tomorrow', 'NN'), ('monday', 'NN'), ('at', 'IN'), ('the', 'DT'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('on', 'IN'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxx', 'NN')], [('lets', 'NNS'), ('meet', 'VBP'), ('tomorrow', 'NN')], [('our', 'PRP$'), ('qbr', 'NN'), ('is', 'VBZ'), ('monday', 'JJ'), ('and', 'CC'), ('tuesday', 'JJ'), ('maybe', 'RB'), ('best', 'JJS'), ('before', 'IN'), ('xxx', 'JJ'), ('monday', 'NN'), ('or', 'CC'), ('after', 'IN'), ('y', 'NN'), ('in', 'IN'), ('tuesday', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('to', 'TO'), ('touch', 'VB'), ('base', 'NN'), ('on', 'IN'), ('this', 'DT'), ('coming', 'VBG'), ('sunday', 'JJ'), ('say', 'VBP'), ('in', 'IN'), ('the', 'DT'), ('afternoon', 'NN')], [('call', 'VB'), ('me', 'PRP'), ('today', 'NN'), ('at', 'IN'), ('about', 'IN'), ('yyy', 'NN'), ('yyyyyyyyyyyyyyyy', 'NN')], [('hi', 'NN'), ('xxxxxx', 'NN'), ('is', 'VBZ'), ('it', 'PRP'), ('cool', 'JJ'), ('if', 'IN'), ('i', 'JJ'), ('come', 'VBP'), ('by', 'IN'), ('around', 'IN'), ('y', 'NNS'), ('today', 'NN')], [('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('later', 'RB'), ('in', 'IN'), ('the', 'DT'), ('day', 'NN'), ('today', 'NN')], [('i', 'NN'), ('would', 'MD'), ('be', 'VB'), ('delighted', 'VBN'), ('to', 'TO'), ('connect', 'VB'), ('on', 'IN'), ('monday', 'NN'), ('tomorrow', 'NN'), ('at', 'IN'), ('930pm', 'CD'), ('pt', 'NN')], [('does', 'VBZ'), ('thursday', 'NN'), ('or', 'CC'), ('friday', 'NN'), ('after', 'IN'), ('7pm', 'CD'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('let', 'VB'), ('us', 'PRP'), ('brainstorm', 'VB'), ('further', 'RB'), ('later', 'RB'), ('this', 'DT'), ('week', 'NN'), ('to', 'TO'), ('arrive', 'VB'), ('on', 'IN'), ('scope', 'NN'), ('of', 'IN'), ('the', 'DT'), ('test', 'NN'), ('case', 'NN'), ('document', 'NN'), ('and', 'CC'), ('work', 'NN'), ('on', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('thiscoming', 'NN'), ('week', 'NN')], [('let', 'VB'), ('us', 'PRP'), ('brainstorm', 'VB'), ('further', 'RB'), ('later', 'RB'), ('this', 'DT'), ('week', 'NN'), ('to', 'TO'), ('arrive', 'VB'), ('on', 'IN'), ('the', 'DT'), ('scope', 'NN'), ('of', 'IN'), ('the', 'DT'), ('test', 'NN'), ('case', 'NN'), ('document', 'NN'), ('and', 'CC'), ('work', 'NN'), ('on', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('thiscoming', 'NN'), ('week', 'NN')], [('tomorrow', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('unfold', 'JJ'), ('call', 'NN'), ('at', 'IN'), ('1100', 'CD'), ('i', 'NN'), ('will', 'MD'), ('expect', 'VB'), ('you', 'PRP'), ('for', 'IN'), ('the', 'DT'), ('call', 'NN'), ('at', 'IN'), ('office', 'NN')], [('as', 'IN'), ('for', 'IN'), ('the', 'DT'), ('missing', 'VBG'), ('details', 'NNS'), ('the', 'DT'), ('only', 'JJ'), ('relevant', 'JJ'), ('information', 'NN'), ('needed', 'VBN'), ('seems', 'VBZ'), ('to', 'TO'), ('the', 'DT'), ('date', 'NN'), ('of', 'IN'), ('the', 'DT'), ('board', 'NN'), ('meeting', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('fix', 'VB'), ('it', 'PRP'), ('for', 'IN'), ('tomorrow', 'NN'), ('jan', 'NN'), ('7', 'CD')], [('at', 'IN'), ('what', 'WP'), ('time', 'NN'), ('would', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('free', 'JJ'), ('tomorrow', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('available', 'JJ'), ('from', 'IN'), ('2', 'CD'), ('5pm', 'CD'), ('pst', 'NN'), ('on', 'IN'), ('all', 'DT'), ('days', 'NNS')], [('may', 'MD'), ('i', 'VB'), ('instead', 'RB'), ('suggest', 'JJ'), ('wednesday', 'NN'), ('yyyy', 'NN'), ('at', 'IN'), ('11am', 'CD')], [('see', 'VB'), ('you', 'PRP'), ('next', 'JJ'), ('saturday', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('availability', 'NN'), ('this', 'DT'), ('week', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('youre', 'NN'), ('available', 'JJ'), ('for', 'IN'), ('the', 'DT'), ('call', 'NN'), ('tomorrow', 'NN'), ('morning', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('this', 'DT'), ('thursday', 'JJ'), ('yyy', 'NN'), ('at', 'IN'), ('1pm', 'CD'), ('in', 'IN'), ('xxxxxxxx', 'NN')], [('confirmed', 'VBN'), ('for', 'IN'), ('monday', 'NN'), ('yyyy', 'NN'), ('at', 'IN'), ('330pm', 'CD'), ('here', 'RB')], [('confirmed', 'VBN'), ('for', 'IN'), ('this', 'DT'), ('thursday', 'JJ'), ('yyy', 'NN'), ('at', 'IN'), ('1pm', 'CD'), ('here', 'RB')], [('would', 'MD'), ('fri', 'VB'), ('1130am', 'CD'), ('xxx', 'JJ'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('available', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('in', 'IN'), ('the', 'DT'), ('morning', 'NN'), ('tomorrow', 'NN'), ('11', 'CD'), ('am', 'VBP')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('yy', 'JJ'), ('1pm', 'CD'), ('on', 'IN'), ('friday', 'NN'), ('would', 'MD'), ('work', 'VB'), ('for', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('meet', 'VB'), ('xxxxxx', 'NN'), ('at', 'IN'), ('our', 'PRP$'), ('office', 'NN')], [('the', 'DT'), ('meeting', 'NN'), ('is', 'VBZ'), ('confirmed', 'VBN'), ('for', 'IN'), ('thursday', 'NN'), ('at', 'IN'), ('xxx', 'NN')], [('confirmed', 'VBN'), ('for', 'IN'), ('tomorrow', 'NN'), ('morning', 'NN'), ('at', 'IN'), ('930am', 'CD'), ('at', 'IN'), ('our', 'PRP$'), ('usual', 'JJ'), ('hangout', 'NN')], [('lets', 'NNS'), ('discuss', 'VBP'), ('tomorrow', 'NN'), ('and', 'CC'), ('finalize', 'VB')], [('as', 'IN'), ('discussed', 'VBN'), ('lets', 'NNS'), ('catch', 'VBP'), ('up', 'RP'), ('tomorrow', 'NN'), ('at', 'IN'), ('0700', 'CD'), ('pst', 'NN'), ('which', 'WDT'), ('is', 'VBZ'), ('2030', 'CD'), ('ist', 'NN')], [('any', 'DT'), ('time', 'NN'), ('after', 'IN'), ('7', 'CD'), ('pm', 'NN'), ('tomorrow', 'NN'), ('is', 'VBZ'), ('fine', 'JJ'), ('for', 'IN'), ('me', 'PRP')], [('please', 'NN'), ('have', 'VB'), ('xxxxxx', 'VBN'), ('available', 'JJ'), ('in', 'IN'), ('our', 'PRP$'), ('office', 'NN'), ('tomorrow', 'NN'), ('if', 'IN'), ('it', 'PRP'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP')], [('lets', 'NNS'), ('discuss', 'VBP'), ('tomorrow', 'NN'), ('in', 'IN'), ('person', 'NN')], [('how', 'WRB'), ('about', 'RB'), ('tomorrow', 'NN'), ('2pm', 'CD')], [('friday', 'NN'), ('at', 'IN'), ('1130', 'CD'), ('am', 'VBP'), ('xxx', 'NN'), ('is', 'VBZ'), ('certainly', 'RB'), ('convenient', 'NN'), ('for', 'IN'), ('us', 'PRP')], [('monday', 'JJ'), ('january', 'JJ'), ('13th', 'CD'), ('at', 'IN'), ('730am', 'CD'), ('ist', 'NN'), ('works', 'NNS'), ('for', 'IN'), ('us', 'PRP')], [('friday', 'RB'), ('1012014', 'CD'), ('yyy', 'NN'), ('pm', 'NN'), ('works', 'VBZ'), ('perfect', 'JJ')], [('amar', 'NN'), ('pls', 'NN'), ('set', 'VBN'), ('up', 'RP'), ('meeting', 'VBG'), ('maybe', 'RB'), ('first', 'JJ'), ('half', 'NN'), ('of', 'IN'), ('friday', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('talk', 'VB'), ('and', 'CC'), ('then', 'RB'), ('give', 'VB'), ('you', 'PRP'), ('call', 'VB'), ('today', 'NN'), ('if', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('okay', 'JJ'), ('around', 'IN'), ('yyyy', 'JJ'), ('pm', 'NN'), ('or', 'CC'), ('5', 'CD'), ('pm', 'NN')], [('tomorrow', 'NN'), ('anytime', 'NN'), ('before', 'IN'), ('4p', 'CD')], [('can', 'MD'), ('i', 'VB'), ('come', 'VB'), ('and', 'CC'), ('meet', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN'), ('at', 'IN'), ('10', 'CD'), ('am', 'VBP')], [('we', 'PRP'), ('can', 'MD'), ('talk', 'VB'), ('tomorrow', 'NN'), ('between', 'IN'), ('between', 'IN'), ('5pm', 'CD'), ('and', 'CC'), ('7pm', 'CD'), ('if', 'IN'), ('that', 'DT'), ('works', 'VBZ')], [('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('on', 'IN'), ('tuesday', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('if', 'IN'), ('it', 'PRP'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP')], [('do', 'VBP'), ('we', 'PRP'), ('need', 'VB'), ('to', 'TO'), ('schedule', 'VB'), ('it', 'PRP'), ('for', 'IN'), ('tomorrow', 'NN')], [('i', 'NN'), ('will', 'MD'), ('sync', 'VB'), ('up', 'RP'), ('with', 'IN'), ('you', 'PRP'), ('on', 'IN'), ('tuesday', 'NN')], [('else', 'RB'), ('if', 'IN'), ('its', 'PRP$'), ('not', 'RB'), ('possible', 'JJ'), ('we', 'PRP'), ('will', 'MD'), ('jointly', 'RB'), ('have', 'VB'), ('the', 'DT'), ('meeting', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('xxxxxxxx', 'NN'), ('if', 'IN'), ('possible', 'JJ'), ('please', 'NN'), ('speak', 'NN'), ('to', 'TO'), ('xxxxxx', 'VB'), ('tomorrow', 'NN'), ('or', 'CC'), ('friday', 'NN'), ('as', 'IN'), ('i', 'NN'), ('have', 'VBP'), ('to', 'TO'), ('go', 'VB'), ('to', 'TO'), ('xxxxx', 'VB')], [('tuesday', 'RB'), ('14th', 'CD'), ('jan', 'NNS'), ('10am', 'CD'), ('looks', 'NNS'), ('fine', 'JJ')], [('im', 'JJ'), ('thinking', 'NN'), ('of', 'IN'), ('wed', 'VBN'), ('xxxxxxx', 'NN')], [('sure', 'JJ'), ('lets', 'VBZ'), ('touch', 'JJ'), ('base', 'NN'), ('next', 'JJ'), ('week', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('shoot', 'VB'), ('for', 'IN'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('maybe', 'RB'), ('mon', 'VBD'), ('or', 'CC'), ('tue', 'VB'), ('evening', 'VBG'), ('530', 'CD')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('ifwhen', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('tonight', 'JJ'), ('wed', 'VBN'), ('evening', 'NN'), ('pst', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('connect', 'VB'), ('around', 'RP'), ('11am', 'CD'), ('or', 'CC'), ('around', 'RB'), ('3pm', 'CD')], [('since', 'IN'), ('this', 'DT'), ('week', 'NN'), ('start', 'NN'), ('is', 'VBZ'), ('holidays', 'NNS'), ('can', 'MD'), ('we', 'PRP'), ('meetup', 'VB'), ('on', 'IN'), ('friday', 'JJ'), ('17th', 'CD')], [('preferable', 'JJ'), ('time', 'NN'), ('to', 'TO'), ('call', 'VB'), ('before', 'IN'), ('5pm', 'CD'), ('or', 'CC'), ('after', 'IN'), ('yyyypm', 'NN')], [('would', 'MD'), ('love', 'VB'), ('to', 'TO'), ('get', 'VB'), ('together', 'RB'), ('the', 'DT'), ('week', 'NN'), ('of', 'IN'), ('20th', 'CD'), ('jan', 'NN'), ('and', 'CC'), ('catch', 'VB'), ('up', 'RP')], [('do', 'VBP'), ('you', 'PRP'), ('want', 'VB'), ('to', 'TO'), ('catch', 'VB'), ('up', 'RP'), ('tomorrow', 'NN'), ('or', 'CC'), ('this', 'DT'), ('weekend', 'NN')], [('xxxxxxx', 'NNS'), ('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('tomorrow', 'NN'), ('and', 'CC'), ('i', 'NN'), ('can', 'MD'), ('hand', 'NN'), ('over', 'IN'), ('the', 'DT'), ('forms', 'NNS'), ('to', 'TO'), ('you', 'PRP')], [('today', 'NN')], [('hi', 'NN'), ('xxxxxx', 'NN'), ('could', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('next', 'JJ'), ('wednesday', 'NN'), ('jan', 'VBZ'), ('15', 'CD'), ('at', 'IN'), ('10am', 'CD')], [('hi', 'NN'), ('xxxxx', 'NN'), ('could', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('next', 'JJ'), ('wednesday', 'NN'), ('jan', 'VBZ'), ('15', 'CD'), ('at', 'IN'), ('11am', 'CD'), ('if', 'IN'), ('it', 'PRP'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP')], [('hi', 'NN'), ('xxxx', 'NN'), ('could', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('next', 'JJ'), ('wednesday', 'NN'), ('jan', 'VBZ'), ('15', 'CD'), ('at', 'IN'), ('0230pm', 'CD'), ('if', 'IN'), ('it', 'PRP'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP')], [('xxxx', 'NN'), ('that', 'WDT'), ('is', 'VBZ'), ('alright', 'JJ'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('touch', 'VB'), ('base', 'NN'), ('again', 'RB'), ('in', 'IN'), ('mid', 'NN'), ('feb', 'NN')], [('lets', 'NNS'), ('talk', 'VBP'), ('tomorrow', 'NN'), ('on', 'IN'), ('the', 'DT'), ('phone', 'NN')], [('sure', 'JJ'), ('tue', 'NN'), ('evening', 'VBG'), ('it', 'PRP'), ('is', 'VBZ'), ('then', 'RB')], [('maybe', 'RB'), ('we', 'PRP'), ('should', 'MD'), ('on', 'IN'), ('the', 'DT'), ('skype', 'NN'), ('and', 'CC'), ('elaborate', 'VB'), ('more', 'JJR'), ('on', 'IN'), ('monday', 'NN'), ('morning', 'NN'), ('930', 'CD'), ('am', 'VBP'), ('xxxxxx', 'JJ'), ('time', 'NN'), ('what', 'WP'), ('do', 'VBP'), ('you', 'PRP'), ('think', 'VB')], [('xxxxxxxxx', 'JJ'), ('xxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('please', 'NN'), ('meet', 'VB'), ('me', 'PRP'), ('tomorrow', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('available', 'JJ'), ('on', 'IN'), ('monday', 'NN'), ('for', 'IN'), ('the', 'DT'), ('call', 'NN'), ('at', 'IN'), ('630', 'CD'), ('pm', 'NN'), ('xxx', 'NN')], [('tj', 'NN'), ('xxxxx', 'NN'), ('will', 'MD'), ('invoice', 'VB'), ('customer', 'NN'), ('and', 'CC'), ('xx', 'NNP'), ('xxxxx', 'NNP'), ('will', 'MD'), ('invoice', 'VB'), ('xx', 'NNP'), ('xxxxx', 'NNP'), ('i', 'NN'), ('am', 'VBP'), ('available', 'JJ'), ('on', 'IN'), ('monday', 'NN'), ('for', 'IN'), ('the', 'DT'), ('call', 'NN'), ('at', 'IN'), ('630', 'CD'), ('pm', 'NN'), ('xxx', 'NN')], [('perhaps', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('another', 'DT'), ('meeting', 'NN'), ('next', 'JJ'), ('week', 'NN'), ('just', 'RB'), ('to', 'TO'), ('take', 'VB'), ('stock', 'NN'), ('and', 'CC'), ('level', 'NN'), ('set', 'NN')], [('also', 'RB'), ('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('meeting', 'VBG'), ('ujwal', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('or', 'CC'), ('later', 'RB')], [('thursday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('2pm', 'CD'), ('would', 'MD'), ('be', 'VB'), ('perfect', 'JJ')], [('my', 'PRP$'), ('schedule', 'NN'), ('is', 'VBZ'), ('flexible', 'JJ'), ('this', 'DT'), ('week', 'NN'), ('and', 'CC'), ('next', 'JJ'), ('and', 'CC'), ('can', 'MD'), ('meet', 'VB'), ('you', 'PRP'), ('anywhere', 'RB'), ('in', 'IN'), ('the', 'DT'), ('xxx', 'NN'), ('xxxx', 'NN')], [('sure', 'JJ'), ('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('today', 'NN'), ('around', 'IN'), ('2pm', 'CD')], [('can', 'MD'), ('we', 'PRP'), ('still', 'RB'), ('meet', 'VB'), ('up', 'RP'), ('tomorrow', 'NN')], [('i', 'NN'), ('can', 'MD'), ('come', 'VB'), ('down', 'RP'), ('around', 'RB'), ('y', 'RB'), ('to', 'TO'), ('discuss', 'VB'), ('the', 'DT'), ('details', 'NNS'), ('if', 'IN'), ('youre', 'NN'), ('free', 'VBP'), ('today', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('tomorrow', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('in', 'IN'), ('detail', 'NN'), ('at', 'IN'), ('your', 'PRP$'), ('office', 'NN')], [('meeting', 'NN'), ('has', 'VBZ'), ('been', 'VBN'), ('set', 'VBN'), ('up', 'RP'), ('for', 'IN'), ('the', 'DT'), ('20th', 'CD'), ('of', 'IN'), ('jan', 'NN'), ('at', 'IN'), ('noon', 'NN')], [('let', 'VB'), ('us', 'PRP'), ('then', 'RB'), ('connect', 'VBP'), ('on', 'IN'), ('wednesday', 'NN')], [('xxxxx', 'NN'), ('we', 'PRP'), ('meet', 'VBP'), ('this', 'DT'), ('designer', 'NN'), ('of', 'IN'), ('wwwwarmovenin', 'NN'), ('next', 'IN'), ('thursday', 'NN')], [('a', 'DT'), ('gentle', 'JJ'), ('reminder', 'NN'), ('regarding', 'VBG'), ('todays', 'NNS'), ('call', 'NN'), ('at', 'IN'), ('yyyy', 'NN'), ('pm', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('free', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('on', 'IN'), ('tuesday', 'JJ'), ('january', 'JJ'), ('21st', 'CD'), ('at', 'IN'), ('11', 'CD'), ('am', 'VBP')], [('lets', 'NNS'), ('move', 'VBP'), ('it', 'PRP'), ('to', 'TO'), ('friday', 'VB'), ('at', 'IN'), ('yy', 'NN'), ('noon', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('friday', 'JJ'), ('yy', 'NNS'), ('noon', 'NN'), ('then', 'RB')], [('does', 'VBZ'), ('saturday', 'JJ'), ('morning', 'NN'), ('xxxxxxx', 'NN'), ('time', 'NN'), ('work', 'NN')], [('wednesday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('location', 'NN'), ('will', 'MD'), ('work', 'VB')], [('xxxxx', 'NN'), ('and', 'CC'), ('xxxxxxxx', 'NN'), ('will', 'MD'), ('see', 'VB'), ('you', 'PRP'), ('at', 'IN'), ('the', 'DT'), ('xxxxxxx', 'NNP'), ('office', 'NN'), ('on', 'IN'), ('tuesday', 'NN'), ('yyyy', 'NN'), ('at', 'IN'), ('3pm', 'CD')], [('xxxxx', 'NNS'), ('can', 'MD'), ('meet', 'VB'), ('at', 'IN'), ('our', 'PRP$'), ('xxxx', 'NNP'), ('xxxx', 'NNP'), ('office', 'NN'), ('on', 'IN'), ('wednesday', 'NN'), ('yyyy', 'NN'), ('at', 'IN'), ('1pm', 'CD')], [('are', 'VBP'), ('we', 'PRP'), ('planning', 'VBG'), ('to', 'TO'), ('meet', 'VB'), ('today', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('chat', 'VB'), ('between', 'IN'), ('yy', 'NN'), ('and', 'CC'), ('12am', 'CD')], [('jan', 'NN'), ('26th', 'CD'), ('or', 'CC'), ('the', 'DT'), ('weekend', 'NN'), ('after', 'IN'), ('that', 'DT'), ('is', 'VBZ'), ('fine', 'JJ'), ('with', 'IN'), ('us', 'PRP')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('for', 'IN'), ('15', 'CD'), ('minutes', 'NNS'), ('or', 'CC'), ('so', 'RB'), ('this', 'DT'), ('weekend', 'NN')], [('m', 'NN'), ('on', 'IN'), ('monday', 'JJ'), ('work', 'NN'), ('for', 'IN'), ('our', 'PRP$'), ('meeting', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('monday', 'NN')], [('looking', 'VBG'), ('forward', 'RB'), ('to', 'TO'), ('meet', 'VB'), ('you', 'PRP'), ('at', 'IN'), ('the', 'DT'), ('xxxx', 'NN'), ('xxxx', 'NN'), ('at', 'IN'), ('indiranagar', 'NN'), ('on', 'IN'), ('thursday', 'NN'), ('30th', 'CD'), ('january', 'NN'), ('from', 'IN'), ('yyyy', 'NN'), ('pm', 'NN'), ('to', 'TO'), ('yyyy', 'VB'), ('pm', 'NN'), ('rsvp', 'NN'), ('image', 'NN'), ('mail', 'NN'), ('xxxxxxxxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('xxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('image', 'NN'), ('contact', 'NN'), ('yyyyyyyyyyyyyyyy', 'NN'), ('yyyyyyyyyy', 'JJ'), ('image', 'NN'), ('line', 'NN'), ('address', 'NN'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxxxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('our', 'PRP$'), ('location', 'NN'), ('xxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('y', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('y', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxxxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('yyy', 'NN'), ('yyy', 'NN'), ('image', 'NN'), ('facebook', 'NN')], [('next', 'JJ'), ('couple', 'NN'), ('of', 'IN'), ('days', 'NNS'), ('are', 'VBP'), ('slow', 'JJ'), ('so', 'IN'), ('we', 'PRP'), ('could', 'MD'), ('talk', 'VB'), ('then', 'RB')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('and', 'CC'), ('when', 'WRB'), ('you', 'PRP'), ('want', 'VBP'), ('to', 'TO'), ('catch', 'VB'), ('up', 'RP'), ('today', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('okay', 'RB'), ('to', 'TO'), ('talk', 'VB'), ('on', 'IN'), ('monday', 'JJ'), ('morning', 'NN'), ('your', 'PRP$'), ('time', 'NN'), ('sunday', 'JJ'), ('evening', 'VBG'), ('today', 'NN'), ('my', 'PRP$'), ('time', 'NN')], [('i', 'NN'), ('would', 'MD'), ('be', 'VB'), ('happy', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('with', 'IN'), ('you', 'PRP'), ('tomorrow', 'NN'), ('late', 'RB'), ('in', 'IN'), ('the', 'DT'), ('morning', 'NN'), ('between', 'IN'), ('1100', 'CD'), ('and', 'CC'), ('1230', 'CD'), ('if', 'IN'), ('that', 'DT'), ('is', 'VBZ'), ('convenient', 'JJ'), ('for', 'IN'), ('you', 'PRP')], [('otherwise', 'RB'), ('around', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('time', 'NN'), ('on', 'IN'), ('wednesday', 'NN'), ('also', 'RB'), ('fine', 'JJ')], [('please', 'NN'), ('schedule', 'NN'), ('it', 'PRP'), ('on', 'IN'), ('this', 'DT'), ('wednesday', 'NN')], [('i', 'NN'), ('will', 'MD'), ('sync', 'VB'), ('up', 'RP'), ('with', 'IN'), ('you', 'PRP'), ('this', 'DT'), ('week', 'NN')], [('xxxxxxx', 'NNS'), ('can', 'MD'), ('we', 'PRP'), ('catch', 'VB'), ('up', 'RP'), ('today', 'NN'), ('x', 'IN'), ('100', 'CD'), ('pm', 'JJ'), ('ist', 'NN'), ('to', 'TO'), ('finalize', 'VB'), ('the', 'DT'), ('plan', 'NN')], [('lets', 'NNS'), ('catch', 'VBP'), ('up', 'RB'), ('today', 'NN'), ('and', 'CC'), ('revert', 'VB'), ('back', 'RB'), ('to', 'TO'), ('him', 'PRP')], [('id', 'NN'), ('be', 'VB'), ('happy', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('again', 'RB'), ('this', 'DT'), ('week', 'NN'), ('while', 'IN'), ('i', 'NN'), ('am', 'VBP'), ('here', 'RB'), ('if', 'IN'), ('your', 'PRP$'), ('schedule', 'NN'), ('permits', 'NNS')], [('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('talk', 'VB'), ('on', 'IN'), ('monday', 'NN'), ('and', 'CC'), ('you', 'PRP'), ('can', 'MD'), ('continue', 'VB'), ('to', 'TO'), ('spend', 'VB'), ('time', 'NN'), ('with', 'IN'), ('xxxxx', 'NN')], [('i', 'NN'), ('wont', 'VBP'), ('have', 'VBP'), ('time', 'NN'), ('to', 'TO'), ('meet', 'VB'), ('you', 'PRP'), ('except', 'IN'), ('on', 'IN'), ('saturday', 'NN'), ('the', 'DT'), ('25th', 'CD'), ('but', 'CC'), ('i', 'NNS'), ('can', 'MD'), ('certainly', 'RB'), ('coordinate', 'VB'), ('with', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('decide', 'VB'), ('the', 'DT'), ('outline', 'NN'), ('of', 'IN'), ('the', 'DT'), ('lessons', 'NNS'), ('etc', 'VBP')], [('if', 'IN'), ('friday', 'JJ'), ('works', 'NNS')], [('yes', 'RB'), ('friday', 'JJ'), ('works', 'NNS'), ('sent', 'VBD'), ('from', 'IN'), ('my', 'PRP$'), ('xxxxxxxxxx', 'NN'), ('on', 'IN'), ('xxxxxxxx', 'NNP'), ('mobile', 'JJ'), ('xxxxxs', 'NNP'), ('no', 'DT'), ('y', 'NN'), ('xxxxxxx', 'NN')], [('let', 'VB'), ('us', 'PRP'), ('catch', 'VB'), ('up', 'RP'), ('tomorrow', 'NN')], [('we', 'PRP'), ('shall', 'MD'), ('certainly', 'RB'), ('see', 'VB'), ('you', 'PRP'), ('at', 'IN'), ('noon', 'NN'), ('on', 'IN'), ('thursday', 'NN'), ('then', 'RB')], [('would', 'MD'), ('yyyy', 'VB'), ('today', 'NN'), ('work', 'NN')], [('1230', 'CD'), ('xxx', 'NN'), ('on', 'IN'), ('wednesday', 'NN'), ('would', 'MD'), ('work', 'VB'), ('well', 'RB'), ('for', 'IN'), ('me', 'PRP'), ('but', 'CC'), ('later', 'RBR'), ('in', 'IN'), ('the', 'DT'), ('week', 'NN'), ('at', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('time', 'NN'), ('in', 'IN'), ('the', 'DT'), ('day', 'NN'), ('is', 'VBZ'), ('fine', 'JJ'), ('too', 'RB')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('the', 'DT'), ('call', 'NN'), ('tomorrow', 'NN'), ('after', 'IN'), ('11am', 'CD'), ('please', 'NN')], [('thanks', 'NNS'), ('lets', 'VBZ'), ('talk', 'VBP'), ('about', 'IN'), ('this', 'DT'), ('tomorrow', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('speak', 'VB'), ('on', 'IN'), ('thursday', 'JJ'), ('1230', 'CD'), ('xxx', 'NNP'), ('instead', 'RB'), ('of', 'IN'), ('wednesday', 'NN')], [('sure', 'JJ'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('at', 'IN'), ('10am', 'CD')], [('do', 'VBP'), ('you', 'PRP'), ('think', 'VB'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('in', 'IN'), ('xx', 'NNP'), ('over', 'IN'), ('the', 'DT'), ('coming', 'VBG'), ('weekend', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('call', 'VBN'), ('at', 'IN'), ('1pm', 'CD'), ('ist', 'NN')], [('how', 'WRB'), ('about', 'IN'), ('sometime', 'RB'), ('tomorrow', 'NN')], [('if', 'IN'), ('that', 'DT'), ('doesnt', 'NN'), ('work', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('try', 'VB'), ('for', 'IN'), ('wednesday', 'NN')], [('confirmed', 'VBN'), ('for', 'IN'), ('wednesday', 'NN'), ('yyyy', 'NN'), ('at', 'IN'), ('1030am', 'CD'), ('here', 'RB')], [('so', 'RB'), ('will', 'MD'), ('schedule', 'VB'), ('one', 'CD'), ('next', 'JJ'), ('week', 'NN')], [('lets', 'NNS'), ('talk', 'VBP'), ('more', 'JJR'), ('tomorrow', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('try', 'VB'), ('to', 'TO'), ('move', 'VB'), ('my', 'PRP$'), ('flight', 'NN'), ('up', 'RB'), ('to', 'TO'), ('friday', 'VB'), ('morning', 'NN'), ('or', 'CC'), ('afternoon', 'NN'), ('then', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('in', 'IN'), ('the', 'DT'), ('evening', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('sometime', 'RB'), ('today', 'NN'), ('around', 'IN'), ('3pm', 'CD')], [('friday', 'NN'), ('will', 'MD'), ('do', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('sync', 'VB'), ('up', 'RP'), ('sometime', 'RB'), ('this', 'DT'), ('week', 'NN')], [('im', 'NN'), ('open', 'JJ'), ('on', 'IN'), ('thursday', 'JJ'), ('afternoon', 'NN'), ('as', 'RB'), ('well', 'RB')], [('lets', 'NNS'), ('think', 'VBP'), ('through', 'IN'), ('the', 'DT'), ('product', 'NN'), ('tomorrow', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('wednesday', 'JJ'), ('morning', 'NN'), ('ist', 'NN'), ('to', 'TO'), ('chat', 'VB'), ('with', 'IN'), ('us', 'PRP')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('friday', 'JJ'), ('around', 'IN'), ('y', 'NN')], [('so', 'RB'), ('saturday', 'JJ'), ('18', 'CD'), ('jan', 'NN'), ('is', 'VBZ'), ('an', 'DT'), ('option', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('xxxxx', 'VBP'), ('are', 'VBP'), ('available', 'JJ')], [('also', 'RB'), ('what', 'WP'), ('time', 'NN'), ('slots', 'NNS'), ('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('on', 'IN'), ('saturday', 'NN')], [('where', 'WRB'), ('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('at', 'IN'), ('6pm', 'CD'), ('on', 'IN'), ('friday', 'NN')], [('xxxx', 'NN'), ('is', 'VBZ'), ('free', 'JJ'), ('to', 'TO'), ('speak', 'VB'), ('on', 'IN'), ('friday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('9', 'CD'), ('am', 'VBP'), ('xxx', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('thursday', 'JJ'), ('in', 'IN'), ('xxxxxxx', 'NN'), ('xxxxxx', 'NN')], [('saturday', 'NN'), ('i', 'VB'), ('am', 'VBP'), ('flexible', 'JJ'), ('as', 'RB'), ('long', 'RB'), ('as', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('tell', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('slot', 'NN'), ('early', 'JJ')], [('i', 'NN'), ('think', 'VBP'), ('that', 'IN'), ('time', 'NN'), ('should', 'MD'), ('work', 'VB'), ('9pm', 'CD'), ('pst', 'JJ'), ('1030am', 'CD'), ('ist', 'NN')], [('so', 'RB'), ('let', 'VB'), ('us', 'PRP'), ('keep', 'VB'), ('the', 'DT'), ('original', 'JJ'), ('meeting', 'NN'), ('plan', 'NN'), ('of', 'IN'), ('1130', 'CD'), ('am', 'VBP'), ('thursday', 'JJ')], [('yes', 'RB'), ('inking', 'VBG'), ('in', 'IN'), ('1130', 'CD'), ('am', 'VBP'), ('tomorrow', 'NN'), ('at', 'IN'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxx', 'NN')], [('rescheduling', 'VBG'), ('january', 'JJ'), ('17th', 'CD'), ('meeting', 'NN'), ('to', 'TO'), ('yyyy', 'VB')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('friday', 'JJ'), ('this', 'DT'), ('week', 'NN'), ('will', 'MD'), ('work', 'VB'), ('for', 'IN'), ('everyone', 'NN'), ('around', 'RB'), ('10am', 'CD')], [('xxxxxxxx', 'NN'), ('could', 'MD'), ('i', 'VB'), ('move', 'VB'), ('our', 'PRP$'), ('call', 'NN'), ('to', 'TO'), ('4pm', 'CD'), ('on', 'IN'), ('friday', 'NN'), ('if', 'IN'), ('it', 'PRP'), ('works', 'VBZ')], [('xx', 'NN'), ('i', 'NN'), ('will', 'MD'), ('come', 'VB'), ('tomorrow', 'NN'), ('morning', 'NN'), ('after', 'IN'), ('11am', 'CD')], [('so', 'RB'), ('anytime', 'RB'), ('from', 'IN'), ('6am', 'CD'), ('ist', 'NN'), ('to', 'TO'), ('11p', 'CD')], [('thursday', 'JJ'), ('friday', 'NN'), ('works', 'VBZ'), ('for', 'IN'), ('us', 'PRP')], [('let', 'VB'), ('us', 'PRP'), ('move', 'VB'), ('this', 'DT'), ('weeks', 'NNS'), ('meeting', 'NN'), ('to', 'TO'), ('next', 'JJ'), ('week', 'NN'), ('tue', 'NN'), ('21st', 'CD'), ('xxxx', 'NN'), ('10am', 'CD')], [('you', 'PRP'), ('can', 'MD'), ('call', 'VB'), ('me', 'PRP'), ('after', 'IN'), ('5pm', 'CD'), ('today', 'NN'), ('thanks', 'NNS'), ('xxxxxx', 'VBP')], [('does', 'VBZ'), ('22nd', 'CD'), ('jan', 'NN'), ('yyyyy', 'NN'), ('am', 'VBP'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('see', 'VB'), ('you', 'PRP'), ('at', 'IN'), ('the', 'DT'), ('event', 'NN'), ('at', 'IN'), ('9am', 'CD'), ('so', 'RB'), ('that', 'IN'), ('you', 'PRP'), ('get', 'VBP'), ('time', 'NN'), ('to', 'TO'), ('get', 'VB'), ('set', 'VBN'), ('up', 'RP')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('xxxx', 'NN'), ('on', 'IN'), ('this', 'DT'), ('friday', 'NN'), ('and', 'CC'), ('would', 'MD'), ('love', 'VB'), ('to', 'TO'), ('catch', 'VB'), ('up', 'RP'), ('with', 'IN'), ('you', 'PRP'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('free', 'JJ')], [('if', 'IN'), ('not', 'RB'), ('now', 'RB'), ('i', 'VBP'), ('shall', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN'), ('when', 'WRB'), ('i', 'NN'), ('reach', 'VBP'), ('my', 'PRP$'), ('home', 'NN')], [('what', 'WP'), ('is', 'VBZ'), ('your', 'PRP$'), ('skype', 'JJ'), ('id', 'NN'), ('and', 'CC'), ('what', 'WP'), ('time', 'NN'), ('are', 'VBP'), ('we', 'PRP'), ('all', 'DT'), ('meeting', 'NN'), ('today', 'NN')], [('i', 'NNS'), ('am', 'VBP'), ('off', 'RB'), ('to', 'TO'), ('xxx', 'VB'), ('xxxxxxxxx', 'NNP'), ('next', 'JJ'), ('week', 'NN'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('in', 'IN'), ('person', 'NN'), ('the', 'DT'), ('following', 'VBG'), ('week', 'NN'), ('when', 'WRB'), ('i', 'NN'), ('am', 'VBP'), ('back', 'RB')], [('tomorrow', 'NN'), ('1500', 'CD'), ('your', 'PRP$'), ('time', 'NN'), ('zone', 'NN')], [('i', 'NN'), ('was', 'VBD'), ('hoping', 'VBG'), ('i', 'NN'), ('could', 'MD'), ('get', 'VB'), ('together', 'RB'), ('with', 'IN'), ('you', 'PRP'), ('sometime', 'VBP'), ('soon', 'RB'), ('friday', 'JJ'), ('afternoon', 'NN'), ('or', 'CC'), ('next', 'JJ'), ('week', 'NN'), ('perhaps', 'RB')], [('got', 'VBD'), ('it', 'PRP'), ('xxxxxxxxxx', 'NNP'), ('please', 'VB'), ('meet', 'VB'), ('me', 'PRP'), ('about', 'IN'), ('this', 'DT'), ('tomorrow', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('next', 'JJ'), ('thursday', 'NN')], [('it', 'PRP'), ('is', 'VBZ'), ('looking', 'VBG'), ('like', 'IN'), ('saturday', 'NN'), ('is', 'VBZ'), ('better', 'RBR')], [('next', 'JJ'), ('week', 'NN'), ('sounds', 'NNS'), ('fine', 'VBP')], [('can', 'MD'), ('we', 'PRP'), ('do', 'VB'), ('the', 'DT'), ('pretechnical', 'JJ'), ('review', 'NN'), ('call', 'NN'), ('on', 'IN'), ('next', 'JJ'), ('wednesday', 'NN'), ('at', 'IN'), ('1000', 'CD'), ('am', 'VBP'), ('xxx', 'JJ')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('tomorrow', 'NN'), ('around', 'IN'), ('11am', 'CD'), ('at', 'IN'), ('xxxxxxxxx', 'NN')], [('see', 'VB'), ('you', 'PRP'), ('at', 'IN'), ('3pm', 'CD'), ('at', 'IN'), ('xxxxxx', 'JJ'), ('xxxxxxxxx', 'NN'), ('in', 'IN'), ('xxxxx', 'NNP'), ('xxxxxx', 'NN')], [('lets', 'NNS'), ('catch', 'VBP'), ('up', 'RP'), ('sometime', 'RB'), ('today', 'NN'), ('to', 'TO'), ('go', 'VB'), ('over', 'RP'), ('what', 'WP'), ('we', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('discuss', 'VB'), ('with', 'IN'), ('xxxxxxxxx', 'NN')], [('lets', 'NNS'), ('do', 'VBP'), ('the', 'DT'), ('first', 'JJ'), ('call', 'NN'), ('with', 'IN'), ('her', 'PRP$'), ('today', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('then', 'RB'), ('when', 'WRB'), ('i', 'NN'), ('am', 'VBP'), ('bac', 'NN')], [('xxxx', 'NN'), ('that', 'IN'), ('we', 'PRP'), ('could', 'MD'), ('catch', 'VB'), ('up', 'RP'), ('again', 'RB'), ('sometime', 'RB'), ('in', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('xxxxxxx', 'NN'), ('will', 'MD'), ('yyyy', 'VB'), ('pm', 'NN'), ('tomorrow', 'NN'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('you', 'PRP'), ('all', 'DT'), ('are', 'VBP'), ('free', 'JJ'), ('today', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('schedule', 'VB'), ('the', 'DT'), ('call', 'NN'), ('then', 'RB')], [('let', 'VB'), ('us', 'PRP'), ('plan', 'VB'), ('to', 'TO'), ('meet', 'VB'), ('at', 'IN'), ('around', 'RB'), ('1130am', 'CD'), ('on', 'IN'), ('wednesday', 'NN')], [('sure', 'RB'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('up', 'RP'), ('on', 'IN'), ('saturday', 'NN')], [('does', 'VBZ'), ('tomorrow', 'NN'), ('0930am', 'CD'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('coming', 'VBG'), ('to', 'TO'), ('office', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('meet', 'NN'), ('you', 'PRP'), ('to', 'TO'), ('discuss', 'VB'), ('this', 'DT')], [('sure', 'JJ'), ('let', 'VB'), ('us', 'PRP'), ('meetconf', 'VB'), ('call', 'NN'), ('tomorrow', 'NN'), ('at', 'IN'), ('330pm', 'CD'), ('and', 'CC'), ('sync', 'VB'), ('up', 'RP')], [('we', 'PRP'), ('can', 'MD'), ('talk', 'VB'), ('tomorrow', 'NN')], [('otherwise', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('talk', 'VB'), ('tomorrow', 'NN'), ('morning', 'NN')], [('xxx', 'JJ'), ('xxxxx', 'NNP'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('inspect', 'VB'), ('the', 'DT'), ('apartment', 'NN'), ('tomorrow', 'NN'), ('or', 'CC'), ('on', 'IN'), ('sunday', 'NN')], [('any', 'DT'), ('other', 'JJ'), ('day', 'NN'), ('next', 'IN'), ('week', 'NN'), ('is', 'VBZ'), ('fine', 'JJ'), ('with', 'IN'), ('us', 'PRP')], [('would', 'MD'), ('monday', 'VB'), ('evening', 'NN'), ('or', 'CC'), ('tuesday', 'JJ'), ('evening', 'JJ'), ('work', 'NN'), ('around', 'RB'), ('6pm', 'CD')], [('let', 'VB'), ('us', 'PRP'), ('plan', 'VB'), ('to', 'TO'), ('chat', 'VB'), ('around', 'IN'), ('10pm', 'CD')], [('let', 'VB'), ('us', 'PRP'), ('do', 'VB'), ('it', 'PRP'), ('at', 'IN'), ('11am', 'CD')], [('see', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('sunday', 'NN'), ('then', 'RB')], [('will', 'MD'), ('2pm', 'CD'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('why', 'WRB'), ('dont', 'NN'), ('we', 'PRP'), ('chat', 'VBP'), ('today', 'NN'), ('and', 'CC'), ('catch', 'VB'), ('up', 'RP'), ('with', 'IN'), ('xxxx', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('please', 'VB'), ('feel', 'VB'), ('free', 'JJ'), ('to', 'TO'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('availability', 'NN'), ('for', 'IN'), ('this', 'DT'), ('weekend', 'NN'), ('or', 'CC'), ('coffee', 'NN'), ('sometime', 'RB'), ('next', 'JJ'), ('week', 'NN')], [('may', 'MD'), ('i', 'VB'), ('suggest', 'JJS'), ('tuesday', 'NN'), ('yyyy', 'NN'), ('at', 'IN'), ('11am', 'CD'), ('1pm', 'CD'), ('or', 'CC'), ('2pm', 'CD')], [('please', 'VB'), ('feel', 'VB'), ('free', 'JJ'), ('to', 'TO'), ('call', 'VB'), ('me', 'PRP'), ('anytime', 'JJ'), ('today', 'NN'), ('or', 'CC'), ('tomorrow', 'NN')], [('hi', 'NN'), ('xxx', 'NN'), ('just', 'RB'), ('want', 'VB'), ('to', 'TO'), ('check', 'VB'), ('that', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('still', 'RB'), ('planning', 'VBG'), ('to', 'TO'), ('meet', 'VB'), ('at', 'IN'), ('1030', 'CD'), ('on', 'IN'), ('tuesday', 'JJ'), ('jan', 'NN'), ('21', 'CD'), ('and', 'CC'), ('connecting', 'VBG'), ('puja', 'NN'), ('via', 'IN'), ('skype', 'NN')], [('i', 'NN'), ('may', 'MD'), ('be', 'VB'), ('in', 'IN'), ('blore', 'NN'), ('on', 'IN'), ('one', 'CD'), ('of', 'IN'), ('yyyyy', 'NN'), ('jan', 'NN'), ('so', 'RB'), ('if', 'IN'), ('easier', 'JJR'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('then', 'RB'), ('too', 'RB')], [('in', 'IN'), ('case', 'NN'), ('there', 'EX'), ('is', 'VBZ'), ('ambiguity', 'JJ'), ('please', 'NN'), ('discuss', 'NN'), ('with', 'IN'), ('me', 'PRP'), ('on', 'IN'), ('monday', 'NN')], [('xxxxxx', 'NN'), ('would', 'MD'), ('be', 'VB'), ('at', 'IN'), ('home', 'NN'), ('wednesday', 'NN'), ('5', 'CD'), ('7', 'CD'), ('pm', 'NN'), ('i', 'NNS'), ('have', 'VBP'), ('to', 'TO'), ('go', 'VB'), ('to', 'TO'), ('my', 'PRP$'), ('xxxx', 'NN'), ('writing', 'VBG'), ('xxxxx', 'NNS'), ('but', 'CC'), ('you', 'PRP'), ('could', 'MD'), ('be', 'VB'), ('free', 'JJ')], [('we', 'PRP'), ('can', 'MD'), ('call', 'VB'), ('tomorrow', 'NN')], [('10', 'CD'), ('am', 'VBP'), ('xxx', 'VBN'), ('on', 'IN'), ('monday', 'NN'), ('is', 'VBZ'), ('fine', 'JJ'), ('with', 'IN'), ('us', 'PRP')], [('call', 'VB'), ('me', 'PRP'), ('tomorrow', 'NN'), ('morning', 'NN'), ('and', 'CC'), ('i', 'NN'), ('will', 'MD'), ('suggest', 'VB'), ('what', 'WP'), ('to', 'TO'), ('inform', 'VB'), ('customer', 'NN')], [('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('monday', 'JJ')], [('so', 'RB'), ('thursday', 'JJ'), ('it', 'PRP'), ('is', 'VBZ')], [('sure', 'JJ'), ('xxxxxxxx', 'NNP'), ('come', 'NN'), ('by', 'IN'), ('wed', 'VBN'), ('at', 'IN'), ('3pm', 'CD')], [('you', 'PRP'), ('can', 'MD'), ('call', 'VB'), ('me', 'PRP'), ('either', 'CC'), ('at', 'IN'), ('yyyyy', 'NN'), ('am', 'VBP'), ('today', 'NN'), ('or', 'CC'), ('tomorrow', 'NN')], [('just', 'RB'), ('want', 'VB'), ('to', 'TO'), ('check', 'VB'), ('that', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('still', 'RB'), ('planning', 'VBG'), ('to', 'TO'), ('meet', 'VB'), ('at', 'IN'), ('1030', 'CD'), ('on', 'IN'), ('tuesday', 'JJ'), ('jan', 'NN'), ('21', 'CD'), ('and', 'CC'), ('connecting', 'VBG'), ('puja', 'NN'), ('via', 'IN'), ('skype', 'NN')], [('lets', 'NNS'), ('discuss', 'VBP'), ('this', 'DT'), ('in', 'IN'), ('second', 'JJ'), ('half', 'NN'), ('today', 'NN')], [('hi', 'NN'), ('xxxxx', 'NNP'), ('xx', 'NNP'), ('block', 'NN'), ('wednesday', 'NN'), ('10', 'CD'), ('am', 'VBP'), ('for', 'IN'), ('now', 'RB')], [('thursday', 'RB'), ('3', 'CD'), ('pm', 'NN'), ('works', 'NNS'), ('perfectly', 'RB')], [('so', 'RB'), ('let', 'VB'), ('us', 'PRP'), ('have', 'VB'), ('the', 'DT'), ('call', 'NN'), ('on', 'IN'), ('thursday', 'NN'), ('and', 'CC'), ('see', 'VB'), ('how', 'WRB'), ('it', 'PRP'), ('goes', 'VBZ')], [('thursday', 'JJ'), ('afternoon', 'NN'), ('call', 'NN'), ('is', 'VBZ'), ('fine', 'JJ')], [('can', 'MD'), ('i', 'VB'), ('request', 'NN'), ('you', 'PRP'), ('to', 'TO'), ('meet', 'VB'), ('with', 'IN'), ('our', 'PRP$'), ('leadership', 'NN'), ('team', 'NN'), ('asap', 'NN'), ('as', 'RB'), ('early', 'RB'), ('as', 'IN'), ('tomorrow', 'NN'), ('and', 'CC'), ('see', 'VB'), ('how', 'WRB'), ('to', 'TO'), ('resolve', 'VB'), ('this', 'DT')], [('10am', 'CD')], [('will', 'MD'), ('plan', 'VB'), ('on', 'IN'), ('meeting', 'NN'), ('later', 'RBR'), ('this', 'DT'), ('week', 'NN')], [('hey', 'NN'), ('xxxxxxxx', 'MD'), ('see', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN')], [('what', 'WP'), ('about', 'IN'), ('9', 'CD'), ('am', 'VBP'), ('tomorrow21st', 'JJ'), ('jan', 'NN'), ('on', 'IN'), ('xxxxx', 'NN')], [('m', 'NN'), ('tomorrow', 'NN'), ('sounds', 'VBZ'), ('perfect', 'JJ')], [('a', 'DT'), ('quick', 'JJ'), ('reminder', 'NN'), ('that', 'IN'), ('we', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('our', 'PRP$'), ('peer', 'NN'), ('writing', 'VBG'), ('group', 'NN'), ('meeting', 'NN'), ('tomorrow', 'NN'), ('january', 'JJ'), ('21st', 'CD'), ('at', 'IN'), ('10', 'CD'), ('am', 'VBP'), ('at', 'IN'), ('the', 'DT'), ('yyy', 'NN'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxxxxx', 'NNP'), ('building', 'NN')], [('could', 'MD'), ('we', 'PRP'), ('reschedule', 'VB'), ('for', 'IN'), ('this', 'DT'), ('friday', 'NN'), ('at', 'IN'), ('1pm', 'CD'), ('at', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('location', 'NN')], [('how', 'WRB'), ('about', 'IN'), ('wednesday', 'JJ'), ('morning', 'NN'), ('11', 'CD'), ('am', 'VBP')], [('1', 'CD'), ('2nd', 'CD'), ('feb', 'NN'), ('works', 'NNS'), ('for', 'IN'), ('mumu', 'NN'), ('y', 'NN'), ('16th', 'CD'), ('feb', 'NN'), ('works', 'NNS'), ('for', 'IN'), ('both', 'DT'), ('of', 'IN'), ('us', 'PRP')], [('so', 'RB'), ('can', 'MD'), ('i', 'VB'), ('meet', 'NN'), ('you', 'PRP'), ('tomorrow', 'NN'), ('instead', 'RB')], [('do', 'VBP'), ('you', 'PRP'), ('have', 'VB'), ('sometime', 'RB'), ('tomorrow', 'NN'), ('to', 'TO'), ('discuss', 'VB')], [('be', 'VB'), ('regular', 'JJ'), ('to', 'TO'), ('the', 'DT'), ('schedule', 'NN'), ('see', 'VBP'), ('you', 'PRP'), ('tomorrow', 'NN')]], [[('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('by', 'IN'), ('today', 'NN'), ('evening', 'VBG'), ('if', 'IN'), ('there', 'EX'), ('are', 'VBP'), ('any', 'DT'), ('changes', 'NNS'), ('as', 'IN'), ('xxxxxx', 'NN'), ('will', 'MD'), ('be', 'VB'), ('on', 'IN'), ('vacation', 'NN'), ('from', 'IN'), ('tomorrow', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('take', 'VB'), ('latest', 'JJS'), ('and', 'CC'), ('check', 'VB')], [('also', 'RB'), ('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('a', 'DT'), ('call', 'NN'), ('early', 'RB'), ('next', 'JJ'), ('week', 'NN'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('regarding', 'VBG'), ('some', 'DT'), ('other', 'JJ'), ('stuff', 'NN'), ('related', 'VBD'), ('the', 'DT'), ('code', 'NN')], [('are', 'VBP'), ('we', 'PRP'), ('receiving', 'VBG'), ('the', 'DT'), ('psds', 'NN'), ('today', 'NN')], [('xxxx', 'NN'), ('will', 'MD'), ('be', 'VB'), ('helping', 'VBG'), ('out', 'RP'), ('could', 'MD'), ('you', 'PRP'), ('guide', 'VB'), ('him', 'PRP'), ('to', 'TO'), ('help', 'VB'), ('him', 'PRP'), ('extract', 'VB'), ('this', 'DT'), ('list', 'NN'), ('to', 'TO'), ('help', 'VB'), ('set', 'VB'), ('up', 'RP'), ('the', 'DT'), ('testing', 'NN'), ('for', 'IN'), ('xxx', 'JJ'), ('side', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('put', 'VB'), ('a', 'DT'), ('youtube', 'NN'), ('video', 'NN')], [('once', 'RB'), ('i', 'JJ'), ('am', 'VBP'), ('back', 'RB'), ('can', 'MD'), ('we', 'PRP'), ('try', 'VB'), ('and', 'CC'), ('debug', 'VB'), ('this', 'DT')], [('can', 'MD'), ('you', 'PRP'), ('put', 'VB'), ('a', 'DT'), ('date', 'NN'), ('against', 'IN'), ('the', 'DT'), ('pendingin', 'NN'), ('progress', 'NN'), ('pages', 'NNS'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('get', 'VBP'), ('an', 'DT'), ('idea', 'NN'), ('of', 'IN'), ('the', 'DT'), ('completion', 'NN'), ('date', 'NN')], [('xxxx', 'NN'), ('you', 'PRP'), ('managed', 'VBD'), ('to', 'TO'), ('log', 'VB'), ('in', 'IN'), ('for', 'IN'), ('the', 'DT'), ('call', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('set', 'VB'), ('a', 'DT'), ('call', 'NN'), ('today', 'NN'), ('after', 'IN'), ('yyyypm', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('on', 'IN'), ('what', 'WDT'), ('are', 'VBP'), ('the', 'DT'), ('next', 'JJ'), ('steps', 'NNS')], [('can', 'MD'), ('you', 'PRP'), ('provide', 'VB'), ('a', 'DT'), ('list', 'NN'), ('of', 'IN'), ('revs', 'NN'), ('by', 'IN'), ('folder', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('create', 'VB'), ('one', 'CD'), ('or', 'CC'), ('two', 'CD'), ('slides', 'NNS'), ('how', 'WRB'), ('xxxxxxx', 'JJ'), ('solutions', 'NNS'), ('may', 'MD'), ('increase', 'VB'), ('potential', 'NN'), ('for', 'IN'), ('monetization', 'NN'), ('to', 'TO'), ('xxxxxxx', 'VB')], [('please', 'VB'), ('confirm', 'NN'), ('that', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('set', 'VBN'), ('up', 'RP'), ('to', 'TO'), ('do', 'VB'), ('this', 'DT')], [('xxxxx', 'JJ'), ('please', 'NN'), ('give', 'VB'), ('details', 'NNS'), ('as', 'IN'), ('to', 'TO'), ('why', 'WRB'), ('the', 'DT'), ('y', 'NN'), ('separate', 'JJ'), ('and', 'CC'), ('different', 'JJ'), ('fail', 'NN'), ('cases', 'NNS'), ('in', 'IN'), ('this', 'DT'), ('bug', 'NN'), ('are', 'VBP'), ('occurring', 'VBG'), ('and', 'CC'), ('how', 'WRB'), ('each', 'DT'), ('can', 'MD'), ('be', 'VB'), ('resolved', 'VBN'), ('as', 'RB'), ('soon', 'RB'), ('as', 'IN'), ('possible', 'JJ')], [('xxxx', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('sched', 'VB'), ('an', 'DT'), ('11am', 'CD'), ('call', 'NN'), ('with', 'IN'), ('this', 'DT'), ('distro', 'NN'), ('to', 'TO'), ('review', 'VB'), ('bug', 'NN'), ('retesting', 'NN'), ('and', 'CC'), ('decide', 'VB'), ('on', 'IN'), ('a', 'DT'), ('prod', 'NN'), ('launch', 'NN'), ('at', 'IN'), ('that', 'DT'), ('time', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('introduce', 'VB'), ('me', 'PRP'), ('to', 'TO'), ('xxxxxxxx', 'VB'), ('pal', 'NN'), ('at', 'IN'), ('xxxxxxxx', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('send', 'VB'), ('us', 'PRP'), ('a', 'DT'), ('static', 'JJ'), ('xx', 'NN'), ('address', 'NN'), ('from', 'IN'), ('where', 'WRB'), ('the', 'DT'), ('server', 'NN'), ('will', 'MD'), ('be', 'VB'), ('accessed', 'VBN')], [('can', 'MD'), ('you', 'PRP'), ('create', 'VB'), ('a', 'DT'), ('demo', 'NN'), ('of', 'IN'), ('xxx', 'NNP'), ('basketball', 'NN'), ('finals', 'NNS'), ('underway', 'RB'), ('with', 'IN'), ('contextual', 'JJ'), ('tweets', 'NNS')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('i', 'NN'), ('can', 'MD'), ('go', 'VB'), ('ahead', 'RB'), ('and', 'CC'), ('block', 'VB'), ('yyyyy', 'JJR'), ('am', 'VBP'), ('to', 'TO'), ('yyyyy', 'VB'), ('noon', 'NN')], [('should', 'MD'), ('i', 'VB'), ('wait', 'NN'), ('for', 'IN'), ('her', 'PRP$'), ('to', 'TO'), ('respond', 'VB'), ('or', 'CC'), ('pitch', 'VB'), ('in', 'IN'), ('may', 'MD'), ('be', 'VB'), ('tomorrow', 'NN')], [('can', 'MD'), ('i', 'VB'), ('call', 'VB'), ('you', 'PRP'), ('sometime', 'RB'), ('to', 'TO'), ('give', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('context', 'NN'), ('of', 'IN'), ('the', 'DT'), ('event', 'NN')], [('will', 'MD'), ('it', 'PRP'), ('be', 'VB'), ('possible', 'JJ'), ('for', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('meet', 'VB'), ('on', 'IN'), ('fri', 'NN'), ('around', 'IN'), ('3', 'CD'), ('pm', 'NN')], [('it', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('great', 'JJ'), ('if', 'IN'), ('we', 'PRP'), ('could', 'MD'), ('all', 'DT'), ('jump', 'VB'), ('on', 'IN'), ('a', 'DT'), ('call', 'NN'), ('next', 'JJ'), ('week', 'NN')], [('rajesh', 'NN'), ('wants', 'VBZ'), ('to', 'TO'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('guys', 'VBP'), ('can', 'MD'), ('make', 'VB'), ('it', 'PRP'), ('at', 'IN'), ('yyyy', 'NN'), ('pm', 'NN'), ('today', 'NN'), ('as', 'IN'), ('he', 'PRP'), ('has', 'VBZ'), ('to', 'TO'), ('head', 'VB'), ('out', 'RP'), ('by', 'IN'), ('yyyy', 'NN')], [('please', 'NN'), ('share', 'NN'), ('the', 'DT'), ('snapshots', 'NNS'), ('asap', 'VBP'), ('for', 'IN'), ('aporovals', 'NNS')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('i', 'JJ'), ('need', 'VBP'), ('to', 'TO'), ('change', 'VB'), ('anything', 'NN'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('send', 'VB'), ('the', 'DT'), ('same', 'JJ'), ('across', 'IN'), ('to', 'TO'), ('senthil', 'VB')], [('sure', 'JJ'), ('can', 'MD'), ('we', 'PRP'), ('setup', 'VB'), ('a', 'DT'), ('time', 'NN'), ('for', 'IN'), ('friday', 'JJ'), ('morning', 'NN')], [('xxxxxxx', 'NNS'), ('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('another', 'DT'), ('resource', 'NN'), ('help', 'NN'), ('with', 'IN'), ('contact', 'JJ'), ('form', 'NN'), ('homepage', 'NN'), ('design', 'NN')], [('will', 'MD'), ('it', 'PRP'), ('be', 'VB'), ('possible', 'JJ'), ('for', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('meet', 'VB'), ('this', 'DT'), ('week', 'NN'), ('on', 'IN'), ('fri', 'NN'), ('or', 'CC'), ('mon', 'JJ'), ('second', 'JJ'), ('half', 'NN')], [('10', 'CD'), ('am', 'VBP'), ('will', 'MD'), ('you', 'PRP'), ('call', 'VB'), ('on', 'IN'), ('my', 'PRP$'), ('mobile', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('provide', 'VB'), ('updated', 'VBN'), ('htmlcss', 'NN'), ('that', 'WDT'), ('can', 'MD'), ('enable', 'VB'), ('this', 'DT'), ('to', 'TO'), ('work', 'VB')], [('did', 'VBD'), ('u', 'JJ'), ('connect', 'NN'), ('w', 'VBD'), ('her', 'PRP$')], [('could', 'MD'), ('you', 'PRP'), ('respond', 'VB'), ('to', 'TO'), ('that', 'DT')], [('why', 'WRB'), ('would', 'MD'), ('it', 'PRP'), ('return', 'VB'), ('xxxx', 'RP')], [('how', 'WRB'), ('about', 'IN'), ('1130', 'CD'), ('am', 'VBP'), ('tomorrow', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('anything', 'NN'), ('else', 'RB'), ('is', 'VBZ'), ('required', 'VBN'), ('for', 'IN'), ('completion', 'NN'), ('of', 'IN'), ('this', 'DT'), ('process', 'NN')], [('is', 'VBZ'), ('there', 'EX'), ('a', 'DT'), ('docppt', 'NN'), ('i', 'NN'), ('can', 'MD'), ('send', 'VB'), ('to', 'TO'), ('him', 'PRP'), ('to', 'TO'), ('set', 'VB'), ('the', 'DT'), ('context', 'NN'), ('for', 'IN'), ('a', 'DT'), ('call', 'NN')], [('xxxx', 'NN'), ('xxxxxxx', 'NN'), ('could', 'MD'), ('either', 'VB'), ('of', 'IN'), ('you', 'PRP'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('would', 'MD'), ('be', 'VB'), ('the', 'DT'), ('costing', 'NN'), ('for', 'IN'), ('this', 'DT'), ('project', 'NN'), ('and', 'CC'), ('what', 'WP'), ('is', 'VBZ'), ('the', 'DT'), ('best', 'JJS'), ('approach', 'NN'), ('phonegap', 'NN'), ('or', 'CC'), ('native', 'JJ'), ('with', 'IN'), ('embedded', 'JJ'), ('web', 'NN'), ('view', 'NN'), ('and', 'CC'), ('which', 'WDT'), ('team', 'NN'), ('is', 'VBZ'), ('going', 'VBG'), ('to', 'TO'), ('work', 'VB'), ('on', 'IN'), ('it', 'PRP')], [('we', 'PRP'), ('could', 'MD'), ('catch', 'VB'), ('up', 'RP'), ('tomorrow', 'NN'), ('at', 'IN'), ('3', 'CD'), ('pm', 'NN'), ('in', 'IN'), ('the', 'DT'), ('afternoon', 'NN'), ('if', 'IN'), ('thats', 'NNS'), ('feasible', 'JJ')], [('good', 'JJ'), ('morning', 'NN'), ('sir', 'NN'), ('i', 'NN'), ('have', 'VBP'), ('sent', 'VBN'), ('you', 'PRP'), ('both', 'VBP'), ('the', 'DT'), ('videosplease', 'NN'), ('check', 'NN'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('whether', 'IN'), ('i', 'NNS'), ('have', 'VBP'), ('to', 'TO'), ('take', 'VB'), ('clip', 'NN'), ('today', 'NN'), ('also', 'RB'), ('or', 'CC'), ('not', 'RB')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('who', 'WP'), ('it', 'PRP'), ('will', 'MD'), ('be', 'VB')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('investigate', 'VB'), ('and', 'CC'), ('make', 'VB'), ('sure', 'JJ'), ('the', 'DT'), ('cron', 'NN'), ('runs', 'VBZ'), ('for', 'IN'), ('nonsite', 'JJ'), ('clients', 'NNS')], [('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('deck', 'NN'), ('one', 'CD'), ('more', 'JJR'), ('time', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('whether', 'IN'), ('we', 'PRP'), ('will', 'MD'), ('deliver', 'VB'), ('the', 'DT'), ('xxxxxx', 'NNP'), ('app', 'NN'), ('first', 'RB'), ('or', 'CC'), ('the', 'DT'), ('xxxx', 'NN')], [('dear', 'JJ'), ('xxxxxxxxx', 'NN'), ('as', 'IN'), ('discussed', 'VBN'), ('over', 'IN'), ('telco', 'NN'), ('kindly', 'RB'), ('send', 'VB'), ('me', 'PRP'), ('data', 'NNS'), ('as', 'IN'), ('below', 'IN')], [('xxxxxxx', 'NN'), ('could', 'MD'), ('you', 'PRP'), ('assign', 'VB'), ('someone', 'NN'), ('to', 'TO'), ('look', 'VB'), ('into', 'IN'), ('this', 'DT')], [('could', 'MD'), ('you', 'PRP'), ('check', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('expect', 'VB'), ('to', 'TO'), ('receive', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('day', 'NN'), ('today', 'NN')], [('how', 'WRB'), ('about', 'IN'), ('having', 'VBG'), ('xxxxxxx', 'NN'), ('and', 'CC'), ('xxxxx', 'NNP'), ('working', 'VBG'), ('on', 'IN'), ('this', 'DT')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('create', 'VB'), ('a', 'DT'), ('database', 'NN'), ('by', 'IN'), ('name', 'NN'), ('stating1', 'NN'), ('for', 'IN'), ('new', 'JJ'), ('build', 'NNS'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('deploy', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('server', 'NN'), ('and', 'CC'), ('later', 'RB'), ('on', 'IN'), ('ill', 'NN'), ('be', 'VB'), ('working', 'VBG'), ('on', 'IN'), ('server', 'NN'), ('directly', 'RB')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('help', 'VB'), ('me', 'PRP'), ('with', 'IN'), ('your', 'PRP$'), ('pan', 'NN'), ('no', 'DT'), ('as', 'RB'), ('soon', 'RB'), ('as', 'IN'), ('possible', 'JJ')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('send', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('issue', 'NN'), ('numbers', 'NNS'), ('from', 'IN'), ('xxxxxx', 'NN'), ('which', 'WDT'), ('you', 'PRP'), ('all', 'DT'), ('are', 'VBP'), ('fixing', 'VBG'), ('today', 'NN')], [('hi', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('send', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('issue', 'NN'), ('numbers', 'NNS'), ('from', 'IN'), ('xxxxxx', 'NN'), ('which', 'WDT'), ('you', 'PRP'), ('all', 'DT'), ('are', 'VBP'), ('fixing', 'VBG'), ('today', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('confirm', 'VB'), ('the', 'DT'), ('cron', 'NN'), ('code', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('same', 'JJ'), ('between', 'IN'), ('staging', 'VBG'), ('and', 'CC'), ('prod', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('claim', 'VB'), ('depreciation', 'NN'), ('as', 'RB'), ('well', 'RB'), ('as', 'IN'), ('investment', 'NN'), ('allowance', 'NN'), ('on', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('assetinvestment', 'NN')], [('please', 'VB'), ('submit', 'NN'), ('xxxxx', 'NNP'), ('band', 'NN'), ('bills', 'NNS'), ('at', 'IN'), ('the', 'DT'), ('earliest', 'JJS'), ('for', 'IN'), ('the', 'DT'), ('period', 'NN'), ('of', 'IN'), ('april', 'NN'), ('to', 'TO'), ('june', 'VB'), ('2013', 'CD'), ('1st', 'CD'), ('quarter', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('sometime', 'RB'), ('next', 'JJ'), ('week', 'NN')], [('how', 'WRB'), ('about', 'IN'), ('lunch', 'NN'), ('today', 'NN'), ('x', 'VBD'), ('100', 'CD')], [('can', 'MD'), ('xxxxxxxx', 'VB'), ('come', 'VB'), ('to', 'TO'), ('xxxx', 'NNP'), ('office', 'NN'), ('and', 'CC'), ('sign', 'NN'), ('this', 'DT'), ('on', 'IN'), ('monday', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('send', 'VB'), ('me', 'PRP'), ('plot', 'NN'), ('pics', 'NNS')], [('all', 'PDT'), ('the', 'DT'), ('changes', 'NNS'), ('have', 'VBP'), ('been', 'VBN'), ('done', 'VBN'), ('and', 'CC'), ('is', 'VBZ'), ('livecan', 'JJ'), ('we', 'PRP'), ('close', 'VBP'), ('kickass', 'NNS'), ('today', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('whether', 'IN'), ('its', 'PRP$'), ('feasible', 'JJ'), ('to', 'TO'), ('do', 'VB'), ('it', 'PRP'), ('in', 'IN'), ('xxx', 'NNP'), ('or', 'CC'), ('xxxxxxxxx', 'VB')], [('please', 'NN'), ('confirm', 'VB'), ('the', 'DT'), ('receipt', 'NN'), ('of', 'IN'), ('the', 'DT'), ('mails', 'NNS')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('share', 'NN'), ('your', 'PRP$'), ('phone', 'NN'), ('number', 'NN'), ('xxxxx', 'NNP'), ('and', 'CC'), ('i', 'VB'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('post', 'VBP'), ('yyyy', 'JJ'), ('pm', 'NN'), ('today', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('the', 'DT'), ('meeting', 'NN'), ('on', 'IN'), ('friday', 'NN'), ('2nd', 'CD'), ('august', 'NN')], [('yes', 'NNS'), ('it', 'PRP'), ('possible', 'JJ'), ('for', 'IN'), ('tomorrow', 'NN'), ('before', 'IN'), ('lunch', 'JJ'), ('hour', 'NN')], [('what', 'WP'), ('are', 'VBP'), ('you', 'PRP'), ('guys', 'JJ'), ('working', 'VBG'), ('on', 'IN'), ('today', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('send', 'VB'), ('them', 'PRP'), ('in', 'IN'), ('a', 'DT'), ('different', 'JJ'), ('file', 'NN'), ('formats', 'NNS'), ('xxxxx', 'VBP'), ('point', 'NN'), ('mpeg', 'NN'), ('etc', 'NN')], [('please', 'VB'), ('send', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('update', 'JJ'), ('as', 'IN'), ('we', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('confirm', 'VB'), ('the', 'DT'), ('client', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('sync', 'VB'), ('up', 'RP'), ('tomorrow', 'NN')], [('kindly', 'RB'), ('confirm', 'VBP'), ('one', 'CD'), ('of', 'IN'), ('these', 'DT'), ('slots', 'NNS'), ('by', 'IN'), ('tomorrow', 'NN'), ('evening', 'VBG'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('catch', 'VB'), ('up', 'RP'), ('positively', 'RB')], [('can', 'MD'), ('we', 'PRP'), ('do', 'VB'), ('it', 'PRP'), ('yyyy', 'VB'), ('pm', 'JJ'), ('xxxxx', 'JJ'), ('time', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('ask', 'VB'), ('xxxxx', 'PRP'), ('xx', 'NNP'), ('person', 'NN'), ('to', 'TO'), ('meet', 'VB'), ('us', 'PRP'), ('tomorrow', 'NN')], [('please', 'NN'), ('have', 'VB'), ('a', 'DT'), ('look', 'NN'), ('at', 'IN'), ('the', 'DT'), ('website', 'NN'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('can', 'MD'), ('we', 'PRP'), ('develop', 'VB'), ('this', 'DT'), ('in', 'IN'), ('a', 'DT'), ('short', 'JJ'), ('period', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('help', 'VB'), ('you', 'PRP'), ('require', 'VB'), ('and', 'CC'), ('we', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('glad', 'JJ'), ('to', 'TO'), ('provide', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('same', 'JJ')], [('xxxxxxxxxxxxx', 'NNS'), ('could', 'MD'), ('we', 'PRP'), ('move', 'VB'), ('this', 'DT'), ('into', 'IN'), ('more', 'RBR'), ('stable', 'JJ'), ('platform', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('and', 'CC'), ('i', 'VB'), ('will', 'MD'), ('setup', 'VB'), ('the', 'DT'), ('calendar', 'NN')], [('we', 'PRP'), ('could', 'MD'), ('meet', 'VB'), ('at', 'IN'), ('yy', 'NNP'), ('yyy', 'NNP'), ('am', 'VBP'), ('thursday', 'JJ'), ('if', 'IN'), ('thats', 'NNS'), ('good', 'VBP'), ('for', 'IN'), ('you', 'PRP')], [('please', 'VB'), ('check', 'VB'), ('it', 'PRP'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('feedback', 'NN')], [('did', 'VBD'), ('you', 'PRP'), ('come', 'VB'), ('to', 'TO'), ('xxxx', 'VB'), ('today', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('sometime', 'RB'), ('today', 'NN'), ('or', 'CC'), ('tomorrow', 'NN'), ('morning', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('schedule', 'VB'), ('something', 'NN'), ('for', 'IN'), ('thursday', 'JJ'), ('morning', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('interest', 'NN'), ('in', 'IN'), ('checking', 'VBG'), ('out', 'RP'), ('the', 'DT'), ('property', 'NN'), ('over', 'IN'), ('the', 'DT'), ('weekend', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('say', 'VB'), ('what', 'WP'), ('your', 'PRP$'), ('revenues', 'NNS'), ('from', 'IN'), ('this', 'DT'), ('system', 'NN'), ('is', 'VBZ')], [('perhaps', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('a', 'DT'), ('xxxxx', 'NN'), ('chat', 'NN')], [('how', 'WRB'), ('about', 'RB'), ('tue', 'JJ'), ('morning', 'NN'), ('your', 'PRP$'), ('time', 'NN'), ('at', 'IN'), ('yyyy', 'NN'), ('am', 'VBP')], [('hey', 'NN'), ('xxxxxxx', 'NNS'), ('could', 'MD'), ('we', 'PRP'), ('wrap', 'VB'), ('it', 'PRP'), ('up', 'RP'), ('today', 'NN')], [('please', 'VB'), ('take', 'VB'), ('a', 'DT'), ('look', 'NN'), ('and', 'CC'), ('share', 'NN'), ('your', 'PRP$'), ('feedback', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('check', 'VB'), ('and', 'CC'), ('confirm', 'VB')], [('can', 'MD'), ('you', 'PRP'), ('email', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('link', 'NN'), ('so', 'IN'), ('i', 'JJ'), ('can', 'MD'), ('look', 'VB'), ('through', 'IN'), ('it', 'PRP'), ('prior', 'VBZ'), ('to', 'TO'), ('the', 'DT'), ('chat', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('look', 'VB'), ('at', 'IN'), ('them', 'PRP'), ('to', 'TO'), ('see', 'VB'), ('if', 'IN'), ('there', 'EX'), ('is', 'VBZ'), ('anything', 'NN'), ('more', 'RBR'), ('unique', 'JJ')], [('hi', 'NN'), ('xxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('for', 'IN'), ('the', 'DT'), ('last', 'JJ'), ('minute', 'NN'), ('but', 'CC'), ('could', 'MD'), ('we', 'PRP'), ('speak', 'VB'), ('later', 'RBR'), ('in', 'IN'), ('the', 'DT'), ('afternoon', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('feedback', 'NN')], [('check', 'NN'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('get', 'VB'), ('a', 'DT'), ('timeline', 'NN'), ('on', 'IN'), ('this', 'DT')], [('will', 'MD'), ('do', 'VB'), ('xxxxx', 'VB'), ('can', 'MD'), ('you', 'PRP'), ('put', 'VB'), ('together', 'RP'), ('a', 'DT'), ('small', 'JJ'), ('deck', 'NN'), ('on', 'IN'), ('fabric', 'NN'), ('with', 'IN'), ('updated', 'JJ'), ('portfolio', 'NN'), ('description', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('email', 'VB'), ('rahuls', 'NNS'), ('address', 'VB')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('make', 'VB'), ('sure', 'JJ'), ('these', 'DT'), ('accounts', 'NNS'), ('are', 'VBP'), ('transferred', 'VBN'), ('on', 'IN'), ('my', 'PRP$'), ('name', 'NN'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('see', 'VB'), ('the', 'DT'), ('revenues', 'NNS'), ('and', 'CC'), ('review', 'VB'), ('these', 'DT'), ('accounts', 'NNS')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB')], [('can', 'MD'), ('you', 'PRP'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('the', 'DT'), ('status', 'NN'), ('is', 'VBZ')], [('as', 'IN'), ('discussed', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('call', 'NN'), ('yesterday', 'NN'), ('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('drop', 'VB'), ('an', 'DT'), ('email', 'NN'), ('to', 'TO'), ('the', 'DT'), ('following', 'VBG'), ('requesting', 'VBG'), ('them', 'PRP'), ('to', 'TO'), ('send', 'VB'), ('our', 'PRP$'), ('edm', 'NN'), ('to', 'TO'), ('their', 'PRP$'), ('database', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('on', 'IN'), ('sunday', 'NN'), ('evening', 'NN'), ('sometime', 'RB')], [('kindly', 'RB'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('about', 'IN'), ('the', 'DT'), ('same', 'JJ')], [('can', 'MD'), ('we', 'PRP'), ('remove', 'VB'), ('this', 'DT')], [('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('specs', 'NN'), ('that', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('looking', 'VBG'), ('for', 'IN'), ('a', 'DT'), ('server', 'NN')], [('i', 'NNS'), ('have', 'VBP'), ('come', 'VBN'), ('up', 'RP'), ('with', 'IN'), ('a', 'DT'), ('list', 'NN'), ('of', 'IN'), ('possible', 'JJ'), ('domain', 'NN'), ('names', 'NNS'), ('for', 'IN'), ('finance', 'NN'), ('blog', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('pick', 'VB'), ('your', 'PRP$'), ('top', 'JJ'), ('five', 'CD'), ('favorite', 'JJ'), ('out', 'IN'), ('of', 'IN'), ('it', 'PRP'), ('apart', 'RB'), ('from', 'IN'), ('y', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('also', 'RB'), ('suggest', 'VB'), ('more', 'JJR'), ('you', 'PRP'), ('can', 'MD'), ('check', 'VB'), ('availability', 'NN'), ('at', 'IN')], [('can', 'MD'), ('you', 'PRP'), ('help', 'VB'), ('us', 'PRP'), ('out', 'RP'), ('here', 'RB')], [('around', 'IN'), ('8pm', 'CD')], [('can', 'MD'), ('your', 'PRP$'), ('team', 'NN'), ('create', 'NN'), ('project', 'NN'), ('plan', 'NN'), ('or', 'CC'), ('list', 'NN'), ('of', 'IN'), ('dependencies', 'NNS'), ('to', 'TO'), ('meet', 'VB'), ('those', 'DT'), ('time', 'NN'), ('lines', 'NNS')], [('9am', 'CD'), ('ist', 'NN')], [('hi', 'NN'), ('xxxxx', 'CD'), ('whats', 'NNS'), ('your', 'PRP$'), ('availability', 'NN'), ('to', 'TO'), ('meet', 'VB'), ('next', 'JJ'), ('week', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('suggest', 'VB'), ('us', 'PRP'), ('whether', 'IN'), ('we', 'PRP'), ('should', 'MD'), ('go', 'VB'), ('ahead', 'RB'), ('with', 'IN'), ('this', 'DT'), ('investment', 'NN'), ('proposal', 'NN'), ('or', 'CC'), ('wait', 'NN'), ('for', 'IN'), ('some', 'DT'), ('more', 'JJR'), ('time', 'NN'), ('once', 'IN'), ('we', 'PRP'), ('start', 'VBP'), ('earning', 'VBG'), ('revenues', 'NNS'), ('from', 'IN'), ('our', 'PRP$'), ('product', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('discuss', 'VB'), ('today', 'NN')], [('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('schedule', 'VB'), ('an', 'DT'), ('appointment', 'NN'), ('with', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('discuss', 'VB'), ('the', 'DT'), ('possibility', 'NN'), ('of', 'IN'), ('working', 'VBG'), ('with', 'IN'), ('xxxxxxxxx', 'NNP'), ('in', 'IN'), ('certain', 'JJ'), ('areas', 'NNS'), ('that', 'WDT'), ('has', 'VBZ'), ('huge', 'JJ'), ('growth', 'NN'), ('potential', 'NN')], [('xxxxx', 'JJ'), ('please', 'NN'), ('send', 'VB'), ('me', 'PRP'), ('screen', 'JJ'), ('shot', 'NN'), ('of', 'IN'), ('all', 'DT'), ('screen', 'NN'), ('in', 'IN'), ('parabola', 'NN'), ('android', 'NN'), ('app', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('xxxxx', 'CD'), ('and', 'CC'), ('i', 'VB'), ('a', 'DT'), ('couple', 'NN'), ('of', 'IN'), ('examples', 'NNS'), ('of', 'IN'), ('sector', 'NN'), ('thesis', 'NN'), ('documents', 'NNS'), ('that', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('worked', 'VBN'), ('on', 'IN'), ('thanks', 'NNS')], [('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('feedback', 'NN'), ('initialise', 'VB'), ('the', 'DT'), ('discussion', 'NN'), ('on', 'IN'), ('tuesday', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('you', 'PRP'), ('input', 'VB'), ('on', 'IN'), ('this', 'DT')], [('so', 'RB'), ('i', 'JJ'), ('can', 'MD'), ('start', 'VB'), ('to', 'TO'), ('make', 'VB'), ('a', 'DT'), ('whitelist', 'NN'), ('of', 'IN'), ('users', 'NNS'), ('who', 'WP'), ('we', 'PRP'), ('can', 'MD'), ('safely', 'RB'), ('get', 'VB'), ('tweets', 'NNS'), ('or', 'CC'), ('xxxxx', 'NN'), ('from', 'IN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('the', 'DT'), ('correct', 'JJ'), ('full', 'JJ'), ('name', 'NN'), ('of', 'IN'), ('xxxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxx', 'NN')], [('can', 'MD'), ('i', 'VB'), ('call', 'VB'), ('you', 'PRP'), ('today', 'NN'), ('around', 'IN'), ('10', 'CD'), ('am', 'VBP')], [('can', 'MD'), ('we', 'PRP'), ('transfer', 'VB'), ('xxxxxxxx', "''"), ('to', 'TO'), ('xxxxxxxxxxxx', 'VB'), ('xxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('event', 'NN'), ('money', 'NN'), ('into', 'IN'), ('same', 'JJ'), ('ac', 'NN')], [('yrk', 'RB'), ('ive', 'JJ'), ('indicated', 'VBD'), ('that', 'IN'), ('you', 'PRP'), ('might', 'MD'), ('also', 'RB'), ('join', 'VB'), ('the', 'DT'), ('call', 'NN'), ('since', 'IN'), ('commercials', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('discussed', 'VBN'), ('is', 'VBZ'), ('next', 'JJ'), ('friday', 'JJ'), ('morning', 'NN'), ('yyyyam', 'NN'), ('ok', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('dear', 'JJ'), ('xxxxx', 'NNP'), ('would', 'MD'), ('appreciate', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('could', 'MD'), ('kindly', 'RB'), ('do', 'VB'), ('the', 'DT'), ('needful', 'NN'), ('as', 'IN'), ('instructed', 'JJ'), ('send', 'NN'), ('proof', 'NN'), ('for', 'IN'), ('approval', 'NN'), ('brdgs', 'NN'), ('sharmistha', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('either', 'DT'), ('talk', 'VBP'), ('around', 'IN'), ('330', 'CD'), ('or', 'CC'), ('4pm', 'CD'), ('today', 'NN'), ('or', 'CC'), ('tuesday', 'NN'), ('anytime', 'RB'), ('after', 'IN'), ('3pm', 'CD')], [('how', 'WRB'), ('about', 'RB'), ('saturday', 'NN'), ('or', 'CC'), ('sunday', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('one', 'CD'), ('more', 'JJR'), ('sheet', 'NN'), ('in', 'IN'), ('the', 'DT'), ('xls', 'NN'), ('which', 'WDT'), ('pointwise', 'NN'), ('tells', 'VBZ'), ('what', 'WP'), ('should', 'MD'), ('the', 'DT'), ('bot', 'NN'), ('spotter', 'NN'), ('do', 'VBP')], [('can', 'MD'), ('you', 'PRP'), ('email', 'VB'), ('us', 'PRP'), ('the', 'DT'), ('all', 'PDT'), ('the', 'DT'), ('fonts', 'NNS'), ('used', 'VBN'), ('header', 'NN'), ('fonts', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('picture', 'NN'), ('and', 'CC'), ('the', 'DT'), ('fonts', 'NNS'), ('for', 'IN'), ('text', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('redesign', 'VB'), ('the', 'DT'), ('add', 'NN'), ('a', 'DT'), ('course', 'NN'), ('and', 'CC'), ('i', 'NN'), ('want', 'VBP'), ('to', 'TO'), ('teach', 'VB'), ('box', 'NN')], [('weekend', 'NN'), ('treksige', 'NN'), ('on', 'IN'), ('idya', 'NN')], [('please', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('give', 'VB'), ('me', 'PRP'), ('a', 'DT'), ('name', 'NN'), ('email', 'NN'), ('id', 'NN'), ('ideally', 'RB'), ('the', 'DT'), ('sales', 'NNS'), ('head', 'VBP'), ('or', 'CC'), ('else', 'VBP'), ('a', 'DT'), ('cofounders', 'NNS'), ('name', 'VBP'), ('so', 'RB'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('connect', 'VB'), ('with', 'IN'), ('them', 'PRP')], [('can', 'MD'), ('you', 'PRP'), ('also', 'RB'), ('deploy', 'VBP'), ('the', 'DT'), ('database', 'NN'), ('with', 'IN'), ('a', 'DT'), ('few', 'JJ'), ('more', 'JJR'), ('users', 'NNS'), ('created', 'VBD'), ('for', 'IN'), ('harness', 'NN'), ('in', 'IN'), ('xx', 'NNP'), ('and', 'CC'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('class', 'NN'), ('harness01', 'NN'), ('to', 'TO'), ('harness10', 'VB')], [('can', 'MD'), ('you', 'PRP'), ('ping', 'VB'), ('me', 'PRP'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('around', 'IN'), ('today', 'NN')], [('please', 'VB'), ('mention', 'NN'), ('in', 'IN'), ('which', 'WDT'), ('month', 'NN'), ('do', 'VBP'), ('you', 'PRP'), ('required', 'VB'), ('booking', 'VBG')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('needs', 'VBZ'), ('to', 'TO'), ('conveyed', 'VB'), ('regarding', 'VBG'), ('the', 'DT'), ('company', 'NN'), ('bearing', 'VBG'), ('the', 'DT'), ('transaction', 'NN'), ('cost', 'NN'), ('for', 'IN'), ('the', 'DT'), ('angels', 'NNS')], [('how', 'WRB'), ('about', 'RB'), ('10am', 'CD')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('contact', 'JJ'), ('number', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('catch', 'VB'), ('up', 'RP')], [('i', 'NN'), ('asked', 'VBD'), ('many', 'JJ'), ('more', 'JJR'), ('but', 'CC'), ('most', 'RBS'), ('have', 'VBP'), ('minimum', 'JJ'), ('requirement', 'NN'), ('of', 'IN'), ('yyyyyy', 'JJ'), ('people', 'NNS'), ('and', 'CC'), ('yy', 'NN'), ('is', 'VBZ'), ('too', 'RB'), ('less', 'JJ'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('happens', 'VBZ'), ('tomorrow', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('keep', 'VB'), ('nandini', 'NN'), ('as', 'IN'), ('backup', 'NN'), ('in', 'IN'), ('case', 'NN'), ('nothing', 'NN'), ('works', 'VBZ'), ('out', 'RP'), ('well', 'RB')], [('will', 'MD'), ('1302pm', 'CD'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('xxxx', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('dial', 'VB'), ('me', 'PRP'), ('around', 'IN'), ('y', 'NNS'), ('today', 'NN')], [('xxxxx', 'NN'), ('does', 'VBZ'), ('friday', 'JJ'), ('evening', 'VBG'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('help', 'VB'), ('me', 'PRP'), ('with', 'IN'), ('any', 'DT'), ('references', 'NNS')], [('can', 'MD'), ('we', 'PRP'), ('try', 'VB'), ('to', 'TO'), ('proceed', 'VB'), ('with', 'IN'), ('some', 'DT'), ('candidates', 'NNS')], [('can', 'MD'), ('we', 'PRP'), ('do', 'VB'), ('later', 'RB'), ('this', 'DT'), ('week', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('advise', 'VB'), ('on', 'IN'), ('your', 'PRP$'), ('preference', 'NN'), ('for', 'IN'), ('a', 'DT'), ('meeting', 'NN'), ('today', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('give', 'VB'), ('us', 'PRP'), ('an', 'DT'), ('online', 'JJ'), ('demo', 'NN'), ('this', 'DT'), ('thursday', 'JJ'), ('evening', 'NN'), ('at', 'IN'), ('7', 'CD'), ('pm', 'NN')], [('could', 'MD'), ('we', 'PRP'), ('schedule', 'VB'), ('the', 'DT'), ('call', 'NN'), ('after', 'IN'), ('2pm', 'CD'), ('tomorrow', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('okay', 'JJ'), ('or', 'CC'), ('if', 'IN'), ('you', 'PRP'), ('wish', 'VBP'), ('to', 'TO'), ('make', 'VB'), ('any', 'DT'), ('edits', 'NNS')], [('by', 'IN'), ('first', 'JJ'), ('month', 'NN'), ('you', 'PRP'), ('mean', 'VBP'), ('end', 'NN'), ('of', 'IN'), ('september', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('share', 'NN'), ('the', 'DT'), ('new', 'JJ'), ('credentials', 'NNS'), ('after', 'IN'), ('reset', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('move', 'VB'), ('the', 'DT'), ('call', 'NN'), ('today', 'NN'), ('at', 'IN'), ('200pm', 'CD'), ('today', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('handle', 'VB'), ('this', 'DT')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('xxxxxxxx', 'VBN'), ('xxxxxxxxxx', 'NNP'), ('or', 'CC'), ('someone', 'NN'), ('from', 'IN'), ('xxxxxxxxx', 'NNP'), ('as', 'IN'), ('host', 'NN'), ('and', 'CC'), ('ganeshan', 'NN'), ('as', 'IN'), ('speaker', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('update', 'VB'), ('this', 'DT'), ('and', 'CC'), ('i', 'VB'), ('can', 'MD'), ('quickly', 'RB'), ('send', 'VB'), ('it', 'PRP'), ('out', 'RP')], [('can', 'MD'), ('you', 'PRP'), ('collect', 'VB'), ('the', 'DT'), ('resumes', 'NNS'), ('of', 'IN'), ('students', 'NNS'), ('who', 'WP'), ('would', 'MD'), ('be', 'VB'), ('interested', 'JJ')], [('what', 'WP'), ('is', 'VBZ'), ('the', 'DT'), ('best', 'JJS'), ('way', 'NN'), ('to', 'TO'), ('track', 'VB'), ('this', 'DT'), ('till', 'NN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('month', 'NN'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('do', 'VBP'), ('not', 'RB'), ('forget', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('this', 'DT'), ('call', 'NN'), ('at', 'IN'), ('730', 'CD'), ('pm', 'NN'), ('post', 'NN'), ('our', 'PRP$'), ('lead', 'NN'), ('gen', 'NN'), ('review', 'NN')], [('please', 'VB'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('on', 'IN'), ('the', 'DT'), ('availability', 'NN'), ('of', 'IN'), ('xxxxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('also', 'RB')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('reschedule', 'VB'), ('my', 'PRP$'), ('tomorrows', 'NNS'), ('tasks', 'NNS')], [('raksha', 'NN'), ('i', 'NNS'), ('have', 'VBP'), ('got', 'VBN'), ('back', 'RB'), ('to', 'TO'), ('back', 'VB'), ('meetings', 'NNS'), ('starting', 'VBG'), ('tomorrow', 'NN'), ('at', 'IN'), ('6pm', 'CD'), ('so', 'RB'), ('can', 'MD'), ('you', 'PRP'), ('reschedule', 'VB'), ('our', 'PRP$'), ('match', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('check', 'VB'), ('the', 'DT'), ('attached', 'JJ'), ('doc', 'NN'), ('and', 'CC'), ('see', 'VB'), ('what', 'WP'), ('needs', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('tweaked', 'VBN')], [('i', 'NN'), ('know', 'VBP'), ('youre', 'NN'), ('held', 'VBD'), ('up', 'RP'), ('today', 'NN'), ('but', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB')], [('could', 'MD'), ('you', 'PRP'), ('add', 'VB'), ('it', 'PRP'), ('for', 'IN'), ('me', 'PRP')], [('can', 'MD'), ('you', 'PRP'), ('advice', 'VB'), ('on', 'IN'), ('this', 'DT')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('is', 'VBZ'), ('a', 'DT'), ('good', 'JJ'), ('time', 'NN'), ('to', 'TO'), ('call', 'VB'), ('and', 'CC'), ('discuss', 'VB')], [('xxxxx', 'NN'), ('xxxxxxxx', 'NNS'), ('supposed', 'VBN'), ('to', 'TO'), ('join', 'VB'), ('today', 'NN')], [('does', 'VBZ'), ('tomorrow', 'NN'), ('morning', 'NN'), ('work', 'NN')], [('when', 'WRB'), ('you', 'PRP'), ('have', 'VBP'), ('time', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('share', 'NN'), ('with', 'IN'), ('me', 'PRP'), ('the', 'DT'), ('location', 'NN'), ('of', 'IN'), ('the', 'DT'), ('data', 'NN'), ('for', 'IN'), ('gb1', 'NN')], [('what', 'WP'), ('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('doing', 'VBG'), ('at', 'IN'), ('who', 'WP'), ('and', 'CC'), ('where', 'WRB'), ('are', 'VBP'), ('you', 'PRP'), ('or', 'CC'), ('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('stationed', 'VBN')], [('who', 'WP'), ('else', 'RB'), ('will', 'MD'), ('be', 'VB'), ('involved', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('monday', 'JJ'), ('meeting', 'NN'), ('regarding', 'VBG'), ('the', 'DT'), ('test', 'NN'), ('infra', 'NN'), ('discussion', 'NN')], [('xxxxx', 'JJ'), ('xxx', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('final', 'JJ'), ('term', 'NN'), ('sheet', 'NN'), ('for', 'IN'), ('the', 'DT'), ('financing', 'NN'), ('including', 'VBG'), ('equity', 'NN'), ('and', 'CC'), ('convertible', 'JJ')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('ensure', 'VB'), ('the', 'DT'), ('other', 'JJ'), ('things', 'NNS'), ('are', 'VBP'), ('reviewed', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('editor', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('still', 'RB'), ('here', 'RB')], [('xxxxx', 'NN'), ('we', 'PRP'), ('take', 'VBP'), ('it', 'PRP'), ('out', 'RP'), ('and', 'CC'), ('restrict', 'VB'), ('to', 'TO'), ('pms', 'VB'), ('apart', 'RB'), ('from', 'IN'), ('sales', 'NNS')], [('can', 'MD'), ('we', 'PRP'), ('replace', 'VB'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('email', 'POS'), ('companion', 'NN'), ('with', 'IN'), ('just', 'RB'), ('xxxxxxx', 'VBN'), ('next', 'JJ'), ('to', 'TO'), ('favicon', 'VB')], [('would', 'MD'), ('it', 'PRP'), ('help', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('made', 'VBD'), ('the', 'DT'), ('role', 'NN'), ('based', 'VBN'), ('out', 'IN'), ('of', 'IN'), ('xxxxxxxxx', 'NN'), ('and', 'CC'), ('didnt', 'NN'), ('require', 'VBP'), ('you', 'PRP'), ('to', 'TO'), ('relocate', 'VB')], [('can', 'MD'), ('you', 'PRP'), ('share', 'NN'), ('your', 'PRP$'), ('numbers', 'NNS'), ('for', 'IN'), ('directions', 'NNS'), ('and', 'CC'), ('entry', 'NN')], [('will', 'MD'), ('love', 'VB'), ('to', 'TO'), ('understand', 'VB'), ('more', 'JJR'), ('about', 'IN'), ('lt', 'JJR'), ('research', 'NN'), ('how', 'WRB'), ('about', 'IN'), ('a', 'DT'), ('call', 'NN'), ('sometime', 'RB')], [('can', 'MD'), ('you', 'PRP'), ('confirm', 'VB'), ('which', 'WDT'), ('one', 'CD'), ('of', 'IN'), ('these', 'DT'), ('we', 'PRP'), ('need', 'VBP'), ('or', 'CC'), ('if', 'IN'), ('we', 'PRP'), ('need', 'VBP'), ('all', 'DT')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('share', 'NN'), ('the', 'DT'), ('report', 'NN'), ('with', 'IN'), ('me', 'PRP'), ('for', 'IN'), ('yesterday', 'NN')], [('you', 'PRP'), ('want', 'VBP'), ('this', 'DT'), ('eod', 'NN'), ('today', 'NN'), ('or', 'CC'), ('early', 'JJ'), ('tomorrow', 'NN'), ('morning', 'NN'), ('eod', 'NN'), ('xx', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('this', 'DT'), ('makes', 'VBZ'), ('more', 'JJR'), ('priority', 'NN'), ('than', 'IN'), ('take', 'VB'), ('soln', 'NN')], [('xxxxx', 'NN'), ('i', 'NN'), ('create', 'VBP'), ('a', 'DT'), ('xxxxxx', 'JJ'), ('form', 'NN'), ('or', 'CC'), ('can', 'MD'), ('we', 'PRP'), ('manage', 'VB'), ('this', 'DT'), ('on', 'IN'), ('parabola', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('planning', 'VBG'), ('to', 'TO'), ('join', 'VB'), ('us', 'PRP'), ('at', 'IN'), ('jsfooyy', 'NN'), ('conference', 'NN'), ('next', 'JJ'), ('week', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('plz', 'VB'), ('rearrangemodify', 'VB'), ('the', 'DT'), ('slides', 'NNS'), ('and', 'CC'), ('send', 'VB'), ('them', 'PRP'), ('back', 'RB'), ('to', 'TO'), ('me', 'PRP')], [('please', 'VB'), ('send', 'VB'), ('us', 'PRP'), ('your', 'PRP$'), ('bank', 'NN'), ('details', 'NNS'), ('along', 'IN'), ('with', 'IN'), ('proforma', 'JJ'), ('invoice', 'NN'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('transfer', 'VB'), ('the', 'DT'), ('payment', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('help', 'VB'), ('out', 'RP')], [('what', 'WP'), ('about', 'IN'), ('catching', 'VBG'), ('up', 'RP'), ('for', 'IN'), ('lunch', 'NN'), ('or', 'CC'), ('coffee', 'NN'), ('tomorrow', 'NN')], [('xxxx', 'NNS'), ('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('today', 'NN')], [('kindly', 'RB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('whether', 'IN'), ('user', 'JJ'), ('id', 'NN'), ('of', 'IN'), ('xxxxx', 'NN'), ('is', 'VBZ'), ('created', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('income', 'NN'), ('tax', 'NN'), ('site', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('there', 'EX'), ('is', 'VBZ'), ('a', 'DT'), ('good', 'JJ'), ('time', 'NN'), ('when', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('talk', 'NN'), ('in', 'IN'), ('detail', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('use', 'VB'), ('the', 'DT'), ('same', 'JJ'), ('one', 'NN'), ('for', 'IN'), ('both', 'DT'), ('the', 'DT'), ('blog', 'NN'), ('and', 'CC'), ('the', 'DT'), ('website', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('plz', 'VB'), ('send', 'VB'), ('the', 'DT'), ('xxx', 'NNP'), ('ppt', 'NN'), ('to', 'TO'), ('xxxxxx', 'VB'), ('if', 'IN'), ('not', 'RB'), ('done', 'VBN'), ('already', 'RB'), ('also', 'RB'), ('could', 'MD'), ('you', 'PRP'), ('plz', 'VB'), ('send', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('me', 'PRP'), ('for', 'IN'), ('my', 'PRP$'), ('reference', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('help', 'VB'), ('reset', 'VB')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('its', 'PRP$'), ('ok', 'NN'), ('for', 'IN'), ('him', 'PRP'), ('to', 'TO'), ('bring', 'VB'), ('a', 'DT'), ('guest', 'NN'), ('and', 'CC'), ('ill', 'VB'), ('let', 'VB'), ('him', 'PRP'), ('kno', 'VB')], [('i', 'JJ'), ('dont', 'NN'), ('think', 'VBP'), ('the', 'DT'), ('call', 'NN'), ('should', 'MD'), ('take', 'VB'), ('very', 'RB'), ('long', 'RB'), ('same', 'JJ'), ('time', 'NN'), ('7308am', 'CD')], [('are', 'VBP'), ('you', 'PRP'), ('okay', 'IN'), ('with', 'IN'), ('taking', 'VBG'), ('this', 'DT'), ('early', 'JJ'), ('appointment', 'NN'), ('time', 'NN'), ('and', 'CC'), ('missing', 'VBG'), ('yoga', 'NN'), ('or', 'CC'), ('pt', 'VB'), ('one', 'CD'), ('day', 'NN')], [('but', 'CC'), ('in', 'IN'), ('your', 'PRP$'), ('mail', 'NN'), ('you', 'PRP'), ('wrote', 'VBD'), ('5pm', 'CD'), ('tomorrow', 'NN'), ('does', 'VBZ'), ('this', 'DT'), ('mean', 'NN'), ('12th', 'CD'), ('thursday', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('ping', 'VBG'), ('me', 'PRP'), ('to', 'TO'), ('discuss', 'VB'), ('what', 'WP'), ('the', 'DT'), ('new', 'JJ'), ('functionality', 'NN'), ('is', 'VBZ'), ('now', 'RB')], [('do', 'VBP'), ('you', 'PRP'), ('have', 'VB'), ('time', 'NN'), ('tomorrow', 'NN'), ('at', 'IN'), ('820am', 'CD'), ('to', 'TO'), ('meet', 'VB'), ('at', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('place', 'NN')], [('any', 'DT'), ('chance', 'NN'), ('you', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('time', 'NN'), ('tomorrow', 'NN'), ('evening', 'VBG'), ('xxx', 'NNP'), ('so', 'RB'), ('friday', 'JJ'), ('morning', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('how', 'WRB'), ('does', 'VBZ'), ('early', 'RB'), ('next', 'JJ'), ('week', 'NN'), ('look', 'NN')], [('kindly', 'RB'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('availability', 'NN'), ('and', 'CC'), ('whether', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('carrying', 'VBG'), ('the', 'DT'), ('handset', 'NN'), ('and', 'CC'), ('the', 'DT'), ('accessories', 'NNS'), ('with', 'IN'), ('you', 'PRP'), ('today', 'NN'), ('so', 'IN'), ('that', 'IN'), ('someone', 'NN'), ('can', 'MD'), ('come', 'VB'), ('and', 'CC'), ('take', 'VB'), ('it', 'PRP'), ('from', 'IN'), ('you', 'PRP')], [('please', 'NN'), ('also', 'RB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('how', 'WRB'), ('to', 'TO'), ('do', 'VB'), ('this', 'DT'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('also', 'RB'), ('learn', 'VB')], [('pls', 'NN'), ('send', 'VB'), ('the', 'DT'), ('snapshotsvideo', 'NN'), ('that', 'IN'), ('you', 'PRP'), ('took', 'VBD'), ('of', 'IN'), ('the', 'DT'), ('demo', 'NN'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('share', 'NN'), ('with', 'IN'), ('my', 'PRP$'), ('marketing', 'NN'), ('and', 'CC'), ('decide', 'VB'), ('on', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('steps', 'NNS')], [('xxxxxx', 'NNS'), ('can', 'MD'), ('we', 'PRP'), ('come', 'VB'), ('tomorrow', 'NN')], [('one', 'CD'), ('of', 'IN'), ('my', 'PRP$'), ('friend', 'NN'), ('expressing', 'VBG'), ('very', 'RB'), ('keen', 'JJ'), ('interest', 'NN'), ('to', 'TO'), ('support', 'VB'), ('us', 'PRP'), ('pl', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB')], [('request', 'NN'), ('you', 'PRP'), ('to', 'TO'), ('go', 'VB'), ('through', 'IN'), ('it', 'PRP'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('a', 'DT'), ('good', 'JJ'), ('time', 'NN'), ('to', 'TO'), ('talk', 'VB'), ('about', 'IN'), ('the', 'DT'), ('changes', 'NNS'), ('if', 'IN'), ('needed', 'VBN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('share', 'NN'), ('the', 'DT'), ('development', 'NN'), ('plan', 'NN'), ('for', 'IN'), ('xxxxxxxx', 'JJ'), ('hotels', 'NNS'), ('by', 'IN'), ('today', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('i', 'NN'), ('could', 'MD'), ('come', 'VB'), ('and', 'CC'), ('collect', 'VB'), ('it', 'PRP')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('mail', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('details', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('charges', 'NNS'), ('and', 'CC'), ('services', 'NNS'), ('offered', 'VBD')], [('xxxxx', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('our', 'PRP$'), ('conference', 'NN'), ('call', 'NN'), ('at', 'IN'), ('8pm', 'CD'), ('if', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('okay', 'JJ'), ('with', 'IN'), ('you', 'PRP'), ('all', 'DT')], [('i', 'NNS'), ('have', 'VBP'), ('a', 'DT'), ('call', 'NN'), ('at', 'IN'), ('yyyyy', 'NN'), ('and', 'CC'), ('am', 'VBP'), ('not', 'RB'), ('sure', 'JJ'), ('if', 'IN'), ('it', 'PRP'), ('will', 'MD'), ('get', 'VB'), ('over', 'IN'), ('before', 'IN'), ('yy', 'NNS'), ('can', 'MD'), ('we', 'PRP'), ('speak', 'VB'), ('at', 'IN'), ('yyyyy', 'JJ'), ('instead', 'RB'), ('of', 'IN'), ('yy', 'JJ'), ('please', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('ping', 'VBG'), ('me', 'PRP'), ('when', 'WRB'), ('you', 'PRP'), ('come', 'VBP'), ('online', 'JJ')], [('you', 'PRP'), ('think', 'VBP'), ('we', 'PRP'), ('should', 'MD'), ('catch', 'VB'), ('up', 'RP'), ('for', 'IN'), ('sometime', 'RB'), ('tomorrow', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('asap', 'RB'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('put', 'VB'), ('it', 'PRP'), ('back', 'RP')], [('arrange', 'NN'), ('for', 'IN'), ('an', 'DT'), ('f2f', 'NN'), ('with', 'IN'), ('ravindranath', 'NN'), ('for', 'IN'), ('monday', 'JJ'), ('x', 'NNP'), ('11', 'CD'), ('am', 'VBP'), ('and', 'CC'), ('update', 'VBP'), ('us', 'PRP'), ('asap', 'VB')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('tomorrow', 'NN'), ('at', 'IN'), ('4pm', 'CD')], [('xxxx', 'JJ'), ('please', 'NN'), ('set', 'VBN'), ('up', 'RP'), ('meeting', 'NN'), ('for', 'IN'), ('kishore', 'NN'), ('with', 'IN'), ('me', 'PRP'), ('and', 'CC'), ('xxxxx', 'VB'), ('for', 'IN'), ('week', 'NN'), ('of', 'IN'), ('yyyy', 'NN'), ('before', 'IN'), ('he', 'PRP'), ('takes', 'VBZ'), ('off', 'IN'), ('for', 'IN'), ('india', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('plan', 'VB'), ('to', 'TO'), ('complete', 'VB'), ('only', 'RB'), ('these', 'DT'), ('y', 'NNS'), ('items', 'NNS'), ('from', 'IN'), ('your', 'PRP$'), ('list', 'NN'), ('of', 'IN'), ('tomorrows', 'NNS'), ('plan', 'VBP'), ('till', 'VB'), ('yy', 'JJ'), ('noon', 'NN')], [('is', 'VBZ'), ('it', 'PRP'), ('posibble', 'JJ'), ('to', 'TO'), ('postpone', 'VB'), ('the', 'DT'), ('meeting', 'NN'), ('to', 'TO'), ('1230', 'CD'), ('or', 'CC'), ('tomorrow', 'NN'), ('also', 'RB'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('working', 'VBG'), ('on', 'IN'), ('xxxxxxxxx', 'NN')], [('could', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('next', 'JJ'), ('tuesday', 'NN'), ('x', 'VBD'), ('1030am', 'CD')], [('xxxxxxx', 'NNS'), ('can', 'MD'), ('we', 'PRP'), ('do', 'VB'), ('this', 'DT'), ('today', 'NN')], [('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('check', 'VB'), ('now', 'RB')], [('xxxx', 'JJ'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('time', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('commit', 'VB')], [('catch', 'VB'), ('up', 'RP'), ('meeting', 'NN'), ('at', 'IN'), ('11am', 'CD'), ('or', 'CC'), ('2pm', 'CD')], [('do', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('a', 'DT'), ('good', 'JJ'), ('time', 'NN'), ('to', 'TO'), ('talk', 'VB'), ('with', 'IN'), ('you', 'PRP'), ('on', 'IN'), ('the', 'DT'), ('phone', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('today', 'NN'), ('at', 'IN'), ('yyyypm', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('tell', 'VB'), ('me', 'PRP'), ('when', 'WRB'), ('you', 'PRP'), ('joined', 'VBD'), ('and', 'CC'), ('then', 'RB'), ('left', 'VBD'), ('xxxxxx', 'RP')], [('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('inquire', 'VB'), ('about', 'IN'), ('the', 'DT'), ('xxx', 'NNP'), ('developer', 'NN'), ('profileplease', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('as', 'IN'), ('to', 'TO'), ('how', 'WRB'), ('i', 'NN'), ('should', 'MD'), ('apply', 'VB'), ('for', 'IN'), ('the', 'DT'), ('post', 'NN'), ('as', 'IN'), ('there', 'EX'), ('is', 'VBZ'), ('no', 'DT'), ('information', 'NN'), ('pertaining', 'VBG'), ('to', 'TO'), ('the', 'DT'), ('same', 'JJ'), ('on', 'IN'), ('the', 'DT'), ('website', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('it', 'PRP'), ('reads', 'VBZ'), ('alright', 'JJ')], [('had', 'VBD'), ('discussion', 'NN'), ('with', 'IN'), ('your', 'PRP$'), ('team', 'NN'), ('mate', 'NN'), ('so', 'RB'), ('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('send', 'VB'), ('a', 'DT'), ('list', 'NN'), ('of', 'IN'), ('all', 'PDT'), ('the', 'DT'), ('accounts', 'NNS'), ('and', 'CC'), ('subgroups', 'NNS'), ('that', 'WDT'), ('are', 'VBP'), ('currently', 'RB'), ('present', 'JJ'), ('in', 'IN'), ('xxxxxxxxxx', 'NN')], [('so', 'RB'), ('i', 'JJ'), ('can', 'MD'), ('get', 'VB'), ('in', 'IN'), ('touch', 'NN'), ('with', 'IN'), ('you', 'PRP'), ('tomorrow', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('discuss', 'VB'), ('this', 'DT'), ('over', 'IN'), ('a', 'DT'), ('call', 'NN'), ('tomorrow', 'NN'), ('i', 'NN'), ('have', 'VBP'), ('sent', 'VBN'), ('an', 'DT'), ('invite', 'NN'), ('already', 'RB')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('forward', 'VB'), ('the', 'DT'), ('xxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('promissory', 'NN'), ('noteit', 'NN'), ('was', 'VBD'), ('in', 'IN'), ('the', 'DT'), ('initial', 'JJ'), ('initial', 'JJ'), ('board', 'NN'), ('and', 'CC'), ('stockholders', 'NNS'), ('consent', 'NN'), ('of', 'IN'), ('feb', 'NN'), ('27', 'CD')], [('just', 'RB'), ('following', 'VBG'), ('up', 'RP'), ('on', 'IN'), ('this', 'DT'), ('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('friday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('9am', 'CD'), ('945am', 'CD'), ('or', 'CC'), ('1030am', 'CD'), ('xxx', 'NN'), ('for', 'IN'), ('a', 'DT'), ('phone', 'NN'), ('call', 'NN'), ('with', 'IN'), ('xxxxxxxx', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('ping', 'VB'), ('me', 'PRP'), ('when', 'WRB'), ('you', 'PRP'), ('have', 'VBP'), ('time', 'NN')], [('did', 'VBD'), ('you', 'PRP'), ('speak', 'VB'), ('to', 'TO'), ('these', 'DT'), ('guys', 'NNS')], [('not', 'RB'), ('sure', 'JJ'), ('of', 'IN'), ('his', 'PRP$'), ('availability', 'NN'), ('but', 'CC'), ('are', 'VBP'), ('you', 'PRP'), ('ok', 'IN'), ('if', 'IN'), ('i', 'JJ'), ('invite', 'VBP'), ('him', 'PRP'), ('over', 'IN'), ('email', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('the', 'DT'), ('tasks', 'NNS'), ('of', 'IN'), ('mine', 'NN'), ('and', 'CC'), ('will', 'MD'), ('try', 'VB'), ('to', 'TO'), ('do', 'VB'), ('today', 'NN'), ('and', 'CC'), ('tomorrow', 'NN'), ('as', 'IN'), ('and', 'CC'), ('when', 'WRB'), ('i', 'NN'), ('felt', 'VBD'), ('good', 'JJ')], [('xxxxxxx', 'JJ'), ('please', 'NN'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('help', 'VB'), ('in', 'IN'), ('anyway', 'RB'), ('to', 'TO'), ('get', 'VB'), ('things', 'NNS'), ('started', 'VBN'), ('here', 'RB')], [('please', 'VB'), ('provide', 'VB'), ('the', 'DT'), ('following', 'JJ'), ('information', 'NN')], [('ticket', 'NN'), ('id', 'NN'), ('yyyyyy', 'NN'), ('why', 'WRB'), ('is', 'VBZ'), ('my', 'PRP$'), ('account', 'NN'), ('suspended', 'VBD')], [('sorry', 'NN'), ('i', 'NN'), ('wont', 'VBP'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('make', 'VB'), ('it', 'PRP'), ('today', 'NN'), ('can', 'MD'), ('we', 'PRP'), ('reschedule', 'VB'), ('for', 'IN'), ('some', 'DT'), ('other', 'JJ'), ('time', 'NN')], [('is', 'VBZ'), ('7pm', 'CD'), ('ok', 'NN')], [('i', 'NNS'), ('need', 'VBP'), ('to', 'TO'), ('pickup', 'VB'), ('xxxxxx', 'NNP'), ('at', 'IN'), ('los', 'JJ'), ('gatos', 'NNS'), ('pedros', 'NN'), ('probably', 'RB'), ('sometime', 'RB'), ('around', 'IN'), ('730', 'CD'), ('pm', 'NN'), ('or', 'CC'), ('so', 'RB'), ('shall', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('somewhere', 'RB'), ('near', 'IN'), ('santa', 'JJ'), ('cruz', 'NN'), ('losgatos', 'NN'), ('saratoga', 'NN'), ('neighborhood', 'NN'), ('around', 'IN'), ('645', 'CD'), ('pm', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('something', 'NN'), ('around', 'RB'), ('11302', 'CD'), ('tomorrow', 'NN')], [('separately', 'RB'), ('do', 'VBP'), ('you', 'PRP'), ('have', 'VB'), ('some', 'DT'), ('time', 'NN'), ('to', 'TO'), ('catch', 'VB'), ('up', 'RP'), ('this', 'DT'), ('week', 'NN')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('happy', 'JJ'), ('to', 'TO'), ('talk', 'VB'), ('over', 'IN'), ('skype', 'NN'), ('when', 'WRB'), ('will', 'MD'), ('be', 'VB'), ('a', 'DT'), ('good', 'JJ'), ('time', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('xxxxx', 'NN'), ('we', 'PRP'), ('connect', 'VBP'), ('monday', 'JJ'), ('morning', 'NN'), ('xxx', 'NN')], [('please', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('take', 'VB'), ('a', 'DT'), ('look', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('email', 'VB'), ('me', 'PRP'), ('your', 'PRP$'), ('updated', 'JJ'), ('xx', 'NN')], [('btw', 'NN'), ('should', 'MD'), ('i', 'VB'), ('come', 'VB'), ('in', 'IN'), ('tomorrow', 'NN'), ('monday', 'NN'), ('or', 'CC'), ('tuesday', 'NN'), ('as', 'IN'), ('usual', 'JJ')], [('hi', 'NN'), ('xxxxx', "''"), ('xxxxx', 'NNS'), ('can', 'MD'), ('we', 'PRP'), ('call', 'VB'), ('you', 'PRP'), ('in', 'IN'), ('the', 'DT'), ('evening', 'VBG'), ('your', 'PRP$'), ('time', 'NN'), ('today', 'NN'), ('830', 'CD'), ('pm', 'NN'), ('ist', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('start', 'VB'), ('my', 'PRP$'), ('indexing', 'NN'), ('as', 'RB'), ('well', 'RB')], [('also', 'RB'), ('xxxxxxx', 'WP'), ('can', 'MD'), ('you', 'PRP'), ('tweetfb', 'VB'), ('about', 'IN'), ('our', 'PRP$'), ('first', 'JJ'), ('blog', 'NN'), ('post', 'NN'), ('that', 'IN'), ('xxxxxx', 'NN'), ('had', 'VBD'), ('written', 'VBN')], [('can', 'MD'), ('you', 'PRP'), ('guys', 'VB'), ('identify', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('candidate', 'VBN'), ('projectdeveloper', 'NN'), ('to', 'TO'), ('try', 'VB'), ('this', 'DT'), ('out', 'RP')], [('could', 'MD'), ('you', 'PRP'), ('kindly', 'RB'), ('contact', 'VBP'), ('the', 'DT'), ('manager', 'NN'), ('and', 'CC'), ('ask', 'VB'), ('him', 'PRP'), ('to', 'TO'), ('honour', 'VB'), ('the', 'DT'), ('cheques', 'NNS'), ('please', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('fetch', 'VB'), ('facebook', 'VB'), ('friends', 'NNS'), ('detail', 'NN'), ('to', 'TO'), ('my', 'PRP$'), ('website', 'NN')], [('could', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('on', 'IN'), ('phone', 'NN'), ('on', 'IN'), ('wednesday', 'NN'), ('at', 'IN'), ('10am', 'CD'), ('if', 'IN'), ('that', 'DT'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP')], [('or', 'CC'), ('tomorrow', 'NN'), ('post', 'NN'), ('noon', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('help', 'VB'), ('me', 'PRP'), ('to', 'TO'), ('circulate', 'VB'), ('this', 'DT'), ('to', 'TO'), ('your', 'PRP$'), ('network', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('the', 'DT'), ('best', 'JJS'), ('time', 'NN'), ('for', 'IN'), ('you', 'PRP'), ('xxxxxx', 'VBP')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('upload', 'VB'), ('the', 'DT'), ('required', 'JJ'), ('data', 'NNS'), ('once', 'RB'), ('you', 'PRP'), ('get', 'VBP'), ('back', 'RB')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('thoughts', 'NNS'), ('on', 'IN'), ('this', 'DT'), ('incase', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('any', 'DT'), ('questions', 'NNS'), ('please', 'VBP'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('me', 'PRP'), ('as', 'RB'), ('soon', 'RB'), ('as', 'IN'), ('possible', 'JJ')], [('as', 'IN'), ('discussed', 'VBN'), ('kindly', 'RB'), ('reply', 'VB'), ('to', 'TO'), ('this', 'DT'), ('email', 'NN'), ('verifying', 'VBG'), ('that', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('received', 'VBN'), ('and', 'CC'), ('accepted', 'VBN'), ('this', 'DT'), ('interview', 'NN'), ('schedule', 'NN')], [('i', 'NN'), ('just', 'RB'), ('realized', 'VBN'), ('itll', 'NNS'), ('take', 'VB'), ('me', 'PRP'), ('a', 'DT'), ('couple', 'NN'), ('of', 'IN'), ('hours', 'NNS'), ('from', 'IN'), ('the', 'DT'), ('airport', 'NN'), ('so', 'RB'), ('can', 'MD'), ('we', 'PRP'), ('do', 'VB'), ('230', 'CD'), ('please', 'NN')], [('4pm', 'CD'), ('works', 'NNS'), ('what', 'WP'), ('is', 'VBZ'), ('your', 'PRP$'), ('number', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('help', 'VB'), ('me', 'PRP'), ('reset', 'VB'), ('my', 'PRP$'), ('password', 'NN'), ('on', 'IN'), ('xxxxxxxxx', 'NN')], [('please', 'VB'), ('review', 'NN'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('chat', 'VB'), ('tomorrow', 'NN')], [('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('catch', 'VB'), ('up', 'RP'), ('with', 'IN'), ('you', 'PRP'), ('on', 'IN'), ('these', 'DT'), ('guys', 'NNS')], [('can', 'MD'), ('you', 'PRP'), ('also', 'RB'), ('give', 'VBP'), ('me', 'PRP'), ('the', 'DT'), ('xxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('content', 'NN'), ('y', 'NN'), ('page', 'NN'), ('xxxx', 'NN')], [('would', 'MD'), ('you', 'PRP'), ('perhaps', 'RB'), ('have', 'VBP'), ('time', 'NN'), ('to', 'TO'), ('meet', 'VB'), ('this', 'DT'), ('friday', 'NN'), ('at', 'IN'), ('lunch', 'NN'), ('instead', 'RB'), ('of', 'IN'), ('the', 'DT'), ('call', 'NN'), ('tomorrow', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('free', 'JJ'), ('today', 'NN'), ('after', 'IN'), ('800', 'CD'), ('pm', 'NN')], [('im', 'NN'), ('planning', 'NN'), ('to', 'TO'), ('visit', 'VB'), ('you', 'PRP'), ('today', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('free', 'JJ')], [('if', 'IN'), ('this', 'DT'), ('is', 'VBZ'), ('okay', 'JJ'), ('then', 'RB'), ('please', 'VB'), ('call', 'VB'), ('me', 'PRP'), ('in', 'IN'), ('the', 'DT'), ('evening', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('ill', 'VB'), ('call', 'NN'), ('you', 'PRP'), ('back', 'VBP')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('the', 'DT'), ('xxxxxxx', 'NNP'), ('login', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('tomorrow', 'NN'), ('in', 'IN'), ('our', 'PRP$'), ('office', 'NN'), ('in', 'IN'), ('xxxxxxxxxx', 'NN'), ('and', 'CC'), ('move', 'VB'), ('this', 'DT'), ('forward', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('make', 'VB'), ('the', 'DT'), ('border', 'NN'), ('around', 'IN'), ('the', 'DT'), ('search', 'NN'), ('box', 'NN'), ('inside', 'IN'), ('scibler', 'NN'), ('panel', 'NN'), ('bolder', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('return', 'VB'), ('the', 'DT'), ('samples', 'NNS'), ('once', 'RB'), ('the', 'DT'), ('trials', 'NNS'), ('are', 'VBP'), ('over', 'IN')], [('eg', 'RB'), ('121213also', 'CD'), ('we', 'PRP'), ('did', 'VBD'), ('discuss', 'VB'), ('removing', 'VBG'), ('the', 'DT'), ('date', 'NN'), ('in', 'IN'), ('the', 'DT'), ('right', 'JJ'), ('column', 'NN'), ('for', 'IN'), ('alerts', 'NNS'), ('right', 'RB')], [('please', 'NN'), ('assign', 'VB'), ('me', 'PRP'), ('some', 'DT'), ('work', 'NN')], [('please', 'NN'), ('have', 'VBP'), ('xxxxxx', 'VBN'), ('run', 'VBN'), ('through', 'IN'), ('it', 'PRP'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('how', 'WRB'), ('much', 'JJ'), ('time', 'NN'), ('it', 'PRP'), ('might', 'MD'), ('take', 'VB'), ('for', 'IN'), ('him', 'PRP'), ('to', 'TO'), ('deliver', 'VB'), ('this', 'DT')], [('can', 'MD'), ('you', 'PRP'), ('take', 'VB'), ('screenshots', 'NNS'), ('of', 'IN'), ('what', 'WP'), ('this', 'DT'), ('looks', 'VBZ'), ('like', 'IN')], [('please', 'NN'), ('have', 'VB'), ('a', 'DT'), ('look', 'NN'), ('at', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('and', 'CC'), ('do', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('on', 'IN'), ('how', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('take', 'VB'), ('this', 'DT'), ('relationship', 'NN'), ('forward', 'RB')], [('dear', 'JJ'), ('xxxx', 'NNP'), ('kindly', 'RB'), ('choose', 'VBD'), ('the', 'DT'), ('plan', 'NN'), ('for', 'IN'), ('your', 'PRP$'), ('mummys', 'NN'), ('cell', 'NN'), ('and', 'CC'), ('please', 'NN'), ('inform', 'VB'), ('me', 'PRP')], [('tx', 'NN'), ('vinay', 'VBZ'), ('what', 'WP'), ('about', 'IN'), ('thursday', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('get', 'VB'), ('paid', 'VBN'), ('for', 'IN'), ('this', 'DT')], [('may', 'MD'), ('i', 'VB'), ('call', 'NN'), ('you', 'PRP'), ('tomorrow', 'NN'), ('afternoon', 'NN'), ('regarding', 'VBG'), ('the', 'DT'), ('following', 'NN')], [('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('you', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('this', 'DT'), ('friday', 'NN'), ('or', 'CC'), ('next', 'JJ'), ('week', 'NN'), ('sometime', 'RB')], [('can', 'MD'), ('you', 'PRP'), ('log', 'VB'), ('in', 'IN'), ('now', 'RB'), ('if', 'IN'), ('possible', 'JJ')], [('can', 'MD'), ('we', 'PRP'), ('go', 'VB'), ('out', 'RP'), ('to', 'TO'), ('buy', 'VB'), ('xxxxxx', 'NNP'), ('and', 'CC'), ('some', 'DT'), ('xxxxxxxx', 'JJ'), ('ice', 'NN'), ('cream', 'NN'), ('tomorrow', 'NN'), ('afternoon', 'NN'), ('at', 'IN'), ('around', 'IN'), ('y', 'NN'), ('maybe', 'RB')], [('are', 'VBP'), ('you', 'PRP'), ('in', 'IN'), ('town', 'NN'), ('next', 'JJ'), ('week', 'NN'), ('for', 'IN'), ('a', 'DT'), ('lunch', 'NN')], [('should', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('xxxx', 'VBN'), ('contact', 'NN'), ('and', 'CC'), ('set', 'VBD'), ('up', 'RP'), ('times', 'NNS'), ('for', 'IN'), ('you', 'PRP'), ('andor', 'VBP'), ('sumant', 'JJ'), ('to', 'TO'), ('chat', 'VB'), ('with', 'IN'), ('them', 'PRP'), ('this', 'DT'), ('week', 'NN'), ('and', 'CC'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN')], [('little', 'JJ'), ('flexible', 'JJ'), ('on', 'IN'), ('dateswe', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('do', 'VB'), ('some', 'DT'), ('kind', 'NN'), ('of', 'IN'), ('preso', 'NN'), ('in', 'IN'), ('chennai', 'NN'), ('about', 'IN'), ('fabricdo', 'NN'), ('you', 'PRP'), ('think', 'VBP'), ('tie', 'RB'), ('as', 'IN'), ('a', 'DT'), ('forum', 'NN'), ('is', 'VBZ'), ('right', 'JJ'), ('or', 'CC'), ('something', 'NN'), ('elseis', 'RB'), ('there', 'RB'), ('enough', 'JJ'), ('time', 'NN'), ('to', 'TO'), ('execute', 'VB'), ('xxxxx', 'NNP'), ('you', 'PRP'), ('think', 'VBP'), ('tie', 'EX'), ('is', 'VBZ'), ('right', 'JJ'), ('then', 'RB'), ('i', 'VBP'), ('can', 'MD'), ('touchbase', 'VB'), ('with', 'IN'), ('xxxxx', 'NN'), ('and', 'CC'), ('see', 'VB'), ('how', 'WRB'), ('to', 'TO'), ('get', 'VB'), ('it', 'PRP'), ('done', 'VBN')], [('please', 'VB'), ('advise', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('mean', 'VBP'), ('12am', 'CD'), ('midnight', 'NN'), ('or', 'CC'), ('12pm', 'CD'), ('noon', 'NNS'), ('ist', 'NN')], [('how', 'WRB'), ('about', 'RB'), ('thursday', 'NN'), ('at', 'IN'), ('8am', 'CD'), ('or', 'CC'), ('friday', 'NN'), ('at', 'IN'), ('8am', 'CD')], [('may', 'MD'), ('xxxxx', 'VB'), ('call', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN'), ('at', 'IN'), ('130pm', 'CD')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('these', 'DT'), ('invoices', 'NNS'), ('are', 'VBP'), ('approved', 'VBN'), ('for', 'IN'), ('payment', 'NN')], [('if', 'IN'), ('not', 'RB'), ('could', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('tomorrow', 'NN'), ('morning', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('add', 'VB'), ('xxxxxxs', 'JJ'), ('meeting', 'NN'), ('on', 'IN'), ('friday', 'NN'), ('in', 'IN'), ('his', 'PRP$'), ('calendar', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('move', 'VB'), ('me', 'PRP'), ('out', 'IN'), ('of', 'IN'), ('xxx', 'NN')], [('will', 'MD'), ('you', 'PRP'), ('correct', 'VB'), ('and', 'CC'), ('commit', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('push', 'VB'), ('our', 'PRP$'), ('meeting', 'NN'), ('to', 'TO'), ('friday', 'VB')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('works', 'VBZ'), ('and', 'CC'), ('where', 'WRB'), ('is', 'VBZ'), ('best', 'RBS')], [('please', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB')], [('hi', 'NN'), ('xxx', 'NNP'), ('xxxx', 'NNP'), ('4pm', 'CD'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('lets', 'NNS'), ('do', 'VBP'), ('it', 'PRP'), ('early', 'JJ'), ('morning', 'NN'), ('tomorrow', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('catch', 'VB'), ('up', 'RP'), ('at', 'IN'), ('115pm', 'CD')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('get', 'VB'), ('it', 'PRP'), ('done', 'VBN'), ('for', 'IN'), ('all', 'PDT'), ('the', 'DT'), ('projects', 'NNS'), ('by', 'IN'), ('xxx', 'NN')], [('any', 'DT'), ('way', 'NN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('mention', 'VB'), ('it', 'PRP'), ('in', 'IN'), ('the', 'DT'), ('resume', 'NN')], [('do', 'VBP'), ('you', 'PRP'), ('want', 'VB'), ('to', 'TO'), ('just', 'RB'), ('meet', 'VB'), ('all', 'DT'), ('of', 'IN'), ('them', 'PRP'), ('for', 'IN'), ('a', 'DT'), ('filter', 'NN'), ('kaapi', 'NN'), ('meetup', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('give', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('number', 'NN'), ('of', 'IN'), ('the', 'DT'), ('person', 'NN'), ('to', 'TO'), ('contact', 'VB'), ('for', 'IN'), ('this', 'DT')], [('can', 'MD'), ('you', 'PRP'), ('do', 'VB'), ('a', 'DT'), ('speed', 'NN'), ('test', 'NN'), ('and', 'CC'), ('check', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('close', 'VB'), ('the', 'DT'), ('1st', 'CD'), ('version', 'NN'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('week', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('schedule', 'VB'), ('for', 'IN'), ('tomorrow', 'NN'), ('or', 'CC'), ('dayafter', 'NN')], [('my', 'PRP$'), ('travel', 'NN'), ('itinerary', 'NN'), ('is', 'VBZ'), ('confirmed', 'VBN'), ('and', 'CC'), ('i', 'VB'), ('will', 'MD'), ('be', 'VB'), ('arriving', 'VBG'), ('in', 'IN'), ('xxxxxxxxx', 'NN'), ('at', 'IN'), ('10', 'CD'), ('am', 'VBP'), ('i', 'RB'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('know', 'VB'), ('if', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('possible', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('you', 'PRP'), ('in', 'IN'), ('between', 'IN'), ('3', 'CD'), ('pm', 'NNS'), ('6', 'CD'), ('pm', 'NN')], [('do', 'VBP'), ('we', 'PRP'), ('setup', 'VB'), ('multiple', 'JJ'), ('branches', 'NNS'), ('in', 'IN'), ('code', 'NN'), ('repositories', 'NNS'), ('as', 'IN'), ('of', 'IN'), ('today', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('a', 'DT'), ('good', 'JJ'), ('time', 'NN'), ('to', 'TO'), ('connect', 'VB'), ('yyyyyyyyyy', 'NN')], [('so', 'RB'), ('i', 'JJ'), ('will', 'MD'), ('be', 'VB'), ('meeting', 'VBG'), ('you', 'PRP'), ('around', 'IN'), ('330', 'CD'), ('pm', 'NN'), ('at', 'IN'), ('your', 'PRP$'), ('office', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('kindly', 'RB'), ('call', 'VB'), ('airtel', 'NN'), ('and', 'CC'), ('let', 'VB'), ('them', 'PRP'), ('know', 'VB')], [('xxxxxxx', 'VB'), ('one', 'CD'), ('small', 'JJ'), ('favor', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('check', 'VB'), ('the', 'DT'), ('alert', 'JJ'), ('times', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('db', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('xxxxxx', 'CD'), ('invite', 'NN')], [('xxxxxx', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('add', 'VB'), ('your', 'PRP$'), ('dads', 'NNS'), ('fb', 'RB'), ('also', 'RB'), ('to', 'TO'), ('the', 'DT'), ('sheet', 'NN')], [('what', 'WP'), ('time', 'NN'), ('and', 'CC'), ('where', 'WRB'), ('is', 'VBZ'), ('the', 'DT'), ('fabric', 'JJ'), ('event', 'NN'), ('tomorrow', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('tomorrow', 'NN'), ('around', 'IN'), ('1300hrs', 'CD'), ('xxx', 'JJ'), ('xxxx', 'NNP'), ('yyyyyyy', 'NN'), ('xxxxx', 'NN')], [('anytime', 'RB'), ('after', 'IN'), ('yyy', 'NN'), ('tomorrow', 'NN'), ('am', 'VBP')], [('xxxxxx', 'NNS'), ('can', 'MD'), ('we', 'PRP'), ('go', 'VB'), ('over', 'RP'), ('xxxxxxs', 'NNP'), ('search', 'NN'), ('fb', 'NN'), ('sometime', 'RB')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('looking', 'VBG'), ('for', 'IN'), ('more', 'JJR'), ('details', 'NNS'), ('on', 'IN'), ('xxxxxx', 'NN'), ('xxxxxx', 'NN')], [('when', 'WRB'), ('can', 'MD'), ('you', 'PRP'), ('provide', 'VB'), ('the', 'DT'), ('term', 'NN'), ('sheet', 'NN'), ('for', 'IN'), ('the', 'DT'), ('note', 'NN')], [('ankit', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('design', 'VB'), ('it', 'PRP')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('plan', 'NN'), ('accordingly', 'RB')], [('can', 'MD'), ('you', 'PRP'), ('pls', 'VB'), ('help', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('this', 'DT'), ('is', 'VBZ'), ('fine', 'JJ'), ('thanks', 'NNS')], [('can', 'MD'), ('we', 'PRP'), ('get', 'VB'), ('xxx', 'VBN'), ('as', 'IN'), ('part', 'NN'), ('of', 'IN'), ('the', 'DT'), ('tool', 'NN'), ('for', 'IN'), ('launch', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('whenever', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('free', 'JJ'), ('today', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('talk', 'VB')], [('tomorrow', 'NN'), ('post', 'NN'), ('lunch', 'NN'), ('lets', 'NNS'), ('say', 'VBP'), ('around', 'IN'), ('330', 'CD'), ('pm', 'JJ'), ('kinds', 'NNS'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP'), ('guys', 'VBP')], [('and', 'CC'), ('how', 'WRB'), ('are', 'VBP'), ('you', 'PRP'), ('feeling', 'VBG'), ('today', 'NN')], [('xxxxx', 'NN'), ('we', 'PRP'), ('try', 'VBP'), ('once', 'RB')], [('can', 'MD'), ('we', 'PRP'), ('please', 'VB'), ('get', 'VB'), ('the', 'DT'), ('tracker', 'NN'), ('details', 'NNS'), ('as', 'IN'), ('well', 'RB')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('check', 'VB'), ('in', 'IN'), ('solr', 'NN'), ('if', 'IN'), ('the', 'DT'), ('name', 'NN'), ('is', 'VBZ'), ('messed', 'VBN'), ('up', 'RP'), ('or', 'CC'), ('is', 'VBZ'), ('it', 'PRP'), ('the', 'DT'), ('xx', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('tell', 'VB'), ('me', 'PRP'), ('if', 'IN'), ('my', 'PRP$'), ('email', 'NN'), ('is', 'VBZ'), ('boring', 'JJ'), ('or', 'CC'), ('lengthy', 'JJ')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('the', 'DT'), ('meeting', 'NN'), ('at', 'IN'), ('yyyypm', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('see', 'VB'), ('if', 'IN'), ('there', 'EX'), ('is', 'VBZ'), ('anything', 'NN'), ('interesting', 'VBG'), ('in', 'IN'), ('that', 'DT'), ('for', 'IN'), ('you', 'PRP'), ('phone', 'NN'), ('number', 'NN'), ('of', 'IN'), ('people', 'NNS'), ('you', 'PRP'), ('dont', 'VBP'), ('have', 'VBP'), ('in', 'IN'), ('your', 'PRP$'), ('contacts', 'NNS'), ('and', 'CC'), ('would', 'MD'), ('want', 'VB'), ('to', 'TO'), ('see', 'VB')], [('hi', 'NN'), ('xxxxxx', 'NN'), ('could', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('next', 'JJ'), ('tuesday', 'NN'), ('24th', 'CD'), ('at', 'IN'), ('3pm', 'CD')], [('do', 'VBP'), ('you', 'PRP'), ('want', 'VB'), ('to', 'TO'), ('talk', 'VB'), ('to', 'TO'), ('anyone', 'NN'), ('from', 'IN'), ('xxx', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('today', 'NN'), ('in', 'IN'), ('the', 'DT'), ('afternoon', 'NN'), ('or', 'CC'), ('tomorrow', 'NN'), ('morning', 'NN'), ('11', 'CD'), ('am', 'VBP')], [('ok', 'NN'), ('so', 'RB'), ('will', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('them', 'PRP'), ('the', 'DT'), ('details', 'NNS')], [('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('up', 'RP')], [('can', 'MD'), ('we', 'PRP'), ('do', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('wednesday', 'NN'), ('instead', 'RB')], [('this', 'DT'), ('is', 'VBZ'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('events', 'NNS'), ('can', 'MD'), ('you', 'PRP'), ('check', 'VB'), ('if', 'IN'), ('everything', 'NN'), ('is', 'VBZ'), ('ok', 'JJ')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('i', 'NNS'), ('can', 'MD'), ('not', 'RB'), ('see', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN'), ('we', 'PRP'), ('should', 'MD'), ('meet', 'VB'), ('up', 'RP'), ('early', 'RB'), ('next', 'JJ'), ('week', 'NN')], [('perhaps', 'RB'), ('next', 'JJ'), ('week', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('just', 'RB'), ('call', 'VB'), ('xxxxx', 'NN')], [('hey', 'NN'), ('dude', 'VBP'), ('one', 'CD'), ('of', 'IN'), ('my', 'PRP$'), ('portfolio', 'NN'), ('companies', 'NNS'), ('need', 'VBP'), ('a', 'DT'), ('big', 'JJ'), ('data', 'NN'), ('guy', 'NN'), ('who', 'WP'), ('can', 'MD'), ('be', 'VB'), ('a', 'DT'), ('consultantcontractor', 'NN'), ('etc', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('any', 'DT'), ('one', 'CD'), ('in', 'IN'), ('your', 'PRP$'), ('network', 'NN'), ('fits', 'VBZ'), ('the', 'DT'), ('bill', 'NN'), ('if', 'IN'), ('this', 'DT'), ('is', 'VBZ'), ('something', 'NN'), ('you', 'PRP'), ('guys', 'VBP'), ('can', 'MD'), ('help', 'VB'), ('with', 'IN'), ('ill', 'JJ'), ('connect', 'NN'), ('you', 'PRP'), ('directly', 'RB'), ('with', 'IN'), ('xxxxx', 'NNP'), ('xxxxxxxxx', 'NN'), ('to', 'TO'), ('take', 'VB'), ('it', 'PRP'), ('further', 'RB')], [('xxxxx', 'NN'), ('we', 'PRP'), ('discuss', 'VBP'), ('tomorrow', 'NN')], [('just', 'RB'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('about', 'IN'), ('any', 'DT'), ('convenient', 'JJ'), ('time', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('which', 'WDT'), ('date', 'NN'), ('would', 'MD'), ('be', 'VB'), ('most', 'RBS'), ('convenient', 'JJ'), ('for', 'IN'), ('you', 'PRP'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('arrange', 'VB'), ('an', 'DT'), ('appointment', 'NN'), ('accordingly', 'RB')], [('can', 'MD'), ('you', 'PRP'), ('ask', 'VB'), ('her', 'PRP'), ('to', 'TO'), ('register', 'VB'), ('in', 'IN'), ('the', 'DT'), ('website', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('read', 'VB'), ('and', 'CC'), ('do', 'VB'), ('the', 'DT'), ('following', 'VBG'), ('1', 'CD'), ('give', 'JJ'), ('me', 'PRP'), ('feedback', 'VBP'), ('y', 'JJ'), ('put', 'VB'), ('your', 'PRP$'), ('thoughts', 'NNS'), ('or', 'CC'), ('quotes', 'NNS'), ('if', 'IN'), ('you', 'PRP'), ('agree', 'VBP'), ('or', 'CC'), ('disagree', 'VBP')], [('please', 'VB'), ('do', 'VB'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('how', 'WRB'), ('to', 'TO'), ('take', 'VB'), ('this', 'DT'), ('forward', 'NN')], [('should', 'MD'), ('i', 'VB'), ('come', 'VB'), ('to', 'TO'), ('your', 'PRP$'), ('house', 'NN'), ('tomorrow', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('give', 'VB'), ('us', 'PRP'), ('a', 'DT'), ('transparent', 'JJ'), ('image', 'NN'), ('for', 'IN'), ('the', 'DT'), ('attachment', 'NN')], [('sure', 'RB'), ('right', 'RB'), ('after', 'IN'), ('our', 'PRP$'), ('2pm', 'CD'), ('meeting', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('help', 'VB'), ('me', 'PRP'), ('with', 'IN'), ('the', 'DT'), ('js', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP'), ('better', 'JJR'), ('images', 'NNS')], [('do', 'VBP'), ('you', 'PRP'), ('want', 'VB'), ('to', 'TO'), ('postpone', 'VB'), ('the', 'DT'), ('call', 'NN')], [('can', 'MD'), ('i', 'VB'), ('call', 'NN'), ('you', 'PRP'), ('after', 'IN'), ('15', 'CD'), ('minutes', 'NNS')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('share', 'NN'), ('the', 'DT'), ('consolidated', 'JJ'), ('feedback', 'NN'), ('so', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('look', 'VB'), ('at', 'IN'), ('them', 'PRP'), ('submit', 'VBP'), ('the', 'DT'), ('latest', 'JJS'), ('build', 'NN'), ('for', 'IN'), ('testing', 'VBG')], [('can', 'MD'), ('you', 'PRP'), ('connect', 'VB'), ('me', 'PRP'), ('with', 'IN'), ('nikita', 'NNS'), ('and', 'CC'), ('xxxxxx', 'NN'), ('of', 'IN'), ('xxxxxxxxxx', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('share', 'NN'), ('with', 'IN'), ('me', 'PRP'), ('the', 'DT'), ('report', 'NN'), ('from', 'IN'), ('mumoments', 'NNS'), ('showing', 'VBG'), ('the', 'DT'), ('accountwise', 'JJ'), ('list', 'NN'), ('of', 'IN'), ('opportunities', 'NNS'), ('whose', 'WP$'), ('close', 'JJ'), ('date', 'NN'), ('is', 'VBZ'), ('past', 'JJ'), ('due', 'JJ'), ('and', 'CC'), ('has', 'VBZ'), ('not', 'RB'), ('been', 'VBN'), ('extended', 'VBN'), ('as', 'IN'), ('of', 'IN'), ('date', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('thoughts', 'NNS')], [('xxxxx', 'NN'), ('we', 'PRP'), ('confirm', 'VBP'), ('thursday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('130pm', 'CD'), ('at', 'IN'), ('xxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('in', 'IN'), ('xxxxxxxx', 'NNP'), ('xxxx', 'NN')], [('if', 'IN'), ('it', 'PRP'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP'), ('i', 'VBP'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('schedule', 'VB'), ('for', 'IN'), ('wednesday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('1800', 'CD'), ('cet', 'NN'), ('which', 'WDT'), ('is', 'VBZ'), ('900am', 'CD'), ('pst', 'NN')], [('xxxxxxx', 'JJ'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('after', 'IN'), ('you', 'PRP'), ('bring', 'VBP'), ('up', 'RP'), ('the', 'DT'), ('pane', 'NN'), ('xxxxxxx', 'NN'), ('and', 'CC'), ('i', 'NN'), ('can', 'MD'), ('try', 'VB'), ('to', 'TO'), ('populate', 'VB'), ('the', 'DT'), ('related', 'JJ'), ('info', 'NN')], [('do', 'VBP'), ('you', 'PRP'), ('want', 'VB'), ('to', 'TO'), ('talk', 'VB'), ('to', 'TO'), ('them', 'PRP')], [('can', 'MD'), ('you', 'PRP'), ('exactly', 'RB'), ('tell', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('name', 'NN'), ('of', 'IN'), ('the', 'DT'), ('all', 'DT'), ('mail', 'NN'), ('folder', 'NN'), ('in', 'IN'), ('xxxxxxxxs', 'NNP'), ('account', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('sign', 'VB'), ('up', 'RP'), ('on', 'IN'), ('our', 'PRP$'), ('website', 'NNS'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('onboard', 'VB'), ('you', 'PRP'), ('and', 'CC'), ('fmget', 'VB'), ('your', 'PRP$'), ('feedback', 'NN')], [('xxxxx', 'NN'), ('we', 'PRP'), ('go', 'VBP'), ('tomorrow', 'NN'), ('morning', 'NN'), ('tentatively', 'RB'), ('start', 'VB'), ('by', 'IN'), ('6am', 'CD')], [('xxxxxxx', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('to', 'TO'), ('meet', 'VB'), ('xxxxxx', 'JJ'), ('as', 'RB'), ('well', 'RB'), ('on', 'IN'), ('your', 'PRP$'), ('trip', 'NN')], [('how', 'WRB'), ('are', 'VBP'), ('you', 'PRP'), ('placed', 'VBN'), ('next', 'JJ'), ('week', 'NN'), ('tues', 'NNS'), ('xxxxx', 'VBP')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('xxxxxxxx', 'NN'), ('can', 'MD'), ('add', 'VB'), ('his', 'PRP$'), ('account', 'NN'), ('again', 'RB')], [('please', 'VB'), ('do', 'VB'), ('resend', 'VB')], [('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('during', 'IN'), ('the', 'DT'), ('week', 'NN'), ('of', 'IN'), ('oct', '$'), ('14th', 'CD'), ('if', 'IN'), ('that', 'DT'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP')], [('hey', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('i', 'NNS'), ('have', 'VBP'), ('to', 'TO'), ('send', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('pics', 'NNS'), ('in', 'IN'), ('j', 'NN'), ('peg', 'NN'), ('format', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('all', 'DT'), ('of', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('free', 'JJ'), ('so', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('me', 'PRP'), ('and', 'CC'), ('yogesh', 'VB'), ('can', 'MD'), ('start', 'VB'), ('working', 'VBG'), ('on', 'IN'), ('template', 'NN'), ('for', 'IN'), ('the', 'DT'), ('website', 'NN'), ('and', 'CC'), ('you', 'PRP'), ('aritra', 'VBP'), ('and', 'CC'), ('shiv', 'VBP'), ('can', 'MD'), ('write', 'VB'), ('concrete', 'JJ'), ('content', 'NN'), ('for', 'IN'), ('each', 'DT'), ('webpage', 'NN')], [('guys', 'NNS'), ('ill', 'VBP'), ('take', 'VB'), ('a', 'DT'), ('pass', 'NN'), ('on', 'IN'), ('this', 'DT'), ('rough', 'JJ'), ('weather', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('had', 'VBD'), ('an', 'DT'), ('iit', 'NN'), ('picnic', 'NN'), ('today', 'NN'), ('are', 'VBP'), ('you', 'PRP'), ('all', 'DT'), ('still', 'RB'), ('meeting', 'VBG')], [('can', 'MD'), ('you', 'PRP'), ('move', 'VB'), ('your', 'PRP$'), ('call', 'NN'), ('on', 'IN'), ('tuesday', 'NN'), ('i', 'NN'), ('donot', 'VBP'), ('see', 'VB'), ('any', 'DT'), ('other', 'JJ'), ('time', 'NN'), ('of', 'IN'), ('xxs', 'NNP'), ('calendar', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP'), ('more', 'JJR'), ('drafts', 'NNS')], [('please', 'VB'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('thoughts', 'NNS')], [('hey', 'NN'), ('xxxx', 'VBD'), ('i', 'NN'), ('was', 'VBD'), ('pulled', 'VBN'), ('into', 'IN'), ('to', 'TO'), ('work', 'VB'), ('today', 'NN'), ('but', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('talk', 'VB'), ('right', 'RB'), ('now', 'RB'), ('can', 'MD'), ('i', 'VB'), ('call', 'VB'), ('you', 'PRP'), ('now', 'RB')], [('would', 'MD'), ('you', 'PRP'), ('mind', 'VB'), ('meeting', 'NN'), ('after', 'IN'), ('my', 'PRP$'), ('class', 'NN')], [('xxxx', 'NNS'), ('who', 'WP'), ('can', 'MD'), ('we', 'PRP'), ('swipe', 'VB'), ('in', 'IN'), ('for', 'IN'), ('this', 'DT'), ('thinking', 'NN'), ('role', 'NN')], [('checked', 'VBN'), ('on', 'IN'), ('vatsans', 'NNS'), ('and', 'CC'), ('mine', 'VB'), ('it', 'PRP'), ('is', 'VBZ'), ('fine', 'JJ'), ('can', 'MD'), ('you', 'PRP'), ('tell', 'VB'), ('me', 'PRP'), ('which', 'WDT'), ('alert', 'VBP')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('collate', 'VB'), ('feedback', 'NN'), ('and', 'CC'), ('sit', 'NN'), ('with', 'IN'), ('me', 'PRP'), ('to', 'TO'), ('convey', 'VB'), ('to', 'TO'), ('him', 'PRP'), ('tomorrow', 'NN')], [('what', 'WP'), ('is', 'VBZ'), ('the', 'DT'), ('objective', 'NN'), ('of', 'IN'), ('pitching', 'VBG'), ('this', 'DT'), ('thursday', 'NN')], [('did', 'VBD'), ('you', 'PRP'), ('get', 'VB'), ('a', 'DT'), ('chance', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('on', 'IN'), ('the', 'DT'), ('xxx', 'NN'), ('proposal', 'NN')], [('xxxxxx', 'NN'), ('could', 'MD'), ('you', 'PRP'), ('share', 'NN'), ('the', 'DT'), ('document', 'NN'), ('with', 'IN'), ('me', 'PRP'), ('as', 'IN'), ('well', 'RB'), ('im', 'VBZ'), ('not', 'RB'), ('sure', 'JJ'), ('i', 'NN'), ('am', 'VBP'), ('looking', 'VBG'), ('at', 'IN'), ('the', 'DT'), ('right', 'JJ'), ('document', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('seeing', 'VBG'), ('a', 'DT')], [('could', 'MD'), ('you', 'PRP'), ('suggest', 'VB'), ('or', 'CC'), ('refer', 'VB'), ('us', 'PRP'), ('people', 'NNS'), ('with', 'IN'), ('relevant', 'JJ'), ('experience', 'NN'), ('for', 'IN'), ('this', 'DT'), ('position', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('share', 'NN'), ('the', 'DT'), ('project', 'NN'), ('plan', 'NN'), ('for', 'IN'), ('the', 'DT'), ('website', 'NN'), ('launch', 'NN')], [('does', 'VBZ'), ('y', 'VB'), ('today', 'NN'), ('work', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('suggest', 'VB'), ('more', 'JJR'), ('profiles', 'NNS'), ('from', 'IN'), ('the', 'DT'), ('team', 'NN')], [('please', 'VB'), ('send', 'VB'), ('across', 'IN'), ('the', 'DT'), ('npc', 'NN'), ('stuff', 'NN'), ('so', 'IN'), ('i', 'JJ'), ('can', 'MD'), ('start', 'VB'), ('preparing', 'VBG'), ('attached', 'VBN'), ('is', 'VBZ'), ('a', 'DT'), ('one', 'NN'), ('pager', 'NN'), ('introducing', 'VBG'), ('xxxxxx', 'NNP'), ('specifically', 'RB'), ('targeted', 'VBD'), ('to', 'TO'), ('enterprises', 'NNS')], [('can', 'MD'), ('i', 'VB'), ('discuss', 'NN'), ('with', 'IN'), ('you', 'PRP'), ('sometime', 'VBP'), ('today', 'NN'), ('evening', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('tomorrow', 'NN'), ('morning', 'NN'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP'), ('breakfast', 'VBP'), ('or', 'CC'), ('otherwise', 'RB')], [('do', 'VB'), ('confirm', 'VB'), ('this', 'DT'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('close', 'VB'), ('this', 'DT'), ('with', 'IN'), ('rajinish', 'JJ')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('possible', 'JJ'), ('to', 'TO'), ('schedule', 'VB'), ('a', 'DT'), ('call', 'NN'), ('either', 'RB'), ('this', 'DT'), ('week', 'NN'), ('on', 'IN'), ('thursdayfriday', 'NN'), ('or', 'CC'), ('next', 'JJ'), ('week', 'NN'), ('mondaythursdayfriday', 'NN')], [('kindly', 'RB'), ('send', 'VB'), ('us', 'PRP'), ('your', 'PRP$'), ('best', 'JJS'), ('offer', 'NN'), ('and', 'CC'), ('delivery', 'NN'), ('time', 'NN'), ('for', 'IN'), ('the', 'DT'), ('following', 'JJ'), ('sc', 'NN'), ('herder', 'NN'), ('xxxxxx', 'NNP'), ('xxxx', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('help', 'VB'), ('find', 'VB'), ('a', 'DT'), ('resource', 'NN'), ('who', 'WP'), ('knows', 'VBZ'), ('hl7', 'NN'), ('xxxxx', 'NN'), ('xx', 'NN')], [('i', 'NNS'), ('have', 'VBP'), ('a', 'DT'), ('small', 'JJ'), ('request', 'NN'), ('and', 'CC'), ('wanted', 'VBD'), ('to', 'TO'), ('speak', 'VB'), ('to', 'TO'), ('you', 'PRP'), ('at', 'IN'), ('your', 'PRP$'), ('free', 'JJ'), ('time', 'NN'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('i', 'NN'), ('can', 'MD'), ('meet', 'VB'), ('you', 'PRP')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('the', 'DT'), ('training', 'NN'), ('for', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('for', 'IN'), ('tomorrow', 'NN'), ('yyyyyyy', 'CD'), ('x1630', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('really', 'RB'), ('sorry', 'JJ'), ('i', 'NN'), ('am', 'VBP'), ('making', 'VBG'), ('you', 'PRP'), ('do', 'VBP'), ('this', 'DT'), ('but', 'CC'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('push', 'VB'), ('this', 'DT'), ('to', 'TO'), ('tomorrow', 'NN'), ('7', 'CD'), ('pm', 'NN')], [('does', 'VBZ'), ('thursday', 'VB'), ('the', 'DT'), ('26th', 'CD'), ('work', 'NN')], [('if', 'IN'), ('this', 'DT'), ('is', 'VBZ'), ('fine', 'JJ'), ('will', 'MD'), ('roll', 'VB'), ('out', 'RP'), ('all', 'PDT'), ('the', 'DT'), ('letters', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('team', 'NN'), ('tomorrow', 'NN')], [('please', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('remove', 'VB'), ('it', 'PRP')], [('can', 'MD'), ('we', 'PRP'), ('find', 'VB'), ('tomorrow', 'NN')], [('xxxx', 'JJ'), ('please', 'NN'), ('send', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('details', 'NNS')], [('please', 'VB'), ('confirm', 'JJ'), ('receipt', 'NN'), ('of', 'IN'), ('this', 'DT'), ('mail', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('need', 'VBP'), ('anything', 'NN'), ('else', 'RB')], [('would', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('available', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('next', 'JJ'), ('week', 'NN'), ('either', 'RB'), ('on', 'IN'), ('tue', 'NN'), ('or', 'CC'), ('wed', 'VBN'), ('afternoon', 'NN')], [('is', 'VBZ'), ('it', 'PRP'), ('okay', 'JJ'), ('to', 'TO'), ('schedule', 'VB'), ('breakfast', 'NN'), ('for', 'IN'), ('this', 'DT'), ('friday', 'NN'), ('at', 'IN'), ('830am', 'CD')], [('so', 'RB'), ('6pm', 'CD'), ('should', 'MD'), ('work', 'VB'), ('with', 'IN'), ('xxxxx', 'JJ'), ('and', 'CC'), ('prabakar', 'JJ'), ('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('no', 'DT'), ('other', 'JJ'), ('meetings', 'NNS'), ('planned', 'VBN'), ('at', 'IN'), ('that', 'DT'), ('time', 'NN')], [('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('speak', 'VB'), ('with', 'IN'), ('you', 'PRP'), ('for', 'IN'), ('a', 'DT'), ('few', 'JJ'), ('minutes', 'NNS'), ('regarding', 'VBG'), ('this', 'DT'), ('email', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('youd', 'NNS'), ('like', 'IN'), ('a', 'DT'), ('final', 'JJ'), ('spreadsheet', 'NN'), ('that', 'WDT'), ('identifies', 'VBZ'), ('the', 'DT'), ('folks', 'NNS'), ('who', 'WP'), ('didnt', 'VBP'), ('sho', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('get', 'VB'), ('an', 'DT'), ('conf', 'NN'), ('room', 'NN'), ('at', 'IN'), ('your', 'PRP$'), ('pa', 'JJ'), ('place', 'NN'), ('330', 'CD'), ('500', 'CD'), ('on', 'IN'), ('friday', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('spare', 'VB'), ('some', 'DT'), ('time', 'NN'), ('to', 'TO'), ('spend', 'VB'), ('with', 'IN'), ('me', 'PRP'), ('on', 'IN'), ('that', 'DT')], [('does', 'VBZ'), ('next', 'JJ'), ('tuesday', 'NN'), ('oct', 'VBD'), ('1', 'CD'), ('10am', 'CD'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('if', 'IN'), ('you', 'PRP'), ('do', 'VBP'), ('have', 'VB'), ('time', 'NN'), ('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('i', 'JJ'), ('can', 'MD'), ('seek', 'VB'), ('your', 'PRP$'), ('advice', 'NN'), ('regarding', 'VBG'), ('this', 'DT')], [('can', 'MD'), ('we', 'PRP'), ('see', 'VB'), ('charting', 'VBG'), ('on', 'IN'), ('how', 'WRB'), ('we', 'PRP'), ('are', 'VBP'), ('doing', 'VBG'), ('in', 'IN'), ('the', 'DT'), ('last', 'JJ'), ('6', 'CD'), ('months', 'NNS')], [('definitely', 'RB'), ('can', 'MD'), ('you', 'PRP'), ('explain', 'VB'), ('more', 'JJR'), ('about', 'IN'), ('the', 'DT'), ('projectlike', 'NN'), ('how', 'WRB'), ('the', 'DT'), ('project', 'NN'), ('is', 'VBZ'), ('going', 'VBG'), ('to', 'TO'), ('implement', 'VB'), ('sent', 'NN'), ('from', 'IN'), ('my', 'PRP$'), ('xxxxxxxxxx', 'JJ'), ('yy', 'NN'), ('smartphone', 'NN')], [('additionally', 'RB'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('send', 'VB'), ('me', 'PRP'), ('these', 'DT'), ('documents', 'NNS')], [('can', 'MD'), ('we', 'PRP'), ('not', 'RB'), ('strive', 'VB'), ('to', 'TO'), ('be', 'VB'), ('different', 'JJ')], [('could', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('a', 'DT'), ('quick', 'JJ'), ('meeting', 'NN'), ('one', 'CD'), ('of', 'IN'), ('these', 'DT'), ('days', 'NNS'), ('to', 'TO'), ('see', 'VB'), ('how', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('work', 'VB'), ('out', 'RP'), ('xxxxxxx', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('can', 'MD'), ('you', 'PRP'), ('help', 'VB'), ('us', 'PRP'), ('there', 'RB'), ('at', 'IN'), ('the', 'DT'), ('earliest', 'JJS')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('is', 'VBZ'), ('a', 'DT'), ('good', 'JJ'), ('time', 'NN'), ('to', 'TO'), ('connect', 'VB')], [('alternately', 'RB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('want', 'VBP'), ('me', 'PRP'), ('to', 'TO'), ('call', 'VB'), ('you', 'PRP'), ('up', 'RP'), ('and', 'CC'), ('what', 'WP'), ('time', 'NN'), ('will', 'MD'), ('be', 'VB'), ('suitable', 'JJ'), ('for', 'IN'), ('you', 'PRP')], [('actually', 'RB'), ('many', 'JJ'), ('of', 'IN'), ('them', 'PRP'), ('ive', 'VBP'), ('sent', 'VBN'), ('you', 'PRP'), ('before', 'IN'), ('why', 'WRB'), ('dont', 'NN'), ('you', 'PRP'), ('take', 'VBP'), ('a', 'DT'), ('look', 'NN'), ('at', 'IN'), ('them', 'PRP'), ('below', 'IN'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('which', 'WDT'), ('ones', 'NNS'), ('you', 'PRP'), ('are', 'VBP'), ('interested', 'JJ'), ('in', 'IN'), ('and', 'CC'), ('ill', 'VB'), ('make', 'VB'), ('the', 'DT'), ('int', 'NN')], [('please', 'VB'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('support', 'VBP'), ('this', 'DT'), ('activity', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('download', 'VB'), ('this', 'DT'), ('ad', 'NN'), ('httpimgplatformseventyninemobiwwwimagespr365mp4', 'NN'), ('and', 'CC'), ('transcode', 'NN'), ('this', 'DT'), ('from', 'IN'), ('apalya', 'NN'), ('and', 'CC'), ('send', 'VB'), ('it', 'PRP'), ('back', 'RP')], [('xxxxxx', 'RB'), ('later', 'RB'), ('this', 'DT'), ('month', 'NN'), ('i', 'NN'), ('might', 'MD'), ('be', 'VB'), ('in', 'IN'), ('xxxxxxxxx', 'NNP'), ('for', 'IN'), ('work', 'NN'), ('as', 'RB'), ('well', 'RB'), ('so', 'RB'), ('perhaps', 'RB'), ('we', 'PRP'), ('could', 'MD'), ('meet', 'VB'), ('and', 'CC'), ('speak', 'VB'), ('about', 'IN'), ('this', 'DT'), ('too', 'RB')], [('we', 'PRP'), ('would', 'MD'), ('appreciate', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('could', 'MD'), ('send', 'VB'), ('the', 'DT'), ('same', 'JJ'), ('to', 'TO'), ('us', 'PRP'), ('at', 'IN'), ('the', 'DT'), ('earliest', 'JJS'), ('today', 'NN'), ('since', 'IN'), ('530pm', 'CD'), ('is', 'VBZ'), ('the', 'DT'), ('absolute', 'JJ'), ('cutoff', 'NN'), ('time', 'NN'), ('for', 'IN'), ('us', 'PRP'), ('to', 'TO'), ('receive', 'VB'), ('financials', 'NNS')], [('before', 'IN'), ('that', 'DT'), ('if', 'IN'), ('you', 'PRP'), ('could', 'MD'), ('explain', 'VB'), ('what', 'WP'), ('are', 'VBP'), ('you', 'PRP'), ('looking', 'VBG'), ('for', 'IN'), ('in', 'IN'), ('me', 'PRP')], [('can', 'MD'), ('we', 'PRP'), ('be', 'VB'), ('n', 'JJ'), ('line', 'NN')], [('how', 'WRB'), ('about', 'IN'), ('we', 'PRP'), ('try', 'VBP'), ('the', 'DT'), ('following', 'JJ')], [('how', 'WRB'), ('would', 'MD'), ('yyyy', 'VB'), ('pm', 'VB'), ('your', 'PRP$'), ('time', 'NN'), ('tomorrow', 'NN'), ('afternoon', 'NN'), ('25', 'CD'), ('september', 'NN'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('hi', 'NN'), ('guys', 'NNS'), ('xxxxx', 'VBP'), ('is', 'VBZ'), ('what', 'WP'), ('i', 'NN'), ('have', 'VBP'), ('so', 'RB'), ('far', 'RB'), ('please', 'JJ'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('the', 'DT'), ('changes', 'NNS'), ('and', 'CC'), ('edits', 'VBZ'), ('youd', 'NNS'), ('like', 'IN'), ('to', 'TO'), ('see', 'VB')], [('is', 'VBZ'), ('there', 'EX'), ('a', 'DT'), ('number', 'NN'), ('i', 'NN'), ('can', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('on', 'IN')], [('can', 'MD'), ('we', 'PRP'), ('get', 'VB'), ('an', 'DT'), ('additional', 'JJ'), ('hour', 'NN'), ('for', 'IN'), ('itapp', 'NN'), ('to', 'TO'), ('talk', 'VB'), ('to', 'TO'), ('xx', 'VB')], [('so', 'RB'), ('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('for', 'IN'), ('that', 'DT'), ('tomorrow', 'NN'), ('morning', 'NN'), ('around', 'IN'), ('10', 'CD'), ('am', 'VBP'), ('maybe', 'RB')], [('can', 'MD'), ('you', 'PRP'), ('help', 'VB'), ('them', 'PRP'), ('with', 'IN'), ('their', 'PRP$'), ('request', 'NN')], [('how', 'WRB'), ('does', 'VBZ'), ('thursday', 'JJ'), ('morning', 'NN'), ('for', 'IN'), ('me', 'PRP'), ('wednesday', 'JJ'), ('late', 'JJ'), ('evening', 'NN'), ('for', 'IN'), ('you', 'PRP'), ('sound', 'VBP')], [('do', 'VB'), ('you', 'PRP'), ('need', 'VB'), ('to', 'TO'), ('talk', 'VB'), ('to', 'TO'), ('him', 'PRP')], [('perhaps', 'RB'), ('we', 'PRP'), ('could', 'MD'), ('grab', 'VB'), ('coffee', 'NN'), ('in', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('week', 'NN'), ('or', 'CC'), ('two', 'CD')], [('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('get', 'VB'), ('the', 'DT'), ('paperwork', 'NN'), ('signed', 'VBD'), ('both', 'DT'), ('for', 'IN'), ('seed', 'NN'), ('and', 'CC'), ('note', 'NN'), ('from', 'IN'), ('the', 'DT'), ('fabric', 'NN'), ('managers', 'NNS'), ('and', 'CC'), ('fund', 'NN'), ('this', 'DT'), ('week', 'NN')], [('but', 'CC'), ('could', 'MD'), ('you', 'PRP'), ('share', 'NN'), ('the', 'DT'), ('what', 'WP'), ('i', 'NN'), ('could', 'MD'), ('be', 'VB'), ('leading', 'VBG'), ('there', 'RB')], [('can', 'MD'), ('we', 'PRP'), ('do', 'VB'), ('this', 'DT'), ('tomorrow', 'NN'), ('lunch', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('pls', 'VB'), ('send', 'VB'), ('me', 'PRP'), ('your', 'PRP$'), ('signature', 'NN'), ('panel', 'NN'), ('with', 'IN'), ('contact', 'NN'), ('details', 'NNS')], [('please', 'VB'), ('call', 'VB'), ('me', 'PRP'), ('on', 'IN'), ('my', 'PRP$'), ('cell', 'NN'), ('yyyyyyyyyy', 'RB'), ('today', 'NN'), ('evening', 'VBG'), ('at', 'IN'), ('around', 'IN'), ('5pm', 'CD')], [('2', 'CD'), ('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('at', 'IN'), ('6pm', 'CD'), ('instead', 'RB'), ('of', 'IN'), ('530pm', 'CD'), ('today', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('you', 'PRP'), ('can', 'MD'), ('send', 'VB'), ('to', 'TO'), ('me', 'PRP')], [('can', 'MD'), ('we', 'PRP'), ('catch', 'VB'), ('up', 'RP'), ('today', 'NN'), ('sometime', 'RB'), ('after', 'IN'), ('yyyy', 'NN'), ('on', 'IN'), ('the', 'DT'), ('phone', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('how', 'WRB'), ('i', 'JJ'), ('can', 'MD'), ('help', 'VB')], [('xxxxx', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('add', 'VB'), ('these', 'DT'), ('two', 'CD'), ('minor', 'NNS'), ('issues', 'NNS'), ('to', 'TO'), ('your', 'PRP$'), ('list', 'NN')], [('how', 'WRB'), ('can', 'MD'), ('you', 'PRP'), ('support', 'VB')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('share', 'NN'), ('the', 'DT'), ('new', 'JJ'), ('salary', 'JJ'), ('structure', 'NN'), ('if', 'IN'), ('xxxxxxx', 'NNP'), ('has', 'VBZ'), ('sent', 'VBN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('work', 'VB'), ('with', 'IN'), ('him', 'PRP'), ('and', 'CC'), ('ensure', 'VB'), ('that', 'IN'), ('you', 'PRP'), ('give', 'VBP'), ('him', 'PRP'), ('all', 'PDT'), ('the', 'DT'), ('relevant', 'JJ'), ('information', 'NN'), ('he', 'PRP'), ('needs', 'VBZ'), ('to', 'TO'), ('market', 'NN'), ('and', 'CC'), ('promote', 'VB'), ('the', 'DT'), ('track', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('move', 'VB'), ('the', 'DT'), ('scroll', 'NN'), ('bar', 'NN'), ('after', 'IN'), ('the', 'DT'), ('widget', 'NN')], [('please', 'NN'), ('read', 'VB'), ('it', 'PRP'), ('and', 'CC'), ('give', 'VB'), ('me', 'PRP'), ('your', 'PRP$'), ('feedback', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('please', 'VB'), ('schedule', 'NN'), ('for', 'IN'), ('friday', 'JJ'), ('130pm', 'CD'), ('xxx', 'JJ'), ('5pm', 'CD'), ('ist', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('check', 'VB'), ('the', 'DT'), ('references', 'NNS'), ('and', 'CC'), ('give', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('go', 'NN'), ('ahead', 'RB'), ('to', 'TO'), ('make', 'VB'), ('this', 'DT'), ('change', 'NN')], [('do', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('i', 'JJ'), ('can', 'MD'), ('confirm', 'VB'), ('you', 'PRP'), ('for', 'IN'), ('the', 'DT'), ('same', 'JJ')], [('can', 'MD'), ('you', 'PRP'), ('help', 'VB'), ('to', 'TO'), ('devise', 'VB'), ('this', 'DT'), ('program', 'NN'), ('and', 'CC'), ('get', 'VB'), ('xxxxxx', 'JJ'), ('and', 'CC'), ('chargebee', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('forgetting', 'VBG'), ('his', 'PRP$'), ('name', 'NN'), ('to', 'TO'), ('do', 'VB'), ('this', 'DT'), ('program', 'NN'), ('for', 'IN'), ('us', 'PRP'), ('during', 'IN'), ('october', 'NN')], [('would', 'MD'), ('it', 'PRP'), ('be', 'VB'), ('possible', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('after', 'IN'), ('this', 'DT'), ('and', 'CC'), ('in', 'IN'), ('which', 'WDT'), ('case', 'NN'), ('would', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('coming', 'VBG'), ('more', 'RBR'), ('into', 'IN'), ('town', 'NN'), ('later', 'RB')], [('could', 'MD'), ('you', 'PRP'), ('identify', 'VB'), ('who', 'WP'), ('had', 'VBD'), ('what', 'WP'), ('item', 'NN'), ('in', 'IN'), ('a', 'DT'), ('numbered', 'JJ'), ('list', 'NN'), ('manner', 'NN'), ('and', 'CC'), ('reply', 'VB'), ('back', 'RB')], [('please', 'NN'), ('update', 'VB'), ('me', 'PRP'), ('on', 'IN'), ('what', 'WP'), ('you', 'PRP'), ('have', 'VBP'), ('been', 'VBN'), ('doing', 'VBG'), ('and', 'CC'), ('whether', 'IN'), ('any', 'DT'), ('resolutions', 'NNS'), ('have', 'VBP'), ('been', 'VBN'), ('found', 'VBN'), ('for', 'IN'), ('the', 'DT'), ('xx', 'NNP'), ('issue', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('i', 'NNS'), ('can', 'MD'), ('come', 'VB'), ('down', 'RP'), ('on', 'IN'), ('friday', 'JJ'), ('morning', 'NN'), ('to', 'TO'), ('ms', 'VB'), ('accelerator', 'NN')], [('should', 'MD'), ('we', 'PRP'), ('just', 'RB'), ('set', 'VB'), ('start', 'NN'), ('time', 'NN'), ('itself', 'PRP'), ('at', 'IN'), ('1030', 'CD'), ('am', 'VBP'), ('so', 'RB'), ('discussion', 'NN'), ('does', 'VBZ'), ('not', 'RB'), ('have', 'VB'), ('to', 'TO'), ('be', 'VB'), ('repeated', 'VBN')], [('could', 'MD'), ('i', 'VB'), ('request', 'JJS'), ('you', 'PRP'), ('jointly', 'RB'), ('to', 'TO'), ('write', 'VB'), ('up', 'RP'), ('a', 'DT'), ('post', 'NN'), ('which', 'WDT'), ('we', 'PRP'), ('can', 'MD'), ('include', 'VB'), ('in', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('ispirit', 'NN'), ('newsletter', 'NN')], [('xxxxxxxx', 'NN'), ('has', 'VBZ'), ('just', 'RB'), ('confirmed', 'VBN'), ('for', 'IN'), ('1st', 'CD'), ('xxxx', 'JJ'), ('meeting', 'NN'), ('in', 'IN'), ('xxxxxxxxx', 'NN'), ('have', 'VBP'), ('you', 'PRP'), ('written', 'VBN'), ('to', 'TO'), ('anyone', 'NN'), ('else', 'RB')], [('xxxxxx', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('let', 'VBP'), ('me', 'PRP'), ('know', 'VB'), ('the', 'DT'), ('date', 'NN'), ('and', 'CC'), ('number', 'NN'), ('of', 'IN'), ('people', 'NNS'), ('i', 'VBP'), ('can', 'MD'), ('ask', 'VB'), ('xxxxx', 'VB'), ('if', 'IN'), ('its', 'PRP$'), ('available', 'JJ'), ('or', 'CC'), ('not', 'RB')], [('would', 'MD'), ('130', 'CD'), ('or', 'CC'), ('2pm', 'CD'), ('that', 'IN'), ('day', 'NN'), ('at', 'IN'), ('xxxxs', 'NNP'), ('xxxxxx', 'NNP'), ('in', 'IN'), ('xxxxxxxx', 'NNP'), ('work', 'NN'), ('with', 'IN'), ('your', 'PRP$'), ('schedule', 'NN')], [('xxxxx', 'NN'), ('we', 'PRP'), ('confirm', 'VBP'), ('tuesday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('930am', 'CD'), ('at', 'IN'), ('xxxxs', 'JJ'), ('xxxxxx', 'NN'), ('in', 'IN'), ('xxxxxxxx', 'NN')], [('i', 'NN'), ('can', 'MD'), ('not', 'RB'), ('get', 'VB'), ('the', 'DT'), ('live', 'JJ'), ('version', 'NN'), ('on', 'IN'), ('my', 'PRP$'), ('cvs', 'NN'), ('still', 'RB'), ('so', 'RB'), ('would', 'MD'), ('you', 'PRP'), ('mind', 'VB'), ('changing', 'VBG'), ('the', 'DT'), ('following', 'VBG'), ('values', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('live', 'JJ'), ('server', 'NN'), ('tomorrow', 'NN'), ('morning', 'NN'), ('please', 'NN')], [('can', 'MD'), ('i', 'VB'), ('call', 'NN'), ('and', 'CC'), ('listen', 'NN'), ('in', 'IN'), ('on', 'IN'), ('the', 'DT'), ('conversation', 'NN'), ('like', 'IN'), ('i', 'NN'), ('did', 'VBD'), ('the', 'DT'), ('other', 'JJ'), ('day', 'NN'), ('when', 'WRB'), ('you', 'PRP'), ('met', 'VBD'), ('the', 'DT'), ('xxx', 'NNP'), ('engg', 'NN'), ('manager', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('this', 'DT'), ('works', 'NN')], [('3', 'CD'), ('can', 'MD'), ('you', 'PRP'), ('tell', 'VB'), ('me', 'PRP'), ('how', 'WRB'), ('you', 'PRP'), ('figured', 'VBD'), ('out', 'RP'), ('this', 'DT')], [('can', 'MD'), ('xxx', 'VB'), ('fill', 'VB'), ('that', 'IN'), ('from', 'IN'), ('tomorrow', 'NN')], [('sharing', 'VBG'), ('the', 'DT'), ('backdrop', 'NN'), ('design', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('this', 'DT'), ('is', 'VBZ'), ('good', 'JJ'), ('to', 'TO'), ('go', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('speak', 'VB'), ('about', 'IN'), ('this', 'DT'), ('on', 'IN'), ('priority', 'NN')], [('just', 'RB'), ('an', 'DT'), ('orthogonal', 'JJ'), ('thought', 'NN'), ('should', 'MD'), ('we', 'PRP'), ('rollback', 'VB'), ('to', 'TO'), ('the', 'DT'), ('old', 'JJ'), ('collectorindexer', 'NN'), ('and', 'CC'), ('onboard', 'NN'), ('for', 'IN'), ('today', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('add', 'VB'), ('yours', 'NNS'), ('and', 'CC'), ('review', 'VB'), ('it', 'PRP'), ('before', 'IN'), ('it', 'PRP'), ('goes', 'VBZ'), ('online', 'JJ')], [('pls', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB')], [('kindly', 'RB'), ('confirm', 'VBP'), ('the', 'DT'), ('same', 'JJ'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('go', 'VB'), ('ahead', 'RB'), ('with', 'IN'), ('filing', 'NN'), ('of', 'IN'), ('the', 'DT'), ('return', 'NN'), ('after', 'IN'), ('payment', 'NN'), ('of', 'IN'), ('taxes', 'NNS')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('a', 'DT'), ('call', 'NN'), ('easier', 'RB'), ('sorted', 'VBD'), ('out', 'RP'), ('that', 'IN'), ('way', 'NN')], [('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('have', 'VB'), ('a', 'DT'), ('chat', 'NN'), ('regarding', 'VBG'), ('your', 'PRP$'), ('entrepreneur', 'NN'), ('journey', 'NN')], [('would', 'MD'), ('it', 'PRP'), ('be', 'VB'), ('ok', 'JJ'), ('if', 'IN'), ('i', 'JJ'), ('put', 'VBP'), ('your', 'PRP$'), ('name', 'NN'), ('as', 'IN'), ('one', 'CD'), ('of', 'IN'), ('my', 'PRP$'), ('references', 'NNS')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('a', 'DT'), ('convenient', 'JJ'), ('time', 'NN'), ('when', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('talk', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('pls', 'VB'), ('reschedule', 'NN'), ('for', 'IN'), ('tomorrow', 'NN')], [('would', 'MD'), ('it', 'PRP'), ('be', 'VB'), ('possible', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('on', 'IN'), ('monday', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('call', 'VB'), ('at', 'IN'), ('yyyyyyyyyyy', 'NN')], [('then', 'RB'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('thought', 'NN'), ('of', 'IN'), ('profit', 'NN'), ('share', 'NN')], [('kindly', 'RB'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('availability', 'NN'), ('to', 'TO'), ('take', 'VB'), ('telephonic', 'JJ'), ('f2f', 'NNS'), ('interviews', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('so', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('schedule', 'VB'), ('accordingly', 'RB')], [('can', 'MD'), ('we', 'PRP'), ('catch', 'VB'), ('up', 'RP'), ('on', 'IN'), ('skype', 'NN'), ('to', 'TO'), ('discuss', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('about', 'IN'), ('this', 'DT'), ('sometime', 'NN'), ('today', 'NN')], [('if', 'IN'), ('it', 'PRP'), ('makes', 'VBZ'), ('sense', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('talk', 'VB'), ('tomorrow', 'NN'), ('at', 'IN'), ('3pm', 'CD')], [('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('reference', 'NN'), ('letter', 'NN'), ('you', 'PRP'), ('have', 'VBP')], [('4pm', 'CD')], [('can', 'MD'), ('we', 'PRP'), ('discuss', 'VB'), ('over', 'RP'), ('weekend', 'NN'), ('or', 'CC'), ('into', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('could', 'MD'), ('we', 'PRP'), ('schedule', 'VB'), ('post', 'RB'), ('11th', 'CD')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB')], [('how', 'WRB'), ('are', 'VBP'), ('you', 'PRP'), ('occupied', 'JJ'), ('tomorrow', 'NN')], [('would', 'MD'), ('tuesday', 'VB'), ('yyyy', 'VB'), ('at', 'IN'), ('3pm', 'CD'), ('in', 'IN'), ('the', 'DT'), ('xxxxxxxx', 'NNP'), ('area', 'NN'), ('work', 'NN'), ('with', 'IN'), ('your', 'PRP$'), ('schedule', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('come', 'VB'), ('to', 'TO'), ('pick', 'VB'), ('me', 'PRP'), ('up', 'RP')], [('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('we', 'PRP'), ('might', 'MD'), ('see', 'VB'), ('ya', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('thanks', 'NNS')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('time', 'NN'), ('works', 'VBZ'), ('best', 'JJS')], [('do', 'VBP'), ('you', 'PRP'), ('want', 'VB'), ('to', 'TO'), ('meet', 'VB'), ('him', 'PRP')], [('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('take', 'VB'), ('a', 'DT'), ('crack', 'NN'), ('at', 'IN'), ('the', 'DT'), ('above', 'JJ'), ('else', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('try', 'VB'), ('to', 'TO'), ('do', 'VB'), ('this', 'DT'), ('and', 'CC'), ('send', 'VB'), ('it', 'PRP'), ('across', 'IN'), ('to', 'TO'), ('you', 'PRP'), ('for', 'IN'), ('comments', 'NNS')], [('are', 'VBP'), ('you', 'PRP'), ('okay', 'IN'), ('with', 'IN'), ('the', 'DT'), ('fabric', 'NN'), ('covering', 'VBG'), ('yy', 'NN'), ('of', 'IN'), ('xxxxs', 'NN'), ('costs', 'NNS'), ('beginning', 'VBG'), ('october', 'RB'), ('1', 'CD')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('connect', 'VB')], [('do', 'VBP'), ('we', 'PRP'), ('have', 'VB'), ('the', 'DT'), ('catch', 'NN'), ('up', 'RP'), ('meeting', 'NN'), ('today', 'NN'), ('at', 'IN'), ('11', 'CD'), ('am', 'VBP')], [('can', 'MD'), ('we', 'PRP'), ('speak', 'VB'), ('on', 'IN'), ('monday', 'NN'), ('at', 'IN'), ('xxx', 'NNP'), ('yy', 'NN'), ('or', 'CC'), ('so', 'RB')], [('if', 'IN'), ('so', 'RB'), ('perhaps', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('at', 'IN'), ('my', 'PRP$'), ('office', 'NN')], [('would', 'MD'), ('monday', 'VB'), ('morning', 'NN'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('would', 'MD'), ('next', 'JJ'), ('week', 'NN'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('a', 'DT'), ('mail', 'NN'), ('out', 'IN'), ('to', 'TO'), ('the', 'DT'), ('speakers', 'NNS'), ('clarifying', 'VBG'), ('this', 'DT'), ('change', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('check', 'VB'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('is', 'VBZ'), ('the', 'DT'), ('issue', 'NN'), ('is', 'VBZ'), ('it', 'PRP'), ('on', 'IN'), ('the', 'DT'), ('moodle', 'JJ'), ('side', 'NN'), ('or', 'CC'), ('on', 'IN'), ('the', 'DT'), ('articulate', 'JJ'), ('side', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP'), ('links', 'VBZ'), ('that', 'WDT'), ('will', 'MD'), ('help', 'VB'), ('me', 'PRP'), ('with', 'IN'), ('the', 'DT'), ('way', 'NN'), ('ddgen', 'NN'), ('will', 'MD'), ('need', 'VB'), ('to', 'TO'), ('support', 'VB'), ('register', 'JJR'), ('access', 'NN'), ('macros', 'NNS'), ('to', 'TO'), ('make', 'VB'), ('it', 'PRP'), ('upstreamable', 'JJ')], [('can', 'MD'), ('you', 'PRP'), ('quickly', 'RB'), ('help', 'VB'), ('us', 'PRP'), ('with', 'IN'), ('this', 'DT'), ('small', 'JJ'), ('change', 'NN'), ('in', 'IN'), ('the', 'DT'), ('settings', 'NNS'), ('pane', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('also', 'RB'), ('add', 'VBP'), ('these', 'DT'), ('tool', 'JJ'), ('tips', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('header', 'NN'), ('and', 'CC'), ('footer', 'NN'), ('bars', 'NNS'), ('search', 'VBP'), ('filters', 'NNS')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('an', 'DT'), ('informal', 'JJ'), ('chat', 'NN'), ('over', 'IN'), ('a', 'DT'), ('cup', 'NN'), ('of', 'IN'), ('coffee', 'NN'), ('at', 'IN'), ('the', 'DT'), ('time', 'NN'), ('of', 'IN'), ('your', 'PRP$'), ('convenience', 'NN')], [('for', 'IN'), ('the', 'DT'), ('release', 'NN'), ('is', 'VBZ'), ('5pm', 'CD'), ('jst', 'NN'), ('fine', 'NN')], [('please', 'VB'), ('check', 'NN'), ('and', 'CC'), ('update', 'JJ'), ('action', 'NN'), ('items', 'NNS'), ('projects', 'NNS'), ('customer', 'NN'), ('contactsinteractions', 'NNS'), ('technical', 'JJ'), ('topics', 'NNS')], [('please', 'VB'), ('call', 'VB'), ('me', 'PRP'), ('tomorrow', 'NN'), ('morning', 'NN'), ('around', 'IN'), ('noon', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('check', 'VB'), ('why', 'WRB'), ('this', 'DT'), ('happened', 'VBD')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('share', 'NN'), ('the', 'DT'), ('course', 'NN'), ('details', 'NNS'), ('for', 'IN'), ('xxxxxxx', 'NN'), ('that', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('planning', 'VBG'), ('to', 'TO'), ('start', 'VB')], [('please', 'VB'), ('let', 'VB'), ('us', 'PRP'), ('try', 'VB'), ('to', 'TO'), ('talk', 'VB'), ('tomorrow', 'NN'), ('morning', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('put', 'VB'), ('something', 'NN'), ('with', 'IN'), ('emirsal', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('check', 'VB'), ('if', 'IN'), ('the', 'DT'), ('dumps', 'JJ'), ('directory', 'NN'), ('is', 'VBZ'), ('present', 'JJ')], [('please', 'VB'), ('integrate', 'NN'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB')], [('how', 'WRB'), ('about', 'IN'), ('showing', 'VBG'), ('mined', 'VBD'), ('phone', 'NN'), ('numbers', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('y', 'NN'), ('alerts', 'VBZ'), ('page', 'NN'), ('below', 'IN'), ('the', 'DT'), ('description', 'NN')], [('how', 'WRB'), ('can', 'MD'), ('we', 'PRP'), ('go', 'VB'), ('about', 'IN'), ('it', 'PRP')], [('would', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('free', 'JJ'), ('sometime', 'RB'), ('this', 'DT'), ('week', 'NN')], [('will', 'MD'), ('your', 'PRP$'), ('software', 'NN'), ('not', 'RB'), ('work', 'VB'), ('on', 'IN'), ('ie', 'NN'), ('or', 'CC'), ('xxxxxxx', 'NN'), ('or', 'CC'), ('xxxxxx', 'NN')], [('how', 'WRB'), ('about', 'IN'), ('xxxxxxxxxxx', 'NN')], [('how', 'WRB'), ('can', 'MD'), ('you', 'PRP'), ('expect', 'VB'), ('me', 'PRP'), ('to', 'TO'), ('give', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('list', 'NN'), ('within', 'IN'), ('days', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('whole', 'JJ'), ('year', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('free', 'JJ'), ('for', 'IN'), ('half', 'JJ'), ('hour', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('the', 'DT'), ('budget', 'NN'), ('and', 'CC'), ('present', 'JJ'), ('it', 'PRP'), ('to', 'TO'), ('xxxx', 'VB'), ('and', 'CC'), ('others', 'NNS')], [('can', 'MD'), ('we', 'PRP'), ('please', 'VB'), ('track', 'VB'), ('them', 'PRP'), ('through', 'IN'), ('trello', 'NN')], [('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('passing', 'VBG'), ('along', 'IN'), ('the', 'DT'), ('message', 'NN'), ('regarding', 'VBG'), ('xxx', 'JJ'), ('vr', 'NN'), ('xxxxxxxx', 'NN'), ('to', 'TO'), ('xxxxxxx', 'VB'), ('or', 'CC'), ('should', 'MD'), ('i', 'VB')], [('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('all', 'PDT'), ('the', 'DT'), ('salary', 'JJ'), ('and', 'CC'), ('any', 'DT'), ('other', 'JJ'), ('remainder', 'NN'), ('expenses', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('accountant', 'NN')], [('you', 'PRP'), ('have', 'VBP'), ('a', 'DT'), ('call', 'NN'), ('with', 'IN'), ('xxxxxxx', 'NN'), ('at', 'IN'), ('that', 'DT'), ('time', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('move', 'VB'), ('it', 'PRP')], [('i', 'NN'), ('was', 'VBD'), ('trying', 'VBG'), ('to', 'TO'), ('reach', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('the', 'DT'), ('mentioned', 'JJ'), ('numbers', 'NNS'), ('yyyyyyyyyy', 'VBP'), ('yyyyyyyyyy', 'NNS'), ('but', 'CC'), ('could', 'MD'), ('not', 'RB'), ('get', 'VB'), ('in', 'IN'), ('touch', 'NN'), ('in', 'IN'), ('with', 'IN'), ('you', 'PRP'), ('kindly', 'VBP'), ('call', 'VB'), ('me', 'PRP'), ('once', 'IN'), ('the', 'DT'), ('mail', 'NN'), ('is', 'VBZ'), ('reached', 'VBN')], [('the', 'DT'), ('xxxxxxxxxx', 'NN'), ('of', 'IN'), ('jan', 'NN'), ('and', 'CC'), ('feb', 'NN'), ('are', 'VBP'), ('compulsory', 'VBN'), ('so', 'IN'), ('you', 'PRP'), ('may', 'MD'), ('xxx', 'VB'), ('to', 'TO'), ('find', 'VB'), ('xxx', 'JJ'), ('if', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('postpone', 'VB'), ('your', 'PRP$'), ('travel', 'NN'), ('to', 'TO'), ('26th', 'CD'), ('jan', 'NN'), ('2014', 'CD'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('xxxx', 'VB'), ('xxxxx', 'NN')], [('kindly', 'RB'), ('send', 'VB'), ('us', 'PRP'), ('the', 'DT'), ('rate', 'NN'), ('for', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('asap', 'NN'), ('as', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('submit', 'VB'), ('the', 'DT'), ('tender', 'NN'), ('by', 'IN'), ('yyyy', 'NN'), ('pm', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP'), ('a', 'DT'), ('brief', 'JJ'), ('about', 'IN'), ('the', 'DT'), ('company', 'NN'), ('and', 'CC'), ('also', 'RB'), ('any', 'DT'), ('related', 'JJ'), ('information', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('the', 'DT'), ('response', 'NN'), ('for', 'IN'), ('the', 'DT'), ('points', 'NNS'), ('where', 'WRB'), ('i', 'NN'), ('have', 'VBP'), ('asked', 'VBN'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('respond', 'VB'), ('before', 'IN'), ('their', 'PRP$'), ('day', 'NN'), ('begins', 'VBZ')], [('are', 'VBP'), ('we', 'PRP'), ('on', 'IN'), ('for', 'IN'), ('wed', 'JJ'), ('meeting', 'NN')], [('also', 'RB'), ('in', 'IN'), ('order', 'NN'), ('to', 'TO'), ('decide', 'VB'), ('if', 'IN'), ('i', 'JJ'), ('want', 'VBP'), ('code', 'NN'), ('designs', 'NNS'), ('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP'), ('a', 'DT'), ('code', 'NN'), ('sample', 'NN'), ('your', 'PRP$'), ('programmers', 'NNS'), ('did', 'VBD'), ('some', 'DT'), ('html', 'NN'), ('css', 'NN'), ('javascript', 'NN'), ('will', 'MD'), ('be', 'VB'), ('great', 'JJ')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('how', 'WRB'), ('to', 'TO'), ('proceed', 'VB'), ('with', 'IN'), ('poc', 'NN'), ('on', 'IN'), ('this', 'DT')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('the', 'DT'), ('amount', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('approve', 'VB'), ('the', 'DT'), ('membership', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB')], [('please', 'VB'), ('test', 'NN'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB')], [('please', 'VB'), ('do', 'VB'), ('communicate', 'VB'), ('whether', 'IN'), ('your', 'PRP$'), ('schedule', 'NN'), ('permits', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('present', 'JJ'), ('i', 'JJ'), ('am', 'VBP'), ('so', 'RB'), ('eagerly', 'RB'), ('looking', 'VBG'), ('forward', 'RB'), ('to', 'TO'), ('having', 'VBG'), ('you', 'PRP'), ('over', 'IN'), ('once', 'RB'), ('again', 'RB'), ('at', 'IN'), ('xxxxxxx', 'NNP'), ('saturday', 'NN'), ('xxxxxxxxx', 'NN')], [('how', 'WRB'), ('about', 'RB'), ('friday', 'NN')], [('friday', 'NN'), ('will', 'MD'), ('not', 'RB'), ('work', 'VB'), ('so', 'RB'), ('pick', 'JJ'), ('nag', 'NN'), ('other', 'JJ'), ('day', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP'), ('profiles', 'NNS'), ('or', 'CC'), ('even', 'RB'), ('summaries', 'NNS'), ('so', 'IN'), ('i', 'JJ'), ('can', 'MD'), ('push', 'VB'), ('them', 'PRP'), ('through', 'IN')], [('thanks', 'NNS'), ('xxxxxx', 'VBP'), ('i', 'NN'), ('saw', 'VBD'), ('that', 'IN'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('help', 'VB'), ('in', 'IN'), ('adding', 'VBG'), ('description', 'NN'), ('for', 'IN'), ('day', 'NN'), ('y', 'CD'), ('plenaries', 'NNS')], [('could', 'MD'), ('you', 'PRP'), ('perhaps', 'RB'), ('elaborate', 'VB'), ('on', 'IN'), ('the', 'DT'), ('model', 'NN'), ('you', 'PRP'), ('speak', 'VBP'), ('about', 'IN')], [('can', 'MD'), ('we', 'PRP'), ('do', 'VB'), ('something', 'NN'), ('like', 'IN'), ('this', 'DT'), ('for', 'IN'), ('the', 'DT'), ('vertical', 'JJ'), ('thumbnails', 'NNS'), ('with', 'IN'), ('horizontal', 'JJ'), ('images', 'NNS')], [('xxxxxxx', 'JJ'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('requirements', 'NNS'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('probably', 'RB'), ('take', 'VB'), ('it', 'PRP'), ('from', 'IN'), ('there', 'EX')], [('how', 'WRB'), ('can', 'MD'), ('we', 'PRP'), ('stand', 'VB'), ('out', 'RP')], [('can', 'MD'), ('we', 'PRP'), ('chat', 'VB'), ('about', 'IN'), ('this', 'DT'), ('today', 'NN'), ('afternoon', 'NN')], [('xxxxxxxx', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('resend', 'VB'), ('bank', 'NN'), ('account', 'NN'), ('details', 'NNS'), ('to', 'TO'), ('vinod', 'VB')], [('do', 'VBP'), ('you', 'PRP'), ('have', 'VBP'), ('availability', 'VBN'), ('to', 'TO'), ('meet', 'VB'), ('this', 'DT'), ('thursday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('3pm', 'CD'), ('in', 'IN'), ('the', 'DT'), ('xxxxxxxxxxxxxxxxxx', 'NNP'), ('area', 'NN')], [('may', 'MD'), ('i', 'VB'), ('suggest', 'JJS'), ('tuesday', 'NN'), ('yyyy', 'NN'), ('at', 'IN'), ('1pm', 'CD')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('a', 'DT'), ('call', 'NN'), ('on', 'IN'), ('coming', 'VBG'), ('monday', 'RB'), ('7th', 'CD'), ('oct', 'NN'), ('at', 'IN'), ('900', 'CD'), ('am', 'VBP'), ('xxx', 'NN')], [('do', 'VBP'), ('you', 'PRP'), ('have', 'VBP'), ('availability', 'VBN'), ('on', 'IN'), ('wednesday', 'JJ'), ('yyyy', 'NN'), ('in', 'IN'), ('the', 'DT'), ('morning', 'NN'), ('or', 'CC'), ('later', 'RB'), ('afternoon', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('share', 'NN'), ('w', 'VB'), ('me', 'PRP'), ('a', 'DT'), ('conf', 'NN'), ('call', 'NN'), ('or', 'CC'), ('office', 'NN'), ('to', 'TO'), ('call', 'VB'), ('into', 'IN')], [('is', 'VBZ'), ('it', 'PRP'), ('ok', 'IN'), ('if', 'IN'), ('i', 'NN'), ('can', 'MD'), ('start', 'VB'), ('working', 'VBG'), ('with', 'IN'), ('you', 'PRP'), ('from', 'IN'), ('october', '$'), ('10th', 'CD')], [('xxxxxx', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('confirm', 'VB'), ('her', 'PRP'), ('pay', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('now', 'RB'), ('make', 'VBP'), ('a', 'DT'), ('pressrelease', 'NN'), ('or', 'CC'), ('something', 'NN')], [('please', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('the', 'DT'), ('files', 'NNS'), ('in', 'IN'), ('zip', 'NN'), ('format', 'NN')], [('hi', 'NN'), ('maybe', 'RB'), ('friday', 'JJ')], [('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('know', 'VB'), ('what', 'WP'), ('does', 'VBZ'), ('it', 'PRP'), ('mean', 'VB'), ('when', 'WRB'), ('it', 'PRP'), ('displays', 'VBZ'), ('today', 'NN'), ('yyyyy', 'NN')], [('i', 'NN'), ('can', 'MD'), ('also', 'RB'), ('try', 'VB'), ('xxxx', 'NNP'), ('xxxx', 'NNP'), ('any', 'DT'), ('other', 'JJ'), ('from', 'IN'), ('other', 'JJ'), ('stints', 'NNS')], [('hello', 'NN'), ('xxxxxxxxx', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('communicate', 'VB'), ('to', 'TO'), ('pradeepmaria', 'VB'), ('to', 'TO'), ('get', 'VB'), ('permission', 'NN'), ('for', 'IN'), ('my', 'PRP$'), ('visit', 'NN'), ('today', 'NN'), ('at', 'IN'), ('xxx', 'NN')], [('xxxxxx', 'JJ'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('to', 'TO'), ('call', 'VB'), ('shailaja', 'NN'), ('so', 'IN'), ('that', 'DT'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('online', 'JJ'), ('then', 'RB')], [('could', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('earlier', 'RBR'), ('tomorrow', 'NN'), ('at', 'IN'), ('1030am', 'CD'), ('at', 'IN'), ('xxxxx', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP')], [('xxxxx', 'NN'), ('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('attending', 'VBG'), ('the', 'DT'), ('xxxxxx', 'NNP'), ('angel', 'NN'), ('call', 'NN'), ('today', 'NN')], [('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('know', 'VB'), ('whether', 'IN'), ('you', 'PRP'), ('were', 'VBD'), ('able', 'JJ'), ('to', 'TO'), ('speak', 'VB'), ('with', 'IN'), ('xxxx', 'NN'), ('in', 'IN'), ('order', 'NN'), ('to', 'TO'), ('get', 'VB'), ('back', 'RB'), ('our', 'PRP$'), ('laptop', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('free', 'JJ'), ('through', 'IN'), ('most', 'JJS'), ('of', 'IN'), ('tomorrow', 'NN'), ('and', 'CC'), ('would', 'MD'), ('love', 'VB'), ('for', 'IN'), ('us', 'PRP'), ('to', 'TO'), ('catch', 'VB'), ('up', 'RP'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('free', 'JJ')], [('can', 'MD'), ('you', 'PRP'), ('attach', 'VB'), ('a', 'DT'), ('screen', 'NN'), ('shot', 'NN')], [('would', 'MD'), ('wednesday', 'VB'), ('work', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('xxxxxx', 'NNS'), ('can', 'MD'), ('we', 'PRP'), ('shoot', 'VB'), ('for', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('version', 'NN'), ('by', 'IN'), ('this', 'DT'), ('weekend', 'NN'), ('to', 'TO'), ('have', 'VB'), ('the', 'DT'), ('graph', 'NN'), ('by', 'IN'), ('trend', 'NN'), ('and', 'CC'), ('region', 'NN'), ('as', 'IN'), ('i', 'NN'), ('show', 'VBP'), ('in', 'IN'), ('this', 'DT'), ('ppt', 'JJ'), ('page', 'NN'), ('y', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('toggle', 'VB'), ('the', 'DT'), ('related', 'JJ'), ('pane', 'NN'), ('globally', 'RB'), ('not', 'RB'), ('per', 'IN'), ('email', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('a', 'DT'), ('face', 'NN'), ('to', 'TO'), ('face', 'VB'), ('meeting', 'VBG'), ('next', 'JJ'), ('week', 'NN'), ('will', 'MD'), ('work', 'VB'), ('for', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('take', 'VB'), ('this', 'DT'), ('forward', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('do', 'VB'), ('thursday', 'RB')], [('please', 'VB'), ('install', 'VB'), ('the', 'DT'), ('plugin', 'NN'), ('and', 'CC'), ('give', 'VB'), ('me', 'PRP'), ('feedback', 'VB')], [('is', 'VBZ'), ('that', 'DT'), ('make', 'VBP'), ('sense', 'NN'), ('would', 'MD'), ('you', 'PRP'), ('prefer', 'VB'), ('xxxxx', 'CD'), ('call', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('check', 'VB'), ('the', 'DT'), ('below', 'IN'), ('user', 'NN'), ('id', 'NN'), ('has', 'VBZ'), ('been', 'VBN'), ('mapped', 'VBN'), ('correctly', 'RB'), ('in', 'IN'), ('xxxxxxxxx', 'NN')], [('does', 'VBZ'), ('430', 'CD'), ('pm', 'NN'), ('xxxxxxx', 'NN'), ('today', 'NN'), ('tue', 'VBP'), ('work', 'NN')], [('how', 'WRB'), ('about', 'IN'), ('thu', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('try', 'VB'), ('for', 'IN'), ('xxxxxx', 'NNP'), ('immediately', 'RB')], [('may', 'MD'), ('i', 'VB'), ('suggest', 'JJS'), ('friday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('1pm', 'CD')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('add', 'VB'), ('a', 'DT'), ('rate', 'NN'), ('card', 'NN'), ('same', 'JJ'), ('as', 'IN'), ('fpa', 'NN'), ('group', 'NN'), ('8', 'CD'), ('hours', 'NNS'), ('onsite', 'RB'), ('9', 'CD'), ('hours', 'NNS'), ('offshore', 'RB'), ('will', 'MD'), ('do', 'VB'), ('to', 'TO'), ('hdinformationtechnology', 'VB'), ('subgroup', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('send', 'VB'), ('out', 'RP'), ('the', 'DT'), ('links', 'NNS'), ('today', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('tell', 'VB'), ('me', 'PRP'), ('how', 'WRB'), ('many', 'JJ'), ('code', 'NN'), ('files', 'NNS'), ('are', 'VBP'), ('made', 'VBN'), ('up', 'RP'), ('on', 'IN'), ('single', 'JJ'), ('page', 'NN'), ('in', 'IN'), ('sulekhaindiapropertysulekhasnapdealrediffindiamart', 'NN')], [('good', 'JJ'), ('to', 'TO'), ('be', 'VB'), ('connected', 'VBN'), ('to', 'TO'), ('you', 'PRP'), ('could', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP'), ('more', 'JJR'), ('details', 'NNS'), ('for', 'IN'), ('me', 'PRP'), ('to', 'TO'), ('understand', 'VB'), ('this', 'DT'), ('better', 'JJR')], [('pls', 'NN'), ('confirm', 'VBP'), ('the', 'DT'), ('numbers', 'NNS'), ('in', 'IN'), ('this', 'DT'), ('mail', 'NN'), ('ezetap', 'NN'), ('has', 'VBZ'), ('come', 'VBN'), ('back', 'RP'), ('with', 'IN'), ('a', 'DT'), ('solution', 'NN'), ('to', 'TO'), ('meet', 'VB'), ('our', 'PRP$'), ('offer', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('look', 'VB'), ('at', 'IN'), ('this', 'DT'), ('one', 'CD'), ('both', 'DT'), ('seem', 'VBP'), ('to', 'TO'), ('be', 'VB'), ('getting', 'VBG'), ('us', 'PRP'), ('to', 'TO'), ('the', 'DT'), ('desired', 'VBN'), ('yyyy', 'NN'), ('with', 'IN'), ('yyy', 'JJ'), ('m', 'NN'), ('at', 'IN'), ('16mwhat', 'CD'), ('has', 'VBZ'), ('changed', 'VBN')], [('please', 'VB'), ('send', 'VB'), ('us', 'PRP'), ('the', 'DT'), ('following', 'VBG'), ('required', 'JJ'), ('data', 'NNS'), ('for', 'IN'), ('finalization', 'NN'), ('of', 'IN'), ('your', 'PRP$'), ('personal', 'JJ'), ('return', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('tomorrow', 'NN'), ('morning', 'NN'), ('sent', 'VBD'), ('invite', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('send', 'VB'), ('it', 'PRP'), ('out', 'RP'), ('to', 'TO'), ('xxxxxx', 'VB'), ('xxxxx', 'NNP'), ('xxxxxx', 'NN')], [('xxxxxx', 'NNS'), ('are', 'VBP'), ('we', 'PRP'), ('going', 'VBG'), ('from', 'IN'), ('office', 'NN'), ('tomorrow', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('call', 'VB'), ('and', 'CC'), ('confirm', 'VB'), ('tomorrow', 'NN'), ('morning', 'NN'), ('that', 'IN'), ('you', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('coming', 'VBG')], [('if', 'IN'), ('so', 'RB'), ('please', 'JJ'), ('send', 'VB'), ('me', 'PRP'), ('you', 'PRP'), ('xxxxx', 'VBP'), ('name', 'NN'), ('for', 'IN'), ('our', 'PRP$'), ('call', 'NN'), ('tomorrow', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('how', 'WRB'), ('the', 'DT'), ('seed', 'NN'), ('funding', 'NN'), ('and', 'CC'), ('the', 'DT'), ('feedback', 'NN'), ('goes', 'VBZ'), ('weve', 'VB'), ('done', 'VBN'), ('some', 'DT'), ('tax', 'NN'), ('and', 'CC'), ('accounting', 'NN'), ('research', 'NN'), ('on', 'IN'), ('this', 'DT'), ('kind', 'NN'), ('of', 'IN'), ('funding', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('ever', 'RB'), ('need', 'VBP'), ('feedback', 'NN')], [('please', 'VB'), ('give', 'VB'), ('me', 'PRP'), ('your', 'PRP$'), ('number', 'NN'), ('and', 'CC'), ('i', 'VB'), ('shall', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('today', 'NN')], [('tomorrow', 'NN'), ('9', 'CD'), ('am', 'VBP'), ('xxx', 'JJ'), ('work', 'NN'), ('for', 'IN'), ('everyone', 'NN')], [('xxxx', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('ask', 'VB'), ('xxxxxx', 'NNP'), ('to', 'TO'), ('shortlist', 'VB'), ('from', 'IN'), ('these', 'DT'), ('resumes', 'NNS')], [('can', 'MD'), ('you', 'PRP'), ('pl', 'VB'), ('qiucly', 'NNS'), ('connect', 'VB'), ('me', 'PRP'), ('to', 'TO'), ('these', 'DT'), ('two', 'CD'), ('folksxxxxxx', 'NNS'), ('xxxxx', 'VBP')], [('so', 'RB'), ('why', 'WRB'), ('would', 'MD'), ('it', 'PRP'), ('remain', 'VB'), ('the', 'DT'), ('same', 'JJ')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('help', 'VB'), ('me', 'PRP'), ('with', 'IN'), ('this', 'DT')], [('please', 'NN'), ('confirm', 'NN'), ('so', 'IN'), ('that', 'IN'), ('xxxxxxxxxx', 'NN'), ('can', 'MD'), ('be', 'VB'), ('updated', 'VBN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('best', 'JJS'), ('number', 'NN'), ('to', 'TO'), ('reach', 'VB'), ('you', 'PRP'), ('and', 'CC'), ('i', 'VB'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('consider', 'VB'), ('for', 'IN'), ('a', 'DT'), ('full', 'JJ'), ('time', 'NN'), ('employment', 'NN'), ('in', 'IN'), ('your', 'PRP$'), ('company', 'NN')], [('please', 'NN'), ('confirm', 'NN'), ('on', 'IN'), ('the', 'DT'), ('same', 'JJ')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('inputs', 'NNS')], [('xxxxx', 'IN'), ('we', 'PRP'), ('visit', 'VBP'), ('them', 'PRP'), ('post', 'NN'), ('lunch', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('talk', 'VB'), ('to', 'TO'), ('xxxxxxxxx', 'VB'), ('from', 'IN'), ('yyyyyyyy', 'NN'), ('on', 'IN'), ('what', 'WP'), ('his', 'PRP$'), ('requirements', 'NNS'), ('are', 'VBP')], [('can', 'MD'), ('you', 'PRP'), ('also', 'RB'), ('ask', 'VBP'), ('xxxxxxx', 'NNP'), ('guys', 'NNS'), ('when', 'WRB'), ('they', 'PRP'), ('can', 'MD'), ('come', 'VB'), ('for', 'IN'), ('measurements', 'NNS')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('this', 'DT'), ('is', 'VBZ')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('check', 'VB'), ('with', 'IN'), ('them', 'PRP')], [('hi', 'NN'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('as', 'IN'), ('when', 'WRB'), ('can', 'MD'), ('we', 'PRP'), ('get', 'VB'), ('on', 'IN'), ('a', 'DT'), ('skype', 'NN'), ('call', 'NN'), ('to', 'TO'), ('discuss', 'VB')], [('can', 'MD'), ('we', 'PRP'), ('catch', 'VB'), ('in', 'IN'), ('the', 'DT'), ('evening', 'NN'), ('at', 'IN'), ('6pm', 'CD'), ('as', 'IN'), ('hareesh', 'JJ'), ('went', 'VBD'), ('out', 'RP'), ('for', 'IN'), ('client', 'NN'), ('meeting', 'NN')], [('5pm', 'CD')], [('please', 'VB'), ('note', 'VB'), ('the', 'DT'), ('below', 'JJ'), ('mail', 'NN'), ('from', 'IN'), ('our', 'PRP$'), ('factory', 'NN'), ('please', 'NN'), ('confirm', 'VB'), ('its', 'PRP$'), ('availability', 'NN'), ('arrange', 'NN'), ('to', 'TO'), ('send', 'VB'), ('the', 'DT'), ('best', 'JJS'), ('quote', 'NN'), ('for', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('at', 'IN'), ('the', 'DT'), ('earliest', 'JJS')], [('gentle', 'JJ'), ('reminder', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('get', 'VB'), ('me', 'PRP'), ('y', 'JJR'), ('and', 'CC'), ('y', 'VB')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('you', 'PRP'), ('back', 'RB'), ('in', 'IN'), ('town', 'NN'), ('and', 'CC'), ('if', 'IN'), ('i', 'NNS'), ('can', 'MD'), ('pop', 'VB'), ('by', 'IN'), ('your', 'PRP$'), ('office', 'NN'), ('to', 'TO'), ('meet', 'VB'), ('with', 'IN'), ('you', 'PRP'), ('briefly', 'VBP')], [('can', 'MD'), ('you', 'PRP'), ('review', 'VB'), ('this', 'DT')], [('please', 'VB'), ('send', 'VB'), ('me', 'PRP'), ('header', 'JJR'), ('image', 'NN'), ('in', 'IN'), ('size', 'NN'), ('yyy', 'NN'), ('w', 'NN'), ('x', 'NNP'), ('yyy', 'NN'), ('h', 'NN'), ('pl', 'NN'), ('so', 'IN'), ('that', 'IN'), ('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('easy', 'JJ'), ('for', 'IN'), ('us', 'PRP'), ('to', 'TO'), ('promote', 'VB'), ('the', 'DT'), ('event', 'NN')], [('does', 'VBZ'), ('it', 'PRP'), ('mean', 'VB'), ('that', 'IN'), ('while', 'IN'), ('xxxxxx', 'NN'), ('is', 'VBZ'), ('showing', 'VBG'), ('yy', 'JJ'), ('results', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('keyword', 'NN'), ('and', 'CC'), ('scibler', 'NN'), ('is', 'VBZ'), ('showing', 'VBG'), ('y', 'JJ'), ('results', 'NNS'), ('can', 'MD'), ('we', 'PRP'), ('say', 'VB'), ('xxxxxx', 'JJ'), ('xxxxx', 'NNP'), ('metric', 'JJ'), ('is', 'VBZ'), ('yyyyy', 'JJ')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('at', 'IN'), ('2pm', 'CD')], [('can', 'MD'), ('we', 'PRP'), ('do', 'VB'), ('this', 'DT'), ('sometime', 'NN'), ('next', 'JJ'), ('week', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('a', 'DT'), ('skype', 'JJ'), ('video', 'NN'), ('call', 'NN'), ('with', 'IN'), ('him', 'PRP'), ('tomorrow', 'NN'), ('afternoon', 'NN'), ('sometime', 'RB'), ('between', 'IN'), ('y', 'NNS'), ('5pm', 'CD')], [('sathish', 'JJ'), ('please', 'NN'), ('make', 'VB'), ('a', 'DT'), ('subdomain', 'NN'), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('information', 'NN'), ('you', 'PRP'), ('need', 'VBP'), ('in', 'IN'), ('order', 'NN'), ('to', 'TO'), ('point', 'VB'), ('the', 'DT'), ('domain', 'NN'), ('to', 'TO'), ('our', 'PRP$'), ('new', 'JJ'), ('site', 'NN'), ('xxxxxxxxxxxxxxxxx', 'JJ'), ('thanks', 'NNS'), ('xxxxxxx', 'VBP')], [('if', 'IN'), ('not', 'RB'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('availability', 'NN'), ('for', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('i', 'RB'), ('wanted', 'VBD'), ('to', 'TO'), ('check', 'VB'), ('in', 'IN'), ('and', 'CC'), ('see', 'VB'), ('if', 'IN'), ('either', 'DT'), ('of', 'IN'), ('the', 'DT'), ('dates', 'NNS'), ('i', 'VBP'), ('proposed', 'VBN'), ('next', 'JJ'), ('week', 'NN'), ('might', 'MD'), ('work', 'VB'), ('on', 'IN'), ('your', 'PRP$'), ('end', 'NN')], [('is', 'VBZ'), ('there', 'EX'), ('a', 'DT'), ('number', 'NN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('at', 'IN')], [('or', 'CC'), ('if', 'IN'), ('its', 'PRP$'), ('more', 'JJR'), ('convenient', 'NN'), ('for', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('meet', 'VB'), ('in', 'IN'), ('the', 'DT'), ('xxxx', 'NNP'), ('xxxx', 'NNP'), ('area', 'NN'), ('please', 'NN'), ('suggest', 'VB'), ('some', 'DT'), ('times', 'NNS'), ('the', 'DT'), ('following', 'JJ'), ('week', 'NN')], [('hi', 'NN'), ('xxxx', 'NN'), ('is', 'VBZ'), ('it', 'PRP'), ('possible', 'JJ'), ('to', 'TO'), ('do', 'VB'), ('this', 'DT'), ('oct', 'NN'), ('10th', 'CD'), ('around', 'IN'), ('430pm', 'CD'), ('in', 'IN'), ('xxxxxxxx', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('make', 'VB'), ('it', 'PRP')], [('can', 'MD'), ('we', 'PRP'), ('bypass', 'VB'), ('signup', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'NN')], [('tomorrow', 'NN'), ('eod', 'NN')], [('can', 'MD'), ('i', 'VB'), ('come', 'VB'), ('to', 'TO'), ('office', 'NN'), ('tomorrow', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP'), ('a', 'DT'), ('list', 'NN'), ('of', 'IN'), ('opportunities', 'NNS'), ('with', 'IN'), ('past', 'JJ'), ('close', 'JJ'), ('date', 'NN'), ('in', 'IN'), ('xxxxxxxxx', 'NNP'), ('as', 'IN'), ('on', 'IN'), ('date', 'NN')], [('please', 'VB'), ('send', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('details', 'NNS'), ('of', 'IN'), ('your', 'PRP$'), ('terms', 'NNS'), ('of', 'IN'), ('working', 'VBG'), ('with', 'IN'), ('us', 'PRP'), ('as', 'RB'), ('well', 'RB'), ('as', 'IN'), ('the', 'DT'), ('fees', 'NNS'), ('for', 'IN'), ('both', 'DT'), ('the', 'DT'), ('retailership', 'NN'), ('and', 'CC'), ('successive', 'JJ'), ('modes', 'NNS'), ('of', 'IN'), ('agreement', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('take', 'VB'), ('care', 'NN'), ('of', 'IN'), ('this', 'DT'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('once', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('done', 'VBN')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('need', 'VBP'), ('any', 'DT'), ('specific', 'JJ'), ('info', 'NN')], [('hi', 'NN'), ('i', 'NNS'), ('have', 'VBP'), ('been', 'VBN'), ('getting', 'VBG'), ('bitbucket', 'NN'), ('urls', 'NNS'), ('from', 'IN'), ('guys', 'NNS'), ('but', 'CC'), ('i', 'VBP'), ('need', 'VBP'), ('read', 'JJ'), ('permission', 'NN'), ('to', 'TO'), ('confirm', 'VB'), ('the', 'DT'), ('transition', 'NN'), ('guys', 'NNS'), ('are', 'VBP'), ('unable', 'JJ'), ('to', 'TO'), ('do', 'VB'), ('it', 'PRP'), ('themselves', 'PRP'), ('as', 'IN'), ('they', 'PRP'), ('do', 'VBP'), ('not', 'RB'), ('have', 'VB'), ('required', 'VBN'), ('permission', 'NN'), ('to', 'TO'), ('do', 'VB'), ('so', 'RB'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('add', 'VB'), ('my', 'PRP$'), ('account', 'NN'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('would', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('read', 'VB'), ('these', 'DT'), ('repos', 'NNS'), ('i', 'VBP'), ('am', 'VBP'), ('including', 'VBG'), ('links', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('repo', 'NN')], [('will', 'MD'), ('you', 'PRP'), ('let', 'VB'), ('xxxxxxx', 'VB'), ('know', 'VB'), ('directly', 'RB')], [('dear', 'JJ'), ('xxxxxxxxx', 'NNP'), ('its', 'PRP$'), ('good', 'JJ'), ('to', 'TO'), ('see', 'VB'), ('response', 'NN'), ('from', 'IN'), ('your', 'PRP$'), ('side', 'NN'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('further', 'JJ'), ('steps', 'NNS'), ('in', 'IN'), ('your', 'PRP$'), ('hiring', 'NN'), ('process', 'NN')], [('kindly', 'RB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('schedule', 'VB'), ('a', 'DT'), ('call', 'NN')], [('xxxxx', 'NN'), ('we', 'PRP'), ('proceed', 'VBP'), ('to', 'TO'), ('create', 'VB'), ('a', 'DT'), ('prototype', 'NN'), ('course', 'NN'), ('bundle', 'NN'), ('with', 'IN'), ('badges', 'NNS'), ('and', 'CC'), ('leaderboard', 'NN'), ('based', 'VBN'), ('on', 'IN'), ('this', 'DT'), ('info', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('the', 'DT'), ('contents', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('page', 'NN'), ('that', 'WDT'), ('will', 'MD'), ('be', 'VB'), ('displayed', 'VBN'), ('when', 'WRB'), ('the', 'DT'), ('customer', 'NN'), ('has', 'VBZ'), ('either', 'CC'), ('successfully', 'RB'), ('completed', 'VBD'), ('the', 'DT'), ('transaction', 'NN'), ('or', 'CC'), ('failed', 'VBD')], [('could', 'MD'), ('one', 'CD'), ('of', 'IN'), ('you', 'PRP'), ('please', 'VBP'), ('spend', 'VB'), ('some', 'DT'), ('time', 'NN'), ('guiding', 'VBG'), ('him', 'PRP')], [('can', 'MD'), ('you', 'PRP'), ('invite', 'VB'), ('xxxx', 'JJ'), ('xxxxxxx', 'NN'), ('on', 'IN'), ('assembla', 'NN'), ('txm', 'NN'), ('mobile', 'NN')], [('would', 'MD'), ('tuesday', 'VB'), ('work', 'NN')], [('of', 'IN'), ('november', 'NN'), ('or', 'CC'), ('october', 'VB')], [('can', 'MD'), ('you', 'PRP'), ('clarify', 'VB'), ('the', 'DT'), ('reason', 'NN'), ('for', 'IN'), ('this', 'DT')], [('please', 'VB'), ('give', 'VB'), ('me', 'PRP'), ('a', 'DT'), ('call', 'NN'), ('x', 'NN'), ('yyyyyyyyyyyy', 'NN'), ('at', 'IN'), ('anytime', 'JJ'), ('convenient', 'NN'), ('for', 'IN'), ('you', 'PRP')], [('could', 'MD'), ('you', 'PRP'), ('specify', 'VB'), ('what', 'WP'), ('exactly', 'RB'), ('should', 'MD'), ('be', 'VB'), ('improved', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('new', 'JJ'), ('user', 'NN'), ('interface', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('in', 'IN'), ('the', 'DT'), ('xxxxxxxx', 'NNP'), ('area', 'NN'), ('on', 'IN'), ('monday', 'JJ'), ('yyyy', 'NN'), ('at', 'IN'), ('430pm', 'CD')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('take', 'VB'), ('a', 'DT'), ('look', 'NN'), ('at', 'IN'), ('the', 'DT'), ('attached', 'JJ'), ('writeup', 'NN'), ('for', 'IN'), ('xxxxxx', 'NNP'), ('which', 'WDT'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('looking', 'VBG'), ('at', 'IN'), ('with', 'IN'), ('fresh', 'JJ'), ('eyes', 'NNS'), ('tomorrow', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('start', 'VB'), ('to', 'TO'), ('expand', 'VB'), ('rapidly', 'RB')], [('xxx', 'JJ'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('whether', 'IN'), ('pattern', 'JJ'), ('recognition', 'NN'), ('people', 'NNS'), ('can', 'MD'), ('apply', 'VB')], [('pls', 'NN'), ('can', 'MD'), ('we', 'PRP'), ('go', 'VB'), ('for', 'IN'), ('a', 'DT'), ('conference', 'NN'), ('call', 'NN'), ('discussion', 'NN'), ('with', 'IN'), ('jaineel', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('update', 'VB'), ('the', 'DT'), ('number', 'NN'), ('of', 'IN'), ('xxxxx', 'NN'), ('in', 'IN'), ('our', 'PRP$'), ('website', 'NN'), ('to', 'TO'), ('yyyyyyyyyyyyy', 'VB')], [('please', 'VB'), ('say', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('venue', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('the', 'DT'), ('bottleneck', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('check', 'VB'), ('the', 'DT'), ('tour', 'NN'), ('oncealso', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('gmail', 'NN'), ('id', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('schedule', 'VB'), ('discussions', 'NNS'), ('with', 'IN'), ('the', 'DT'), ('following', 'JJ'), ('candidates', 'NNS')], [('could', 'MD'), ('you', 'PRP'), ('schedule', 'VB'), ('discussions', 'NNS'), ('with', 'IN'), ('both', 'DT'), ('xxxxx', 'NNP'), ('xxxxx', 'NN'), ('and', 'CC'), ('xxxxxx', 'NN')], [('please', 'VB'), ('advise', 'VB'), ('the', 'DT'), ('next', 'JJ'), ('steps', 'NNS')], [('could', 'MD'), ('you', 'PRP'), ('suggest', 'VB'), ('a', 'DT'), ('place', 'NN'), ('and', 'CC'), ('time', 'NN'), ('for', 'IN'), ('this', 'DT'), ('afternoon', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('set', 'VB'), ('aside', 'RB'), ('some', 'DT'), ('time', 'NN'), ('to', 'TO'), ('describe', 'VB'), ('the', 'DT'), ('new', 'JJ'), ('indexercollector', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('remove', 'VB'), ('the', 'DT'), ('hypen', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('best', 'JJS'), ('name', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('for', 'IN'), ('them', 'PRP')], [('xxxxxxxxx', 'JJ'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('you', 'PRP'), ('are', 'VBP'), ('available', 'JJ'), ('to', 'TO'), ('discuss', 'VB'), ('your', 'PRP$'), ('venture', 'NN')], [('please', 'VB'), ('do', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('this', 'DT'), ('is', 'VBZ'), ('fine', 'JJ')], [('can', 'MD'), ('you', 'PRP'), ('see', 'VB'), ('what', 'WP'), ('this', 'DT'), ('is', 'VBZ')], [('seems', 'VBZ'), ('worthwhile', 'NN'), ('to', 'TO'), ('be', 'VB'), ('there', 'RB'), ('instead', 'RB'), ('of', 'IN'), ('on', 'IN'), ('the', 'DT'), ('phone', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('give', 'VB'), ('me', 'PRP'), ('pick', 'VB'), ('me', 'PRP'), ('up', 'RP'), ('to', 'TO'), ('go', 'VB'), ('there', 'RB')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('call', 'VB'), ('vatsan', 'JJ'), ('before', 'IN'), ('starting', 'VBG'), ('with', 'IN'), ('the', 'DT'), ('old', 'JJ'), ('schema', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('send', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('location', 'NN'), ('to', 'TO'), ('set', 'VB'), ('for', 'IN'), ('the', 'DT'), ('following', 'JJ'), ('users', 'NNS')], [('can', 'MD'), ('we', 'PRP'), ('speak', 'VB'), ('at', 'IN'), ('500', 'CD'), ('pm', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('take', 'VB'), ('us', 'PRP'), ('through', 'IN'), ('how', 'WRB'), ('and', 'CC'), ('which', 'WDT'), ('are', 'VBP'), ('these', 'DT'), ('programmes', 'NNS')], [('hi', 'NN'), ('xxxxx', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('call', 'NN'), ('tomorrowoct8', 'NN'), ('tue', 'NN'), ('yy', 'NN'), ('ami', 'NN'), ('also', 'RB'), ('got', 'VBD'), ('another', 'DT'), ('invite', 'NN'), ('from', 'IN'), ('you', 'PRP'), ('for', 'IN'), ('for', 'IN'), ('today', 'NN'), ('morning', 'NN'), ('please', 'NN'), ('confirm', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('send', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('job', 'NN'), ('descriptions', 'NNS')], [('can', 'MD'), ('you', 'PRP'), ('have', 'VB'), ('a', 'DT'), ('look', 'NN'), ('at', 'IN'), ('the', 'DT'), ('document', 'NN'), ('attached', 'VBN'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('your', 'PRP$'), ('estimate', 'NN'), ('would', 'MD'), ('be', 'VB'), ('cost', 'VBN'), ('and', 'CC'), ('time', 'NN')], [('wednesday', 'NN'), ('is', 'VBZ'), ('fine', 'JJ'), ('please', 'NN'), ('confirm', 'NN'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('time', 'NN'), ('i', 'JJ'), ('need', 'VBP'), ('to', 'TO'), ('come', 'VB'), ('at', 'IN')], [('xxxxx', 'NN'), ('we', 'PRP'), ('meet', 'VBP'), ('at', 'IN'), ('1030am', 'CD'), ('then', 'RB'), ('tomorrow', 'NN')], [('hey', 'NN'), ('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('on', 'IN'), ('skype', 'NN'), ('now', 'RB')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('the', 'DT'), ('demo', 'NN'), ('at', 'IN'), ('4', 'CD'), ('pm', 'NN'), ('tomorrow', 'NN')], [('i', 'NNS'), ('have', 'VBP'), ('drained', 'VBN'), ('the', 'DT'), ('queue', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('check', 'VB')], [('can', 'MD'), ('you', 'PRP'), ('check', 'VB'), ('with', 'IN'), ('xxxxxx', 'NN'), ('if', 'IN'), ('still', 'RB'), ('he', 'PRP'), ('has', 'VBZ'), ('not', 'RB'), ('replied', 'VBN')], [('can', 'MD'), ('we', 'PRP'), ('get', 'VB'), ('in', 'IN'), ('touch', 'NN'), ('with', 'IN'), ('zepo', 'JJ'), ('xxxxxxxx', 'NNP'), ('outcome', 'NN'), ('and', 'CC'), ('online', 'NN'), ('xxxxxx', 'NN')], [('that', 'DT'), ('aside', 'VBP'), ('can', 'MD'), ('i', 'VB'), ('confirm', 'NN'), ('with', 'IN'), ('you', 'PRP'), ('that', 'IN'), ('he', 'PRP'), ('can', 'MD'), ('come', 'VB'), ('over', 'IN'), ('tomorrow', 'NN'), ('morning', 'NN'), ('930am', 'CD'), ('if', 'IN'), ('it', 'PRP'), ('does', 'VBZ'), ('not', 'RB'), ('rain', 'VB'), ('tonight', 'JJ'), ('tomorrow', 'NN'), ('morning', 'NN')], [('also', 'RB'), ('please', 'NN'), ('tell', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('updated', 'JJ'), ('total', 'NN'), ('hours', 'NNS'), ('for', 'IN'), ('this', 'DT'), ('option', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('make', 'VB'), ('introductions', 'NNS'), ('for', 'IN'), ('us', 'PRP'), ('to', 'TO'), ('take', 'VB'), ('this', 'DT'), ('forward', 'NN')], [('hey', 'NN'), ('xxxx', 'VBP'), ('sorry', 'NN'), ('didnt', 'NN'), ('get', 'VB'), ('a', 'DT'), ('chance', 'NN'), ('to', 'TO'), ('see', 'VB'), ('this', 'DT'), ('earlier', 'JJR'), ('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('share', 'NN'), ('again', 'RB'), ('so', 'RB'), ('i', 'JJ'), ('can', 'MD'), ('have', 'VB'), ('a', 'DT'), ('loo', 'NN')], [('if', 'IN'), ('you', 'PRP'), ('see', 'VBP'), ('my', 'PRP$'), ('email', 'NN'), ('before', 'IN'), ('your', 'PRP$'), ('leave', 'VBP'), ('home', 'NN'), ('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('tomorrow', 'NN'), ('11', 'CD'), ('am', 'VBP'), ('instead', 'RB'), ('of', 'IN'), ('today', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('check', 'VB'), ('mappingconfig', 'NN')], [('please', 'VB'), ('send', 'VB'), ('across', 'IN'), ('pdf', 'NN')], [('dear', 'JJ'), ('sir', 'NN'), ('i', 'NNS'), ('have', 'VBP'), ('forwarded', 'VBN'), ('my', 'PRP$'), ('resume', 'NN'), ('to', 'TO'), ('mailid', 'VB'), ('xxxxxxxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('please', 'NN'), ('have', 'VBP'), ('a', 'DT'), ('look', 'NN'), ('on', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('i', 'JJ'), ('am', 'VBP'), ('eligible', 'JJ'), ('for', 'IN'), ('the', 'DT'), ('posting', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('share', 'NN'), ('with', 'IN'), ('me', 'PRP'), ('the', 'DT'), ('details', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('course', 'NN'), ('students', 'NNS'), ('and', 'CC'), ('their', 'PRP$'), ('backgrounds', 'NNS'), ('before', 'IN'), ('we', 'PRP'), ('decide', 'VBP'), ('on', 'IN'), ('visiting', 'VBG'), ('your', 'PRP$'), ('campus', 'NN'), ('for', 'IN'), ('placements', 'NNS')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('resend', 'VB')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('other', 'JJ'), ('ideas', 'NNS'), ('you', 'PRP'), ('have', 'VBP')], [('please', 'VB'), ('send', 'VB'), ('us', 'PRP'), ('the', 'DT'), ('flight', 'NN'), ('number', 'NN'), ('and', 'CC'), ('the', 'DT'), ('time', 'NN'), ('of', 'IN'), ('arrival', 'NN')], [('do', 'VBP'), ('you', 'PRP'), ('have', 'VBP'), ('availability', 'VBN'), ('on', 'IN')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('tomorrow', 'NN'), ('tuesday', 'NN'), ('yyyy', 'NN'), ('at', 'IN'), ('10am', 'CD'), ('at', 'IN'), ('xxxxs', 'JJ'), ('xxxxxx', 'NN'), ('in', 'IN'), ('xxxxxxxx', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('move', 'VB'), ('my', 'PRP$'), ('friday', 'JJ'), ('appointment', 'NN'), ('with', 'IN'), ('xxx', 'NNP'), ('xxxxxxx', 'NNP'), ('to', 'TO'), ('1145', 'CD'), ('pm', 'NN'), ('and', 'CC'), ('i', 'NN'), ('can', 'MD'), ('stay', 'VB'), ('on', 'IN'), ('for', 'IN'), ('my', 'PRP$'), ('massage', 'NN'), ('appointment', 'NN'), ('at', 'IN'), ('1215', 'CD'), ('with', 'IN'), ('xxxxxx', 'NN')], [('does', 'VBZ'), ('wed', 'VBD'), ('yyyy', 'VB'), ('pm', 'JJ'), ('xxxxxxx', 'NNP'), ('look', 'NN'), ('feasible', 'JJ')], [('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('meet', 'VB'), ('you', 'PRP'), ('for', 'IN'), ('yy', 'JJ'), ('mts', 'NN'), ('or', 'CC'), ('so', 'RB'), ('and', 'CC'), ('get', 'VB'), ('your', 'PRP$'), ('feedback', 'NN')], [('did', 'VBD'), ('want', 'VB'), ('to', 'TO'), ('talk', 'VB'), ('to', 'TO'), ('you', 'PRP'), ('this', 'DT'), ('morning', 'NN'), ('but', 'CC'), ('decided', 'VBD'), ('to', 'TO'), ('ping', 'VBG'), ('you', 'PRP'), ('later', 'RB'), ('since', 'IN'), ('you', 'PRP'), ('were', 'VBD'), ('heading', 'VBG'), ('out', 'RP'), ('for', 'IN'), ('your', 'PRP$'), ('next', 'JJ'), ('meeting', 'NN')], [('if', 'IN'), ('yes', 'NNS'), ('can', 'MD'), ('one', 'CD'), ('of', 'IN'), ('you', 'PRP'), ('put', 'VBP'), ('a', 'DT'), ('word', 'NN'), ('to', 'TO'), ('her', 'PRP$'), ('and', 'CC'), ('i', 'NN'), ('can', 'MD'), ('start', 'VB'), ('working', 'VBG'), ('with', 'IN'), ('her', 'PRP$')], [('please', 'VB'), ('try', 'VB'), ('the', 'DT'), ('following', 'JJ'), ('steps', 'NNS'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('able', 'JJ'), ('to', 'TO'), ('switch', 'VB'), ('the', 'DT'), ('payment', 'NN'), ('method', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('a', 'DT'), ('convenient', 'JJ'), ('time', 'NN'), ('for', 'IN'), ('us', 'PRP'), ('to', 'TO'), ('get', 'VB'), ('on', 'IN'), ('a', 'DT'), ('call', 'NN'), ('explore', 'RB'), ('potential', 'JJ'), ('synergies', 'NNS'), ('for', 'IN'), ('mutual', 'JJ'), ('growth', 'NN')], [('please', 'VB'), ('answer', 'VB'), ('the', 'DT'), ('following', 'JJ'), ('questions', 'NNS'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('collect', 'VB'), ('your', 'PRP$'), ('inputs', 'NNS'), ('for', 'IN'), ('putting', 'VBG'), ('together', 'RB'), ('the', 'DT'), ('new', 'JJ'), ('marketing', 'NN'), ('collateral', 'NN'), ('for', 'IN'), ('xxxxxxxx', 'NN')], [('i', 'NNS'), ('hope', 'VBP'), ('that', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('managed', 'VBN'), ('to', 'TO'), ('make', 'VB'), ('progress', 'VB'), ('your', 'PRP$'), ('side', 'NN'), ('you', 'PRP'), ('want', 'VBP'), ('to', 'TO'), ('talk', 'VB'), ('later', 'RB'), ('today', 'NN'), ('or', 'CC'), ('tomorrow', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('check', 'VB'), ('for', 'IN'), ('similar', 'JJ'), ('resumes', 'NNS'), ('and', 'CC'), ('call', 'VB'), ('them', 'PRP'), ('for', 'IN'), ('interview', 'NN'), ('tomorrow', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('of', 'IN'), ('some', 'DT'), ('other', 'JJ'), ('time', 'NN'), ('i', 'NNS'), ('could', 'MD'), ('call', 'VB'), ('you', 'PRP')], [('what', 'WP'), ('time', 'NN'), ('on', 'IN'), ('friday', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('not', 'RB'), ('just', 'RB'), ('prevent', 'VB'), ('it', 'PRP'), ('from', 'IN'), ('firewall', 'NN')], [('thanks', 'NNS'), ('xxxxxx', 'VBP'), ('shall', 'MD'), ('we', 'PRP'), ('chat', 'VB'), ('this', 'DT'), ('friday', 'NN'), ('at', 'IN'), ('10am', 'CD')], [('and', 'CC'), ('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('available', 'JJ'), ('to', 'TO'), ('take', 'VB'), ('new', 'JJ'), ('project', 'NN'), ('from', 'IN'), ('tuesday', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('use', 'VB'), ('stunner', 'JJR'), ('web', 'NN'), ('template', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('tomorrow', 'NN')], [('as', 'IN'), ('discussed', 'VBN'), ('on', 'IN'), ('phone', 'NN'), ('please', 'NN'), ('do', 'VBP'), ('confirm', 'VB'), ('on', 'IN'), ('xxxxxxx', 'JJ'), ('xxxs', 'NN'), ('joining', 'NN'), ('at', 'IN'), ('the', 'DT'), ('earliest', 'JJS')], [('xxxxxxx', 'NN'), ('on', 'IN'), ('target', 'NN'), ('to', 'TO'), ('lock', 'VB'), ('down', 'RP'), ('requirements', 'NNS'), ('by', 'IN'), ('wednesday', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('do', 'VB'), ('the', 'DT'), ('call', 'NN'), ('tomorrow', 'NN'), ('morning', 'NN'), ('at', 'IN'), ('9am', 'CD'), ('or', 'CC'), ('in', 'IN'), ('the', 'DT'), ('evening', 'NN'), ('at', 'IN'), ('5pm', 'CD')], [('are', 'VBP'), ('you', 'PRP'), ('coming', 'VBG'), ('to', 'TO'), ('office', 'NN'), ('tomorrow', 'NN')], [('they', 'PRP'), ('are', 'VBP'), ('asking', 'VBG'), ('you', 'PRP'), ('to', 'TO'), ('call', 'VB'), ('them', 'PRP'), ('and', 'CC'), ('provide', 'VB'), ('an', 'DT'), ('existing', 'VBG'), ('credit', 'NN'), ('card', 'NN'), ('number', 'NN')], [('do', 'VBP'), ('you', 'PRP'), ('want', 'VB'), ('to', 'TO'), ('send', 'VB'), ('out', 'RP'), ('an', 'DT'), ('intro', 'JJ'), ('email', 'NN'), ('and', 'CC'), ('give', 'VB'), ('me', 'PRP'), ('his', 'PRP$'), ('phone', 'NN')], [('else', 'RB'), ('saturday', 'RB'), ('early', 'JJ'), ('night', 'NN')], [('xxxx', 'VB'), ('its', 'PRP$'), ('ok', 'NN'), ('to', 'TO'), ('meet', 'VB'), ('in', 'IN'), ('the', 'DT'), ('later', 'JJ'), ('part', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('were', 'VBD'), ('out', 'RP'), ('next', 'JJ'), ('weekend', 'NN'), ('but', 'CC'), ('perhaps', 'RB'), ('the', 'DT'), ('27th', 'JJ')], [('xxxxx', 'NN'), ('i', 'NN'), ('ask', 'VBP'), ('xxxxxxx', 'NN'), ('to', 'TO'), ('call', 'VB'), ('you', 'PRP'), ('direct', 'JJ')], [('also', 'RB'), ('who', 'WP'), ('do', 'VBP'), ('we', 'PRP'), ('plan', 'VB'), ('to', 'TO'), ('onboard', 'VB'), ('today', 'NN')], [('what', 'WP'), ('type', 'NN'), ('of', 'IN'), ('curtain', 'NN'), ('cloth', 'NN'), ('will', 'MD'), ('you', 'PRP'), ('be', 'VB'), ('providing', 'VBG')], [('please', 'VB'), ('update', 'JJ'), ('xxxx', 'NNS')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('suggest', 'VB'), ('how', 'WRB'), ('i', 'JJ'), ('can', 'MD'), ('debug', 'VB'), ('and', 'CC'), ('fix', 'VB'), ('this', 'DT'), ('issue', 'NN')], [('in', 'IN'), ('fact', 'NN'), ('please', 'NN'), ('update', 'VB'), ('the', 'DT'), ('sheet', 'NN'), ('we', 'PRP'), ('use', 'VBP'), ('for', 'IN'), ('xx', 'JJ'), ('expense', 'NN'), ('planning', 'NN'), ('with', 'IN'), ('a', 'DT'), ('new', 'JJ'), ('row', 'NN'), ('for', 'IN'), ('this', 'DT')], [('can', 'MD'), ('i', 'VB'), ('call', 'VB'), ('you', 'PRP'), ('at', 'IN'), ('4pm', 'CD'), ('today', 'NN')], [('do', 'VBP'), ('we', 'PRP'), ('want', 'VB'), ('to', 'TO'), ('go', 'VB'), ('ahead', 'RB'), ('or', 'CC'), ('postpone', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('tomorrow', 'NN')], [('please', 'NN'), ('ping', 'VBG'), ('me', 'PRP'), ('in', 'IN'), ('your', 'PRP$'), ('free', 'JJ'), ('time', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('about', 'IN'), ('this', 'DT'), ('issue', 'NN')], [('also', 'RB'), ('with', 'IN'), ('regard', 'NN'), ('to', 'TO'), ('xxxxxx', 'VB'), ('mail', 'NN'), ('please', 'NN'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('our', 'PRP$'), ('way', 'NN'), ('forward', 'RB'), ('with', 'IN'), ('gitgrow', 'NN'), ('blogs', 'NNS')], [('please', 'VB'), ('give', 'VB'), ('me', 'PRP'), ('an', 'DT'), ('xxx', 'NN'), ('on', 'IN'), ('fixing', 'VBG'), ('this', 'DT'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('convey', 'VB'), ('the', 'DT'), ('same', 'JJ'), ('to', 'TO'), ('xxxxx', 'VB'), ('xx', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('please', 'VB'), ('reschedule', 'NN'), ('for', 'IN'), ('tomorrow', 'NN'), ('or', 'CC'), ('day', 'NN'), ('after', 'IN')], [('please', 'VB'), ('mail', 'NN'), ('me', 'PRP'), ('the', 'DT'), ('xx', 'NNP'), ('xx', 'NN')], [('how', 'WRB'), ('about', 'RB'), ('tomorrow', 'NN'), ('around', 'IN'), ('2pm', 'CD')], [('can', 'MD'), ('we', 'PRP'), ('talk', 'VB'), ('today', 'NN'), ('around', 'IN'), ('4', 'CD'), ('pm', 'NN'), ('if', 'IN'), ('possible', 'JJ')], [('do', 'VB'), ('forward', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('xxxxxxx', 'VB'), ('and', 'CC'), ('mark', 'VB'), ('me', 'PRP'), ('on', 'IN'), ('cc', 'NN'), ('so', 'IN'), ('i', 'JJ'), ('can', 'MD'), ('follow', 'VB'), ('up', 'RP'), ('with', 'IN'), ('him', 'PRP')], [('how', 'WRB'), ('about', 'RB'), ('1130am', 'CD'), ('on', 'IN'), ('friday', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('separate', 'VB'), ('out', 'RP'), ('the', 'DT'), ('following', 'VBG'), ('logos', 'NN'), ('and', 'CC'), ('send', 'VB'), ('the', 'DT'), ('hires', 'NNS'), ('jpegs', 'NN'), ('of', 'IN'), ('these', 'DT')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('which', 'WDT'), ('profile', 'JJ'), ('suits', 'NNS'), ('your', 'PRP$'), ('skill', 'NN'), ('set', 'VBN')], [('by', 'IN'), ('the', 'DT'), ('hour', 'NN')], [('xxxxx', 'NN'), ('when', 'WRB'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('have', 'VB'), ('mani', 'VBN'), ('finish', 'VB'), ('the', 'DT'), ('social', 'JJ'), ('hues', 'NNS'), ('website', 'VBP')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('delete', 'VB'), ('the', 'DT'), ('subgroups', 'NNS'), ('xxxx', 'NNP'), ('has', 'VBZ'), ('listed', 'VBN'), ('below', 'IN'), ('and', 'CC'), ('make', 'VB'), ('the', 'DT'), ('changes', 'NNS'), ('he', 'PRP'), ('requested', 'VBD')], [('please', 'VB'), ('feel', 'VB'), ('free', 'JJ'), ('to', 'TO'), ('update', 'VB'), ('me', 'PRP'), ('on', 'IN'), ('your', 'PRP$'), ('meeting', 'NN'), ('with', 'IN'), ('xxx', 'NN'), ('at', 'IN'), ('your', 'PRP$'), ('earliest', 'JJS'), ('convenience', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('at', 'IN'), ('130pm', 'CD')], [('perhaps', 'RB'), ('these', 'DT'), ('two', 'CD'), ('available', 'JJ'), ('candidates', 'NNS'), ('can', 'MD'), ('send', 'VB'), ('an', 'DT'), ('email', 'NN'), ('to', 'TO'), ('xxxx', 'VB'), ('referring', 'VBG'), ('your', 'PRP$'), ('name', 'NN'), ('and', 'CC'), ('she', 'PRP'), ('will', 'MD'), ('coordinate', 'VB'), ('with', 'IN'), ('them', 'PRP')], [('lets', 'NNS'), ('meet', 'VBP'), ('on', 'IN'), ('thursday', '$'), ('10am', 'CD'), ('if', 'IN'), ('that', 'DT'), ('still', 'RB'), ('works', 'VBZ'), ('for', 'IN'), ('you', 'PRP')], [('do', 'VB'), ('you', 'PRP'), ('still', 'RB'), ('have', 'VBP'), ('the', 'DT'), ('sewing', 'NN'), ('machine', 'NN'), ('if', 'IN'), ('so', 'IN'), ('i', 'JJ'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('pick', 'VB'), ('it', 'PRP'), ('up', 'RP'), ('either', 'CC'), ('tomm', 'NN'), ('or', 'CC'), ('friday', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('please', 'VB'), ('continue', 'VB'), ('till', 'JJ'), ('xxxxxxxx', 'NNP'), ('ramps', 'VBZ'), ('up', 'RP')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('the', 'DT'), ('interview', 'NN'), ('could', 'MD'), ('be', 'VB'), ('rescheduled', 'VBN'), ('to', 'TO'), ('friday', 'VB'), ('at', 'IN'), ('2', 'CD'), ('pm', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('available', 'JJ'), ('on', 'IN'), ('tuesday', 'JJ'), ('yyyyy', 'NN'), ('at', 'IN'), ('2pm', 'CD'), ('in', 'IN'), ('xxxxxxxx', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('meet', 'VB'), ('over', 'IN'), ('skypephone', 'NN'), ('sometime', 'RB'), ('today', 'NN'), ('or', 'CC'), ('tomorrow', 'NN'), ('afternoon', 'NN')], [('tomorrow', 'NN'), ('when', 'WRB'), ('were', 'VBD'), ('all', 'DT'), ('back', 'RB'), ('in', 'IN'), ('the', 'DT'), ('office', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('to', 'TO'), ('look', 'VB'), ('at', 'IN'), ('the', 'DT'), ('calendar', 'NN'), ('but', 'CC'), ('perhaps', 'RB'), ('its', 'PRP$'), ('wisest', 'JJS'), ('to', 'TO'), ('wait', 'VB'), ('for', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('let', 'VB'), ('us', 'PRP'), ('know', 'VB'), ('that', 'DT'), ('youve', 'NN'), ('safely', 'RB'), ('arrived', 'VBD'), ('xxxxxx', 'NNS')], [('mom', 'NN'), ('from', 'IN'), ('the', 'DT'), ('xxxx', 'NN'), ('call', 'NN'), ('are', 'VBP'), ('we', 'PRP'), ('closing', 'VBG'), ('this', 'DT'), ('friday', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('wait', 'VB'), ('until', 'IN'), ('tomorrow', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('the', 'DT'), ('schedule', 'NN'), ('for', 'IN'), ('other', 'JJ'), ('candidates', 'NNS')], [('may', 'MD'), ('i', 'VB'), ('request', 'NN'), ('that', 'IN'), ('you', 'PRP'), ('block', 'VBP'), ('time', 'NN'), ('after', 'IN'), ('monday', 'JJ'), ('weekly', 'JJ'), ('call', 'NN'), ('for', 'IN'), ('fb', 'JJ'), ('discussion', 'NN')], [('please', 'VB'), ('respond', 'NN'), ('asap', 'NN')], [('please', 'VB'), ('pick', 'VB'), ('a', 'DT'), ('spot', 'NN')], [('po', 'NN'), ('is', 'VBZ'), ('being', 'VBG'), ('processed', 'VBN'), ('can', 'MD'), ('you', 'PRP'), ('give', 'VB'), ('me', 'PRP'), ('an', 'DT'), ('estimate', 'NN'), ('as', 'IN'), ('to', 'TO'), ('the', 'DT'), ('number', 'NN'), ('of', 'IN'), ('days', 'NNS'), ('it', 'PRP'), ('will', 'MD'), ('take', 'VB'), ('to', 'TO'), ('deliver', 'VB'), ('the', 'DT'), ('whitepaper', 'NN')], [('can', 'MD'), ('we', 'PRP'), ('have', 'VB'), ('a', 'DT'), ('call', 'NN'), ('today', 'NN'), ('to', 'TO'), ('discuss', 'VB')], [('as', 'IN'), ('discussed', 'VBN'), ('please', 'NN'), ('share', 'NN'), ('your', 'PRP$'), ('cv', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('in', 'IN'), ('further', 'JJ'), ('with', 'IN'), ('xxxxxx', 'JJ'), ('xxxxxxx', 'JJ'), ('roles', 'NNS'), ('and', 'CC'), ('keep', 'VB'), ('you', 'PRP'), ('posted', 'VBN'), ('on', 'IN'), ('next', 'JJ'), ('steps', 'NNS')], [('xxxxx', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('make', 'VB'), ('the', 'DT'), ('following', 'JJ'), ('changes', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('attached', 'JJ'), ('idos', 'NN'), ('image', 'NN')], [('do', 'VB'), ('u', 'JJ'), ('hav', 'VB'), ('any', 'DT'), ('cvs', 'NN'), ('i', 'NN'), ('can', 'MD'), ('fwd', 'VB'), ('the', 'DT')], [('can', 'MD'), ('you', 'PRP'), ('get', 'VB'), ('me', 'PRP'), ('these', 'DT'), ('papers', 'NNS'), ('today', 'NN')], [('please', 'VB'), ('review', 'NN'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('your', 'PRP$'), ('thoughts', 'NNS')], [('sorry', 'NN'), ('to', 'TO'), ('trouble', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('u', 'VB'), ('take', 'VB'), ('a', 'DT'), ('look', 'NN'), ('antd', 'JJ'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('this', 'DT'), ('is', 'VBZ')], [('how', 'WRB'), ('about', 'IN'), ('1130', 'CD'), ('am', 'VBP'), ('tomorrow', 'NN'), ('fri', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('share', 'NN'), ('your', 'PRP$'), ('availability', 'NN'), ('for', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('would', 'MD'), ('tuesday', 'VB'), ('yyyyy', 'VB'), ('at', 'IN'), ('5pm', 'CD'), ('in', 'IN'), ('xxxxxxxx', 'JJ'), ('work', 'NN'), ('with', 'IN'), ('your', 'PRP$'), ('schedule', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('check', 'VB'), ('whats', 'NNS'), ('happening', 'VBG')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('publish', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN'), ('and', 'CC'), ('send', 'VB'), ('the', 'DT'), ('url', 'NN'), ('to', 'TO'), ('me', 'PRP'), ('and', 'CC'), ('xxxxxxx', 'VB')], [('did', 'VBD'), ('you', 'PRP'), ('already', 'RB'), ('call', 'VB'), ('xxxxxxx', 'NN')]], [[('i', 'NN'), ('can', 'MD'), ('do', 'VB'), ('this', 'DT'), ('next', 'JJ'), ('week', 'NN'), ('so', 'RB'), ('by', 'IN'), ('17th', 'CD'), ('august', 'NN'), ('at', 'IN'), ('the', 'DT'), ('latest', 'JJS'), ('since', 'IN'), ('i', 'NN'), ('could', 'MD'), ('only', 'RB'), ('start', 'VB'), ('working', 'VBG'), ('on', 'IN'), ('it', 'PRP'), ('on', 'IN'), ('monday', 'NN')], [('some', 'DT'), ('other', 'JJ'), ('observations', 'NNS'), ('that', 'IN'), ('we', 'PRP'), ('should', 'MD'), ('try', 'VB'), ('to', 'TO'), ('discuss', 'VB'), ('first', 'JJ'), ('thing', 'NN'), ('tomorrow', 'NN'), ('morning', 'NN')], [('i', 'JJ'), ('think', 'VBP'), ('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('send', 'VB'), ('to', 'TO'), ('store', 'VB'), ('this', 'DT'), ('week', 'NN'), ('end', 'NN')], [('bringup', 'NN'), ('is', 'VBZ'), ('in', 'IN'), ('full', 'JJ'), ('flow', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('should', 'MD'), ('have', 'VB'), ('something', 'NN'), ('presentable', 'JJ'), ('end', 'NN'), ('aug', 'VBD'), ('early', 'JJ'), ('sep', 'NN')], [('i', 'NNS'), ('have', 'VBP'), ('ordered', 'VBN'), ('this', 'DT'), ('and', 'CC'), ('you', 'PRP'), ('should', 'MD'), ('take', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN')], [('i', 'JJ'), ('dont', 'NN'), ('think', 'VBP'), ('we', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('it', 'PRP'), ('out', 'RP'), ('this', 'DT'), ('week', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('add', 'VB'), ('some', 'DT'), ('permissions', 'NNS'), ('for', 'IN'), ('you', 'PRP'), ('and', 'CC'), ('will', 'MD'), ('let', 'VB'), ('you', 'PRP'), ('know', 'VB'), ('later', 'RB'), ('this', 'DT'), ('week', 'NN')], [('i', 'NN'), ('can', 'MD'), ('help', 'VB'), ('on', 'IN'), ('xxxx', 'JJ'), ('21', 'CD'), ('as', 'RB'), ('well', 'RB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB')], [('and', 'CC'), ('next', 'JJ'), ('week', 'NN'), ('i', 'NN'), ('can', 'MD'), ('start', 'VB'), ('with', 'IN'), ('writing', 'VBG'), ('the', 'DT'), ('api', 'NN')], [('we', 'PRP'), ('cant', 'VBP'), ('make', 'VB'), ('a', 'DT'), ('release', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('if', 'IN'), ('dont', 'JJ'), ('get', 'VBP'), ('the', 'DT'), ('design', 'NN'), ('assets', 'NNS'), ('by', 'IN'), ('earliest', 'JJS'), ('today', 'NN')], [('i', 'NN'), ('will', 'MD'), ('request', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('please', 'VB'), ('send', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('updated', 'VBN'), ('slides', 'NNS'), ('by', 'IN'), ('sunday', 'JJ'), ('evening', 'VBG'), ('so', 'RB'), ('i', 'JJ'), ('can', 'MD'), ('put', 'VB'), ('them', 'PRP'), ('together', 'RB'), ('for', 'IN'), ('monday', 'JJ'), ('morning', 'NN'), ('discussion', 'NN')], [('you', 'PRP'), ('should', 'MD'), ('consider', 'VB'), ('this', 'DT'), ('week', 'NN'), ('as', 'IN'), ('xxxxxx', 'JJ'), ('y', 'NN'), ('starting', 'VBG'), ('sep', 'JJ'), ('1st', 'CD'), ('xxxxxx', 'JJ'), ('y', 'NN'), ('can', 'MD'), ('get', 'VB'), ('started', 'VBN')], [('we', 'PRP'), ('can', 'MD'), ('ask', 'VB'), ('xxxxxx', 'NNP'), ('to', 'TO'), ('start', 'VB'), ('on', 'IN'), ('september', 'NN'), ('1', 'CD')], [('xxxxxx', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('working', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('landing', 'JJ'), ('page', 'NN'), ('design', 'NN'), ('which', 'WDT'), ('will', 'MD'), ('be', 'VB'), ('delivered', 'VBN'), ('on', 'IN'), ('wednesday', 'NN'), ('xxxxxx', 'NN'), ('can', 'MD'), ('take', 'VB'), ('this', 'DT'), ('up', 'RP'), ('as', 'RB'), ('soon', 'RB'), ('as', 'IN'), ('that', 'DT'), ('task', 'NN'), ('is', 'VBZ'), ('closed', 'VBN')], [('i', 'NN'), ('could', 'MD'), ('not', 'RB'), ('catch', 'VB'), ('the', 'DT'), ('customer', 'NN'), ('today', 'NN'), ('for', 'IN'), ('a', 'DT'), ('final', 'JJ'), ('go', 'NN'), ('ahead', 'RB'), ('let', 'VB'), ('me', 'PRP'), ('do', 'VB'), ('that', 'DT'), ('first', 'JJ'), ('thing', 'NN'), ('tomorrow', 'NN')], [('hey', 'NN'), ('why', 'WRB'), ('dont', 'NN'), ('you', 'PRP'), ('plan', 'VBP'), ('a', 'DT'), ('trip', 'NN'), ('to', 'TO'), ('asutin', 'VB'), ('you', 'PRP'), ('can', 'MD'), ('hang', 'VB'), ('out', 'RP'), ('with', 'IN'), ('neha', 'NN'), ('and', 'CC'), ('me', 'PRP'), ('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('a', 'DT'), ('girls', 'NNS'), ('weekend', 'NN')], [('can', 'MD'), ('do', 'VB'), ('tomorrow', 'NN'), ('post', 'NN'), ('yy', 'NN'), ('noon', 'NN'), ('wed', 'VBD'), ('xxxx', 'NNP'), ('xxxx', 'NN')], [('sure', 'JJ'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('it', 'PRP'), ('across', 'IN'), ('by', 'IN'), ('tomorrow', 'NN'), ('afternoon', 'NN')], [('not', 'RB'), ('sure', 'JJ'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('provide', 'VB'), ('estimate', 'NN'), ('for', 'IN'), ('the', 'DT'), ('xxxxxx', 'NNP'), ('vd', 'NN'), ('by', 'IN'), ('monday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('also', 'RB'), ('put', 'VB'), ('the', 'DT'), ('rule', 'NN'), ('proposed', 'VBN'), ('by', 'IN'), ('our', 'PRP$'), ('adviser', 'NN'), ('who', 'WP'), ('has', 'VBZ'), ('been', 'VBN'), ('affected', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('xxxxxxxxxx', 'NNP'), ('syndrome', 'NN'), ('to', 'TO'), ('vote', 'VB'), ('on', 'IN'), ('sunday', 'NN'), ('as', 'IN'), ('is', 'VBZ')], [('for', 'IN'), ('next', 'JJ'), ('weeks', 'NNS'), ('milestone', 'NN'), ('and', 'CC'), ('further', 'RBR'), ('we', 'PRP'), ('should', 'MD'), ('make', 'VB'), ('sure', 'JJ'), ('the', 'DT'), ('last', 'JJ'), ('pieces', 'NNS'), ('of', 'IN'), ('new', 'JJ'), ('code', 'NN'), ('are', 'VBP'), ('in', 'IN'), ('by', 'IN'), ('wed', 'JJ'), ('nights', 'NNS'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('test', 'VB'), ('and', 'CC'), ('release', 'VB'), ('by', 'IN'), ('eod', 'NN'), ('xxxxxxxxx', 'NN')], [('you', 'PRP'), ('should', 'MD'), ('receive', 'VB'), ('the', 'DT'), ('same', 'JJ'), ('by', 'IN'), ('tuesday', 'NN')], [('she', 'PRP'), ('wrote', 'VBD'), ('hey', 'JJ'), ('why', 'WRB'), ('dont', 'NN'), ('you', 'PRP'), ('plan', 'VBP'), ('a', 'DT'), ('trip', 'NN'), ('to', 'TO'), ('xxxxxx', 'VB'), ('you', 'PRP'), ('can', 'MD'), ('hang', 'VB'), ('out', 'RP'), ('with', 'IN'), ('neha', 'NN'), ('and', 'CC'), ('me', 'PRP'), ('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('a', 'DT'), ('girls', 'NNS'), ('weekend', 'NN')], [('today', 'NN'), ('is', 'VBZ'), ('xxxxx', 'JJ'), ('day', 'NN'), ('tomorrow', 'NN'), ('i', 'NN'), ('teach', 'VBP'), ('so', 'RB'), ('only', 'RB'), ('wednesday', 'JJ'), ('i', 'NNS'), ('can', 'MD'), ('look', 'VB')], [('communication', 'NN'), ('to', 'TO'), ('charter', 'VB'), ('members', 'NNS'), ('i', 'VBP'), ('will', 'MD'), ('send', 'VB'), ('out', 'RP'), ('an', 'DT'), ('email', 'NN'), ('to', 'TO'), ('all', 'DT'), ('charter', 'NN'), ('members', 'NNS'), ('tomorrow', 'NN'), ('informing', 'VBG'), ('them', 'PRP'), ('of', 'IN'), ('the', 'DT'), ('xxxxxs', 'NNP'), ('decision', 'NN'), ('to', 'TO'), ('acquire', 'VB'), ('a', 'DT'), ('building', 'NN'), ('and', 'CC'), ('offer', 'VB'), ('them', 'PRP'), ('the', 'DT'), ('naming', 'NN'), ('rights', 'NNS')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('stop', 'VB'), ('by', 'IN'), ('tomorrow', 'NN'), ('or', 'CC'), ('day', 'NN'), ('after', 'IN')], [('i', 'JJ'), ('think', 'VBP'), ('we', 'PRP'), ('can', 'MD'), ('just', 'RB'), ('delete', 'VB'), ('them', 'PRP'), ('when', 'WRB'), ('we', 'PRP'), ('update', 'VBP'), ('prod', 'NNS'), ('on', 'IN'), ('thursday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('then', 'RB'), ('work', 'VB'), ('with', 'IN'), ('advertisers', 'NNS'), ('for', 'IN'), ('a', 'DT'), ('push', 'NN'), ('over', 'IN'), ('to', 'TO'), ('november', 'VB'), ('after', 'IN'), ('the', 'DT'), ('initial', 'JJ'), ('set', 'NN'), ('of', 'IN'), ('campaigns', 'NNS')], [('for', 'IN'), ('remaining', 'VBG'), ('descriptors', 'NNS'), ('i', 'VBP'), ('will', 'MD'), ('do', 'VB'), ('changes', 'NNS'), ('at', 'IN'), ('home', 'NN'), ('and', 'CC'), ('will', 'MD'), ('come', 'VB'), ('to', 'TO'), ('office', 'NN'), ('tomorrow', 'NN'), ('early', 'RB'), ('and', 'CC'), ('then', 'RB'), ('test', 'VB'), ('it', 'PRP')], [('else', 'RB'), ('i', 'NN'), ('can', 'MD'), ('also', 'RB'), ('come', 'VB'), ('on', 'IN'), ('thursday', 'NN')], [('it', 'PRP'), ('is', 'VBZ'), ('helpful', 'JJ'), ('to', 'TO'), ('have', 'VB'), ('a', 'DT'), ('quick', 'JJ'), ('call', 'NN'), ('for', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('so', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('prepare', 'VB'), ('technical', 'JJ'), ('design', 'NN'), ('before', 'IN'), ('tomorrows', 'NNS'), ('meeting', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('hoping', 'VBG'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('details', 'NNS'), ('for', 'IN'), ('hirewand', 'NN'), ('by', 'IN'), ('tomorrow', 'NN'), ('noon', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('revisit', 'VB'), ('the', 'DT'), ('situation', 'NN'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('oct', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('respondam', 'VB'), ('back', 'RP'), ('in', 'IN'), ('town', 'NN'), ('tomorrow', 'NN'), ('evening', 'NN')], [('but', 'CC'), ('file', 'IN'), ('the', 'DT'), ('bug', 'NN'), ('with', 'IN'), ('parse', 'JJ'), ('anyway', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('wait', 'VB'), ('for', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('week', 'NN'), ('for', 'IN'), ('them', 'PRP'), ('to', 'TO'), ('respond', 'VB')], [('and', 'CC'), ('host', 'NN'), ('of', 'IN'), ('cps', 'NN'), ('hopefully', 'RB'), ('we', 'PRP'), ('should', 'MD'), ('execute', 'VB'), ('on', 'IN'), ('monday', 'NN'), ('or', 'CC'), ('so', 'RB')], [('then', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('send', 'VB'), ('the', 'DT'), ('revised', 'VBN'), ('link', 'NN'), ('to', 'TO'), ('advisors', 'NNS'), ('today', 'NN'), ('and', 'CC'), ('to', 'TO'), ('others', 'NNS'), ('starting', 'VBG'), ('tomorrow', 'NN')], [('wanted', 'VBN'), ('to', 'TO'), ('give', 'VB'), ('you', 'PRP'), ('heads', 'VBP'), ('up', 'RB'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('plan', 'VB'), ('our', 'PRP$'), ('calendars', 'NNS'), ('for', 'IN'), ('either', 'DT'), ('later', 'RBR'), ('this', 'DT'), ('week', 'NN'), ('or', 'CC'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN')], [('i', 'NN'), ('can', 'MD'), ('meet', 'VB'), ('him', 'PRP'), ('later', 'RB'), ('this', 'DT'), ('week', 'NN'), ('in', 'IN'), ('my', 'PRP$'), ('office', 'NN')], [('xxxxxx', 'NN'), ('i', 'NN'), ('can', 'MD'), ('come', 'VB'), ('over', 'IN'), ('tomorrow', 'NN'), ('if', 'IN'), ('he', 'PRP'), ('is', 'VBZ'), ('there', 'RB')], [('swapna', 'NN'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('xxx', 'NN'), ('and', 'CC'), ('xx', 'NNP'), ('separately', 'RB'), ('tomorrow', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('revert', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('xxxxxxxxx', 'JJ'), ('friday', 'JJ'), ('suits', 'NNS'), ('you', 'PRP')], [('we', 'PRP'), ('should', 'MD'), ('close', 'VB'), ('it', 'PRP'), ('out', 'RP'), ('by', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('i', 'NN'), ('can', 'MD'), ('make', 'VB'), ('a', 'DT'), ('few', 'JJ'), ('calls', 'NNS'), ('tomorrow', 'NN'), ('evening', 'NN'), ('as', 'IN'), ('im', 'NN'), ('in', 'IN'), ('xxxxx', 'NN'), ('today', 'NN'), ('and', 'CC'), ('flying', 'VBG'), ('to', 'TO'), ('xxx', 'VB'), ('tomorrow', 'NN')], [('unfortunately', 'RB'), ('xxxxxx', 'NN'), ('is', 'VBZ'), ('going', 'VBG'), ('next', 'JJ'), ('week', 'NN'), ('to', 'TO'), ('xxxxxxxxx', 'VB'), ('so', 'RB'), ('we', 'PRP'), ('cant', 'VBP'), ('time', 'NN'), ('it', 'PRP'), ('after', 'IN'), ('three', 'CD'), ('weeks', 'NNS')], [('we', 'PRP'), ('had', 'VBD'), ('an', 'DT'), ('overwhelming', 'JJ'), ('response', 'NN'), ('for', 'IN'), ('our', 'PRP$'), ('xxx', 'JJ'), ('xxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('tomorrow', 'NN'), ('wednesday', 'VBD'), ('september', '$'), ('10th', 'CD'), ('forgive', 'JJ'), ('the', 'DT'), ('typo', 'NN'), ('in', 'IN'), ('my', 'PRP$'), ('last', 'JJ'), ('email', 'NN'), ('and', 'CC'), ('had', 'VBD'), ('3x', 'CD'), ('the', 'DT'), ('number', 'NN'), ('of', 'IN'), ('people', 'NNS'), ('express', 'VBP'), ('interest', 'NN'), ('than', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('accommodate', 'VB'), ('at', 'IN'), ('the', 'DT'), ('venue', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('in', 'IN'), ('the', 'DT'), ('middle', 'NN'), ('of', 'IN'), ('few', 'JJ'), ('bug', 'NN'), ('fixeschanges', 'NNS'), ('and', 'CC'), ('can', 'MD'), ('do', 'VB'), ('that', 'DT'), ('later', 'RBR'), ('this', 'DT'), ('month', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('the', 'DT'), ('xxxx', 'NN'), ('on', 'IN'), ('wednesday', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('17th', 'CD'), ('sep', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('close', 'VB'), ('this', 'DT'), ('as', 'RB'), ('well', 'RB'), ('tomorrow', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('have', 'VB'), ('the', 'DT'), ('first', 'JJ'), ('cut', 'NN'), ('of', 'IN'), ('stylesheetguide', 'NN'), ('also', 'RB'), ('ready', 'JJ'), ('by', 'IN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('have', 'VBP'), ('a', 'DT'), ('new', 'JJ'), ('product', 'NN'), ('launch', 'NN'), ('on', 'IN'), ('september', 'JJ'), ('15th', 'CD'), ('so', 'RB'), ('after', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('should', 'MD'), ('really', 'RB'), ('get', 'VB'), ('together', 'RB')], [('hi', 'NN'), ('xxxxxxxx', 'NNP'), ('let', 'VB'), ('me', 'PRP'), ('go', 'VB'), ('though', 'RB'), ('xxxx', 'RB'), ('as', 'IN'), ('i', 'NN'), ('do', 'VBP'), ('have', 'VB'), ('a', 'DT'), ('meeting', 'NN'), ('with', 'IN'), ('him', 'PRP'), ('on', 'IN'), ('monday', 'NN'), ('then', 'RB'), ('i', 'VB'), ('will', 'MD'), ('circle', 'VB'), ('back', 'RB'), ('with', 'IN'), ('you', 'PRP')], [('i', 'NN'), ('can', 'MD'), ('make', 'VB'), ('the', 'DT'), ('site', 'NN'), ('live', 'JJ'), ('by', 'IN'), ('this', 'DT'), ('weekend', 'NN')], [('with', 'IN'), ('your', 'PRP$'), ('timely', 'JJ'), ('inputs', 'NNS'), ('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('publish', 'VB'), ('this', 'DT'), ('to', 'TO'), ('the', 'DT'), ('xxxx', 'NNP'), ('server', 'NN'), ('on', 'IN'), ('wednesday', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('put', 'VB'), ('together', 'RB'), ('an', 'DT'), ('executive', 'NN'), ('summary', 'NN'), ('and', 'CC'), ('send', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('you', 'PRP'), ('tomorrow', 'NN'), ('for', 'IN'), ('your', 'PRP$'), ('feedback', 'NN'), ('and', 'CC'), ('guidance', 'NN'), ('on', 'IN'), ('next', 'JJ'), ('steps', 'NNS')], [('so', 'RB'), ('i', 'JJ'), ('can', 'MD'), ('send', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('friday', 'JJ'), ('morning', 'NN'), ('your', 'PRP$'), ('time', 'NN')], [('if', 'IN'), ('you', 'PRP'), ('approve', 'VBP'), ('i', 'NNS'), ('can', 'MD'), ('deliver', 'VB'), ('phase', 'VB'), ('y', 'NN'), ('at', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('i', 'NN'), ('can', 'MD'), ('share', 'NN'), ('the', 'DT'), ('formal', 'JJ'), ('proposal', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('i', 'NN'), ('can', 'MD'), ('share', 'NN'), ('the', 'DT'), ('first', 'JJ'), ('draft', 'NN'), ('of', 'IN'), ('the', 'DT'), ('dashboard', 'NN'), ('for', 'IN'), ('intelligence', 'NN'), ('both', 'CC'), ('the', 'DT'), ('views', 'NNS'), ('on', 'IN'), ('monday', 'JJ'), ('15th', 'CD'), ('of', 'IN'), ('september', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('before', 'IN'), ('monday', 'JJ'), ('200', 'CD'), ('xxxx', 'NN'), ('xxx', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('shoot', 'VB'), ('another', 'DT'), ('video', 'NN'), ('next', 'JJ'), ('week', 'NN'), ('but', 'CC'), ('this', 'DT'), ('xx', 'JJ'), ('article', 'NN'), ('might', 'MD'), ('be', 'VB'), ('a', 'DT'), ('featured', 'JJ'), ('one', 'CD'), ('so', 'RB'), ('want', 'VB'), ('to', 'TO'), ('get', 'VB'), ('this', 'DT'), ('up', 'RB'), ('soon', 'RB'), ('so', 'IN'), ('we', 'PRP'), ('get', 'VBP'), ('as', 'RB'), ('much', 'JJ'), ('bang', 'NN'), ('as', 'IN'), ('possible', 'JJ'), ('from', 'IN'), ('the', 'DT'), ('traffic', 'NN')], [('if', 'IN'), ('not', 'RB'), ('i', 'VB'), ('will', 'MD'), ('call', 'VB'), ('him', 'PRP'), ('sunday', 'JJ')], [('old', 'JJ'), ('users', 'NNS'), ('also', 'RB'), ('we', 'PRP'), ('should', 'MD'), ('send', 'VB'), ('a', 'DT'), ('mail', 'NN'), ('but', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('doing', 'VBG'), ('that', 'IN'), ('from', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('students', 'NNS'), ('who', 'WP'), ('have', 'VBP'), ('opted', 'VBN'), ('or', 'CC'), ('are', 'VBP'), ('considering', 'VBG'), ('the', 'DT'), ('option', 'NN'), ('of', 'IN'), ('school', 'NN'), ('transport', 'NN'), ('will', 'MD'), ('need', 'VB'), ('to', 'TO'), ('confirm', 'VB'), ('their', 'PRP$'), ('travel', 'NN'), ('plans', 'NNS'), ('by', 'IN'), ('wednesday', 'JJ'), ('september', 'VB'), ('24th', 'CD'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('finalize', 'VB'), ('all', 'DT'), ('travel', 'NN'), ('arrangements', 'NNS')], [('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('the', 'DT'), ('development', 'NN'), ('process', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('and', 'CC'), ('the', 'DT'), ('tool', 'NN'), ('proposed', 'VBD'), ('trello', 'NN'), ('to', 'TO'), ('see', 'VB'), ('if', 'IN'), ('it', 'PRP'), ('helps', 'VBZ'), ('with', 'IN'), ('the', 'DT'), ('above', 'NN')], [('i', 'NN'), ('can', 'MD'), ('do', 'VB'), ('wednesday', 'JJ'), ('lunch', 'NN')], [('xxxxxx', 'NN'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('signed', 'VBN'), ('contracts', 'NNS'), ('tomorrow', 'NN')], [('by', 'IN'), ('tomorrow', 'NN'), ('eod', 'NN'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB')], [('xxxxx', 'NN'), ('i', 'NN'), ('will', 'MD'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('on', 'IN'), ('this', 'DT'), ('by', 'IN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('rapidly', 'RB'), ('iterating', 'VBG'), ('over', 'IN'), ('the', 'DT'), ('coming', 'JJ'), ('weeks', 'NNS'), ('and', 'CC'), ('you', 'PRP'), ('should', 'MD'), ('see', 'VB'), ('many', 'JJ'), ('weekly', 'JJ'), ('improvements', 'NNS')], [('we', 'PRP'), ('can', 'MD'), ('expect', 'VB'), ('response', 'NN'), ('on', 'IN'), ('or', 'CC'), ('before', 'IN'), ('30th', 'CD'), ('september', 'NN'), ('if', 'IN'), ('we', 'PRP'), ('upload', 'VBP'), ('today', 'NN')], [('how', 'WRB'), ('long', 'RB'), ('will', 'MD'), ('it', 'PRP'), ('take', 'VB'), ('for', 'IN'), ('us', 'PRP'), ('to', 'TO'), ('deliver', 'VB'), ('the', 'DT'), ('version', 'NN'), ('that', 'WDT'), ('can', 'MD'), ('be', 'VB'), ('submitted', 'VBN'), ('to', 'TO'), ('app', 'VB'), ('store', 'NN'), ('and', 'CC'), ('play', 'VB'), ('store', 'NN'), ('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('submit', 'VB'), ('the', 'DT'), ('app', 'NN'), ('by', 'IN'), ('26th', 'CD'), ('september', 'NN'), ('provided', 'VBD'), ('that', 'IN'), ('we', 'PRP'), ('get', 'VBP'), ('the', 'DT'), ('final', 'JJ'), ('approval', 'NN'), ('on', 'IN'), ('the', 'DT'), ('xxxxxx', 'JJ'), ('design', 'NN'), ('from', 'IN'), ('rt', 'NN'), ('by', 'IN'), ('this', 'DT'), ('friday', 'NN')], [('xxxxxxxxx', 'NN'), ('said', 'VBD'), ('she', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('it', 'PRP'), ('over', 'IN'), ('the', 'DT'), ('weekend', 'NN')], [('xxxxxx', 'NN'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('signed', 'VBN'), ('contracts', 'NNS'), ('tomorrow', 'NN'), ('in', 'IN'), ('a', 'DT'), ('separate', 'JJ'), ('email', 'NN')], [('the', 'DT'), ('transfer', 'NN'), ('details', 'NNS'), ('are', 'VBP'), ('below', 'IN'), ('you', 'PRP'), ('should', 'MD'), ('see', 'VB'), ('it', 'PRP'), ('in', 'IN'), ('your', 'PRP$'), ('bank', 'NN'), ('account', 'NN'), ('tomorrow', 'NN')], [('you', 'PRP'), ('should', 'MD'), ('see', 'VB'), ('the', 'DT'), ('amount', 'NN'), ('in', 'IN'), ('your', 'PRP$'), ('bank', 'NN'), ('by', 'IN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('pick', 'VB'), ('it', 'PRP'), ('up', 'RP'), ('on', 'IN'), ('friday', 'NN')], [('ramesh', 'NN'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('next', 'JJ'), ('set', 'NN'), ('of', 'IN'), ('apis', 'NN'), ('this', 'DT'), ('friday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('the', 'DT'), ('kick', 'NNP'), ('start', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('ill', 'NN'), ('ask', 'VB'), ('xxxxxxxx', 'NN'), ('to', 'TO'), ('give', 'VB'), ('a', 'DT'), ('call', 'NN'), ('at', 'IN'), ('first', 'JJ'), ('regarding', 'VBG'), ('software', 'NN'), ('and', 'CC'), ('hardware', 'NN'), ('specs', 'NNS'), ('and', 'CC'), ('may', 'MD'), ('be', 'VB'), ('we', 'PRP'), ('should', 'MD'), ('have', 'VB'), ('teleconference', 'NN'), ('tomorrow', 'NN'), ('ie', 'NN'), ('friday', 'JJ'), ('xxx', 'NNP'), ('xxx', 'NN')], [('i', 'NN'), ('can', 'MD'), ('send', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('monday', 'NN')], [('if', 'IN'), ('you', 'PRP'), ('still', 'RB'), ('need', 'VB'), ('to', 'TO'), ('move', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('xxxx', 'VB'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB')], [('we', 'PRP'), ('can', 'MD'), ('share', 'NN'), ('the', 'DT'), ('first', 'JJ'), ('drop', 'NN'), ('by', 'IN'), ('22nd', 'CD'), ('xxxx', 'NNS'), ('as', 'IN'), ('committed', 'JJ')], [('we', 'PRP'), ('cant', 'VBP'), ('start', 'NN'), ('from', 'IN'), ('monday', 'NN'), ('because', 'IN'), ('were', 'VBD'), ('still', 'RB'), ('awaiting', 'VBG'), ('critical', 'JJ'), ('information', 'NN'), ('from', 'IN'), ('xxxx', 'NN'), ('regarding', 'VBG'), ('apis', 'NNS')], [('we', 'PRP'), ('cancelled', 'VBD'), ('the', 'DT'), ('bookings', 'NNS'), ('and', 'CC'), ('tried', 'VBD'), ('to', 'TO'), ('get', 'VB'), ('new', 'JJ'), ('ones', 'NNS'), ('next', 'IN'), ('week', 'NN'), ('but', 'CC'), ('after', 'IN'), ('trying', 'VBG'), ('for', 'IN'), ('the', 'DT'), ('last', 'JJ'), ('couple', 'NN'), ('of', 'IN'), ('hours', 'NNS'), ('we', 'PRP'), ('are', 'VBP'), ('not', 'RB'), ('able', 'JJ'), ('to', 'TO'), ('get', 'VB'), ('it', 'PRP'), ('since', 'IN'), ('all', 'DT'), ('travelhotels', 'NNS'), ('are', 'VBP'), ('booked', 'VBN'), ('the', 'DT'), ('ones', 'NNS'), ('we', 'PRP'), ('liked', 'VBD')], [('we', 'PRP'), ('can', 'MD'), ('stay', 'VB'), ('the', 'DT'), ('weekend', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('can', 'MD')], [('we', 'PRP'), ('should', 'MD'), ('definitely', 'RB'), ('have', 'VB'), ('it', 'PRP'), ('for', 'IN'), ('1hr', 'CD'), ('everyday', 'JJ'), ('till', 'VB'), ('the', 'DT'), ('day', 'NN'), ('of', 'IN'), ('release', 'NN'), ('starting', 'VBG'), ('tomorrow', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('it', 'PRP'), ('when', 'WRB'), ('i', 'JJ'), ('am', 'VBP'), ('in', 'IN'), ('xx', 'NN'), ('on', 'IN'), ('monday', 'JJ'), ('noon', 'NN'), ('hours', 'NNS')], [('we', 'PRP'), ('can', 'MD'), ('put', 'VB'), ('the', 'DT'), ('site', 'NN'), ('up', 'RP'), ('on', 'IN'), ('monday', 'NN'), ('and', 'CC'), ('give', 'VB'), ('a', 'DT'), ('heartattack', 'NN'), ('to', 'TO'), ('xxxxxxx', 'VB'), ('p', 'NN'), ('hehehe', 'NN')], [('he', 'PRP'), ('was', 'VBD'), ('supposed', 'VBN'), ('to', 'TO'), ('get', 'VB'), ('operated', 'JJ'), ('next', 'JJ'), ('weekend', 'NN'), ('but', 'CC'), ('it', 'PRP'), ('looks', 'VBZ'), ('like', 'IN'), ('we', 'PRP'), ('cant', 'VBP'), ('wait', 'WRB'), ('till', 'NN'), ('then', 'RB')], [('i', 'NNS'), ('have', 'VBP'), ('not', 'RB'), ('got', 'VBN'), ('the', 'DT'), ('seal', 'NN'), ('if', 'IN'), ('the', 'DT'), ('seal', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('done', 'VBN'), ('then', 'RB'), ('i', 'VB'), ('will', 'MD'), ('come', 'VB'), ('over', 'RP'), ('tomorrow', 'NN'), ('or', 'CC'), ('i', 'NN'), ('can', 'MD'), ('come', 'VB'), ('today', 'NN'), ('with', 'IN'), ('the', 'DT'), ('signed', 'VBN'), ('docs', 'NN')], [('if', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('invoice', 'NN'), ('is', 'VBZ'), ('quite', 'RB'), ('late', 'JJ'), ('we', 'PRP'), ('can', 'MD'), ('raise', 'VB'), ('this', 'DT'), ('on', 'IN'), ('1st', 'CD'), ('oct', 'NN')], [('if', 'IN'), ('october', '$'), ('1', 'CD'), ('st', 'NN'), ('is', 'VBZ'), ('important', 'JJ'), ('i', 'NNS'), ('can', 'MD'), ('ask', 'VB'), ('him', 'PRP'), ('to', 'TO'), ('stay', 'VB')], [('requesting', 'VBG'), ('you', 'PRP'), ('all', 'DT'), ('to', 'TO'), ('give', 'VB'), ('rs', 'NN'), ('yyy', 'NN'), ('to', 'TO'), ('me', 'PRP'), ('by', 'IN'), ('tomorrow', 'NN'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('a', 'DT'), ('gift', 'NN'), ('for', 'IN'), ('xxxxxxx', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('leave', 'VB'), ('tomorrow', 'NN'), ('from', 'IN'), ('office', 'NN'), ('around', 'RB'), ('2', 'CD'), ('to', 'TO'), ('215', 'CD'), ('pm', 'NN'), ('xxxxxx', 'NN'), ('has', 'VBZ'), ('not', 'RB'), ('said', 'VBD'), ('no', 'DT'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('gohead', 'VB'), ('with', 'IN'), ('uma', 'JJ'), ('you', 'PRP'), ('and', 'CC'), ('me', 'PRP')], [('we', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('a', 'DT'), ('bit', 'NN'), ('more', 'JJR'), ('of', 'IN'), ('a', 'DT'), ('litmus', 'JJ'), ('test', 'NN'), ('with', 'IN'), ('our', 'PRP$'), ('meeting', 'NN'), ('friday', 'NN'), ('with', 'IN')], [('let', 'VB'), ('me', 'PRP'), ('review', 'VB'), ('it', 'PRP'), ('next', 'JJ'), ('week', 'NN'), ('and', 'CC'), ('revert', 'NN'), ('with', 'IN'), ('questions', 'NNS')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('guys', 'VBP'), ('want', 'VBP'), ('to', 'TO'), ('move', 'VB'), ('this', 'DT'), ('forward', 'NN'), ('because', 'IN'), ('i', 'JJ'), ('intend', 'VBP'), ('to', 'TO'), ('close', 'VB'), ('this', 'DT'), ('round', 'NN'), ('by', 'IN'), ('next', 'JJ'), ('week', 'NN'), ('and', 'CC'), ('move', 'VB'), ('forward', 'RB'), ('to', 'TO'), ('our', 'PRP$'), ('next', 'JJ'), ('phase', 'NN'), ('of', 'IN'), ('growth', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('about', 'IN'), ('it', 'PRP'), ('more', 'RBR'), ('tomorrow', 'NN'), ('i', 'NN'), ('guess', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('a', 'DT'), ('discussion', 'NN'), ('tomorrow', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('some', 'DT'), ('times', 'NNS'), ('thu', 'VBP'), ('or', 'CC'), ('fri', 'VBP')], [('i', 'NN'), ('can', 'MD'), ('always', 'RB'), ('come', 'VB'), ('back', 'RB'), ('to', 'TO'), ('xxxxx', 'VB'), ('for', 'IN'), ('a', 'DT'), ('day', 'NN'), ('visit', 'IN'), ('the', 'DT'), ('week', 'NN'), ('after', 'IN'), ('too', 'RB')], [('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('done', 'VBN'), ('by', 'IN'), ('yyyy', 'NN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('see', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('switch', 'VB'), ('to', 'TO'), ('personal', 'JJ'), ('plan', 'NN'), ('starting', 'VBG'), ('november', 'JJ')], [('the', 'DT'), ('shift', 'NN'), ('to', 'TO'), ('the', 'DT'), ('new', 'JJ'), ('office', 'NN'), ('is', 'VBZ'), ('planned', 'VBN'), ('to', 'TO'), ('happen', 'VB'), ('on', 'IN'), ('wednesday', 'NN'), ('so', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('be', 'VB'), ('fully', 'RB'), ('operational', 'JJ'), ('at', 'IN'), ('the', 'DT'), ('new', 'JJ'), ('premises', 'NNS'), ('on', 'IN'), ('monday', 'NN'), ('oct', 'IN'), ('6th', 'CD'), ('2014', 'CD')], [('oct', 'RB'), ('23rd', 'CD'), ('and', 'CC'), ('oct', '$'), ('30th', 'CD'), ('both', 'DT'), ('suits', 'NNS'), ('me', 'PRP'), ('although', 'IN'), ('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('helpful', 'JJ'), ('if', 'IN'), ('the', 'DT'), ('dates', 'NNS'), ('are', 'VBP'), ('decided', 'VBN'), ('and', 'CC'), ('announced', 'VBN'), ('well', 'RB'), ('before', 'RB'), ('hand', 'NN'), ('to', 'TO'), ('me', 'PRP'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('prepare', 'VB'), ('for', 'IN'), ('it', 'PRP'), ('in', 'IN'), ('advance', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('it', 'PRP'), ('later', 'RB'), ('sometime', 'RB'), ('next', 'JJ'), ('week', 'NN'), ('in', 'IN'), ('detail', 'NN'), ('with', 'IN'), ('him', 'PRP')], [('i', 'NN'), ('can', 'MD'), ('help', 'VB'), ('in', 'IN'), ('implementation', 'NN'), ('post', 'NN'), ('oct', 'VBD'), ('6th', 'CD')], [('well', 'RB'), ('schedule', 'VB'), ('a', 'DT'), ('call', 'NN'), ('next', 'JJ'), ('week', 'NN'), ('were', 'VBD'), ('going', 'VBG'), ('not', 'RB'), ('going', 'VBG'), ('to', 'TO'), ('be', 'VB'), ('ready', 'JJ'), ('by', 'IN'), ('xxxxxx', 'JJ'), ('but', 'CC'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('see', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('work', 'VB'), ('something', 'NN'), ('out', 'RP'), ('in', 'IN'), ('the', 'DT'), ('longer', 'JJR'), ('term', 'NN'), ('with', 'IN'), ('xxxx', 'NN')], [('yes', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('a', 'DT'), ('call', 'NN'), ('next', 'JJ'), ('week', 'NN'), ('and', 'CC'), ('work', 'NN'), ('out', 'RP'), ('something', 'NN'), ('for', 'IN'), ('longer', 'JJR'), ('term', 'NN'), ('with', 'IN'), ('kknc', 'NN'), ('and', 'CC'), ('akka', 'NN')], [('plan', 'NN'), ('is', 'VBZ'), ('for', 'IN'), ('xxxxxx', 'NN'), ('to', 'TO'), ('have', 'VB'), ('a', 'DT'), ('call', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('with', 'IN'), ('xxxxxx', 'NNP'), ('and', 'CC'), ('then', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('review', 'VB'), ('it', 'PRP'), ('as', 'IN'), ('part', 'NN'), ('of', 'IN'), ('our', 'PRP$'), ('weekly', 'JJ'), ('review', 'NN'), ('on', 'IN'), ('tuesday', 'NN')], [('i', 'IN'), ('hope', 'VBP'), ('i', 'NNS'), ('can', 'MD'), ('use', 'VB'), ('my', 'PRP$'), ('optional', 'JJ'), ('leave', 'VBP'), ('on', 'IN'), ('6th', 'CD'), ('oct', 'NN')], [('give', 'VB'), ('me', 'PRP'), ('a', 'DT'), ('call', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('i', 'NN'), ('can', 'MD'), ('give', 'VB'), ('you', 'PRP'), ('a', 'DT'), ('high', 'JJ'), ('level', 'NN'), ('briefing', 'NN')], [('wanted', 'VBN'), ('to', 'TO'), ('check', 'VB'), ('if', 'IN'), ('i', 'JJ'), ('can', 'MD'), ('pick', 'VB'), ('up', 'RP'), ('the', 'DT'), ('boards', 'NNS'), ('one', 'CD'), ('of', 'IN'), ('these', 'DT'), ('days', 'NNS'), ('this', 'DT'), ('week', 'NN')], [('i', 'NN'), ('can', 'MD'), ('check', 'VB'), ('on', 'IN'), ('weekend', 'NN')], [('xxxxxxxx', 'NN'), ('can', 'MD'), ('do', 'VB'), ('this', 'DT'), ('work', 'NN'), ('so', 'RB'), ('if', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('send', 'VB'), ('us', 'PRP'), ('the', 'DT'), ('list', 'NN'), ('she', 'PRP'), ('will', 'MD'), ('get', 'VB'), ('started', 'VBN'), ('tomorrow', 'NN')], [('sure', 'JJ'), ('i', 'NN'), ('will', 'MD'), ('do', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('monday', 'NN')], [('i', 'NN'), ('also', 'RB'), ('come', 'VBN'), ('by', 'IN'), ('for', 'IN'), ('the', 'DT'), ('events', 'NNS'), ('on', 'IN'), ('wed', 'NNS'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('also', 'RB'), ('arrange', 'VB'), ('a', 'DT'), ('meeting', 'NN'), ('then', 'RB')], [('can', 'MD'), ('do', 'VB'), ('but', 'CC'), ('not', 'RB'), ('ideal', 'JJ'), ('since', 'IN'), ('xx', 'NNP'), ('wouldve', 'NN'), ('just', 'RB'), ('come', 'VBN'), ('back', 'RB'), ('and', 'CC'), ('the', 'DT'), ('xx', 'NNP'), ('xxxxx', 'NNP'), ('stuff', 'NN'), ('needs', 'NNS'), ('to', 'TO'), ('be', 'VB'), ('resolved', 'VBN'), ('i', 'JJ'), ('think', 'VBP'), ('weve', 'VBP'), ('all', 'DT'), ('understood', 'VBD'), ('the', 'DT'), ('issues', 'NNS'), ('and', 'CC'), ('need', 'VBP'), ('to', 'TO'), ('figure', 'VB'), ('out', 'RP'), ('what', 'WP'), ('the', 'DT'), ('solution', 'NN'), ('is', 'VBZ'), ('doubt', 'NN'), ('there', 'EX'), ('is', 'VBZ'), ('much', 'RB'), ('to', 'TO'), ('discuss', 'VB'), ('on', 'IN'), ('monday', 'NN')], [('as', 'IN'), ('for', 'IN'), ('the', 'DT'), ('slides', 'NNS'), ('i', 'VBP'), ('can', 'MD'), ('send', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('you', 'PRP'), ('next', 'JJ'), ('week', 'NN'), ('that', 'WDT'), ('is', 'VBZ'), ('after', 'IN'), ('8th', 'CD'), ('october', 'NN'), ('since', 'IN'), ('i', 'NN'), ('didnt', 'VBP'), ('carry', 'VBP'), ('my', 'PRP$'), ('laptop', 'NN'), ('for', 'IN'), ('the', 'DT'), ('vacation', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('send', 'VB'), ('the', 'DT'), ('xxx', 'NNP'), ('build', 'NN'), ('but', 'CC'), ('android', 'NN'), ('can', 'MD'), ('not', 'RB'), ('be', 'VB'), ('sent', 'VBN'), ('as', 'IN'), ('xxxxxx', 'NN'), ('is', 'VBZ'), ('on', 'IN'), ('leave', 'NN'), ('and', 'CC'), ('will', 'MD'), ('be', 'VB'), ('coming', 'VBG'), ('only', 'RB'), ('on', 'IN'), ('tuesday', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('do', 'VB'), ('this', 'DT'), ('weekend', 'NN'), ('with', 'IN'), ('xxxxxx', 'NN'), ('as', 'RB'), ('well', 'RB'), ('and', 'CC'), ('then', 'RB'), ('give', 'VB'), ('the', 'DT'), ('feedback', 'NN')], [('xbut', 'NN'), ('i', 'NNS'), ('have', 'VBP'), ('another', 'DT'), ('date', 'NN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('travel', 'VB'), ('on', 'IN'), ('jan', 'NN'), ('24th', 'CD'), ('2015', 'CD'), ('checkin', 'NN'), ('and', 'CC'), ('jan', 'NN'), ('26th', 'CD'), ('2015', 'CD'), ('checkout', 'NN')], [('however', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('not', 'RB'), ('commit', 'VB'), ('anything', 'NN'), ('before', 'IN'), ('next', 'JJ'), ('monday', 'NN'), ('since', 'IN'), ('lot', 'NN'), ('of', 'IN'), ('people', 'NNS'), ('are', 'VBP'), ('on', 'IN'), ('leave', 'NN'), ('throughout', 'IN'), ('this', 'DT'), ('week', 'NN')], [('as', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('still', 'RB'), ('waiting', 'VBG'), ('for', 'IN'), ('the', 'DT'), ('xxxxxxxxx', 'NNP'), ('vd', 'NN'), ('theme', 'NN'), ('approval', 'NN'), ('for', 'IN'), ('the', 'DT'), ('main', 'JJ'), ('rt', 'NN'), ('app', 'IN'), ('we', 'PRP'), ('should', 'MD'), ('make', 'VB'), ('it', 'PRP'), ('very', 'RB'), ('clear', 'JJ'), ('to', 'TO'), ('samal', 'VB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('not', 'RB'), ('launch', 'VB'), ('the', 'DT'), ('app', 'NN'), ('on', 'IN'), ('15th', 'CD'), ('december', 'NN')], [('we', 'PRP'), ('requested', 'VBD'), ('a', 'DT'), ('revised', 'VBN'), ('plan', 'NN'), ('based', 'VBN'), ('upon', 'IN'), ('this', 'DT'), ('which', 'WDT'), ('we', 'PRP'), ('should', 'MD'), ('have', 'VB'), ('by', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('the', 'DT'), ('week', 'NN')], [('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('interested', 'JJ'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('by', 'IN'), ('tomorrow', 'NN'), ('otherwise', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('pass', 'VB'), ('on', 'IN'), ('them', 'PRP')], [('in', 'IN'), ('the', 'DT'), ('meanwhile', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('send', 'VB'), ('me', 'PRP'), ('a', 'DT'), ('separate', 'JJ'), ('invoice', 'NN'), ('for', 'IN'), ('the', 'DT'), ('xxxx', 'NNP'), ('logo', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('clear', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('tomorrow', 'NN')], [('please', 'NN'), ('read', 'VB'), ('it', 'PRP'), ('a', 'DT'), ('bit', 'NN'), ('before', 'IN'), ('we', 'PRP'), ('come', 'VBP'), ('tomorrow', 'NN'), ('so', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('come', 'VB'), ('up', 'RP'), ('with', 'IN'), ('something', 'NN'), ('great', 'JJ')], [('and', 'CC'), ('just', 'RB'), ('to', 'TO'), ('let', 'VB'), ('you', 'PRP'), ('know', 'VB'), ('xx', 'JJR'), ('phone', 'NN'), ('is', 'VBZ'), ('delivered', 'VBN'), ('today', 'NN'), ('so', 'RB'), ('if', 'IN'), ('you', 'PRP'), ('want', 'VBP'), ('we', 'PRP'), ('can', 'MD'), ('configure', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN')], [('if', 'IN'), ('xxxxxx', 'VBN'), ('would', 'MD'), ('be', 'VB'), ('in', 'IN'), ('sunnyvale', 'NN'), ('on', 'IN'), ('saturday', 'NN'), ('i', 'NN'), ('can', 'MD'), ('pick', 'VB'), ('it', 'PRP'), ('up', 'RP'), ('there', 'RB'), ('as', 'IN'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('around', 'IN'), ('there', 'RB')], [('i', 'NN'), ('can', 'MD'), ('share', 'NN'), ('you', 'PRP'), ('the', 'DT'), ('signed', 'VBN'), ('xxx', 'NN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('leave', 'VB'), ('it', 'PRP'), ('as', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('for', 'IN'), ('next', 'JJ'), ('mondays', 'NNS'), ('release', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('pay', 'VB'), ('it', 'PRP'), ('with', 'IN'), ('the', 'DT'), ('maintenance', 'NN'), ('and', 'CC'), ('reduce', 'VB'), ('it', 'PRP'), ('from', 'IN'), ('next', 'JJ'), ('months', 'NNS'), ('rent', 'NN')], [('requesting', 'VBG'), ('you', 'PRP'), ('to', 'TO'), ('please', 'VB'), ('approve', 'VB'), ('my', 'PRP$'), ('leave', 'JJ'), ('24th', 'CD'), ('oct', 'NNS'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('plan', 'VB'), ('accordingly', 'RB'), ('and', 'CC'), ('book', 'NN'), ('my', 'PRP$'), ('tickets', 'NNS')], [('i', 'JJ'), ('feel', 'VBP'), ('we', 'PRP'), ('should', 'MD'), ('start', 'VB'), ('the', 'DT'), ('newsletter', 'NN'), ('campaign', 'NN'), ('etc', 'NN'), ('and', 'CC'), ('then', 'RB'), ('take', 'VB'), ('a', 'DT'), ('stall', 'NN'), ('there', 'RB'), ('in', 'IN'), ('january', 'NN'), ('by', 'IN'), ('which', 'WDT'), ('time', 'NN'), ('they', 'PRP'), ('would', 'MD'), ('have', 'VB'), ('already', 'RB'), ('come', 'VBN'), ('across', 'IN'), ('us', 'PRP'), ('in', 'IN'), ('a', 'DT'), ('couple', 'NN'), ('of', 'IN'), ('collaterals', 'NNS'), ('before', 'IN'), ('and', 'CC'), ('will', 'MD'), ('be', 'VB'), ('somewhat', 'RB'), ('familiar', 'JJ')], [('he', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('send', 'VB'), ('the', 'DT'), ('quote', 'NN'), ('tomorrow', 'NN'), ('night', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('review', 'VB'), ('the', 'DT'), ('result', 'NN'), ('on', 'IN'), ('wednesday', 'NN'), ('morning', 'NN')], [('i', 'NNS'), ('need', 'VBP'), ('access', 'NN'), ('to', 'TO'), ('case', 'NN'), ('studies', 'NNS'), ('from', 'IN'), ('all', 'DT'), ('project', 'NN'), ('ideally', 'RB'), ('this', 'DT'), ('week', 'NN'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('prepare', 'VB'), ('my', 'PRP$'), ('presentations', 'NNS'), ('in', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('tomorrow', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('this', 'DT'), ('week', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('the', 'DT'), ('wooden', 'JJ'), ('framing', 'NN'), ('work', 'NN'), ('by', 'IN'), ('friday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('the', 'DT'), ('wooden', 'JJ'), ('framing', 'NN'), ('work', 'NN'), ('by', 'IN'), ('friday', 'NN')], [('hi', 'NN'), ('xxxxx', 'NNP'), ('let', 'VB'), ('me', 'PRP'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('on', 'IN'), ('friday', 'JJ'), ('thing', 'NN')], [('i', 'NN'), ('can', 'MD'), ('do', 'VB'), ('a', 'DT'), ('call', 'NN'), ('next', 'JJ'), ('monday', 'NN')], [('ill', 'RB'), ('need', 'VB'), ('the', 'DT'), ('schedule', 'NN'), ('by', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('week', 'NN'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('update', 'VB'), ('the', 'DT'), ('website', 'NN'), ('and', 'CC'), ('then', 'RB'), ('send', 'VB'), ('a', 'DT'), ('tuktukmail', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('to', 'TO'), ('avoid', 'VB'), ('delays', 'NNS'), ('in', 'IN'), ('demo', 'JJ'), ('release', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('work', 'VB'), ('on', 'IN'), ('weekends', 'NNS'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('not', 'RB'), ('spend', 'VB'), ('extra', 'JJ'), ('time', 'NN'), ('to', 'TO'), ('prepare', 'VB'), ('design', 'NN'), ('document', 'NN'), ('over', 'IN'), ('weekend', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('get', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('tuesday', 'NN'), ('max', 'NN')], [('sure', 'JJ'), ('we', 'PRP'), ('can', 'MD'), ('walkthough', 'VB'), ('the', 'DT'), ('prdwireframe', 'NN'), ('today', 'NN'), ('and', 'CC'), ('tomorrow', 'NN'), ('once', 'RB'), ('xxxxxx', 'JJ'), ('and', 'CC'), ('myself', 'PRP'), ('are', 'VBP'), ('back', 'RB'), ('to', 'TO'), ('hotel', 'NN'), ('tentatively', 'RB'), ('around', 'IN'), ('730', 'CD'), ('pm', 'NN'), ('xxx', 'NN')], [('if', 'IN'), ('you', 'PRP'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('be', 'VB'), ('a', 'DT'), ('part', 'NN'), ('of', 'IN'), ('our', 'PRP$'), ('upcoming', 'JJ'), ('customer', 'NN'), ('access', 'NN'), ('program', 'NN'), ('which', 'WDT'), ('is', 'VBZ'), ('happening', 'VBG'), ('on', 'IN'), ('november', '$'), ('5th', 'CD'), ('2014', 'CD'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('by', 'IN'), ('monday', 'JJ'), ('11', 'CD'), ('am', 'VBP'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('ensure', 'VB'), ('that', 'IN'), ('the', 'DT'), ('most', 'RBS'), ('relevant', 'JJ'), ('people', 'NNS'), ('for', 'IN'), ('your', 'PRP$'), ('startup', 'NN'), ('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('attendance', 'NN')], [('shyamal', 'NN'), ('is', 'VBZ'), ('presently', 'RB'), ('operating', 'VBG'), ('out', 'IN'), ('of', 'IN'), ('our', 'PRP$'), ('xxxxxxxxx', 'NN'), ('offices', 'NNS'), ('although', 'IN'), ('xxxx', 'NNP'), ('xxx', 'NNP'), ('cofounder', 'NN'), ('of', 'IN'), ('xxxxxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('of', 'IN'), ('xxxxxxxx', 'NNP'), ('founderceo', 'NN'), ('of', 'IN'), ('xxxxxxxxxxxx', 'NN'), ('and', 'CC'), ('i', 'NN'), ('can', 'MD'), ('certainly', 'RB'), ('meet', 'VB'), ('with', 'IN'), ('xxxxxxx', 'NNP'), ('tomorrow', 'NN')], [('i', 'NN'), ('can', 'MD'), ('understand', 'VB'), ('since', 'IN'), ('december', 'NN'), ('and', 'CC'), ('january', 'NN'), ('are', 'VBP'), ('holidays', 'NNS'), ('in', 'IN'), ('xx', 'NN')], [('i', 'NN'), ('can', 'MD'), ('tell', 'VB'), ('date', 'NN'), ('for', 'IN'), ('xxxx', 'NN'), ('tomorrow', 'NN')], [('i', 'NNS'), ('have', 'VBP'), ('not', 'RB'), ('shared', 'VBN'), ('nearly', 'RB'), ('as', 'RB'), ('much', 'JJ'), ('with', 'IN'), ('the', 'DT'), ('american', 'JJ'), ('team', 'NN'), ('and', 'CC'), ('would', 'MD'), ('prefer', 'VB'), ('not', 'RB'), ('to', 'TO'), ('if', 'IN'), ('you', 'PRP'), ('and', 'CC'), ('i', 'VB'), ('can', 'MD'), ('come', 'VB'), ('to', 'TO'), ('an', 'DT'), ('agreement', 'NN'), ('next', 'JJ'), ('week', 'NN')], [('you', 'PRP'), ('should', 'MD'), ('also', 'RB'), ('tell', 'VB'), ('tomorrows', 'NNS'), ('recommendations', 'NNS'), ('here', 'RB'), ('since', 'IN'), ('it', 'PRP'), ('can', 'MD'), ('help', 'VB'), ('planning', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('probably', 'RB'), ('include', 'VB'), ('this', 'DT'), ('too', 'RB'), ('as', 'IN'), ('part', 'NN'), ('of', 'IN'), ('our', 'PRP$'), ('discussion', 'NN'), ('on', 'IN'), ('monday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('figure', 'VB'), ('out', 'RP'), ('the', 'DT'), ('exact', 'NN'), ('details', 'NNS'), ('and', 'CC'), ('buy', 'VB'), ('some', 'DT'), ('of', 'IN'), ('these', 'DT'), ('next', 'JJ'), ('week', 'NN')], [('early', 'RB'), ('next', 'JJ'), ('week', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('roll', 'VB'), ('animations', 'NNS')], [('my', 'PRP$'), ('trail', 'JJ'), ('version', 'NN'), ('is', 'VBZ'), ('valid', 'JJ'), ('till', 'RB'), ('30th', 'CD'), ('nov', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('also', 'RB'), ('register', 'VB'), ('after', 'IN'), ('30th', 'CD'), ('nov', 'NNS'), ('till', 'RB'), ('then', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('experiment', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('my', 'PRP$'), ('laptop', 'NN')], [('also', 'RB'), ('make', 'VB'), ('a', 'DT'), ('not', 'RB'), ('that', 'IN'), ('i', 'NN'), ('will', 'MD'), ('work', 'VB'), ('from', 'IN'), ('yyyyy', 'JJ'), ('am06yyy', 'NN'), ('pm', 'NN'), ('everyday', 'NN'), ('and', 'CC'), ('will', 'MD'), ('prefer', 'VB'), ('to', 'TO'), ('do', 'VB'), ('work', 'NN'), ('from', 'IN'), ('home', 'NN'), ('on', 'IN'), ('xxxxxxxxx', 'NNP'), ('as', 'IN'), ('i', 'NN'), ('have', 'VBP'), ('to', 'TO'), ('take', 'VB'), ('care', 'NN'), ('of', 'IN'), ('my', 'PRP$'), ('son', 'NN'), ('but', 'CC'), ('in', 'IN'), ('some', 'DT'), ('important', 'JJ'), ('cases', 'NNS'), ('i', 'VBP'), ('can', 'MD'), ('work', 'VB'), ('from', 'IN'), ('office', 'NN'), ('too', 'RB'), ('on', 'IN'), ('saturday', 'NN')], [('xxxx', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('fix', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('monday', 'NN')], [('i', 'NN'), ('can', 'MD'), ('meet', 'VB'), ('him', 'PRP'), ('in', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('week', 'NN'), ('of', 'IN'), ('nov', 'NN')], [('i', 'NN'), ('can', 'MD'), ('pay', 'VB'), ('the', 'DT'), ('amount', 'NN'), ('now', 'RB'), ('and', 'CC'), ('will', 'MD'), ('send', 'VB'), ('the', 'DT'), ('po', 'NN'), ('by', 'IN'), ('monday', 'JJ'), ('onlyplease', 'NN'), ('bring', 'VB'), ('the', 'DT'), ('bill', 'NN'), ('with', 'IN'), ('hand', 'NN')], [('i', 'NN'), ('can', 'MD'), ('get', 'VB'), ('it', 'PRP'), ('reviewed', 'VB'), ('on', 'IN'), ('monday', 'NN'), ('should', 'MD'), ('take', 'VB'), ('few', 'JJ'), ('days', 'NNS')], [('we', 'PRP'), ('can', 'MD'), ('launch', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('monday', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('any', 'DT'), ('av', 'NN'), ('requirements', 'NNS'), ('for', 'IN'), ('your', 'PRP$'), ('tuesday', 'NN'), ('10am', 'CD')], [('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('that', 'DT'), ('if', 'IN'), ('hes', 'NNS'), ('ok', 'VBP'), ('with', 'IN'), ('it', 'PRP'), ('or', 'CC'), ('invite', 'VB'), ('and', 'CC'), ('update', 'VB'), ('him', 'PRP'), ('tomorrow', 'NN')], [('however', 'RB'), ('considering', 'VBG'), ('we', 'PRP'), ('have', 'VBP'), ('just', 'RB'), ('two', 'CD'), ('more', 'JJR'), ('days', 'NNS'), ('to', 'TO'), ('go', 'VB'), ('for', 'IN'), ('diwali', 'NN'), ('and', 'CC'), ('with', 'IN'), ('most', 'JJS'), ('people', 'NNS'), ('already', 'RB'), ('planned', 'VBN'), ('their', 'PRP$'), ('leaves', 'NNS'), ('we', 'PRP'), ('can', 'MD'), ('organize', 'VB'), ('ethnic', 'JJ'), ('day', 'NN'), ('on', 'IN'), ('coming', 'VBG'), ('tuesday', 'JJ'), ('ie', 'JJ'), ('28th', 'CD'), ('of', 'IN'), ('october', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('and', 'CC'), ('i', 'VB'), ('can', 'MD'), ('stop', 'VB'), ('by', 'IN'), ('tomorrow', 'NN'), ('to', 'TO'), ('do', 'VB'), ('the', 'DT'), ('repair', 'NN'), ('and', 'CC'), ('put', 'VBD'), ('the', 'DT'), ('light', 'NN'), ('up', 'RP')], [('our', 'PRP$'), ('1year', 'CD'), ('contract', 'NN'), ('with', 'IN'), ('gotomeeting', 'VBG'), ('ends', 'NNS'), ('next', 'JJ'), ('month', 'NN'), ('so', 'IN'), ('we', 'PRP'), ('should', 'MD'), ('decide', 'VB'), ('now', 'RB'), ('if', 'IN'), ('we', 'PRP'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('renew', 'VB'), ('for', 'IN'), ('another', 'DT'), ('year', 'NN'), ('or', 'CC'), ('cancel', 'VB'), ('the', 'DT'), ('account', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('using', 'VBG'), ('xxxx', 'NNP'), ('next', 'JJ'), ('month', 'NN'), ('and', 'CC'), ('ill', 'JJ'), ('change', 'NN'), ('any', 'DT'), ('existing', 'VBG'), ('recurring', 'VBG'), ('calls', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('new', 'JJ'), ('zoom', 'NN'), ('number', 'NN'), ('in', 'IN'), ('advance', 'NN')], [('raj', 'NN'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('the', 'DT'), ('scripts', 'NNS'), ('info', 'VBP'), ('tomorrow', 'NN')], [('ok', 'JJ'), ('then', 'RB'), ('i', 'JJ'), ('guess', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('send', 'VB'), ('the', 'DT'), ('email', 'NN'), ('tomorrow', 'NN')], [('for', 'IN'), ('1st', 'CD'), ('of', 'IN'), ('december', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('show', 'VB'), ('xxxxxxxxxxxx', 'JJ'), ('map', 'NN'), ('and', 'CC'), ('slice', 'NN'), ('dice', 'NN')], [('still', 'RB'), ('i', 'NN'), ('will', 'MD'), ('try', 'VB'), ('tomorrow', 'NN'), ('but', 'CC'), ('i', 'JJ'), ('dont', 'NN'), ('know', 'VBP'), ('i', 'NN'), ('can', 'MD'), ('fix', 'VB'), ('it', 'PRP'), ('so', 'RB'), ('you', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('take', 'VB'), ('care', 'NN')], [('2', 'CD'), ('plan', 'NN'), ('the', 'DT'), ('scope', 'NN'), ('of', 'IN'), ('our', 'PRP$'), ('beta2', 'NN'), ('sprints', 'NNS'), ('very', 'RB'), ('carefully', 'RB'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('potentially', 'RB'), ('use', 'VB'), ('each', 'DT'), ('sprint', 'NN'), ('as', 'IN'), ('an', 'DT'), ('engaging', 'VBG'), ('point', 'NN'), ('with', 'IN'), ('the', 'DT'), ('customer', 'NN'), ('instead', 'RB'), ('of', 'IN'), ('needing', 'VBG'), ('to', 'TO'), ('wait', 'VB'), ('till', 'NN'), ('dec', 'RB'), ('2nd', 'CD'), ('week', 'NN'), ('to', 'TO'), ('give', 'VB'), ('the', 'DT'), ('final', 'JJ'), ('beta2', 'NN'), ('product', 'NN')], [('we', 'PRP'), ('have', 'VBP'), ('made', 'VBN'), ('a', 'DT'), ('lot', 'NN'), ('of', 'IN'), ('progress', 'NN'), ('today', 'NN'), ('on', 'IN'), ('the', 'DT'), ('new', 'JJ'), ('design', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('sending', 'VBG'), ('the', 'DT'), ('first', 'JJ'), ('pages', 'NNS'), ('tomorrow', 'NN')], [('i', 'NN'), ('can', 'MD'), ('not', 'RB'), ('do', 'VB'), ('1000', 'CD'), ('this', 'DT'), ('friday', 'NN')], [('ill', 'JJ'), ('email', 'NN'), ('you', 'PRP'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('when', 'WRB'), ('i', 'NN'), ('know', 'VBP'), ('my', 'PRP$'), ('schedule', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('decide', 'VB'), ('on', 'IN'), ('a', 'DT'), ('time', 'NN'), ('that', 'WDT'), ('works', 'VBZ')], [('xwhile', 'NN'), ('this', 'DT'), ('week', 'NN'), ('i', 'RB'), ('think', 'VBP'), ('we', 'PRP'), ('should', 'MD'), ('hit', 'VB'), ('xxxxxx', 'VB'), ('out', 'IN'), ('of', 'IN'), ('the', 'DT'), ('park', 'NN'), ('and', 'CC'), ('kick', 'VB'), ('butt', 'NN'), ('there', 'RB'), ('i', 'VBZ'), ('hope', 'VBP'), ('to', 'TO'), ('have', 'VB'), ('a', 'DT'), ('good', 'JJ'), ('update', 'NN'), ('for', 'IN'), ('you', 'PRP'), ('the', 'DT'), ('following', 'VBG'), ('week', 'NN'), ('on', 'IN'), ('xxxxxxxx', 'NN')], [('i', 'NN'), ('can', 'MD'), ('finish', 'VB'), ('the', 'DT'), ('those', 'DT'), ('three', 'CD'), ('functionality', 'NN'), ('by', 'IN'), ('friday', 'JJ'), ('xxx', 'NNPS'), ('if', 'IN'), ('the', 'DT'), ('provide', 'NN'), ('correct', 'JJ'), ('format', 'NN'), ('of', 'IN'), ('image', 'NN'), ('data', 'NNS')], [('as', 'IN'), ('per', 'IN'), ('the', 'DT'), ('request', 'NN'), ('from', 'IN'), ('management', 'NN'), ('we', 'PRP'), ('should', 'MD'), ('fill', 'VB'), ('in', 'IN'), ('all', 'PDT'), ('the', 'DT'), ('required', 'VBN'), ('details', 'NNS'), ('in', 'IN'), ('below', 'IN'), ('xxxxxx', 'NNP'), ('sheet', 'NN'), ('before', 'IN'), ('27th', 'CD'), ('october', 'NN'), ('2014', 'CD')], [('seeing', 'VBG'), ('at', 'IN'), ('pending', 'VBG'), ('leaves', 'NNS'), ('i', 'NNS'), ('can', 'MD'), ('see', 'VB'), ('lots', 'NNS'), ('of', 'IN'), ('managers', 'NNS'), ('are', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('get', 'VB'), ('many', 'JJ'), ('lop', 'NNS'), ('on', 'IN'), ('friday', 'NN'), ('when', 'WRB'), ('raksha', 'NN'), ('comes', 'VBZ'), ('back', 'RB')], [('so', 'RB'), ('hopefully', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('find', 'VB'), ('a', 'DT'), ('time', 'NN'), ('soon', 'RB'), ('perhaps', 'RB'), ('next', 'JJ'), ('week', 'NN')], [('i', 'NN'), ('can', 'MD'), ('not', 'RB'), ('do', 'VB'), ('1000', 'CD'), ('this', 'DT'), ('friday', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('by', 'IN'), ('friday', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('by', 'IN'), ('friday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('review', 'VB'), ('it', 'PRP'), ('first', 'JJ'), ('week', 'NN'), ('of', 'IN'), ('november', 'NN')], [('raj', 'NN'), ('i', 'NN'), ('can', 'MD'), ('have', 'VB'), ('1', 'CD'), ('ready', 'JJ'), ('by', 'IN'), ('tomorrow', 'NN'), ('or', 'CC'), ('latest', 'JJS'), ('friday', 'JJ'), ('morning', 'NN')], [('it', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('great', 'JJ'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('finalise', 'VB'), ('this', 'DT'), ('by', 'IN'), ('friday', 'NN'), ('and', 'CC'), ('get', 'VB'), ('the', 'DT'), ('work', 'NN'), ('started', 'VBD'), ('on', 'IN'), ('monday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('use', 'VB'), ('this', 'DT'), ('version', 'NN'), ('to', 'TO'), ('go', 'VB'), ('over', 'IN'), ('the', 'DT'), ('call', 'NN'), ('tomorrow', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('work', 'VB'), ('with', 'IN'), ('his', 'PRP$'), ('schedule', 'NN'), ('and', 'CC'), ('change', 'VB'), ('the', 'DT'), ('dates', 'NNS'), ('for', 'IN'), ('early', 'JJ'), ('dec', 'NN'), ('and', 'CC'), ('if', 'IN'), ('xxxxxx', 'NNP'), ('is', 'VBZ'), ('not', 'RB'), ('available', 'JJ'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('her', 'PRP$'), ('back', 'JJ'), ('upi', 'JJ'), ('think', 'NN'), ('having', 'VBG'), ('two', 'CD'), ('similar', 'JJ'), ('program', 'NN'), ('events', 'NNS'), ('on', 'IN'), ('two', 'CD'), ('days', 'NNS'), ('does', 'VBZ'), ('not', 'RB'), ('make', 'VB'), ('sense', 'NN'), ('and', 'CC'), ('i', 'NN'), ('was', 'VBD'), ('not', 'RB'), ('aware', 'JJ'), ('you', 'PRP'), ('were', 'VBD'), ('planning', 'VBG'), ('these', 'DT'), ('kind', 'NN'), ('of', 'IN'), ('events', 'NNS')], [('i', 'NN'), ('can', 'MD'), ('ask', 'VB'), ('xxxxx', 'PRP'), ('to', 'TO'), ('visit', 'VB'), ('us', 'PRP'), ('in', 'IN'), ('person', 'NN'), ('this', 'DT'), ('friday', 'NN'), ('or', 'CC'), ('saturday', 'NN'), ('so', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('close', 'VB'), ('this', 'DT'), ('page', 'NN'), ('the', 'DT'), ('same', 'JJ'), ('day', 'NN')], [('the', 'DT'), ('meeting', 'NN'), ('will', 'MD'), ('be', 'VB'), ('on', 'IN'), ('the', 'DT'), ('30th', 'CD'), ('of', 'IN'), ('october', 'NN'), ('between', 'IN'), ('yyy', 'JJ'), ('pm', 'NN'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('out', 'RP'), ('an', 'DT'), ('email', 'NN'), ('and', 'CC'), ('a', 'DT'), ('google', 'NN'), ('calendar', 'NN'), ('event', 'NN'), ('with', 'IN'), ('this', 'DT'), ('information', 'NN'), ('once', 'RB'), ('i', 'JJ'), ('reserve', 'VBP'), ('a', 'DT'), ('room', 'NN'), ('for', 'IN'), ('the', 'DT'), ('meeting', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('some', 'DT'), ('time', 'NN'), ('next', 'JJ'), ('friday', 'NN'), ('yyyyyyy', 'NN')], [('xxxx', 'NN'), ('said', 'VBD'), ('he', 'PRP'), ('will', 'MD'), ('check', 'VB'), ('to', 'TO'), ('see', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('add', 'VB'), ('more', 'JJR'), ('sequences', 'NNS'), ('to', 'TO'), ('this', 'DT'), ('dataset', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('but', 'CC'), ('we', 'PRP'), ('will', 'MD'), ('discuss', 'VB'), ('more', 'RBR'), ('about', 'IN'), ('it', 'PRP'), ('tomorrow', 'NN')], [('if', 'IN'), ('scanned', 'VBN'), ('copy', 'NN'), ('of', 'IN'), ('the', 'DT'), ('passport', 'NN'), ('size', 'NN'), ('photo', 'NN'), ('is', 'VBZ'), ('required', 'VBN'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('tomorrow', 'NN'), ('as', 'IN'), ('i', 'NN'), ('do', 'VBP'), ('not', 'RB'), ('have', 'VB'), ('latest', 'JJS'), ('one', 'CD')], [('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('call', 'VBN'), ('on', 'IN'), ('monday', 'NN'), ('on', 'IN'), ('xxxxxx', 'NNP'), ('meanwhile', 'NN'), ('i', 'NN'), ('will', 'MD'), ('complete', 'VB'), ('it', 'PRP')], [('in', 'IN'), ('that', 'DT'), ('case', 'NN'), ('i', 'NN'), ('can', 'MD'), ('try', 'VB'), ('to', 'TO'), ('make', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('tuesday', 'NN'), ('first', 'RB'), ('half', 'NN'), ('since', 'IN'), ('monday', 'JJ'), ('morning', 'NN'), ('will', 'MD'), ('be', 'VB'), ('too', 'RB'), ('early', 'JJ'), ('for', 'IN'), ('them', 'PRP')], [('let', 'VB'), ('me', 'PRP'), ('see', 'VB'), ('what', 'WP'), ('i', 'VB'), ('can', 'MD'), ('send', 'VB'), ('you', 'PRP'), ('by', 'IN'), ('monday', 'JJ'), ('morning', 'NN'), ('and', 'CC'), ('if', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('deliver', 'VB'), ('by', 'IN'), ('eod', 'NN'), ('that', 'WDT'), ('would', 'MD'), ('be', 'VB'), ('fantastic', 'JJ')], [('also', 'RB'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('sending', 'VBG'), ('money', 'NN'), ('this', 'DT'), ('coming', 'VBG'), ('month', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('please', 'VB'), ('go', 'VB'), ('through', 'IN'), ('it', 'PRP'), ('by', 'IN'), ('tomorrow', 'NN'), ('so', 'IN'), ('i', 'JJ'), ('can', 'MD'), ('give', 'VB'), ('the', 'DT'), ('okay', 'NN'), ('to', 'TO'), ('file', 'VB')], [('ideally', 'RB'), ('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('ready', 'JJ'), ('to', 'TO'), ('start', 'VB'), ('our', 'PRP$'), ('work', 'NN'), ('late', 'RB'), ('this', 'DT'), ('week', 'NN'), ('or', 'CC'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN')], [('by', 'IN'), ('then', 'RB'), ('we', 'PRP'), ('should', 'MD'), ('see', 'VB'), ('cash', 'NN'), ('in', 'IN'), ('our', 'PRP$'), ('account', 'NN'), ('if', 'IN'), ('our', 'PRP$'), ('first', 'JJ'), ('round', 'NN'), ('closes', 'VBZ'), ('on', 'IN'), ('nov', 'NNS'), ('1st', 'CD')], [('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('convinient', 'JJ'), ('i', 'NN'), ('can', 'MD'), ('go', 'VB'), ('to', 'TO'), ('xxxxxxxx', 'NNP'), ('office', 'NN'), ('in', 'IN'), ('xxxxxx', 'NNP'), ('xxxx', 'NNP'), ('on', 'IN'), ('wednesday', 'NN'), ('or', 'CC'), ('1430', 'CD'), ('on', 'IN'), ('thursday', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('target', 'VB'), ('closing', 'VBG'), ('this', 'DT'), ('successfully', 'NN'), ('before', 'IN'), ('friday', 'JJ'), ('meeting', 'NN')], [('i', 'NN'), ('can', 'MD'), ('come', 'VB'), ('by', 'IN'), ('again', 'RB'), ('sometime', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('as', 'RB'), ('well', 'RB')], [('if', 'IN'), ('that', 'DT'), ('works', 'VBZ'), ('out', 'RP'), ('i', 'NNS'), ('can', 'MD'), ('come', 'VB'), ('the', 'DT'), ('8th', 'CD'), ('or', 'CC'), ('9th', 'CD'), ('to', 'TO'), ('xxxxxxx', 'VB'), ('and', 'CC'), ('spend', 'VB'), ('the', 'DT'), ('weekend', 'NN'), ('with', 'IN'), ('you', 'PRP')], [('let', 'VB'), ('me', 'PRP'), ('find', 'VB'), ('out', 'RP'), ('tomorrow', 'NN'), ('at', 'IN'), ('our', 'PRP$'), ('office', 'NN'), ('outlet', 'NN'), ('for', 'IN'), ('tv', 'NN'), ('and', 'CC'), ('let', 'VB'), ('you', 'PRP'), ('know', 'VB')], [('xxxxxxxx', 'IN'), ('not', 'RB'), ('good', 'JJ'), ('for', 'IN'), ('signoff', 'NN'), ('and', 'CC'), ('keys', 'NNS'), ('so', 'RB'), ('since', 'IN'), ('we', 'PRP'), ('didnt', 'VBP'), ('do', 'VB'), ('it', 'PRP'), ('today', 'NN'), ('thought', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('it', 'PRP'), ('wednesday', 'VB'), ('first', 'JJ'), ('thing', 'NN'), ('cheers', 'NNS')], [('we', 'PRP'), ('should', 'MD'), ('target', 'VB'), ('closing', 'VBG'), ('this', 'DT'), ('successfully', 'NN'), ('before', 'IN'), ('friday', 'JJ'), ('meeting', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('take', 'VB'), ('a', 'DT'), ('hotfix', 'NN'), ('too', 'RB'), ('and', 'CC'), ('see', 'VB'), ('if', 'IN'), ('the', 'DT'), ('problem', 'NN'), ('comes', 'VBZ'), ('back', 'RB'), ('tomorrow', 'NN')], [('hi', 'NN'), ('after', 'IN'), ('discussing', 'VBG'), ('it', 'PRP'), ('with', 'IN'), ('my', 'PRP$'), ('manager', 'NN'), ('its', 'PRP$'), ('agreed', 'VBD'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('be', 'VB'), ('relieved', 'VBN'), ('by', 'IN'), ('28th', 'CD'), ('nov', 'NNS')], [('i', 'NN'), ('sincerely', 'RB'), ('hope', 'VBP'), ('we', 'PRP'), ('can', 'MD'), ('complete', 'VB'), ('this', 'DT'), ('in', 'IN'), ('second', 'JJ'), ('week', 'NN'), ('of', 'IN'), ('november', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('also', 'RB'), ('synch', 'VB'), ('up', 'RP'), ('tomorrow', 'NN'), ('morning', 'NN'), ('wednesday', 'JJ'), ('ist', 'NN'), ('to', 'TO'), ('review', 'VB'), ('together', 'RB'), ('if', 'IN'), ('needed', 'VBN')], [('pls', 'NN'), ('do', 'VB'), ('this', 'DT'), ('by', 'IN'), ('tomorrow', 'NN'), ('yy', 'NNS'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('it', 'PRP'), ('tomo', 'VB'), ('itself', 'PRP')], [('even', 'RB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('a', 'DT'), ('warm', 'JJ'), ('prospects', 'NNS'), ('in', 'IN'), ('nov', 'NN'), ('dec', 'NN'), ('than', 'IN'), ('can', 'MD'), ('be', 'VB'), ('turned', 'VBN'), ('into', 'IN'), ('poc', 'NN'), ('in', 'IN'), ('janfeb', 'NN'), ('would', 'MD'), ('be', 'VB'), ('acceptable', 'JJ')], [('we', 'PRP'), ('can', 'MD'), ('also', 'RB'), ('obviously', 'RB'), ('talk', 'VB'), ('about', 'IN'), ('this', 'DT'), ('in', 'IN'), ('person', 'NN'), ('next', 'JJ'), ('week', 'NN')], [('if', 'IN'), ('the', 'DT'), ('go', 'NN'), ('live', 'JJ'), ('is', 'VBZ'), ('not', 'RB'), ('happening', 'VBG'), ('next', 'JJ'), ('week', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('the', 'DT'), ('go', 'VB'), ('live', 'JJ'), ('only', 'RB'), ('after', 'IN'), ('14th', 'CD'), ('nov', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('give', 'VB'), ('the', 'DT'), ('demo', 'NN'), ('to', 'TO'), ('akash', 'VB'), ('by', 'IN'), ('tomorrow', 'NN'), ('morning', 'NN')], [('i', 'NN'), ('can', 'MD'), ('join', 'VB'), ('on', 'IN'), ('very', 'RB'), ('next', 'JJ'), ('monday', 'NN'), ('after', 'IN'), ('that', 'DT'), ('which', 'WDT'), ('is', 'VBZ'), ('1st', 'CD'), ('dec', 'NN')], [('since', 'IN'), ('he', 'PRP'), ('is', 'VBZ'), ('in', 'IN'), ('xx', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('arrange', 'VB'), ('his', 'PRP$'), ('discussion', 'NN'), ('with', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('xx', 'NNP'), ('during', 'IN'), ('nov', 'JJ'), ('end', 'NN'), ('and', 'CC'), ('dec', 'JJ'), ('second', 'JJ'), ('week', 'NN')], [('if', 'IN'), ('yes', 'VBN'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('you', 'PRP'), ('a', 'DT'), ('mockup', 'NN'), ('describing', 'VBG'), ('what', 'WP'), ('we', 'PRP'), ('can', 'MD'), ('implement', 'VB'), ('before', 'IN'), ('next', 'JJ'), ('friday', 'NN')], [('assuming', 'VBG'), ('all', 'DT'), ('looks', 'NNS'), ('good', 'JJ'), ('we', 'PRP'), ('can', 'MD'), ('sign', 'VB'), ('the', 'DT'), ('clean', 'JJ'), ('version', 'NN'), ('of', 'IN'), ('the', 'DT'), ('term', 'NN'), ('sheet', 'NN'), ('and', 'CC'), ('ill', 'NN'), ('prepare', 'VBP'), ('drafts', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('financing', 'NN'), ('docs', 'NN'), ('to', 'TO'), ('send', 'VB'), ('out', 'RP'), ('next', 'JJ'), ('week', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('youd', 'NNS'), ('like', 'IN'), ('me', 'PRP'), ('to', 'TO'), ('give', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('xxxx', 'VB'), ('tomorrow', 'NN')], [('please', 'VB'), ('do', 'VB'), ('the', 'DT'), ('following', 'VBG'), ('writeups', 'NNS'), ('today', 'NN'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('escalate', 'VB'), ('it', 'PRP'), ('for', 'IN'), ('approval', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('started', 'VBN'), ('from', 'IN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('close', 'VB'), ('the', 'DT'), ('whole', 'JJ'), ('thing', 'NN'), ('latest', 'JJS'), ('by', 'IN'), ('the', 'DT'), ('second', 'JJ'), ('week', 'NN'), ('of', 'IN'), ('november', 'NN'), ('from', 'IN'), ('a', 'DT'), ('content', 'NN'), ('perspective', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('follow', 'VB'), ('the', 'DT'), ('new', 'JJ'), ('format', 'NN'), ('from', 'IN'), ('next', 'JJ'), ('month', 'NN')], [('please', 'VB'), ('do', 'VB'), ('the', 'DT'), ('following', 'VBG'), ('writeups', 'NNS'), ('today', 'NN'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('escalate', 'VB'), ('it', 'PRP'), ('for', 'IN'), ('approval', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('started', 'VBN'), ('from', 'IN'), ('tomorrow', 'NN')], [('also', 'RB'), ('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('some', 'DT'), ('time', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('i', 'JJ'), ('think', 'VBP'), ('we', 'PRP'), ('should', 'MD'), ('do', 'VB'), ('two', 'CD'), ('more', 'JJR'), ('things', 'NNS')], [('from', 'IN'), ('sunday', 'NN'), ('you', 'PRP'), ('should', 'MD'), ('get', 'VB'), ('the', 'DT'), ('corrected', 'VBN'), ('email', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('our', 'PRP$'), ('design', 'NN'), ('engagement', 'NN'), ('from', 'IN'), ('monday', 'JJ'), ('3rd', 'CD'), ('of', 'IN'), ('november', 'NN')], [('raj', 'NN'), ('i', 'NN'), ('will', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('this', 'DT'), ('further', 'JJ'), ('before', 'RB'), ('sending', 'VBG'), ('out', 'RP'), ('anything', 'NN'), ('to', 'TO'), ('him', 'PRP')], [('however', 'RB'), ('i', 'NN'), ('can', 'MD'), ('only', 'RB'), ('confirm', 'VB'), ('by', 'IN'), ('tomorrow', 'NN'), ('or', 'CC'), ('monday', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('also', 'RB'), ('firm', 'VB'), ('up', 'RP'), ('the', 'DT'), ('numbers', 'NNS'), ('around', 'IN'), ('the', 'DT'), ('commercial', 'JJ'), ('agreement', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('all', 'DT'), ('these', 'DT'), ('tomorrow', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('dedicating', 'VBG'), ('rest', 'NN'), ('of', 'IN'), ('the', 'DT'), ('day', 'NN'), ('towards', 'IN'), ('admin', 'NN'), ('processes', 'NNS'), ('and', 'CC'), ('term', 'NN'), ('sheet', 'NN'), ('for', 'IN'), ('plan', 'NN'), ('xx', 'NNP'), ('x', 'NNP'), ('will', 'MD'), ('send', 'VB'), ('a', 'DT'), ('two', 'CD'), ('para', 'NN'), ('high', 'JJ'), ('ground', 'NN'), ('version', 'NN'), ('to', 'TO'), ('couple', 'VB'), ('others', 'NNS'), ('who', 'WP'), ('have', 'VBP'), ('asked', 'VBN'), ('for', 'IN'), ('details', 'NNS'), ('tomorrow', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('not', 'RB'), ('afford', 'VB'), ('such', 'JJ'), ('low', 'JJ'), ('intensity', 'NN'), ('with', 'IN'), ('a', 'DT'), ('launch', 'NN'), ('on', 'IN'), ('the', 'DT'), ('app', 'NN'), ('store', 'NN'), ('due', 'JJ'), ('in', 'IN'), ('january', 'JJ')], [('hopefully', 'RB'), ('the', 'DT'), ('conversion', 'NN'), ('will', 'MD'), ('be', 'VB'), ('done', 'VBN'), ('today', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('complete', 'VB'), ('embedding', 'VBG'), ('in', 'IN'), ('xxxx', 'NNP'), ('server', 'NN'), ('on', 'IN'), ('wednesday', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('afraid', 'JJ'), ('that', 'IN'), ('if', 'IN'), ('i', 'NNS'), ('do', 'VBP'), ('not', 'RB'), ('receive', 'VB'), ('the', 'DT'), ('chapter', 'NN'), ('y', 'NN'), ('by', 'IN'), ('friday', 'NN'), ('this', 'DT'), ('week', 'NN'), ('the', 'DT'), ('project', 'NN'), ('will', 'MD'), ('have', 'VB'), ('to', 'TO'), ('be', 'VB'), ('cancelled', 'VBN'), ('as', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('not', 'RB'), ('have', 'VB'), ('any', 'DT'), ('repeat', 'NN'), ('of', 'IN'), ('the', 'DT'), ('last', 'JJ'), ('time', 'NN')], [('xxxxxxxt', 'RB'), ('be', 'VB'), ('a', 'DT'), ('problem', 'NN'), ('to', 'TO'), ('close', 'VB'), ('by', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('the', 'DT'), ('week', 'NN'), ('but', 'CC'), ('as', 'IN'), ('a', 'DT'), ('general', 'JJ'), ('rule', 'NN'), ('we', 'PRP'), ('should', 'MD'), ('allow', 'VB'), ('for', 'IN'), ('more', 'JJR'), ('than', 'IN'), ('a', 'DT'), ('week', 'NN'), ('between', 'IN'), ('finalizing', 'VBG'), ('the', 'DT'), ('term', 'NN'), ('sheet', 'NN'), ('and', 'CC'), ('closing', 'VBG'), ('the', 'DT'), ('deal', 'NN'), ('as', 'IN'), ('its', 'PRP$'), ('usually', 'RB'), ('not', 'RB'), ('feasible', 'JJ'), ('to', 'TO'), ('close', 'VB'), ('that', 'DT'), ('quickly', 'RB')], [('the', 'DT'), ('other', 'JJ'), ('option', 'NN'), ('is', 'VBZ'), ('we', 'PRP'), ('can', 'MD'), ('book', 'NN'), ('you', 'PRP'), ('with', 'IN'), ('xxxxxxx', 'NNS'), ('who', 'WP'), ('has', 'VBZ'), ('an', 'DT'), ('opening', 'NN'), ('tomorrow', 'NN'), ('yyyy', 'NN'), ('at', 'IN'), ('715am', 'CD')], [('i', 'NN'), ('still', 'RB'), ('think', 'VBP'), ('what', 'WP'), ('you', 'PRP'), ('going', 'VBG'), ('on', 'IN'), ('at', 'IN'), ('xxxxxxxxxxxx', 'NNP'), ('is', 'VBZ'), ('good', 'JJ'), ('by', 'IN'), ('mon', 'NNS'), ('next', 'IN'), ('week', 'NN'), ('we', 'PRP'), ('should', 'MD'), ('know', 'VB'), ('for', 'IN'), ('sure', 'JJ'), ('from', 'IN'), ('our', 'PRP$'), ('side', 'NN'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('then', 'RB')], [('next', 'JJ'), ('weekend', 'NN'), ('working', 'VBG'), ('on', 'IN'), ('cvpr', 'NN'), ('papers', 'NNS'), ('or', 'CC'), ('i', 'VB'), ('can', 'MD'), ('call', 'VB'), ('you', 'PRP'), ('when', 'WRB'), ('you', 'PRP'), ('have', 'VBP'), ('time', 'NN')], [('also', 'RB'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('finish', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('mondaynovember', '$'), ('10', 'CD')], [('hi', 'NN'), ('xxx', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('also', 'RB'), ('make', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('9', 'CD'), ('am', 'VBP'), ('on', 'IN'), ('this', 'DT'), ('thursday', 'NN'), ('i', 'VBZ'), ('am', 'VBP'), ('sure', 'JJ'), ('we', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('xxxxxx', 'JJ'), ('can', 'MD'), ('join', 'VB'), ('here', 'RB'), ('and', 'CC'), ('xxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('can', 'MD'), ('join', 'VB'), ('on', 'IN'), ('xxx', 'NN')], [('can', 'MD'), ('do', 'VB'), ('wed', 'VBD'), ('or', 'CC'), ('friday', 'JJ'), ('prem', 'NN')], [('if', 'IN'), ('they', 'PRP'), ('can', 'MD'), ('wait', 'VB'), ('we', 'PRP'), ('can', 'MD'), ('decide', 'VB'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('november', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('sending', 'VBG'), ('you', 'PRP'), ('these', 'DT'), ('designskindly', 'RB'), ('check', 'NN'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('this', 'DT'), ('can', 'MD'), ('be', 'VB'), ('made', 'VBN'), ('by', 'IN'), ('1st', 'CD'), ('of', 'IN'), ('december', 'NN'), ('2014', 'CD')], [('pitch', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('perfect', 'JJ'), ('but', 'CC'), ('if', 'IN'), ('we', 'PRP'), ('got', 'VBD'), ('shortlisted', 'VBN'), ('we', 'PRP'), ('will', 'MD'), ('present', 'VB'), ('full', 'JJ'), ('details', 'NNS'), ('and', 'CC'), ('plan', 'VB'), ('how', 'WRB'), ('raised', 'JJ'), ('money', 'NN'), ('will', 'MD'), ('be', 'VB'), ('used', 'VBN'), ('and', 'CC'), ('future', 'JJ'), ('projections', 'NNS'), ('etc', 'VBP'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('you', 'PRP'), ('those', 'DT'), ('for', 'IN'), ('your', 'PRP$'), ('review', 'NN'), ('in', 'IN'), ('next', 'JJ'), ('couple', 'NN'), ('of', 'IN'), ('days', 'NNS')], [('yes', 'IN'), ('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('get', 'VB'), ('this', 'DT'), ('setup', 'NN'), ('and', 'CC'), ('running', 'VBG'), ('for', 'IN'), ('xxxx', 'NN'), ('from', 'IN'), ('this', 'DT'), ('thursday', 'NN')], [('xxxx', 'NN'), ('i', 'NN'), ('can', 'MD'), ('give', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('deliverable', 'JJ'), ('from', 'IN'), ('my', 'PRP$'), ('end', 'NN'), ('by', 'IN'), ('tomorrow', 'NN'), ('6th', 'CD'), ('nov', 'JJ'), ('afternoon', 'NN')], [('they', 'PRP'), ('need', 'VBP'), ('some', 'DT'), ('more', 'JJR'), ('clarifications', 'NNS'), ('for', 'IN'), ('which', 'WDT'), ('xxxx', 'NNP'), ('mentioned', 'VBD'), ('that', 'IN'), ('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('get', 'VB'), ('that', 'DT'), ('doc', 'NN'), ('across', 'IN'), ('by', 'IN'), ('wednesday', 'NN')], [('i', 'NN'), ('will', 'MD'), ('finish', 'VB'), ('the', 'DT'), ('rest', 'NN'), ('today', 'NN'), ('and', 'CC'), ('give', 'VB'), ('some', 'DT'), ('to', 'TO'), ('xxxxxxxx', 'VB'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('tomorrow', 'NN'), ('to', 'TO'), ('properly', 'RB'), ('start', 'VB'), ('the', 'DT'), ('project', 'NN')], [('regarding', 'VBG'), ('hr', 'NN'), ('i', 'NNS'), ('have', 'VBP'), ('to', 'TO'), ('define', 'VB'), ('roles', 'NNS'), ('and', 'CC'), ('responsibility', 'NN'), ('which', 'WDT'), ('i', 'NN'), ('will', 'MD'), ('do', 'VB'), ('day', 'NN'), ('after', 'IN'), ('tomorrow', 'NN')], [('tomorrow', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('deadline', 'VBN'), ('for', 'IN'), ('bug', 'NN'), ('fixes', 'NNS'), ('start', 'VBP'), ('your', 'PRP$'), ('day', 'NN'), ('early', 'RB'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('wrapup', 'VB'), ('the', 'DT'), ('issues', 'NNS'), ('by', 'IN'), ('eod', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('ready', 'JJ'), ('with', 'IN'), ('the', 'DT'), ('wed', 'JJ'), ('deployment', 'NN'), ('for', 'IN'), ('xxxxxxx', 'NNP'), ('y', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('refine', 'VB'), ('the', 'DT'), ('list', 'NN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('havent', 'VBP'), ('had', 'VBD'), ('a', 'DT'), ('chance', 'NN'), ('to', 'TO'), ('debrief', 'VB'), ('internally', 'RB'), ('which', 'WDT'), ('xxx', 'NNP'), ('and', 'CC'), ('i', 'NN'), ('will', 'MD'), ('do', 'VB'), ('tomorrow', 'NN'), ('and', 'CC'), ('then', 'RB'), ('get', 'VB'), ('back', 'RB'), ('with', 'IN'), ('specific', 'JJ'), ('next', 'JJ'), ('steps', 'NNS')], [('i', 'NN'), ('can', 'MD'), ('do', 'VB'), ('yyyy', 'RB'), ('pm', 'VB'), ('on', 'IN'), ('friday', 'NN')], [('i', 'NN'), ('can', 'MD'), ('send', 'VB'), ('it', 'PRP'), ('definitely', 'RB'), ('by', 'IN'), ('tomorrow', 'NN')], [('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('say', 'VB'), ('that', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('time', 'NN'), ('only', 'RB'), ('till', 'VB'), ('dec', 'RB'), ('31st', 'CD'), ('2014', 'CD'), ('and', 'CC'), ('we', 'PRP'), ('cant', 'VBP'), ('extend', 'VB'), ('the', 'DT'), ('deadline', 'NN')], [('he', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('back', 'RB'), ('on', 'IN'), ('november', 'NN'), ('14', 'CD'), ('so', 'RB'), ('after', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('should', 'MD'), ('look', 'VB'), ('at', 'IN'), ('meeting', 'NN'), ('up', 'RP')], [('he', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('back', 'RB'), ('on', 'IN'), ('november', 'NN'), ('14', 'CD'), ('so', 'RB'), ('after', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('should', 'MD'), ('look', 'VB'), ('at', 'IN'), ('meeting', 'NN'), ('up', 'RP')], [('things', 'NNS'), ('are', 'VBP'), ('looking', 'VBG'), ('good', 'JJ'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('expect', 'VB'), ('the', 'DT'), ('publication', 'NN'), ('of', 'IN'), ('your', 'PRP$'), ('book', 'NN'), ('during', 'IN'), ('the', 'DT'), ('last', 'JJ'), ('week', 'NN'), ('of', 'IN'), ('november', 'NN'), ('or', 'CC'), ('the', 'DT'), ('first', 'JJ'), ('week', 'NN'), ('of', 'IN'), ('december', 'NN')], [('on', 'IN'), ('this', 'DT'), ('regard', 'NN'), ('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('have', 'VB'), ('a', 'DT'), ('short', 'JJ'), ('call', 'NN'), ('for', 'IN'), ('15', 'CD'), ('20', 'CD'), ('mins', 'NNS'), ('with', 'IN'), ('you', 'PRP'), ('some', 'DT'), ('today', 'NN'), ('or', 'CC'), ('tomorrow', 'NN'), ('to', 'TO'), ('go', 'VB'), ('over', 'RP'), ('how', 'WRB'), ('we', 'PRP'), ('should', 'MD'), ('structure', 'NN'), ('our', 'PRP$'), ('work', 'NN'), ('in', 'IN'), ('the', 'DT'), ('coming', 'JJ'), ('days', 'NNS'), ('to', 'TO'), ('ensure', 'VB'), ('that', 'IN'), ('the', 'DT'), ('golive', 'JJ'), ('happens', 'NNS'), ('as', 'IN'), ('per', 'NN'), ('plan', 'NN')], [('in', 'IN'), ('terms', 'NNS'), ('of', 'IN'), ('tomorrow', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('only', 'RB'), ('open', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('800', 'CD'), ('am', 'VBP'), ('xxxxxx', 'JJ'), ('time', 'NN'), ('which', 'WDT'), ('is', 'VBZ'), ('a', 'DT'), ('bit', 'NN'), ('after', 'IN'), ('the', 'DT'), ('time', 'NN'), ('you', 'PRP'), ('said', 'VBD')], [('i', 'NN'), ('will', 'MD'), ('see', 'VB'), ('if', 'IN'), ('i', 'JJ'), ('can', 'MD'), ('make', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('the', 'DT'), ('one', 'CD'), ('tomorrow', 'NN')], [('hi', 'NN'), ('xxxxxxxx', 'NN'), ('just', 'RB'), ('wanted', 'VBD'), ('to', 'TO'), ('check', 'VB'), ('in', 'IN'), ('with', 'IN'), ('you', 'PRP'), ('again', 'RB'), ('regarding', 'VBG'), ('my', 'PRP$'), ('xxxxxxxxxxxxx', 'NN'), ('next', 'JJ'), ('week', 'NN'), ('tuesday', 'JJ'), ('yyyyy', 'NN'), ('at', 'IN'), ('tie', 'JJ'), ('x', '$'), ('3', 'CD'), ('pm', 'JJ'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('there', 'EX'), ('is', 'VBZ'), ('anything', 'NN'), ('further', 'RB'), ('you', 'PRP'), ('need', 'VBP'), ('from', 'IN'), ('me', 'PRP')], [('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('not', 'RB'), ('able', 'JJ'), ('to', 'TO'), ('complete', 'VB'), ('these', 'DT'), ('y', 'NNS'), ('steps', 'NNS'), ('by', 'IN'), ('october', 'JJ'), ('31', 'CD'), ('we', 'PRP'), ('can', 'MD'), ('accommodate', 'VB'), ('a', 'DT'), ('second', 'JJ'), ('closing', 'NN'), ('next', 'JJ'), ('week', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('make', 'VB'), ('a', 'DT'), ('wishlist', 'NN'), ('of', 'IN'), ('travel', 'NN'), ('destinations', 'NNS'), ('and', 'CC'), ('cross', 'VB'), ('off', 'RP'), ('one', 'CD'), ('place', 'NN'), ('every', 'DT'), ('long', 'JJ'), ('weekend', 'NN')], [('if', 'IN'), ('we', 'PRP'), ('get', 'VBP'), ('it', 'PRP'), ('before', 'IN'), ('monday', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('deliver', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('17th', 'CD')], [('may', 'MD'), ('be', 'VB'), ('i', 'VBN'), ('can', 'MD'), ('dig', 'VB'), ('more', 'JJR'), ('info', 'NN'), ('tomorrow', 'NN')], [('i', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('have', 'VB'), ('everything', 'NN'), ('ready', 'NNS'), ('so', 'RB'), ('that', 'IN'), ('once', 'RB'), ('we', 'PRP'), ('get', 'VBP'), ('the', 'DT'), ('results', 'NNS'), ('from', 'IN'), ('xxx', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('apply', 'VB'), ('immediately', 'RB'), ('as', 'IN'), ('her', 'PRP$'), ('toefl', 'NN'), ('score', 'NN'), ('is', 'VBZ'), ('expiring', 'VBG'), ('on', 'IN'), ('15th', 'CD'), ('december', 'NN'), ('2014', 'CD')], [('its', 'PRP$'), ('safe', 'NN'), ('in', 'IN'), ('my', 'PRP$'), ('certificates', 'NNS'), ('bageither', 'VBP'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('hyd', 'VB'), ('or', 'CC'), ('i', 'VB'), ('will', 'MD'), ('go', 'VB'), ('to', 'TO'), ('hyd', 'VB'), ('some', 'DT'), ('weekend', 'NN'), ('before', 'IN'), ('you', 'PRP'), ('reach', 'VBP'), ('hyd', 'JJ'), ('and', 'CC'), ('give', 'VB'), ('to', 'TO'), ('chandannayya', 'VB'), ('and', 'CC'), ('vadina', 'VB')], [('im', 'NN'), ('out', 'RP'), ('on', 'IN'), ('monday', 'JJ'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('need', 'VBP'), ('anything', 'NN'), ('now', 'RB')], [('i', 'NN'), ('also', 'RB'), ('came', 'VBD'), ('to', 'TO'), ('know', 'VB'), ('that', 'DT'), ('xxxxxxxxx', 'NNP'), ('will', 'MD'), ('need', 'VB'), ('2', 'CD'), ('days', 'NNS'), ('to', 'TO'), ('create', 'VB'), ('the', 'DT'), ('po', 'NN'), ('which', 'WDT'), ('we', 'PRP'), ('should', 'MD'), ('start', 'VB'), ('on', 'IN'), ('monday', 'NN')], [('xxxxxx', 'JJ'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('this', 'DT'), ('needs', 'VBZ'), ('be', 'VB'), ('ready', 'JJ'), ('before', 'IN'), ('monday', 'JJ'), ('xxx', 'NN')], [('if', 'IN'), ('sun', 'JJ'), ('night', 'NN'), ('i', 'NN'), ('can', 'MD'), ('pick', 'VB'), ('you', 'PRP'), ('up', 'RP')], [('we', 'PRP'), ('can', 'MD'), ('meetup', 'VB'), ('tomorrow', 'NN')], [('xxxxxxxx', 'NN'), ('i', 'NN'), ('can', 'MD'), ('come', 'VB'), ('office', 'NN'), ('by', 'IN'), ('12', 'CD'), ('pm', 'NN'), ('tomorrow', 'NN')], [('on', 'IN'), ('xxxxxxxx', 'NN'), ('i', 'NN'), ('can', 'MD'), ('find', 'VB'), ('the', 'DT'), ('version', 'NN'), ('of', 'IN'), ('the', 'DT'), ('agreements', 'NNS'), ('that', 'WDT'), ('xxxxxxxx', 'VBP'), ('signed', 'VBN'), ('but', 'CC'), ('you', 'PRP'), ('didnt', 'VBP'), ('and', 'CC'), ('then', 'RB'), ('i', 'NN'), ('voided', 'VBD'), ('which', 'WDT'), ('is', 'VBZ'), ('consistent', 'JJ'), ('with', 'IN'), ('what', 'WP'), ('is', 'VBZ'), ('shown', 'VBN'), ('below', 'IN'), ('in', 'IN'), ('my', 'PRP$'), ('email', 'NN'), ('to', 'TO'), ('him', 'PRP'), ('on', 'IN'), ('march', 'NN'), ('4', 'CD')], [('we', 'PRP'), ('expect', 'VBP'), ('to', 'TO'), ('go', 'VB'), ('out', 'RP'), ('to', 'TO'), ('these', 'DT'), ('individuals', 'NNS'), ('later', 'RB'), ('this', 'DT'), ('month', 'NN'), ('and', 'CC'), ('hopefully', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('a', 'DT'), ('pilot', 'NN'), ('before', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('year', 'NN')], [('please', 'VB'), ('rsvp', 'NN'), ('by', 'IN'), ('the', 'DT'), ('nov', 'JJ'), ('28th', 'CD'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('plan', 'VB'), ('xxxxxxxxxxxxxx', 'VB'), ('any', 'DT'), ('questions', 'NNS'), ('let', 'VBP'), ('us', 'PRP'), ('know', 'VB')], [('xxxx', 'IN'), ('the', 'DT'), ('control', 'NN'), ('features', 'VBZ'), ('get', 'VB'), ('sorted', 'VBN'), ('out', 'RP'), ('tomorrow', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('not', 'RB'), ('afford', 'VB'), ('to', 'TO'), ('lose', 'VB'), ('this', 'DT'), ('client', 'NN')], [('for', 'IN'), ('example', 'NN'), ('when', 'WRB'), ('the', 'DT'), ('user', 'NN'), ('sets', 'VBZ'), ('the', 'DT'), ('event', 'NN'), ('to', 'TO'), ('be', 'VB'), ('at', 'IN'), ('1st', 'CD'), ('january', 'JJ'), ('2015', 'CD'), ('1230', 'CD'), ('am', 'VBP'), ('the', 'DT'), ('smsz', 'NN'), ('should', 'MD'), ('go', 'VB'), ('to', 'TO'), ('the', 'DT'), ('user', 'NN'), ('at', 'IN'), ('that', 'DT'), ('time', 'NN'), ('i', 'NN'), ('will', 'MD'), ('try', 'VB'), ('working', 'VBG'), ('on', 'IN'), ('this', 'DT'), ('tonight', 'NN'), ('but', 'CC'), ('im', 'VBP'), ('really', 'RB'), ('sick', 'JJ'), ('and', 'CC'), ('really', 'RB'), ('saturated', 'VBD'), ('so', 'RB'), ('i', 'JJ'), ('dont', 'VBP'), ('know', 'VBP'), ('if', 'IN'), ('i', 'NNS'), ('can', 'MD'), ('complete', 'VB'), ('y', 'NN')], [('on', 'IN'), ('the', 'DT'), ('ear', 'JJ'), ('plugs', 'NN'), ('i', 'NN'), ('will', 'MD'), ('reply', 'VB'), ('by', 'IN'), ('tomorrow', 'NN'), ('p', 'NN')], [('xxxxx', 'NNS'), ('have', 'VBP'), ('a', 'DT'), ('quick', 'JJ'), ('word', 'NN'), ('with', 'IN'), ('him', 'PRP'), ('and', 'CC'), ('tentatively', 'RB'), ('see', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('friday', 'JJ')], [('we', 'PRP'), ('can', 'MD'), ('take', 'VB'), ('it', 'PRP'), ('asap', 'RB'), ('within', 'IN'), ('this', 'DT'), ('week', 'NN'), ('is', 'VBZ'), ('good', 'JJ')], [('we', 'PRP'), ('can', 'MD'), ('create', 'VB'), ('an', 'DT'), ('account', 'NN'), ('tomorrow', 'NN')], [('with', 'IN'), ('these', 'DT'), ('proof', 'NN'), ('points', 'NNS'), ('at', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('feb', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('determine', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('want', 'VBP'), ('t', 'JJ'), ('her', 'PRP$'), ('her', 'PRP$'), ('full', 'JJ'), ('time', 'NN'), ('with', 'IN'), ('a', 'DT'), ('salary', 'JJ'), ('and', 'CC'), ('equity', 'NN'), ('package', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('meeting', 'VBG'), ('xxxxxxxx', 'NN'), ('and', 'CC'), ('xxxx', 'NN'), ('xxxxx', 'NNP'), ('both', 'DT'), ('separately', 'RB'), ('tomorrow', 'NN'), ('for', 'IN'), ('an', 'DT'), ('update', 'JJ'), ('and', 'CC'), ('i', 'JJ'), ('need', 'VBP'), ('to', 'TO'), ('share', 'NN'), ('as', 'IN'), ('much', 'JJ'), ('details', 'NNS'), ('as', 'IN'), ('possible', 'JJ'), ('to', 'TO'), ('try', 'VB'), ('and', 'CC'), ('see', 'VB'), ('how', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('influence', 'VB'), ('the', 'DT'), ('xx', 'NN'), ('groups', 'NNS')], [('i', 'NN'), ('will', 'MD'), ('have', 'VB'), ('to', 'TO'), ('discuss', 'VB'), ('tomorrow', 'NN'), ('morning', 'NN'), ('and', 'CC'), ('see', 'VB'), ('if', 'IN'), ('i', 'NNS'), ('can', 'MD'), ('set', 'VB'), ('it', 'PRP'), ('up', 'RP'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('discuss', 'VB'), ('remotely', 'RB'), ('occasionally', 'RB'), ('and', 'CC'), ('then', 'RB'), ('rush', 'VB'), ('back', 'RB'), ('home', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('on', 'IN'), ('leave', 'NN'), ('on', 'IN'), ('friday', 'NN'), ('so', 'IN'), ('we', 'PRP'), ('should', 'MD'), ('wrap', 'VB'), ('this', 'DT'), ('up', 'NN'), ('and', 'CC'), ('get', 'VB'), ('all', 'DT'), ('testingtraining', 'VBG'), ('done', 'VBN'), ('by', 'IN'), ('thursday', 'JJ'), ('afternoon', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('10min', 'CD'), ('tomorrow', 'NN')], [('from', 'IN'), ('thursday', 'NN'), ('we', 'PRP'), ('should', 'MD'), ('target', 'VB'), ('one', 'CD'), ('new', 'JJ'), ('channel', 'NN'), ('in', 'IN'), ('two', 'CD'), ('days', 'NNS')], [('i', 'NN'), ('can', 'MD'), ('take', 'VB'), ('you', 'PRP'), ('guys', 'NNS'), ('through', 'IN'), ('the', 'DT'), ('mechanics', 'NNS'), ('of', 'IN'), ('doing', 'VBG'), ('it', 'PRP'), ('tomorrow', 'NN')], [('please', 'NN'), ('work', 'NN'), ('on', 'IN'), ('these', 'DT'), ('and', 'CC'), ('aim', 'NN'), ('to', 'TO'), ('have', 'VB'), ('them', 'PRP'), ('ready', 'JJ'), ('by', 'IN'), ('30', 'CD'), ('november', 'NNS'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('them', 'PRP'), ('edited', 'VBN'), ('and', 'CC'), ('ready', 'JJ'), ('to', 'TO'), ('go', 'VB'), ('for', 'IN'), ('an', 'DT'), ('early', 'JJ'), ('december', 'NN'), ('launch', 'NN')], [('i', 'NN'), ('can', 'MD'), ('let', 'VB'), ('you', 'PRP'), ('know', 'VB'), ('by', 'IN'), ('early', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('if', 'IN'), ('that', 'DT'), ('would', 'MD'), ('work', 'VB')], [('meeting', 'NN'), ('between', 'IN'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('and', 'CC'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('of', 'IN'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('fabric', 'NN'), ('team', 'NN'), ('on', 'IN'), ('friday', 'JJ'), ('nov', 'JJ'), ('21st', 'CD'), ('between', 'IN'), ('1100am', 'CD'), ('and', 'CC'), ('yyyy', 'JJR'), ('pm', 'NN'), ('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('done', 'VBN'), ('by', 'IN'), ('yyyy', 'NN'), ('latest', 'JJS'), ('agenda', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('get', 'VB'), ('you', 'PRP'), ('guys', 'VBP'), ('to', 'TO'), ('know', 'VB'), ('xxx', 'NNP'), ('and', 'CC'), ('viceversa', 'NN')], [('hopefully', 'RB'), ('they', 'PRP'), ('are', 'VBP'), ('not', 'RB'), ('on', 'IN'), ('visa', 'NNS'), ('but', 'CC'), ('on', 'IN'), ('xxxxxxxxxx', 'JJ'), ('xx', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('find', 'VB'), ('out', 'RP'), ('tomorrow', 'NN')], [('xx', 'NN'), ('xxxt', 'NN'), ('worry', 'VBP'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('you', 'PRP'), ('tomorrow', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('over', 'IN'), ('the', 'DT'), ('weekend', 'NN'), ('and', 'CC'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('her', 'PRP$')], [('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('complete', 'VB'), ('the', 'DT'), ('paperworks', 'NNS'), ('by', 'IN'), ('monday', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('kickstart', 'VB'), ('the', 'DT'), ('work', 'NN'), ('on', 'IN'), ('tuesday', 'NN')], [('please', 'NN'), ('save', 'VB'), ('the', 'DT'), ('scripts', 'NNS'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('execute', 'VB'), ('the', 'DT'), ('same', 'JJ'), ('in', 'IN'), ('their', 'PRP$'), ('server', 'NN'), ('tomorrow', 'NN')], [('you', 'PRP'), ('both', 'DT'), ('can', 'MD'), ('discuss', 'VB'), ('we', 'PRP'), ('can', 'MD'), ('avoid', 'VB'), ('tomorrows', 'NNS'), ('meting', 'VBG'), ('if', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('able', 'JJ'), ('to', 'TO'), ('come', 'VB'), ('up', 'RP'), ('with', 'IN'), ('final', 'JJ'), ('model', 'NN'), ('to', 'TO'), ('quote', 'VB'), ('or', 'CC'), ('i', 'VB'), ('am', 'VBP'), ('quoting', 'VBG'), ('the', 'DT'), ('one', 'CD'), ('i', 'NN'), ('just', 'RB'), ('mentioned', 'VBD')], [('let', 'VB'), ('us', 'PRP'), ('go', 'VB'), ('with', 'IN'), ('the', 'DT'), ('xxxxxxx', 'NNP'), ('model', 'NN'), ('then', 'RB'), ('will', 'MD'), ('come', 'VB'), ('back', 'RB'), ('with', 'IN'), ('the', 'DT'), ('xxxxxxx', 'JJ'), ('definition', 'NN'), ('by', 'IN'), ('eod', 'NN'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('agree', 'VB'), ('upon', 'IN'), ('for', 'IN'), ('kickoff', 'NN'), ('by', 'IN'), ('monday', 'NN')], [('so', 'RB'), ('here', 'RB'), ('i', 'JJ'), ('am', 'VBP'), ('coming', 'VBG'), ('back', 'RB'), ('with', 'IN'), ('a', 'DT'), ('vengeance', 'NN'), ('and', 'CC'), ('in', 'IN'), ('january', 'JJ'), ('if', 'IN'), ('i', 'NN'), ('still', 'RB'), ('have', 'VBP'), ('to', 'TO'), ('walk', 'VB'), ('it', 'PRP'), ('i', 'VB'), ('will', 'MD'), ('do', 'VB'), ('the', 'DT'), ('whole', 'NN'), ('10k', 'CD'), ('thataway', 'NN')], [('please', 'NN'), ('double', 'JJ'), ('check', 'VB'), ('the', 'DT'), ('issues', 'NNS'), ('on', 'IN'), ('monday', 'NNS'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('a', 'DT'), ('new', 'JJ'), ('project', 'NN')], [('hopefully', 'RB'), ('you', 'PRP'), ('should', 'MD'), ('see', 'VB'), ('sharper', 'JJR'), ('recommendations', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('coming', 'JJ'), ('weeks', 'NNS')], [('please', 'VB'), ('take', 'VB'), ('care', 'NN'), ('of', 'IN'), ('these', 'DT'), ('xxxx', 'NNS'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('complete', 'VB'), ('the', 'DT'), ('first', 'JJ'), ('closing', 'NN'), ('by', 'IN'), ('monday', 'NN')], [('then', 'RB'), ('i', 'NN'), ('will', 'MD'), ('do', 'VB'), ('on', 'IN'), ('monday', 'NN')], [('tomorrow', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('make', 'VB'), ('the', 'DT'), ('payment', 'NN'), ('and', 'CC'), ('you', 'PRP'), ('can', 'MD'), ('kickoff', 'VB'), ('the', 'DT'), ('project', 'NN'), ('at', 'IN'), ('your', 'PRP$'), ('end', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('move', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('either', 'DT'), ('wed', 'VBN'), ('or', 'CC'), ('thu', 'VBN'), ('to', 'TO'), ('be', 'VB'), ('safe', 'JJ')], [('i', 'NN'), ('can', 'MD'), ('do', 'VB'), ('yyy', 'RB'), ('pm', 'VB'), ('on', 'IN'), ('thursday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('using', 'VBG'), ('it', 'PRP'), ('from', 'IN'), ('thursday', 'JJ'), ('morning', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('try', 'VB'), ('our', 'PRP$'), ('best', 'JJS'), ('to', 'TO'), ('complete', 'VB'), ('it', 'PRP'), ('within', 'IN'), ('this', 'DT'), ('week', 'NN'), ('with', 'IN'), ('your', 'PRP$'), ('corporation', 'NN'), ('fast', 'RB'), ('response', 'NN'), ('on', 'IN'), ('feedback', 'NN'), ('requests', 'NNS'), ('and', 'CC'), ('consolidated', 'JJ'), ('iterations', 'NNS')], [('hi', 'NN'), ('xxxxxx', 'NN'), ('awaiting', 'VBG'), ('you', 'PRP'), ('revert', 'VBP'), ('hopefully', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('close', 'VB'), ('something', 'NN'), ('by', 'IN'), ('eod', 'JJ'), ('tomorrow', 'NN'), ('please', 'NN')], [('i', 'NNS'), ('have', 'VBP'), ('already', 'RB'), ('asked', 'VBN'), ('the', 'DT'), ('lawyer', 'NN'), ('to', 'TO'), ('proceed', 'VB'), ('i', 'NNS'), ('need', 'VBP'), ('to', 'TO'), ('pay', 'VB'), ('him', 'PRP'), ('an', 'DT'), ('advance', 'NN'), ('amount', 'NN'), ('which', 'WDT'), ('i', 'NN'), ('will', 'MD'), ('do', 'VB'), ('when', 'WRB'), ('i', 'VB'), ('come', 'VBP'), ('to', 'TO'), ('xxxxxxxxx', 'VB'), ('at', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('the', 'DT'), ('month', 'NN')], [('if', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('spare', 'VB'), ('15', 'CD'), ('mins', 'NNS'), ('tomorrow', 'NN'), ('i', 'NN'), ('can', 'MD'), ('take', 'VB'), ('you', 'PRP'), ('through', 'IN'), ('the', 'DT'), ('thought', 'NN'), ('process', 'NN')], [('xxxxxxxx', 'NN'), ('i', 'NN'), ('can', 'MD'), ('also', 'RB'), ('stop', 'VB'), ('by', 'IN'), ('tomorrow', 'NN'), ('afternoon', 'NN'), ('or', 'CC'), ('wed', 'VBD'), ('morning', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('upload', 'VB'), ('tomorrow', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('sit', 'VB'), ('on', 'IN'), ('it', 'PRP'), ('together', 'RB'), ('next', 'JJ'), ('week', 'NN')], [('by', 'IN'), ('this', 'DT'), ('week', 'NN'), ('friday', 'RB'), ('21st', 'CD'), ('nov', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('update', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('this', 'DT')], [('xxxxxxx', 'NN'), ('i', 'NN'), ('can', 'MD'), ('push', 'VB'), ('this', 'DT'), ('call', 'NN'), ('to', 'TO'), ('tomorrow', 'NN'), ('but', 'CC'), ('not', 'RB'), ('any', 'DT'), ('time', 'NN'), ('later', 'RB')], [('please', 'NN'), ('go', 'VB'), ('through', 'IN'), ('this', 'DT'), ('and', 'CC'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('addremove', 'VB'), ('the', 'DT'), ('tasks', 'NNS'), ('to', 'TO'), ('start', 'VB'), ('with', 'IN'), ('on', 'IN'), ('or', 'CC'), ('before', 'IN'), ('thursday', 'JJ')], [('i', 'NN'), ('can', 'MD'), ('confirm', 'VB'), ('tomorrow', 'NN')], [('ill', 'NN'), ('see', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('change', 'VB'), ('the', 'DT'), ('schedule', 'NN'), ('although', 'IN'), ('i', 'JJ'), ('think', 'VBP'), ('people', 'NNS'), ('were', 'VBD'), ('generally', 'RB'), ('not', 'RB'), ('in', 'IN'), ('favor', 'NN'), ('of', 'IN'), ('friday', 'JJ'), ('evening', 'JJ'), ('meetings', 'NNS')], [('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('this', 'DT'), ('fri', 'NN'), ('845930', 'CD')], [('xxxxxx', 'NN'), ('wants', 'VBZ'), ('to', 'TO'), ('know', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('him', 'PRP'), ('this', 'DT'), ('saturday', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('double', 'JJ'), ('check', 'NN'), ('and', 'CC'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('by', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('week', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('the', 'DT'), ('xxx', 'JJ'), ('event', 'NN'), ('is', 'VBZ'), ('still', 'RB'), ('on', 'IN'), ('for', 'IN'), ('tomorrow', 'NN'), ('and', 'CC'), ('the', 'DT'), ('invite', 'NN'), ('details', 'NNS')], [('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('time', 'NN'), ('in', 'IN'), ('tomorrow', 'NN'), ('i', 'NN'), ('can', 'MD'), ('discuss', 'VB'), ('it', 'PRP')], [('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('in', 'IN'), ('more', 'JJR'), ('detail', 'NN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('come', 'VB'), ('back', 'RB'), ('tomorrow', 'NN'), ('with', 'IN'), ('our', 'PRP$'), ('understanding', 'NN'), ('and', 'CC'), ('a', 'DT'), ('ball', 'NN'), ('park', 'NN'), ('range', 'NN'), ('of', 'IN'), ('the', 'DT'), ('commercials', 'NNS')], [('i', 'NN'), ('guess', 'NN'), ('you', 'PRP'), ('should', 'MD'), ('go', 'VB'), ('ahead', 'RB'), ('with', 'IN'), ('the', 'DT'), ('processing', 'NN'), ('and', 'CC'), ('put', 'VBD'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('contract', 'NN'), ('as', 'IN'), ('june', 'NN'), ('30', 'CD'), ('2015', 'CD')], [('i', 'NN'), ('just', 'RB'), ('want', 'VBP'), ('to', 'TO'), ('clarify', 'VB'), ('one', 'CD'), ('key', 'NN'), ('point', 'NN'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('make', 'VB'), ('additional', 'JJ'), ('progress', 'NN'), ('when', 'WRB'), ('we', 'PRP'), ('meet', 'VBP'), ('again', 'RB'), ('tomorrow', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('not', 'RB'), ('do', 'VB'), ('all', 'DT'), ('of', 'IN'), ('them', 'PRP'), ('today', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('do', 'VB'), ('the', 'DT'), ('branding', 'NN'), ('changes', 'NNS'), ('today', 'NN'), ('and', 'CC'), ('the', 'DT'), ('rest', 'NN'), ('by', 'IN'), ('wednesday', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('finalize', 'VB'), ('tomorrow', 'NN')], [('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('good', 'JJ'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('finish', 'VB'), ('the', 'DT'), ('installation', 'NN'), ('by', 'IN'), ('saturday', 'NN'), ('as', 'IN'), ('i', 'NN'), ('am', 'VBP'), ('time', 'NN'), ('pressed', 'VBN'), ('for', 'IN'), ('monday', 'JJ'), ('training', 'NN'), ('and', 'CC'), ('go', 'VB'), ('live', 'JJ')], [('i', 'NNS'), ('need', 'VBP'), ('to', 'TO'), ('do', 'VB'), ('this', 'DT'), ('on', 'IN'), ('monday', 'NN'), ('now', 'RB'), ('and', 'CC'), ('we', 'PRP'), ('should', 'MD'), ('have', 'VB'), ('all', 'DT'), ('pos', 'NN'), ('within', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('week', 'NN')], [('i', 'NN'), ('had', 'VBD'), ('a', 'DT'), ('talk', 'NN'), ('with', 'IN'), ('the', 'DT'), ('team', 'NN'), ('internally', 'RB'), ('we', 'PRP'), ('will', 'MD'), ('push', 'VB'), ('the', 'DT'), ('code', 'NN'), ('to', 'TO'), ('production', 'NN'), ('on', 'IN'), ('tuesday', 'NN'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('across', 'IN'), ('a', 'DT'), ('detailed', 'JJ'), ('report', 'NN'), ('so', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('a', 'DT'), ('clarity', 'NN'), ('on', 'IN'), ('the', 'DT'), ('deliverables', 'NNS')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('it', 'PRP'), ('complete', 'VBP'), ('now', 'RB'), ('and', 'CC'), ('i', 'VB'), ('will', 'MD'), ('do', 'VB'), ('it', 'PRP'), ('over', 'RP'), ('weekend', 'NN')], [('i', 'NN'), ('can', 'MD'), ('do', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN'), ('afternoon', 'NN')], [('most', 'RBS'), ('likely', 'JJ'), ('we', 'PRP'), ('should', 'MD'), ('close', 'VB'), ('next', 'JJ'), ('week', 'NN')], [('hi', 'NN'), ('lakshmitomorrow', 'NN'), ('is', 'VBZ'), ('bad', 'JJ'), ('for', 'IN'), ('me', 'PRP'), ('but', 'CC'), ('i', 'VB'), ('can', 'MD'), ('move', 'VB'), ('my', 'PRP$'), ('schedule', 'NN'), ('around', 'IN'), ('on', 'IN'), ('tuesday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('confirm', 'VB'), ('with', 'IN'), ('our', 'PRP$'), ('team', 'NN'), ('tomorrow', 'NN')], [('also', 'RB'), ('xxxxxx', 'RB'), ('did', 'VBD'), ('we', 'PRP'), ('check', 'VB'), ('with', 'IN'), ('soumya', 'NN'), ('if', 'IN'), ('she', 'PRP'), ('is', 'VBZ'), ('ok', 'JJ'), ('with', 'IN'), ('travel', 'NN'), ('actually', 'RB'), ('we', 'PRP'), ('should', 'MD'), ('not', 'RB'), ('ask', 'VB'), ('we', 'PRP'), ('should', 'MD'), ('convey', 'VB'), ('that', 'IN'), ('she', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('to', 'TO'), ('travel', 'VB'), ('to', 'TO'), ('xxxxxx', 'VB'), ('in', 'IN'), ('jan', 'NN')], [('i', 'NN'), ('can', 'MD'), ('come', 'VB'), ('over', 'IN'), ('on', 'IN'), ('wednesday', 'NN')], [('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('upload', 'VB'), ('the', 'DT'), ('payment', 'NN'), ('by', 'IN'), ('tomorrow', 'NN'), ('only', 'RB')], [('no', 'DT'), ('matter', 'NN'), ('what', 'WP'), ('happens', 'VBZ'), ('we', 'PRP'), ('should', 'MD'), ('have', 'VB'), ('production', 'NN'), ('up', 'RP'), ('tomorrow', 'NN')], [('i', 'NN'), ('can', 'MD'), ('also', 'RB'), ('do', 'VB'), ('tomorrow', 'NN'), ('or', 'CC'), ('wednesday', 'NN'), ('after', 'IN'), ('y', 'JJ'), ('warm', 'JJ'), ('regards', 'NNS')], [('authorities', 'NNS'), ('based', 'VBN'), ('on', 'IN'), ('parents', 'NNS'), ('request', 'NN'), ('is', 'VBZ'), ('scheduled', 'VBN'), ('tomorrow', 'NN'), ('x', '$'), ('7', 'CD'), ('xxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('all', 'DT'), ('parents', 'NNS'), ('to', 'TO'), ('please', 'VB'), ('come', 'VB'), ('and', 'CC'), ('this', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('time', 'NN'), ('we', 'PRP'), ('should', 'MD'), ('come', 'VB'), ('together', 'RB'), ('and', 'CC'), ('stand', 'VB'), ('together', 'RB'), ('xxxxx', 'JJ'), ('xxxxxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxx', 'NNP'), ('near', 'IN'), ('xxxxxxxxxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxx', 'NN')], [('appreciate', 'NN'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('the', 'DT'), ('approval', 'NN'), ('from', 'IN'), ('your', 'PRP$'), ('the', 'DT'), ('project', 'NN'), ('managerxxxxxxxxx', 'NN'), ('by', 'IN'), ('this', 'DT'), ('week', 'NN'), ('end', 'NN'), ('would', 'MD'), ('be', 'VB'), ('great', 'JJ')], [('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('raise', 'VB'), ('the', 'DT'), ('invoice', 'NN'), ('by', 'IN'), ('1st', 'CD'), ('dec', 'NN')], [('you', 'PRP'), ('should', 'MD'), ('have', 'VB'), ('the', 'DT'), ('design', 'NN'), ('for', 'IN'), ('the', 'DT'), ('message', 'NN'), ('boxes', 'VBD'), ('a', 'DT'), ('rough', 'JJ'), ('version', 'NN'), ('by', 'IN'), ('tomorrow', 'NN'), ('1', 'CD'), ('pm', 'NN')], [('i', 'NN'), ('cant', 'VBP'), ('be', 'VB'), ('part', 'NN'), ('of', 'IN'), ('11', 'CD'), ('am', 'VBP'), ('interview', 'NN'), ('however', 'RB'), ('i', 'JJ'), ('can', 'MD'), ('be', 'VB'), ('part', 'NN'), ('of', 'IN'), ('3', 'CD'), ('pm', 'NNS'), ('interview', 'NN'), ('on', 'IN'), ('thursday', 'NN')], [('hey', 'NN'), ('xxxxxxxx', 'VBP'), ('i', 'NN'), ('purchased', 'VBD'), ('the', 'DT'), ('deal', 'NN'), ('but', 'CC'), ('xxxxxx', 'NN'), ('wants', 'VBZ'), ('to', 'TO'), ('wait', 'VB'), ('till', 'NN'), ('next', 'JJ'), ('week', 'NN'), ('to', 'TO'), ('set', 'VB'), ('it', 'PRP'), ('up', 'RP'), ('he', 'PRP'), ('said', 'VBD'), ('that', 'IN'), ('xxxxxxx', 'NNP'), ('is', 'VBZ'), ('a', 'DT'), ('mess', 'NN'), ('to', 'TO'), ('set', 'VB'), ('up', 'RP'), ('and', 'CC'), ('we', 'PRP'), ('should', 'MD'), ('move', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('xxxxxxxxx', 'VB')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('working', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('draft', 'NN'), ('post', 'NN'), ('exams', 'NNS'), ('and', 'CC'), ('you', 'PRP'), ('should', 'MD'), ('have', 'VB'), ('a', 'DT'), ('copy', 'NN'), ('of', 'IN'), ('the', 'DT'), ('research', 'NN'), ('paper', 'NN'), ('for', 'IN'), ('review', 'NN'), ('on', 'IN'), ('monday', 'JJ'), ('december', 'VB'), ('1', 'CD'), ('2014', 'CD')], [('based', 'VBN'), ('on', 'IN'), ('that', 'DT'), ('this', 'DT'), ('is', 'VBZ'), ('what', 'WP'), ('we', 'PRP'), ('can', 'MD'), ('expect', 'VB'), ('and', 'CC'), ('what', 'WP'), ('we', 'PRP'), ('can', 'MD'), ('not', 'RB'), ('on', 'IN'), ('dec', 'NNS'), ('5th', 'CD'), ('from', 'IN'), ('xxxxxxxxxxx', 'JJ'), ('what', 'WP'), ('we', 'PRP'), ('can', 'MD'), ('not', 'RB'), ('expect', 'VB'), ('the', 'DT'), ('dashboard', 'NN'), ('will', 'MD'), ('not', 'RB'), ('be', 'VB'), ('production', 'NN'), ('ready', 'JJ'), ('because', 'IN'), ('the', 'DT'), ('remaining', 'VBG'), ('yyygive', 'JJ'), ('or', 'CC'), ('take', 'VB'), ('a', 'DT'), ('few', 'JJ'), ('sites', 'NNS'), ('do', 'VBP'), ('not', 'RB'), ('have', 'VB'), ('scrappers', 'NNS')], [('like', 'IN'), ('every', 'DT'), ('year', 'NN'), ('annual', 'JJ'), ('issue', 'NN'), ('will', 'MD'), ('be', 'VB'), ('out', 'RP'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('march', 'NN'), ('kindly', 'RB'), ('confirm', 'VBP'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('reserve', 'VB'), ('the', 'DT'), ('quarter', 'NN'), ('page', 'VB'), ('colour', 'JJ'), ('advt', 'NN'), ('space', 'NN'), ('for', 'IN'), ('xxxxxxx', 'NN'), ('in', 'IN'), ('our', 'PRP$'), ('forthcoming', 'VBG'), ('annual', 'JJ'), ('issue', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('come', 'VB'), ('to', 'TO'), ('a', 'DT'), ('conclusion', 'NN'), ('on', 'IN'), ('the', 'DT'), ('list', 'NN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('plan', 'VB'), ('and', 'CC'), ('schedule', 'VB'), ('the', 'DT'), ('invite', 'NN'), ('next', 'JJ'), ('week', 'NN')], [('as', 'IN'), ('such', 'JJ'), ('i', 'NN'), ('can', 'MD'), ('only', 'RB'), ('travel', 'VB'), ('on', 'IN'), ('december', 'NN'), ('4', 'CD'), ('2014', 'CD'), ('which', 'WDT'), ('is', 'VBZ'), ('also', 'RB'), ('the', 'DT'), ('earliest', 'JJS'), ('available', 'JJ'), ('flight', 'NN'), ('from', 'IN'), ('xxxxxxxxx', 'NN'), ('to', 'TO'), ('xxxxx', 'VB'), ('at', 'IN'), ('the', 'DT'), ('present', 'JJ'), ('time', 'NN')], [('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('start', 'VB'), ('using', 'VBG'), ('trello', 'JJ'), ('by', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('there', 'EX'), ('are', 'VBP'), ('some', 'DT'), ('grammatical', 'JJ'), ('errors', 'NNS'), ('that', 'WDT'), ('need', 'VBP'), ('correction', 'NN'), ('which', 'WDT'), ('i', 'NN'), ('will', 'MD'), ('do', 'VB'), ('printer', 'VB'), ('where', 'WRB'), ('i', 'NN'), ('am', 'VBP'), ('this', 'DT'), ('weekend', 'NN'), ('isnt', 'NN'), ('working', 'VBG'), ('so', 'RB'), ('will', 'MD'), ('try', 'VB'), ('to', 'TO'), ('do', 'VB'), ('real', 'JJ'), ('time', 'NN')], [('i', 'JJ'), ('recommend', 'VBP'), ('we', 'PRP'), ('fix', 'VBP'), ('what', 'WP'), ('we', 'PRP'), ('can', 'MD'), ('today', 'NN'), ('and', 'CC'), ('then', 'RB'), ('send', 'VB'), ('out', 'RP'), ('the', 'DT'), ('emails', 'NNS'), ('tomorrow', 'NN')], [('let', 'VB'), ('us', 'PRP'), ('do', 'VB'), ('this', 'DT'), ('exercise', 'NN'), ('before', 'IN'), ('the', 'DT'), ('week', 'NN'), ('starts', 'VBZ'), ('or', 'CC'), ('else', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('not', 'RB'), ('achieve', 'VB'), ('much', 'RB'), ('through', 'IN'), ('the', 'DT'), ('week', 'NN')], [('need', 'VB'), ('your', 'PRP$'), ('approval', 'NN'), ('for', 'IN'), ('server', 'JJ'), ('installation', 'NN'), ('so', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('the', 'DT'), ('pilot', 'NN'), ('from', 'IN'), ('monday', 'JJ'), ('1st', 'CD'), ('dec', 'NN')], [('hopefully', 'RB'), ('we', 'PRP'), ('should', 'MD'), ('get', 'VB'), ('it', 'PRP'), ('next', 'JJ'), ('week', 'NN'), ('and', 'CC'), ('then', 'RB'), ('closing', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('certainly', 'RB'), ('hold', 'VB'), ('off', 'RP'), ('shipping', 'VBG'), ('the', 'DT'), ('parcel', 'NN'), ('to', 'TO'), ('ensure', 'VB'), ('that', 'IN'), ('it', 'PRP'), ('arrives', 'VBZ'), ('in', 'IN'), ('xxxxx', 'NN'), ('after', 'IN'), ('4', 'CD'), ('january', 'NN')], [('yes', 'RB'), ('xxxxxxx', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('the', 'DT'), ('testing', 'VBG'), ('today', 'NN'), ('especially', 'RB'), ('if', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('releasing', 'VBG'), ('tomorrow', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('send', 'VB'), ('tomorrow', 'NN')], [('if', 'IN'), ('my', 'PRP$'), ('project', 'NN'), ('deadline', 'NN'), ('demands', 'VBZ'), ('i', 'NNS'), ('can', 'MD'), ('cancel', 'VB'), ('the', 'DT'), ('work', 'NN'), ('and', 'CC'), ('come', 'VB'), ('back', 'RB'), ('on', 'IN'), ('11', 'CD'), ('dec', 'NN'), ('2014', 'CD')], [('let', 'VB'), ('me', 'PRP'), ('confirm', 'VB'), ('by', 'IN'), ('wednesday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('the', 'DT'), ('event', 'NN'), ('on', 'IN'), ('dec', 'NN'), ('19th', 'CD'), ('sunday', 'NN'), ('since', 'IN'), ('that', 'DT'), ('seems', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('the', 'DT'), ('most', 'RBS'), ('favored', 'JJ'), ('date', 'NN')], [('i', 'NN'), ('can', 'MD'), ('make', 'VB'), ('my', 'PRP$'), ('self', 'PRP'), ('free', 'JJ'), ('on', 'IN'), ('4th', 'CD'), ('thursday', 'NN')], [('then', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('announce', 'VB'), ('the', 'DT'), ('2nd', 'CD'), ('hackathon', 'NN'), ('which', 'WDT'), ('will', 'MD'), ('be', 'VB'), ('managed', 'VBN'), ('by', 'IN'), ('xxxxxxxxxx', 'NN'), ('and', 'CC'), ('due', 'JJ'), ('to', 'TO'), ('popular', 'JJ'), ('demand', 'NN'), ('we', 'PRP'), ('are', 'VBP'), ('doing', 'VBG'), ('an', 'DT'), ('online', 'NN'), ('xxxxxxxxx', 'NN'), ('and', 'CC'), ('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('as', 'RB'), ('early', 'JJ'), ('as', 'IN'), ('2', 'CD'), ('weeks', 'NNS'), ('later', 'RB')], [('xxxx', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('these', 'DT'), ('out', 'RP'), ('tomorrow', 'NN')], [('on', 'IN'), ('colour', 'NNS'), ('schemes', 'NNS'), ('if', 'IN'), ('xxxxxx', 'VBN'), ('can', 'MD'), ('send', 'VB'), ('the', 'DT'), ('final', 'JJ'), ('values', 'NNS'), ('today', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('thursday', 'NN')], [('please', 'VB'), ('add', 'VB'), ('them', 'PRP'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('them', 'PRP'), ('in', 'IN'), ('tomorrows', 'NNS'), ('call', 'VBP')], [('as', 'IN'), ('we', 'PRP'), ('who', 'WP'), ('have', 'VBP'), ('immunization', 'NN'), ('partnership', 'NN'), ('meeting', 'NN'), ('with', 'IN'), ('unicef', 'JJ'), ('ro', 'NN'), ('in', 'IN'), ('xxxxx', 'NN'), ('on', 'IN'), ('11th', 'CD'), ('and', 'CC'), ('12th', 'CD'), ('december', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('suggest', 'VB'), ('either', 'CC'), ('9th', 'CD'), ('or', 'CC'), ('10th', 'CD'), ('december', 'NN'), ('for', 'IN'), ('the', 'DT'), ('tc', 'NN'), ('at', 'IN'), ('yyyyy', 'JJ'), ('xxxxxx', 'JJ'), ('time', 'NN')], [('as', 'IN'), ('for', 'IN'), ('the', 'DT'), ('facebook', 'NN'), ('error', 'NN'), ('i', 'NN'), ('will', 'MD'), ('have', 'VB'), ('to', 'TO'), ('investigate', 'VB'), ('further', 'JJ'), ('which', 'WDT'), ('i', 'NN'), ('can', 'MD'), ('do', 'VB'), ('tomorrow', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('this', 'DT'), ('later', 'RBR'), ('in', 'IN'), ('the', 'DT'), ('week', 'NN'), ('not', 'RB'), ('important', 'JJ')], [('i', 'NN'), ('can', 'MD'), ('drive', 'VB'), ('up', 'RP'), ('early', 'JJ'), ('thursday', 'NN'), ('morning', 'NN')], [('ok', 'JJ'), ('then', 'RB'), ('i', 'NN'), ('will', 'MD'), ('send', 'VB'), ('invitation', 'NN'), ('for', 'IN'), ('1130', 'CD'), ('am', 'VBP'), ('on', 'IN'), ('thu', 'NN'), ('at', 'IN'), ('appcito', 'NN')], [('so', 'RB'), ('im', 'JJ'), ('not', 'RB'), ('sure', 'JJ'), ('ill', 'RB'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('contribute', 'VB'), ('much', 'RB'), ('right', 'RB'), ('now', 'RB'), ('but', 'CC'), ('my', 'PRP$'), ('exams', 'JJ'), ('end', 'NN'), ('next', 'JJ'), ('friday', 'NN'), ('and', 'CC'), ('i', 'NN'), ('can', 'MD'), ('definitely', 'RB'), ('join', 'VB'), ('in', 'IN'), ('anytime', 'NN'), ('after', 'IN'), ('that', 'DT')], [('xxxx', 'NN'), ('wants', 'VBZ'), ('to', 'TO'), ('submit', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('thursday', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('includes', 'VBZ'), ('the', 'DT'), ('submission', 'NN'), ('proof', 'NN'), ('in', 'IN'), ('the', 'DT'), ('thesis', 'NN')], [('i', 'NNS'), ('have', 'VBP'), ('a', 'DT'), ('few', 'JJ'), ('ideas', 'NNS'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('share', 'NN'), ('in', 'IN'), ('our', 'PRP$'), ('meetings', 'NNS'), ('tomorrow', 'NN')], [('do', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('what', 'WP'), ('information', 'NN'), ('you', 'PRP'), ('need', 'VBP'), ('and', 'CC'), ('any', 'DT'), ('further', 'JJ'), ('questions', 'NNS'), ('you', 'PRP'), ('may', 'MD'), ('have', 'VB'), ('and', 'CC'), ('we', 'PRP'), ('look', 'VBP'), ('forward', 'RB'), ('to', 'TO'), ('speaking', 'VBG'), ('over', 'IN'), ('the', 'DT'), ('coming', 'JJ'), ('days', 'NNS')], [('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('office', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('when', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('coordinate', 'VB'), ('what', 'WP'), ('can', 'MD'), ('be', 'VB'), ('sent', 'VBN'), ('to', 'TO'), ('you', 'PRP'), ('thro', 'JJ'), ('mail', 'NN'), ('may', 'MD'), ('i', 'VB'), ('will', 'MD'), ('do', 'VB'), ('it', 'PRP'), ('part', 'NN'), ('by', 'IN'), ('part', 'NN')], [('xxx', 'RB'), ('if', 'IN'), ('we', 'PRP'), ('want', 'VBP'), ('this', 'DT'), ('deal', 'NN'), ('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('proactive', 'JJ'), ('and', 'CC'), ('spend', 'JJ'), ('time', 'NN'), ('with', 'IN'), ('him', 'PRP'), ('next', 'JJ'), ('week', 'NN'), ('without', 'IN'), ('discussing', 'VBG'), ('commercials', 'NNS')], [('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('office', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('when', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('coordinate', 'VB'), ('what', 'WP'), ('can', 'MD'), ('be', 'VB'), ('sent', 'VBN'), ('to', 'TO'), ('you', 'PRP'), ('thro', 'JJ'), ('mail', 'NN'), ('may', 'MD'), ('i', 'VB'), ('will', 'MD'), ('do', 'VB'), ('it', 'PRP'), ('part', 'NN'), ('by', 'IN'), ('part', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('you', 'PRP'), ('are', 'VBP'), ('visiting', 'VBG'), ('the', 'DT'), ('site', 'NN'), ('as', 'IN'), ('i', 'NN'), ('may', 'MD'), ('be', 'VB'), ('travelling', 'VBG'), ('in', 'IN'), ('the', 'DT'), ('2nd', 'CD'), ('and', 'CC'), ('4th', 'CD'), ('week', 'NN'), ('of', 'IN'), ('this', 'DT'), ('month', 'NN')], [('if', 'IN'), ('i', 'NNS'), ('can', 'MD'), ('give', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('them', 'PRP'), ('tomorrow', 'NN'), ('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('good', 'JJ')], [('i', 'NN'), ('am', 'VBP'), ('on', 'IN'), ('the', 'DT'), ('road', 'NN'), ('and', 'CC'), ('i', 'NN'), ('can', 'MD'), ('only', 'RB'), ('add', 'VB'), ('a', 'DT'), ('payee', 'NN'), ('when', 'WRB'), ('i', 'JJ'), ('return', 'VBP'), ('on', 'IN'), ('friday', 'NN'), ('night', 'NN')], [('as', 'IN'), ('i', 'NN'), ('am', 'VBP'), ('based', 'VBN'), ('in', 'IN'), ('xxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('with', 'IN'), ('trips', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('valley', 'NN'), ('i', 'NN'), ('do', 'VBP'), ('hope', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('see', 'VB'), ('each', 'DT'), ('other', 'JJ'), ('in', 'IN'), ('the', 'DT'), ('coming', 'JJ'), ('weeks', 'NNS'), ('and', 'CC'), ('months', 'NNS')], [('i', 'NN'), ('can', 'MD'), ('place', 'VB'), ('order', 'NN'), ('now', 'RB'), ('and', 'CC'), ('we', 'PRP'), ('will', 'MD'), ('get', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('tomorrow', 'NN')], [('i', 'NN'), ('will', 'MD'), ('update', 'VB'), ('you', 'PRP'), ('by', 'IN'), ('monday', 'VBG'), ('about', 'IN'), ('when', 'WRB'), ('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('the', 'DT'), ('project', 'NN')], [('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('having', 'VBG'), ('the', 'DT'), ('meeting', 'NN'), ('by', 'IN'), ('next', 'JJ'), ('week', 'NN'), ('friday', 'RB'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('update', 'VB'), ('the', 'DT'), ('same', 'JJ'), ('by', 'IN'), ('next', 'JJ'), ('week', 'NN'), ('friday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('send', 'VB'), ('our', 'PRP$'), ('person', 'NN'), ('to', 'TO'), ('your', 'PRP$'), ('customer', 'NN'), ('place', 'NN'), ('tomorrow', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('onboard', 'VB'), ('y', 'RB'), ('devs', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('for', 'IN'), ('a', 'DT'), ('xxxxxxxxx', 'NN'), ('project', 'NN')], [('will', 'MD'), ('keep', 'VB'), ('updating', 'VBG'), ('it', 'PRP'), ('so', 'IN'), ('that', 'IN'), ('by', 'IN'), ('monday', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('and', 'CC'), ('give', 'VB'), ('the', 'DT'), ('delivery', 'NN'), ('date', 'NN'), ('to', 'TO'), ('xxxxxx', 'VB'), ('by', 'IN'), ('xxx', 'NN')], [('if', 'IN'), ('you', 'PRP'), ('all', 'DT'), ('send', 'VBP'), ('them', 'PRP'), ('to', 'TO'), ('me', 'PRP'), ('i', 'VB'), ('can', 'MD'), ('structure', 'NN'), ('consolidate', 'VB'), ('that', 'IN'), ('prior', 'RB'), ('to', 'TO'), ('the', 'DT'), ('tuesday', 'NN'), ('call', 'NN')], [('what', 'WP'), ('specific', 'JJ'), ('metrics', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('useful', 'JJ'), ('for', 'IN'), ('the', 'DT'), ('stakeholders', 'NNS'), ('and', 'CC'), ('what', 'WP'), ('heads', 'VBZ'), ('u', 'JJ'), ('can', 'MD'), ('classify', 'VB'), ('which', 'WDT'), ('data', 'NN'), ('is', 'VBZ'), ('something', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('tomm', 'NNS'), ('and', 'CC'), ('on', 'IN'), ('monday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('it', 'PRP'), ('together', 'RB'), ('y', 'NN'), ('will', 'MD'), ('be', 'VB'), ('a', 'DT'), ('days', 'NNS'), ('work', 'NN'), ('this', 'DT'), ('sunday', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('do', 'VB'), ('something', 'NN'), ('i', 'VB'), ('will', 'MD'), ('get', 'VB'), ('y', 'JJ'), ('stamp', 'JJ'), ('paper', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('and', 'CC'), ('print', 'VB'), ('the', 'DT'), ('lease', 'NN'), ('agreement', 'NN'), ('on', 'IN'), ('it', 'PRP'), ('will', 'MD'), ('send', 'VB'), ('to', 'TO'), ('your', 'PRP$'), ('xx', 'JJ'), ('address', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('keep', 'VB'), ('one', 'CD'), ('and', 'CC'), ('send', 'VB'), ('back', 'RB'), ('the', 'DT'), ('other', 'JJ'), ('after', 'IN'), ('signing', 'VBG'), ('on', 'IN'), ('it', 'PRP')], [('hi', 'NN'), ('xxxxxxx', 'NN'), ('i', 'NN'), ('can', 'MD'), ('help', 'VB'), ('out', 'RP'), ('on', 'IN'), ('saturday', 'JJ'), ('xxxx', 'NNP'), ('at', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxxxx', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('revert', 'VB'), ('on', 'IN'), ('monday', 'NN')], [('i', 'NN'), ('will', 'MD'), ('wait', 'VB'), ('over', 'IN'), ('next', 'JJ'), ('day', 'NN'), ('and', 'CC'), ('if', 'IN'), ('doesnt', 'JJ'), ('work', 'NN'), ('out', 'IN'), ('say', 'NN'), ('by', 'IN'), ('tomorrow', 'NN'), ('sat', 'VBD'), ('night', 'NN'), ('i', 'NN'), ('will', 'MD'), ('let', 'VB'), ('whoever', 'WDT'), ('calls', 'NNS'), ('have', 'VBP'), ('the', 'DT'), ('room', 'NN'), ('that', 'WDT'), ('is', 'VBZ'), ('all', 'DT'), ('i', 'NN'), ('can', 'MD'), ('think', 'VB'), ('to', 'TO'), ('do', 'VB'), ('thanks', 'NNS')], [('i', 'JJ'), ('think', 'VBP'), ('we', 'PRP'), ('should', 'MD'), ('plan', 'VB'), ('for', 'IN'), ('an', 'DT'), ('early', 'JJ'), ('january', 'NN'), ('xxxxx', 'NN'), ('meeting', 'NN')], [('i', 'NNS'), ('need', 'VBP'), ('to', 'TO'), ('get', 'VB'), ('some', 'DT'), ('activities', 'NNS'), ('lined', 'VBD'), ('up', 'RP'), ('for', 'IN'), ('ap', 'NN'), ('which', 'WDT'), ('i', 'NN'), ('will', 'MD'), ('do', 'VB'), ('starting', 'VBG'), ('next', 'JJ'), ('week', 'NN')], [('as', 'IN'), ('i', 'NN'), ('had', 'VBD'), ('mentioned', 'VBN'), ('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('very', 'RB'), ('helpful', 'JJ'), ('if', 'IN'), ('i', 'JJ'), ('can', 'MD'), ('please', 'VB'), ('go', 'VB'), ('with', 'IN'), ('you', 'PRP'), ('and', 'CC'), ('xxxxxx', 'VB'), ('to', 'TO'), ('the', 'DT'), ('xxxxxxxxxxx', 'NN'), ('tomorrow', 'NN'), ('morning', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('request', 'VB'), ('xxx', 'JJ'), ('xxxxxx', 'NN'), ('to', 'TO'), ('share', 'NN'), ('that', 'IN'), ('tomorrow', 'NN')], [('i', 'NN'), ('know', 'VBP'), ('this', 'DT'), ('is', 'VBZ'), ('something', 'NN'), ('i', 'NN'), ('can', 'MD'), ('expect', 'VB'), ('from', 'IN'), ('you', 'PRP'), ('and', 'CC'), ('your', 'PRP$'), ('team', 'NN'), ('and', 'CC'), ('need', 'VB'), ('your', 'PRP$'), ('help', 'NN'), ('to', 'TO'), ('get', 'VB'), ('this', 'DT'), ('site', 'NN'), ('up', 'RB'), ('and', 'CC'), ('running', 'VBG'), ('this', 'DT'), ('week', 'NN')], [('if', 'IN'), ('there', 'EX'), ('were', 'VBD'), ('any', 'DT'), ('concerns', 'NNS'), ('i', 'NN'), ('can', 'MD'), ('have', 'VB'), ('xxxxx', 'VBN'), ('talk', 'NN'), ('to', 'TO'), ('him', 'PRP'), ('tomorrow', 'NN')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('any', 'DT'), ('dietary', 'JJ'), ('restrictions', 'NNS'), ('or', 'CC'), ('allergies', 'NNS'), ('by', 'IN'), ('wednesday', 'JJ'), ('dec', 'NNS'), ('10', 'CD')], [('i', 'JJ'), ('didnt', 'VBP'), ('push', 'NN'), ('him', 'PRP'), ('hard', 'JJ'), ('but', 'CC'), ('made', 'VBD'), ('him', 'PRP'), ('understand', 'VB'), ('about', 'IN'), ('resource', 'NN'), ('availability', 'NN'), ('and', 'CC'), ('asked', 'VBD'), ('to', 'TO'), ('keep', 'VB'), ('us', 'PRP'), ('posted', 'VBN'), ('at', 'IN'), ('the', 'DT'), ('earliest', 'JJS'), ('could', 'MD'), ('be', 'VB'), ('wednesday', 'RB'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('block', 'VB'), ('the', 'DT'), ('resource', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('traveling', 'VBG'), ('next', 'JJ'), ('week', 'NN'), ('and', 'CC'), ('so', 'RB'), ('even', 'RB'), ('if', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('a', 'DT'), ('15min', 'JJ'), ('conversation', 'NN'), ('would', 'MD'), ('be', 'VB'), ('great', 'JJ'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('have', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN')], [('please', 'VB'), ('review', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('hopefully', 'VB'), ('we', 'PRP'), ('should', 'MD'), ('get', 'VB'), ('all', 'DT'), ('y', 'NNS'), ('contracts', 'NNS'), ('signed', 'VBD'), ('tomorrow', 'NN')], [('we', 'PRP'), ('expect', 'VBP'), ('to', 'TO'), ('receive', 'VB'), ('the', 'DT'), ('device', 'NN'), ('from', 'IN'), ('the', 'DT'), ('store', 'NN'), ('by', 'IN'), ('23', 'CD'), ('december', 'NNS'), ('so', 'IN'), ('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('get', 'VB'), ('the', 'DT'), ('items', 'NNS'), ('to', 'TO'), ('xxxxxxxxx', 'VB'), ('by', 'IN'), ('january', 'JJ'), ('3rd', 'CD')], [('if', 'IN'), ('not', 'RB'), ('i', 'VB'), ('can', 'MD'), ('try', 'VB'), ('to', 'TO'), ('stop', 'VB'), ('by', 'IN'), ('at', 'IN'), ('the', 'DT'), ('xxxxxxx', 'NNP'), ('campus', 'NN'), ('later', 'RB'), ('in', 'IN'), ('the', 'DT'), ('day', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('you', 'PRP'), ('can', 'MD'), ('buy', 'VB'), ('me', 'PRP'), ('coffee', 'NN'), ('at', 'IN'), ('the', 'DT'), ('xxxxxxxxx', 'NN'), ('cafeteria', 'NN')], [('at', 'IN'), ('this', 'DT'), ('stage', 'NN'), ('i', 'NN'), ('can', 'MD'), ('confirm', 'VB'), ('that', 'DT'), ('payments', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('processed', 'VBN'), ('sometime', 'RB'), ('this', 'DT'), ('week', 'NN'), ('and', 'CC'), ('you', 'PRP'), ('can', 'MD'), ('therefore', 'VB'), ('expect', 'VB'), ('the', 'DT'), ('payment', 'NN'), ('into', 'IN'), ('your', 'PRP$'), ('australian', 'JJ'), ('bank', 'NN'), ('account', 'NN'), ('by', 'IN'), ('friday', 'NN'), ('or', 'CC'), ('monday', 'NN'), ('next', 'IN'), ('week', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('address', 'VB'), ('in', 'IN'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('week', 'NN'), ('releases', 'NNS')], [('let', 'VB'), ('me', 'PRP'), ('review', 'VB'), ('it', 'PRP'), ('will', 'MD'), ('come', 'VB'), ('back', 'RB'), ('by', 'IN'), ('tomorrow', 'NN')], [('requesting', 'VBG'), ('you', 'PRP'), ('to', 'TO'), ('reject', 'VB'), ('the', 'DT'), ('timesheet', 'NN'), ('for', 'IN'), ('the', 'DT'), ('week', 'NN'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('update', 'VB'), ('and', 'CC'), ('resubmit', 'VB'), ('it', 'PRP')], [('and', 'CC'), ('right', 'RB'), ('now', 'RB'), ('between', 'IN'), ('now', 'RB'), ('and', 'CC'), ('jan', 'NN'), ('we', 'PRP'), ('should', 'MD'), ('close', 'VB'), ('atleast', 'IN'), ('yy', 'JJ'), ('investors', 'NNS')], [('also', 'RB'), ('for', 'IN'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('so', 'IN'), ('i', 'JJ'), ('can', 'MD'), ('send', 'VB'), ('both', 'DT'), ('first', 'JJ'), ('thing', 'NN'), ('tomorrow', 'NN'), ('morning', 'NN'), ('ist', 'NN')], [('not', 'RB'), ('sure', 'JJ'), ('i', 'NN'), ('can', 'MD'), ('make', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN'), ('but', 'CC'), ('i', 'NN'), ('will', 'MD'), ('try', 'VB')], [('if', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('unable', 'JJ'), ('to', 'TO'), ('get', 'VB'), ('the', 'DT'), ('parcel', 'NN'), ('to', 'TO'), ('you', 'PRP'), ('before', 'IN'), ('3', 'CD'), ('january', 'JJ'), ('ill', 'NN'), ('let', 'VB'), ('you', 'PRP'), ('know', 'VB'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('ship', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('your', 'PRP$'), ('address', 'NN'), ('in', 'IN'), ('xxxxx', 'NN')], [('i', 'NN'), ('had', 'VBD'), ('to', 'TO'), ('move', 'VB'), ('my', 'PRP$'), ('trip', 'NN'), ('to', 'TO'), ('early', 'JJ'), ('jan', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('in', 'IN'), ('india', 'NN'), ('when', 'WRB'), ('you', 'PRP'), ('are', 'VBP'), ('back', 'RB'), ('here', 'RB')], [('we', 'PRP'), ('should', 'MD'), ('also', 'RB'), ('consider', 'VB'), ('a', 'DT'), ('onetime', 'NN'), ('yyyl', 'NN'), ('rupee', 'NN'), ('bonus', 'NN'), ('for', 'IN'), ('each', 'DT'), ('of', 'IN'), ('them', 'PRP'), ('if', 'IN'), ('they', 'PRP'), ('go', 'VBP'), ('live', 'JJ'), ('on', 'IN'), ('xxxxx', 'NN'), ('on', 'IN'), ('or', 'CC'), ('before', 'IN'), ('jan', 'NNS'), ('31', 'CD'), ('2015', 'CD'), ('or', 'CC'), ('perhaps', 'RB'), ('the', 'DT'), ('first', 'JJ'), ('3l', 'CD'), ('of', 'IN'), ('revenue', 'NN'), ('goes', 'VBZ'), ('to', 'TO'), ('them', 'PRP'), ('as', 'IN'), ('a', 'DT'), ('bonus', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('wire', 'VB'), ('framing', 'VBG'), ('from', 'IN'), ('next', 'JJ'), ('week', 'NN'), ('but', 'CC'), ('we', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('inform', 'VB'), ('client', 'NN'), ('about', 'IN'), ('the', 'DT'), ('schedule', 'NN'), ('for', 'IN'), ('each', 'DT'), ('phase', 'NN')], [('if', 'IN'), ('required', 'VBN'), ('i', 'NN'), ('can', 'MD'), ('check', 'VB'), ('with', 'IN'), ('raksha', 'JJ'), ('tomorrow', 'NN'), ('morning', 'NN'), ('to', 'TO'), ('rerecord', 'VB'), ('it', 'PRP')], [('we', 'PRP'), ('can', 'MD'), ('try', 'VB'), ('for', 'IN'), ('sometime', 'RB'), ('next', 'JJ'), ('month', 'NN')], [('xxx', 'JJ'), ('xxxxxx', 'NNP'), ('xxxx', 'NNP'), ('and', 'CC'), ('xxxx', 'NNP'), ('could', 'MD'), ('you', 'PRP'), ('signal', 'VB'), ('agreement', 'NN'), ('with', 'IN'), ('all', 'DT'), ('above', 'IN'), ('so', 'RB'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('this', 'DT'), ('all', 'DT'), ('agreed', 'VBD'), ('and', 'CC'), ('get', 'VB'), ('going', 'VBG'), ('on', 'IN'), ('docs', 'NN'), ('by', 'IN'), ('tomorrow', 'NN')], [('i', 'NN'), ('am', 'VBP'), ('away', 'RB'), ('dec', 'JJ'), ('yyyyy', 'JJ'), ('week', 'NN'), ('i', 'NN'), ('can', 'MD'), ('participate', 'VB'), ('week', 'NN'), ('of', 'IN'), ('dec', 'NN'), ('29', 'CD'), ('or', 'CC'), ('after', 'IN')], [('i', 'NN'), ('can', 'MD'), ('give', 'VB'), ('the', 'DT'), ('cheque', 'NN'), ('tomorrow', 'NN'), ('once', 'IN'), ('you', 'PRP'), ('confirm', 'VBP'), ('so', 'RB'), ('that', 'IN'), ('the', 'DT'), ('pending', 'VBG'), ('tax', 'NN'), ('can', 'MD'), ('be', 'VB'), ('paid', 'VBN')], [('for', 'IN'), ('your', 'PRP$'), ('youngturks', 'NNS'), ('event', 'NN'), ('next', 'JJ'), ('week', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('use', 'VB'), ('our', 'PRP$'), ('fund', 'NN'), ('raise', 'VB'), ('material', 'NN')], [('so', 'RB'), ('in', 'IN'), ('all', 'DT'), ('likelihood', 'NN'), ('we', 'PRP'), ('should', 'MD'), ('have', 'VB'), ('yyy', 'NNS'), ('paid', 'VBN'), ('customers', 'NNS'), ('by', 'IN'), ('january', 'JJ')], [('so', 'RB'), ('i', 'JJ'), ('can', 'MD'), ('try', 'VB'), ('tomorrow', 'NN')], [('maybe', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('spend', 'VB'), ('yyy', 'JJ'), ('hrs', 'NN'), ('tomorrow', 'NN'), ('to', 'TO'), ('iron', 'VB'), ('out', 'RP'), ('the', 'DT'), ('following', 'VBG')], [('xxxxxx', 'NN'), ('you', 'PRP'), ('and', 'CC'), ('i', 'VB'), ('can', 'MD'), ('then', 'RB'), ('continue', 'VB'), ('at', 'IN'), ('noon', 'NN'), ('on', 'IN'), ('tuesday', 'NN')], [('from', 'IN'), ('what', 'WP'), ('i', 'NN'), ('can', 'MD'), ('tell', 'VB'), ('from', 'IN'), ('yyy', 'JJ'), ('looks', 'NNS'), ('like', 'IN'), ('his', 'PRP$'), ('payment', 'NN'), ('would', 'MD'), ('have', 'VB'), ('been', 'VBN'), ('due', 'JJ'), ('in', 'IN'), ('may', 'MD'), ('though', 'VB'), ('as', 'IN'), ('that', 'DT'), ('was', 'VBD'), ('his', 'PRP$'), ('initial', 'JJ'), ('cm', 'NN'), ('enrollment', 'NN')], [('i', 'NN'), ('will', 'MD'), ('try', 'VB'), ('and', 'CC'), ('see', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('squeeze', 'VB'), ('this', 'DT'), ('discussion', 'NN'), ('into', 'IN'), ('next', 'JJ'), ('week', 'NN'), ('but', 'CC'), ('if', 'IN'), ('not', 'RB'), ('we', 'PRP'), ('may', 'MD'), ('have', 'VB'), ('to', 'TO'), ('wait', 'VB'), ('until', 'IN'), ('early', 'JJ'), ('jan', 'NN')], [('i', 'NN'), ('was', 'VBD'), ('able', 'JJ'), ('to', 'TO'), ('follow', 'VB'), ('the', 'DT'), ('same', 'JJ'), ('old', 'JJ'), ('steps', 'NNS'), ('with', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('old', 'JJ'), ('files', 'NNS'), ('and', 'CC'), ('it', 'PRP'), ('worked', 'VBD'), ('properlywe', 'NN'), ('can', 'MD'), ('discuss', 'VB'), ('this', 'DT'), ('tomorrow', 'NN'), ('in', 'IN'), ('detail', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('would', 'MD'), ('like', 'VB')], [('you', 'PRP'), ('can', 'MD'), ('issue', 'VB'), ('cheque', 'NN'), ('favouring', 'VBG'), ('xxx', 'NNP'), ('xxxxxx', 'JJ'), ('tax', 'NN'), ('or', 'CC'), ('you', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('online', 'VB'), ('payment', 'NN'), ('pls', 'JJ'), ('pay', 'NN'), ('before', 'IN'), ('15th', 'CD'), ('dec', 'NN'), ('2014', 'CD')], [('if', 'IN'), ('i', 'VBN'), ('misunderstood', 'VBP'), ('some', 'DT'), ('of', 'IN'), ('your', 'PRP$'), ('inputs', 'NNS'), ('over', 'IN'), ('the', 'DT'), ('phone', 'NN'), ('then', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('edit', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN')], [('definitely', 'RB'), ('i', 'NN'), ('will', 'MD'), ('see', 'VB'), ('what', 'WP'), ('i', 'VB'), ('can', 'MD'), ('learn', 'VB'), ('at', 'IN'), ('xxxxx', 'NN'), ('when', 'WRB'), ('i', 'NN'), ('meet', 'VBP'), ('them', 'PRP'), ('on', 'IN'), ('thursday', 'NN')], [('otherwise', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('circle', 'VB'), ('back', 'RB'), ('in', 'IN'), ('april', 'NN'), ('when', 'WRB'), ('we', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('raising', 'VBG'), ('our', 'PRP$'), ('next', 'JJ'), ('round', 'NN')], [('the', 'DT'), ('team', 'NN'), ('is', 'VBZ'), ('still', 'RB'), ('in', 'IN'), ('process', 'NN'), ('of', 'IN'), ('evaluating', 'VBG'), ('the', 'DT'), ('entire', 'JJ'), ('feature', 'NN'), ('set', 'VBN'), ('and', 'CC'), ('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('come', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('by', 'IN'), ('monday', 'JJ'), ('xxx', 'NNP'), ('with', 'IN'), ('high', 'JJ'), ('level', 'NN'), ('ball', 'NN'), ('park', 'NN'), ('estimates', 'NNS'), ('on', 'IN'), ('design', 'NN'), ('web', 'NN'), ('development', 'NN'), ('and', 'CC'), ('mobile', 'JJ'), ('xxx', 'NN'), ('development', 'NN'), ('ipad', 'NN')], [('i', 'NN'), ('can', 'MD'), ('do', 'VB'), ('9am', 'CD'), ('fri', 'NN'), ('xxx', 'NN')], [('i', 'NN'), ('will', 'MD'), ('check', 'VB'), ('with', 'IN'), ('xxxxx', 'NN'), ('on', 'IN'), ('what', 'WP'), ('we', 'PRP'), ('can', 'MD'), ('send', 'VB'), ('you', 'PRP'), ('next', 'JJ'), ('week', 'NN'), ('or', 'CC'), ('last', 'JJ'), ('week', 'NN'), ('dec', 'VBD'), ('it', 'PRP'), ('may', 'MD'), ('be', 'VB'), ('possible', 'JJ'), ('once', 'IN'), ('we', 'PRP'), ('send', 'VBP'), ('i', 'JJ'), ('can', 'MD'), ('perhaps', 'RB'), ('answer', 'VB'), ('questions', 'NNS'), ('to', 'TO'), ('clarify', 'VB'), ('but', 'CC'), ('any', 'DT'), ('back', 'RB'), ('and', 'CC'), ('forth', 'NN'), ('on', 'IN'), ('terms', 'NNS'), ('will', 'MD'), ('have', 'VB'), ('to', 'TO'), ('wait', 'VB'), ('for', 'IN'), ('xxxxxs', 'JJ'), ('return', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('see', 'VB'), ('tomorrow', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('review', 'VB'), ('it', 'PRP'), ('next', 'JJ'), ('week', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('pub', 'VB'), ('tomorrow', 'NN'), ('or', 'CC'), ('today', 'NN'), ('and', 'CC'), ('rank', 'NN')], [('its', 'PRP$'), ('up', 'RP'), ('to', 'TO'), ('us', 'PRP'), ('to', 'TO'), ('quickly', 'RB'), ('close', 'VB'), ('on', 'IN'), ('the', 'DT'), ('proposals', 'NNS'), ('and', 'CC'), ('get', 'VB'), ('work', 'NN'), ('orders', 'NNS'), ('signed', 'VBD'), ('if', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('achieve', 'VB'), ('the', 'DT'), ('above', 'NN'), ('mentioned', 'VBD'), ('targets', 'NNS'), ('we', 'PRP'), ('should', 'MD'), ('strive', 'VB'), ('to', 'TO'), ('close', 'VB'), ('all', 'DT'), ('deals', 'NNS'), ('by', 'IN'), ('midjan', 'NN'), ('latest', 'JJS'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('jan', 'NN')], [('let', 'VB'), ('me', 'PRP'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('if', 'IN'), ('anything', 'NN'), ('this', 'DT'), ('week', 'NN'), ('after', 'IN'), ('17th', 'CD'), ('is', 'VBZ'), ('possible', 'JJ')], [('there', 'EX'), ('is', 'VBZ'), ('a', 'DT'), ('yy', 'JJ'), ('discount', 'NN'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('subscribe', 'VB'), ('in', 'IN'), ('december', 'NNP'), ('so', 'IN'), ('i', 'JJ'), ('aim', 'VBP'), ('to', 'TO'), ('close', 'VB'), ('this', 'DT'), ('week', 'NN')], [('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('great', 'JJ'), ('if', 'IN'), ('at', 'IN'), ('present', 'JJ'), ('we', 'PRP'), ('can', 'MD'), ('move', 'VB'), ('without', 'IN'), ('management', 'NN'), ('accounts', 'NNS'), ('as', 'IN'), ('i', 'NN'), ('am', 'VBP'), ('in', 'IN'), ('xxxxxxxxx', 'NN'), ('and', 'CC'), ('some', 'DT'), ('of', 'IN'), ('my', 'PRP$'), ('accounts', 'NNS'), ('details', 'NNS'), ('are', 'VBP'), ('back', 'RB'), ('in', 'IN'), ('xxxxx', 'NN'), ('and', 'CC'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('going', 'VBG'), ('back', 'RB'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('week', 'NN')], [('however', 'RB'), ('if', 'IN'), ('xxxxxx', 'VBN'), ('and', 'CC'), ('xxxxxxx', 'NNP'), ('want', 'VBP'), ('we', 'PRP'), ('can', 'MD'), ('share', 'NN'), ('our', 'PRP$'), ('findings', 'NNS'), ('in', 'IN'), ('any', 'DT'), ('day', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('since', 'IN'), ('xxxxx', 'NN'), ('will', 'MD'), ('be', 'VB'), ('away', 'RB'), ('from', 'IN'), ('next', 'JJ'), ('week', 'NN'), ('till', 'NN'), ('jan', 'VBZ'), ('10', 'CD'), ('he', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('xxxxx', 'JJ'), ('early', 'JJ'), ('jan', 'NN'), ('we', 'PRP'), ('wanted', 'VBD'), ('to', 'TO'), ('see', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('meet', 'VB'), ('once', 'RB'), ('this', 'DT'), ('week', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('cap', 'NN'), ('structure', 'NN')], [('friday', 'NN'), ('i', 'NN'), ('can', 'MD'), ('spend', 'VB'), ('the', 'DT'), ('day', 'NN'), ('with', 'IN'), ('youxxxxxx', 'NN'), ('ll', 'NN'), ('be', 'VB'), ('in', 'IN'), ('officei', 'NN'), ('can', 'MD'), ('spend', 'VB'), ('the', 'DT'), ('entire', 'JJ'), ('day', 'NN'), ('with', 'IN'), ('you', 'PRP'), ('and', 'CC'), ('get', 'VB'), ('back', 'RB'), ('home', 'NN'), ('when', 'WRB'), ('he', 'PRP'), ('leaves', 'VBZ'), ('work', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('the', 'DT'), ('testing', 'NN'), ('this', 'DT'), ('friday', 'NN')], [('sure', 'JJ'), ('we', 'PRP'), ('can', 'MD'), ('synch', 'VB'), ('up', 'RP'), ('tomorrow', 'NN'), ('but', 'CC'), ('will', 'MD'), ('not', 'RB'), ('be', 'VB'), ('coming', 'VBG'), ('to', 'TO'), ('xxxxxxx', 'NNP'), ('office', 'NN'), ('though', 'IN')], [('we', 'PRP'), ('can', 'MD'), ('print', 'VB'), ('them', 'PRP'), ('out', 'RP'), ('tomorrow', 'NN')], [('it', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('good', 'JJ'), ('to', 'TO'), ('have', 'VB'), ('a', 'DT'), ('pass', 'NN'), ('at', 'IN'), ('this', 'DT'), ('today', 'NN'), ('and', 'CC'), ('discuss', 'NN'), ('with', 'IN'), ('xxxxx', 'NNP'), ('so', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('finalize', 'VB'), ('latest', 'JJS'), ('by', 'IN'), ('tomorrow', 'NN'), ('and', 'CC'), ('send', 'NN'), ('to', 'TO'), ('xxxxxx', 'VB')], [('on', 'IN'), ('friday', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('both', 'VB'), ('do', 'VB'), ('430', 'CD'), ('to', 'TO'), ('530', 'CD'), ('in', 'IN'), ('xxxxxxxxx', 'NN')], [('its', 'PRP$'), ('going', 'VBG'), ('to', 'TO'), ('be', 'VB'), ('the', 'DT'), ('annual', 'JJ'), ('xxxxxxxxx', 'NNP'), ('closedown', 'NN'), ('for', 'IN'), ('appstore', 'NN'), ('from', 'IN'), ('dec', 'JJ'), ('21st', 'CD'), ('so', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('giving', 'VBG'), ('the', 'DT'), ('final', 'JJ'), ('touches', 'NNS'), ('before', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('submit', 'VB'), ('to', 'TO'), ('the', 'DT'), ('appstore', 'NN')], [('hello', 'NN'), ('xxx', 'CC'), ('as', 'IN'), ('we', 'PRP'), ('gear', 'VBP'), ('up', 'RP'), ('for', 'IN'), ('the', 'DT'), ('january', 'JJ'), ('push', 'NN'), ('for', 'IN'), ('xxxxxxxx', 'NN'), ('we', 'PRP'), ('need', 'VBP'), ('new', 'JJ'), ('leads', 'NNS'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('use', 'VB'), ('to', 'TO'), ('develop', 'VB'), ('into', 'IN'), ('opportunities', 'NNS')], [('the', 'DT'), ('meetings', 'NNS'), ('today', 'NN'), ('and', 'CC'), ('tomorrow', 'NN'), ('are', 'VBP'), ('the', 'DT'), ('opportunity', 'NN'), ('to', 'TO'), ('see', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('engender', 'VB'), ('support', 'NN'), ('in', 'IN'), ('some', 'DT'), ('of', 'IN'), ('these', 'DT'), ('other', 'JJ'), ('critical', 'JJ'), ('areas', 'NNS')], [('if', 'IN'), ('you', 'PRP'), ('need', 'VBP'), ('all', 'PDT'), ('the', 'DT'), ('shareholding', 'NN'), ('cleaned', 'VBD'), ('up', 'RP'), ('prior', 'RB'), ('to', 'TO'), ('dec', 'VB'), ('31st', 'CD'), ('then', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('issue', 'VB'), ('his', 'PRP$'), ('shares', 'NNS'), ('and', 'CC'), ('then', 'RB'), ('negotiate', 'VB'), ('with', 'IN'), ('him', 'PRP'), ('about', 'IN'), ('the', 'DT'), ('purchase', 'NN')], [('if', 'IN'), ('xxxxx', 'VBN'), ('can', 'MD'), ('work', 'VB'), ('with', 'IN'), ('xxxxxx', 'JJ'), ('to', 'TO'), ('clarify', 'VB'), ('the', 'DT'), ('changes', 'NNS'), ('over', 'IN'), ('a', 'DT'), ('call', 'NN'), ('then', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('propose', 'VB'), ('the', 'DT'), ('final', 'JJ'), ('costing', 'NN'), ('to', 'TO'), ('you', 'PRP'), ('by', 'IN'), ('tomorrow', 'NN')], [('given', 'VBN'), ('your', 'PRP$'), ('stated', 'JJ'), ('conditions', 'NNS'), ('let', 'VB'), ('me', 'PRP'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('tomorrow', 'NN'), ('after', 'IN'), ('a', 'DT'), ('final', 'JJ'), ('word', 'NN'), ('with', 'IN'), ('them', 'PRP')], [('i', 'NNS'), ('have', 'VBP'), ('now', 'RB'), ('asked', 'VBN'), ('xxxxx', 'NN'), ('to', 'TO'), ('try', 'VB'), ('to', 'TO'), ('complete', 'VB'), ('the', 'DT'), ('homepage', 'NN'), ('design', 'NN'), ('today', 'NN'), ('and', 'CC'), ('put', 'VB'), ('on', 'IN'), ('to', 'TO'), ('staging', 'VBG'), ('for', 'IN'), ('testing', 'VBG'), ('in', 'IN'), ('the', 'DT'), ('hope', 'NN'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('release', 'VB'), ('it', 'PRP'), ('tomorrow', 'NN'), ('morning', 'NN'), ('to', 'TO'), ('keep', 'VB'), ('some', 'DT'), ('of', 'IN'), ('our', 'PRP$'), ('clients', 'NNS'), ('happy', 'JJ'), ('by', 'IN'), ('getting', 'VBG'), ('something', 'NN'), ('live', 'JJ'), ('on', 'IN'), ('time', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('setup', 'VB'), ('another', 'DT'), ('early', 'JJ'), ('january', 'NN'), ('for', 'IN'), ('further', 'JJ'), ('training', 'NN'), ('and', 'CC'), ('answer', 'VB'), ('any', 'DT'), ('questions', 'NNS')], [('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('all', 'DT'), ('go', 'VB'), ('tomorrow', 'NN')], [('ill', 'NN'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('you', 'PRP'), ('by', 'IN'), ('early', 'JJ'), ('jan', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('set', 'VB'), ('up', 'RP'), ('a', 'DT'), ('face', 'NN'), ('to', 'TO'), ('face', 'VB')], [('he', 'PRP'), ('said', 'VBD'), ('that', 'IN'), ('we', 'PRP'), ('should', 'MD'), ('meet', 'VB'), ('after', 'IN'), ('he', 'PRP'), ('returns', 'VBZ'), ('in', 'IN'), ('january', 'NN')], [('for', 'IN'), ('xxx', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('give', 'VB'), ('requested', 'VBN'), ('extra', 'JJ'), ('licenses', 'NNS'), ('for', 'IN'), ('free', 'JJ'), ('if', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('cards', 'NNS'), ('etc', 'FW'), ('and', 'CC'), ('inform', 'VB'), ('them', 'PRP'), ('we', 'PRP'), ('cant', 'VBP'), ('support', 'VB'), ('the', 'DT'), ('product', 'NN'), ('from', 'IN'), ('feb', 'JJ'), ('onwards', 'NNS')], [('if', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('going', 'VBG'), ('ahead', 'RB'), ('with', 'IN'), ('option', 'NN'), ('y', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('deliver', 'VB'), ('an', 'DT'), ('interim', 'JJ'), ('build', 'NN'), ('on', 'IN'), ('26th', 'CD'), ('of', 'IN'), ('december', 'NN')], [('well', 'RB'), ('also', 'RB'), ('be', 'VB'), ('finished', 'VBN'), ('with', 'IN'), ('our', 'PRP$'), ('meetings', 'NNS'), ('with', 'IN'), ('windmills', 'NNS'), ('xxxxxxx', 'NNS'), ('and', 'CC'), ('xxxxxxxxxxxxx', 'NN'), ('by', 'IN'), ('this', 'DT'), ('saturday', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('share', 'NN'), ('notes', 'NNS'), ('from', 'IN'), ('those', 'DT')], [('i', 'NN'), ('was', 'VBD'), ('asking', 'VBG'), ('for', 'IN'), ('the', 'DT'), ('time', 'NN'), ('so', 'IN'), ('that', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('skype', 'VB'), ('when', 'WRB'), ('xxxx', 'NN'), ('and', 'CC'), ('xxxxx', 'NN'), ('are', 'VBP'), ('here', 'RB'), ('they', 'PRP'), ('are', 'VBP'), ('both', 'DT'), ('here', 'RB'), ('this', 'DT'), ('weekend', 'NN'), ('but', 'CC'), ('there', 'EX'), ('is', 'VBZ'), ('a', 'DT'), ('huge', 'JJ'), ('event', 'NN'), ('on', 'IN'), ('sunday', 'NN'), ('with', 'IN'), ('yy', 'JJ'), ('plus', 'CC'), ('people', 'NNS'), ('at', 'IN'), ('my', 'PRP$'), ('home', 'NN'), ('so', 'IN'), ('that', 'IN'), ('sometime', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('would', 'MD'), ('be', 'VB'), ('the', 'DT'), ('best', 'JJS')], [('we', 'PRP'), ('can', 'MD'), ('consider', 'VB'), ('jan', 'NN'), ('5', 'CD'), ('week', 'NN'), ('with', 'IN'), ('just', 'RB'), ('xxxx', 'VBN'), ('and', 'CC'), ('myself', 'PRP')], [('the', 'DT'), ('plan', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('run', 'VB'), ('the', 'DT'), ('campaign', 'NN'), ('till', 'NN'), ('june', 'VBZ'), ('5th', 'CD'), ('and', 'CC'), ('see', 'VB'), ('how', 'WRB'), ('much', 'JJ'), ('we', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('that', 'DT'), ('number', 'NN'), ('of', 'IN'), ('trees', 'NNS'), ('upto', 'JJ')], [('if', 'IN'), ('this', 'DT'), ('works', 'VBZ'), ('i', 'NN'), ('can', 'MD'), ('initiate', 'VB'), ('a', 'DT'), ('conversation', 'NN'), ('with', 'IN'), ('him', 'PRP'), ('as', 'RB'), ('soon', 'RB'), ('as', 'IN'), ('monday', 'NN')], [('if', 'IN'), ('you', 'PRP'), ('dont', 'VBP'), ('know', 'VB'), ('now', 'RB'), ('you', 'PRP'), ('can', 'MD'), ('certainly', 'RB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('any', 'DT'), ('time', 'NN'), ('before', 'IN'), ('january', 'JJ'), ('7th', 'CD')], [('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('i', 'NNS'), ('can', 'MD'), ('get', 'VB'), ('you', 'PRP'), ('any', 'DT'), ('more', 'JJR'), ('info', 'JJ'), ('move', 'NN'), ('process', 'NN'), ('along', 'IN'), ('to', 'TO'), ('make', 'VB'), ('it', 'PRP'), ('into', 'IN'), ('jan', 'NN'), ('first', 'RB'), ('close', 'RB')], [('if', 'IN'), ('you', 'PRP'), ('feel', 'VBP'), ('that', 'IN'), ('xxx', 'NNP'), ('xxxx', 'NNP'), ('and', 'CC'), ('xxxxxxxx', 'NNP'), ('s', 'NN'), ('is', 'VBZ'), ('quite', 'RB'), ('good', 'JJ'), ('area', 'NN'), ('so', 'IN'), ('that', 'IN'), ('i', 'NN'), ('can', 'MD'), ('continue', 'VB'), ('i', 'JJ'), ('want', 'VBP'), ('immediately', 'RB'), ('some', 'DT'), ('xxx', 'JJ'), ('xxxxxxxx', 'NNS'), ('xxxxxxxxx', 'VBN'), ('by', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('can', 'MD'), ('you', 'PRP'), ('follow', 'VB'), ('up', 'RP'), ('with', 'IN'), ('him', 'PRP'), ('this', 'DT'), ('week', 'NN'), ('to', 'TO'), ('see', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('come', 'VB'), ('to', 'TO'), ('a', 'DT'), ('closure', 'NN')], [('yy', 'RB'), ('yyy', 'JJ'), ('time', 'NN'), ('line', 'NN'), ('outcomes', 'NNS'), ('total', 'NN'), ('of', 'IN'), ('not', 'RB'), ('more', 'JJR'), ('than', 'IN'), ('yyy', 'JJR'), ('pages', 'NNS'), ('deadline', 'VBP'), ('december', 'VBP'), ('31st', 'CD'), ('let', 'IN'), ('me', 'PRP'), ('know', 'VB'), ('when', 'WRB'), ('it', 'PRP'), ('is', 'VBZ'), ('in', 'IN'), ('decent', 'JJ'), ('shape', 'NN'), ('and', 'CC'), ('i', 'NN'), ('will', 'MD'), ('contact', 'VB'), ('him', 'PRP')], [('if', 'IN'), ('your', 'PRP$'), ('question', 'NN'), ('is', 'VBZ'), ('regarding', 'VBG'), ('the', 'DT'), ('task', 'NN'), ('that', 'IN'), ('you', 'PRP'), ('explained', 'VBD'), ('then', 'RB'), ('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('that', 'DT'), ('tomorrow', 'NN'), ('itself', 'PRP')], [('just', 'RB'), ('thought', 'VBN'), ('i', 'RB'), ('will', 'MD'), ('send', 'VB'), ('a', 'DT'), ('reminder', 'NN'), ('dec', 'NN'), ('26', 'CD'), ('7', 'CD'), ('pm', 'NN'), ('at', 'IN'), ('our', 'PRP$'), ('home', 'NN')], [('only', 'RB'), ('thing', 'NN'), ('i', 'NN'), ('can', 'MD'), ('say', 'VB'), ('is', 'VBZ'), ('that', 'IN'), ('we', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('test', 'VB'), ('the', 'DT'), ('same', 'JJ'), ('and', 'CC'), ('this', 'DT'), ('month', 'NN'), ('only', 'RB'), ('to', 'TO'), ('apply', 'VB'), ('this', 'DT'), ('across', 'IN'), ('accounts', 'NNS'), ('from', 'IN'), ('jan', 'NN'), ('onwards', 'NNS')], [('i', 'NN'), ('can', 'MD'), ('deliver', 'VB'), ('the', 'DT'), ('proposal', 'NN'), ('on', 'IN'), ('or', 'CC'), ('before', 'IN'), ('8th', 'CD'), ('of', 'IN'), ('january', 'NN')], [('anyways', 'NNS'), ('please', 'VB'), ('keep', 'VB'), ('at', 'IN'), ('it', 'PRP'), ('for', 'IN'), ('this', 'DT'), ('one', 'CD'), ('i', 'NN'), ('will', 'MD'), ('do', 'VB'), ('my', 'PRP$'), ('best', 'JJS'), ('to', 'TO'), ('buy', 'VB'), ('time', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('keep', 'VB'), ('them', 'PRP'), ('committed', 'VBN')], [('think', 'NN'), ('of', 'IN'), ('which', 'WDT'), ('slot', 'NN'), ('would', 'MD'), ('work', 'VB'), ('well', 'RB'), ('for', 'IN'), ('you', 'PRP'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('go', 'VB'), ('there', 'RB'), ('tomorrow', 'NN')], [('hi', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('them', 'PRP'), ('in', 'IN'), ('the', 'DT'), ('post', 'NN'), ('tomorrow', 'NN')], [('think', 'NN'), ('of', 'IN'), ('which', 'WDT'), ('slot', 'NN'), ('would', 'MD'), ('work', 'VB'), ('well', 'RB'), ('for', 'IN'), ('you', 'PRP'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('go', 'VB'), ('there', 'RB'), ('tomorrow', 'NN')], [('after', 'IN'), ('friday', 'NN'), ('we', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('get', 'VB'), ('closure', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('tuesday', 'NN')], [('we', 'PRP'), ('can', 'MD'), ('start', 'VB'), ('coding', 'VBG'), ('from', 'IN'), ('monday', 'NN')]], [[('xxxxxx', 'VB'), ('my', 'PRP$'), ('profile', 'NN'), ('on', 'IN'), ('linked', 'VBN'), ('here', 'RB'), ('learn', 'JJ'), ('nlp', 'NN'), ('with', 'IN'), ('xxx', 'NNP'), ('xxxxxx', 'VBP'), ('the', 'DT'), ('author', 'NN'), ('of', 'IN'), ('the', 'DT'), ('book', 'NN'), ('nlp', 'NN'), ('at', 'IN'), ('work', 'NN'), ('this', 'DT'), ('december', 'NN'), ('january', 'JJ'), ('february', 'NN'), ('in', 'IN'), ('xxxxx', 'NN'), ('along', 'IN'), ('with', 'IN'), ('onefluencer', 'NN')], [('yyyyy', 'NN'), ('xxxxxx', 'NNP'), ('acquired', 'VBD'), ('before', 'IN'), ('january', 'JJ'), ('1st', 'CD'), ('2014', 'CD'), ('will', 'MD'), ('expire', 'VB'), ('on', 'IN'), ('30', 'CD'), ('june', 'NN'), ('2014', 'CD')], [('polltrueclientdatetuejul22yyyyyyyyyyyy3a00gmt2b0800gmt2b8pastyyyfutureyyyupdatey', 'NN')], [('quotinfo', 'VB'), ('the', 'DT'), ('xxxxxxxx', 'NNP'), ('xxxxxquot', 'NNP'), ('02112014', 'CD'), ('072743', 'CD'), ('am', 'VBP'), ('dear', 'JJ'), ('xx', 'NNP'), ('xxxx', 'NNP'), ('mar', 'NN'), ('xxxxxxxxxx', 'NNP'), ('warm', 'NN'), ('greeting', 'NN'), ('from', 'IN'), ('the', 'DT'), ('xxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('xxx', 'NN')], [('x200efriday', 'JJ'), ('june', 'VBD'), ('27', 'CD'), ('2014x200e', 'CD')], [('xxxxxx', 'JJ'), ('xxxxx', 'NNP'), ('instead', 'RB'), ('of', 'IN'), ('xxxxxx', 'NN'), ('on', 'IN'), ('the', 'DT')], [('discount', 'NN'), ('is', 'VBZ'), ('applicable', 'JJ'), ('to', 'TO'), ('all', 'DT'), ('sutralite', 'JJ'), ('plans', 'NNS'), ('bought', 'VBN'), ('until', 'IN'), ('december', 'NNP'), ('28', 'CD'), ('2013', 'CD'), ('conditions', 'NNS'), ('apply', 'VBP')], [('yyyyyyy', 'RB'), ('shreedevi', 'JJ'), ('administrator', 'NN'), ('20140821', 'CD'), ('2300', 'CD')], [('4', 'CD'), ('on', 'IN'), ('the', 'DT'), ('day', 'NN'), ('of', 'IN'), ('the', 'DT'), ('announcement', 'NN'), ('tue', 'NN'), ('june', 'NN'), ('17th', 'CD'), ('we', 'PRP'), ('will', 'MD')], [('can', 'MD'), ('he', 'PRP'), ('visit', 'VB'), ('xxx', 'NNP'), ('for', 'IN'), ('a', 'DT'), ('week', 'NN'), ('or', 'CC'), ('two', 'CD'), ('in', 'IN'), ('late', 'JJ'), ('july', 'NN'), ('for', 'IN'), ('this', 'DT'), ('purpose', 'NN')], [('erin', 'JJ'), ('pls', 'NN'), ('set', 'VBN'), ('up', 'RP'), ('followon', 'JJ'), ('meeting', 'NN'), ('mon', 'NN'), ('tuesday', 'NN'), ('at', 'IN'), ('optimal', 'JJ'), ('location', 'NN'), ('for', 'IN'), ('this', 'DT'), ('days', 'NNS'), ('i', 'VBP'), ('think', 'VBP'), ('xxxxx', 'CD'), ('xxxxx', 'NNS')], [('i', 'NN'), ('am', 'VBP'), ('sure', 'JJ'), ('cloudvelocity', 'NN'), ('is', 'VBZ'), ('revving', 'VBG'), ('up', 'RP'), ('copier', 'NN'), ('today', 'NN')], [('june', 'NN'), ('only', 'RB')], [('nov', 'RB'), ('22', 'CD')], [('online', 'NN'), ('via', 'IN'), ('xxxxx', 'NNP'), ('tue', 'VBD'), ('22', 'CD'), ('october', 'NN'), ('2013', 'CD'), ('900am', 'CD'), ('430pm', 'CD'), ('xxx', 'NN')], [('referral', 'JJ'), ('date', 'NN'), ('should', 'MD'), ('be', 'VB'), ('on', 'IN'), ('or', 'CC'), ('before', 'IN'), ('15th', 'CD'), ('may', 'MD'), ('2014', 'VB')], [('see', 'VB'), ('attached', 'VBN'), ('file', 'RB'), ('xxxxx', 'JJ'), ('letter', 'NN'), ('may', 'MD'), ('20', 'CD')], [('see', 'VB'), ('attached', 'VBN'), ('file', 'RB'), ('xxxxxxxxx', 'JJ'), ('meeting', 'NN'), ('xxxxxxx', 'NNP'), ('p149960', 'NN'), ('20140701', 'CD')], [('see', 'VB'), ('attached', 'VBN'), ('file', 'RB'), ('mm', 'NN'), ('ehas', 'NN'), ('project', 'NN'), ('draft', 'NN'), ('revised', 'VBD'), ('xxx', 'NNP'), ('aug', 'VBD'), ('4', 'CD'), ('soc', 'NN'), ('and', 'CC'), ('env', 'NN'), ('aspectsdocx', 'NN')], [('see', 'VB'), ('attached', 'VBN'), ('file', 'RB'), ('mm', 'JJ'), ('xxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('draft', 'NN'), ('cepf', 'NN'), ('may', 'MD'), ('22', 'CD')], [('see', 'VB'), ('attached', 'VBN'), ('file', 'RB'), ('xxxxxxx', 'JJ'), ('xxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('may', 'MD'), ('15', 'CD'), ('for', 'IN'), ('participantsdocx', 'NN')], [('see', 'VB'), ('attached', 'VBN'), ('file', 'RB'), ('xxxxxxx', 'JJ'), ('xxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('may', 'MD'), ('15', 'CD'), ('for', 'IN'), ('participantsdocxsee', 'NN'), ('attached', 'VBN'), ('file', 'NN'), ('xxxxxxx', 'NN'), ('xxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('may', 'MD'), ('15', 'CD'), ('for', 'IN'), ('facilitatorsdocx', 'NN')], [('see', 'VB'), ('attached', 'VBN'), ('file', 'RB'), ('pad', 'JJ'), ('myanmar', 'NN'), ('xxx', 'NNP'), ('xxxxxxx', 'NNP'), ('yyyjune', 'VBZ'), ('22', 'CD')], [('see', 'VB'), ('attached', 'VBN'), ('file', 'RB'), ('xxxxxxx', 'JJ'), ('appraisal', 'NN'), ('xxxxxxxx', 'NNP'), ('pad', 'NN'), ('xxxxxxxxx', 'NNP'), ('p149960', 'VBZ'), ('20140617', 'CD'), ('yyyyy', 'NN')], [('see', 'VB'), ('attached', 'VBN'), ('file', 'RB'), ('letter', 'NN'), ('to', 'TO'), ('he', 'PRP'), ('xxxxxxxx', 'VB'), ('of', 'IN'), ('xxxxxx', 'JJ'), ('201405', 'CD')], [('we', 'PRP'), ('are', 'VBP'), ('traveling', 'VBG'), ('rest', 'NN'), ('of', 'IN'), ('dec', 'NN'), ('2013', 'CD')], [('sjanfebmaraprmayjunjulaugsepoctnovdecjanuaryfebruarymarchaprilmayjunejulyaugustseptemberoctobernovemberdecembersyyy', 'NN')], [('emailed', 'VBD'), ('them', 'PRP'), ('back', 'RP'), ('saying', 'VBG'), ('well', 'RB'), ('share', 'NN'), ('something', 'NN'), ('by', 'IN'), ('tomorrow', 'NN')], [('httpcosnconferenceorgcoming', 'VBG'), ('up', 'RP'), ('earlier', 'RBR'), ('in', 'IN'), ('march', 'NN'), ('the', 'DT'), ('19th', 'CD'), ('to', 'TO'), ('the', 'DT'), ('22nd', 'CD'), ('in', 'IN'), ('xxxxxxxxxx', 'JJ'), ('xx', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('annual', 'JJ'), ('xxxx', 'NNP'), ('conference', 'NN'), ('httpcosnconferenceorg', 'NN'), ('httpcosnconferenceorg', 'NN')], [('janfebmaraprmayjunjulaugsepoctnovdecjanuaryfebruarymarchaprilmayjunejulyaugustseptemberoctobernovemberdecembers', 'NNS')], [('see', 'VB'), ('below', 'IN'), ('already', 'RB'), ('some', 'DT'), ('benefit', 'VBP'), ('out', 'IN'), ('of', 'IN'), ('our', 'PRP$'), ('meeting', 'NN'), ('with', 'IN'), ('rami', 'NN'), ('on', 'IN'), ('thursday', 'NN')], [('stan', 'NN'), ('na', 'TO'), ('dzie', 'VB'), ('1422014xxxxxxx', 'CD'), ('o', 'JJ'), ('zezwolenie', 'NN'), ('zacznik', 'NN'), ('xxx', 'NNP'), ('yy', 'NNP'), ('konsultacji', 'VBD'), ('zharmonizowana', 'NNP'), ('klasyfikacja', 'NN'), ('i', 'NN'), ('oznakowanie', 'VBP'), ('y', 'NN'), ('konsultacje', 'NN')], [('this', 'DT'), ('may', 'MD'), ('come', 'VB'), ('up', 'RP'), ('in', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('call', 'NN'), ('too', 'RB')], [('with', 'IN'), ('status', 'NN'), ('as', 'RB'), ('tbc', 'RB'), ('as', 'IN'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('out', 'IN'), ('the', 'DT'), ('whole', 'JJ'), ('day', 'NN'), ('and', 'CC'), ('may', 'MD'), ('not', 'RB'), ('be', 'VB'), ('able', 'JJ'), ('check', 'VB'), ('my', 'PRP$'), ('emails', 'NNS')], [('19th', 'CD'), ('oct', 'NN'), ('saturday', 'NN')], [('date', 'NN'), ('fri', 'VBD'), ('08', 'CD'), ('aug', 'NN'), ('2014', 'CD'), ('041512', 'CD'), ('xxx', 'NN')], [('date', 'NN'), ('mon', 'NN'), ('30', 'CD'), ('jun', 'NN'), ('2014', 'CD'), ('023547', 'CD'), ('xxx', 'NN')], [('date', 'NN'), ('sat', 'VBD'), ('16', 'CD'), ('aug', 'NN'), ('2014', 'CD'), ('043246', 'CD'), ('xxx', 'NN')], [('date', 'NN'), ('thu', 'NNS'), ('29', 'CD'), ('may', 'MD'), ('2014', 'CD'), ('022816', 'CD'), ('xxx', 'NN')], [('date', 'NN'), ('tue', 'NN'), ('22', 'CD'), ('jul', 'NN'), ('2014', 'CD'), ('025809', 'CD'), ('xxx', 'NN')], [('did', 'VBD'), ('select', 'JJ'), ('day', 'NN'), ('20140701', 'CD'), ('120000', 'CD'), ('yyyyy', 'NN')], [('my', 'PRP$'), ('bad', 'JJ'), ('pickedup', 'VBP'), ('the', 'DT'), ('timemissed', 'VBN'), ('the', 'DT'), ('tomorrow', 'NN')], [('docdate', 'NN'), ('08', 'CD'), ('aug', 'NN')], [('rani', 'NN'), ('weds', 'NNS')], [('july', 'RB'), ('12', 'CD'), ('and', 'CC'), ('yy', 'VB'), ('2014', 'CD')], [('please', 'VB'), ('do', 'VB'), ('not', 'RB'), ('forget', 'VB'), ('to', 'TO'), ('bring', 'VB'), ('your', 'PRP$'), ('calendar', 'NN'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('schedule', 'VB'), ('the', 'DT'), ('next', 'JJ'), ('y', 'NN'), ('meetings', 'NNS'), ('through', 'IN'), ('february', 'JJ')], [('y', 'NN'), ('xxxxxxx', 'NNP'), ('xxxxxxxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('csf', 'NN'), ('2014', 'CD'), ('yyy', 'NN'), ('feb', 'NN'), ('httpwwwstorytellinginstituteorg2htm', 'NN')], [('july', 'NN'), ('xxxxxxxxxx', 'NNS')], [('june', 'NN'), ('xxxxxxxxxx', 'NN')], [('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'NN'), ('date', 'NN'), ('saturday', 'JJ'), ('december', 'VB'), ('28', 'CD'), ('2013', 'CD'), ('time', 'NN'), ('yyyy', 'CC'), ('pm', 'NN'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxx', 'NN')], [('original', 'JJ'), ('message', 'NN'), ('subject', 'JJ'), ('xx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxx', 'NN'), ('from', 'IN'), ('xxxxxx', 'JJ'), ('xxxxx', 'NN'), ('date', 'NN'), ('mon', 'JJ'), ('november', 'RB'), ('11', 'CD'), ('2013', 'CD'), ('956', 'CD'), ('pm', 'NN'), ('to', 'TO'), ('xxxxx', 'VB'), ('xxxxx', 'NNP'), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'NN')], [('reservation', 'NN'), ('is', 'VBZ'), ('subject', 'JJ'), ('to', 'TO'), ('availability', 'NN'), ('offer', 'NN'), ('will', 'MD'), ('be', 'VB'), ('valid', 'JJ'), ('for', 'IN'), ('90', 'CD'), ('days', 'NNS'), ('from', 'IN'), ('the', 'DT'), ('day', 'NN'), ('of', 'IN'), ('issue', 'NN')], [('total', 'JJ'), ('number', 'NN'), ('of', 'IN'), ('unique', 'JJ'), ('visitors', 'NNS'), ('from', 'IN'), ('june', 'NN'), ('5th', 'CD'), ('to', 'TO'), ('30th', 'CD')], [('travel', 'NN'), ('safe', 'JJ'), ('tomorrow', 'NN')], [('a', 'DT'), ('yyyyy', 'JJ'), ('hour', 'NN'), ('commitment', 'NN'), ('into', 'IN'), ('late', 'JJ'), ('august', 'NN'), ('and', 'CC'), ('september', 'NN')], [('yyyyyyyyy', 'RB'), ('133339772', 'CD'), ('scibleryyyyyyyyb', 'NN'), ('did', 'VBD'), ('select', 'JJ'), ('day', 'NN'), ('20140815', 'CD'), ('120000', 'CD'), ('yyyyy', 'NN')], [('05', 'CD'), ('september', 'JJ'), ('xxxxxx', 'CD'), ('xxxxx', 'NN')], [('09', 'CD'), ('october', 'JJ'), ('xxxxx', 'NNP'), ('xxxx', 'NN')], [('0930', 'CD'), ('hrs', 'NN'), ('2nd', 'CD'), ('september', 'NN'), ('2014', 'CD'), ('xxxxxxx', 'NN'), ('xxxxxxxxxxxxx', 'NN')], [('y', 'RB'), ('upload', 'NN'), ('on', 'IN'), ('top', 'JJ'), ('products', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('week', 'NN')], [('yyyy', 'NN'), ('thursday', 'NN')], [('10th', 'CD'), ('october', 'JJ'), ('2013', 'CD'), ('thursday', 'NN'), ('at', 'IN'), ('yyyyy', 'NN'), ('am', 'VBP')], [('13', 'CD'), ('october', 'JJ'), ('xxxxx', 'NNP'), ('xxxxx', 'NN')], [('13', 'CD'), ('september', 'JJ'), ('xxxxxx', 'CD'), ('xxxxxxxxx', 'NN')], [('14', 'CD'), ('may', 'MD'), ('2014', 'CD'), ('wednesday', 'NN'), ('at', 'IN'), ('yyyy', 'NN'), ('pm', 'NN')], [('16', 'CD'), ('november', 'JJ'), ('x', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NN')], [('17', 'CD'), ('november', 'JJ'), ('xxxxxxxx', 'NN'), ('xxxxx', 'NN')], [('17', 'CD'), ('october', 'JJ'), ('xxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxx', 'NN')], [('17', 'CD'), ('september', 'JJ'), ('xxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxx', 'NN')], [('20140609', 'CD'), ('213456479', 'CD'), ('scibleryyyyyyyb', 'JJ'), ('assertion', 'NN'), ('failure', 'NN'), ('in', 'IN'), ('uidatepickerview', 'NN'), ('setdateanimatedforced', 'VBD'), ('sourcecacheuikitsimuikityyyyyyyyyuidatepickerviewmyyyy', 'NN')], [('20140609', 'CD'), ('213658119', 'CD'), ('scibleryyyyyyyb', 'JJ'), ('assertion', 'NN'), ('failure', 'NN'), ('in', 'IN'), ('uidatepickerview', 'NN'), ('setdateanimatedforced', 'VBD'), ('sourcecacheuikituikityyyyyyyyyuidatepickerviewmyyyy', 'NN')], [('20140612', 'CD'), ('184808464', 'CD'), ('scibleryyyyyyyb', 'NN'), ('func', 'NN'), ('calagendamonthcollectionviewlayout', 'NN'), ('collectionviewcontentsize', 'VBP'), ('line', 'NN'), ('yyy', 'NN'), ('content', 'NN'), ('size', 'NN'), ('yyyyy', 'NN'), ('yyy', 'NN')], [('20140628', 'CD'), ('081328962', 'CD'), ('scibleryyyyyyyb', 'NN'), ('did', 'VBD'), ('select', 'JJ'), ('day', 'NN'), ('y', 'VB')], [('20140629', 'CD'), ('195633841', 'CD'), ('scibleryyyyyyyb', 'NN'), ('url', 'NN')], [('20140718', 'CD'), ('104829373', 'CD'), ('scibleryyyyyyyyb', 'NN'), ('ud', 'JJ'), ('downloadtime', 'NN'), ('yyyyyyyy', 'NN')], [('20140805', 'CD'), ('094206361', 'CD'), ('scibleryyyyyyyyb', 'NN'), ('url', 'NN')], [('20140812', 'CD'), ('235108388', 'CD'), ('scibleryyyyyyb', 'NN'), ('error', 'NN'), ('error', 'NN'), ('domainxxxxxxxxxxxxxxxxxxxxxxx', 'NN'), ('xxxxyyyyy', 'NNP'), ('request', 'NN'), ('failed', 'VBD'), ('internal', 'JJ'), ('server', 'NN'), ('error', 'NN'), ('yyy', 'NN'), ('userinfo0x17066e4c0', 'JJ'), ('afnetworkingoperationfailingurlresponseerrorkey', 'NN'), ('url', 'JJ'), ('status', 'NN'), ('code', 'NN'), ('yyy', 'NN'), ('headers', 'NNS')], [('20140816', 'CD'), ('091707305', 'CD'), ('scibleryyyyyyb', 'NN'), ('error', 'NN'), ('error', 'NN'), ('domainxxxxxxxxxxxxxxxx', 'NN'), ('xxxxyyyyy', 'VBZ'), ('a', 'DT'), ('server', 'NN'), ('with', 'IN'), ('the', 'DT'), ('specified', 'VBN'), ('hostname', 'NN'), ('could', 'MD'), ('not', 'RB'), ('be', 'VB'), ('found', 'VBN')], [('20140817', 'CD'), ('235938680', 'CD'), ('scibleryyyyyyyb', 'NN'), ('error', 'NN'), ('error', 'NN'), ('domainxxxxxxxxxxxxxxxx', 'NN'), ('xxxxyyyyy', 'VBZ'), ('a', 'DT'), ('server', 'NN'), ('with', 'IN'), ('the', 'DT'), ('specified', 'VBN'), ('hostname', 'NN'), ('could', 'MD'), ('not', 'RB'), ('be', 'VB'), ('found', 'VBN')], [('20140818', 'CD'), ('072701872', 'CD'), ('scibleryyyyyyyyb', 'NN'), ('url', 'NN')], [('22', 'CD'), ('september', 'JJ'), ('x', 'NNP'), ('xxx', 'NNP'), ('x', 'NNP'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxx', 'NN')], [('23', 'CD'), ('october', 'JJ'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxx', 'NN')], [('25th', 'CD'), ('october', 'NN'), ('2013', 'CD')], [('27', 'CD'), ('november', 'JJ'), ('xxxxxxxx', 'NN')], [('28', 'CD'), ('october', 'JJ'), ('xxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxx', 'NN')], [('28', 'CD'), ('september', 'JJ'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxxxx', 'NN')], [('29', 'CD'), ('september', 'JJ'), ('x', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxx', 'NN')], [('y', 'RB'), ('th', 'NN'), ('to', 'TO'), ('yy', 'VB'), ('th', 'NN'), ('august', 'NN'), ('2014', 'CD'), ('in', 'IN'), ('xxxxxxxxx', 'NN')], [('xxxxx', 'NN'), ('i', 'NN'), ('faced', 'VBD'), ('following', 'VBG'), ('issues', 'NNS'), ('while', 'IN'), ('calling', 'VBG'), ('today', 'NN')], [('xxxxxx', 'JJ'), ('time', 'NN'), ('topicactivity', 'NN'), ('yyyypm', 'RB'), ('300pm', 'CD'), ('registrati', 'NNS')], [('an', 'DT'), ('interesting', 'JJ'), ('observation', 'NN'), ('on', 'IN'), ('18th', 'CD'), ('august', 'NN')], [('an', 'DT'), ('interesting', 'JJ'), ('observation', 'NN'), ('on', 'IN'), ('31st', 'CD'), ('july', 'NN')], [('as', 'IN'), ('of', 'IN'), ('now', 'RB'), ('we', 'PRP'), ('have', 'VBP'), ('the', 'DT'), ('following', 'NN'), ('that', 'WDT'), ('are', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('the', 'DT'), ('xxx', 'NNP'), ('dinner', 'NN'), ('on', 'IN'), ('friday', 'JJ'), ('20th', 'CD')], [('date', 'NN'), ('july', 'NN'), ('25', 'CD'), ('2014', 'CD'), ('time', 'NN'), ('430', 'CD'), ('pm', 'NN'), ('to', 'TO'), ('700pm', 'CD')], [('date', 'NN'), ('tuesday', 'JJ'), ('december', 'VB'), ('17', 'CD'), ('2013', 'CD')], [('date', 'NN'), ('thursday', 'NN'), ('21st', 'CD'), ('august', 'NN'), ('2014', 'CD'), ('time', 'NN'), ('yyyy', 'CC'), ('pm', 'NN'), ('registrations', 'NNS')], [('date', 'NN'), ('18th', 'CD'), ('july', 'NN'), ('2014', 'CD'), ('xxxxx', 'NNP'), ('ezcc', 'FW'), ('ib201', 'NN'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('xxxx', 'NNP'), ('lake', 'VBP'), ('xxxx', 'JJ'), ('xxxxxxx', 'NNP'), ('yyyyyy', 'NN')], [('date', 'NN'), ('and', 'CC'), ('time', 'NN'), ('6th', 'CD'), ('october', '$'), ('13', 'CD'), ('sunday', 'JJ'), ('1030', 'CD'), ('am', 'VBP'), ('1130pm', 'CD')], [('date', 'NN'), ('of', 'IN'), ('travel', 'NN'), ('30th', 'CD'), ('xxxx', '$'), ('02nd', 'CD'), ('oct', 'NN')], [('date', 'NN'), ('15th', 'CD'), ('aug', 'NN'), ('friday', 'NN')], [('date', 'NN'), ('september', 'VBD'), ('20', 'CD'), ('2013', 'CD'), ('time', 'NN'), ('900', 'CD'), ('am', 'VBP'), ('to', 'TO'), ('600', 'CD'), ('pm', 'NNS'), ('xxxxx', 'JJ'), ('xxxxxxx', 'VBP'), ('one', 'CD'), ('yyyyy', 'NN'), ('xxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxxxxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('yyy', 'NN'), ('yyy', 'NN')], [('date', 'NN'), ('sunday', 'NN'), ('july', 'VBD'), ('6', 'CD'), ('2014', 'CD')], [('date', 'NN'), ('sat', 'VBD'), ('sun', 'JJ'), ('17th', 'CD'), ('mayy', 'NN')], [('dates', 'NNS'), ('may', 'MD'), ('5th', 'VB'), ('to', 'TO'), ('9th', 'CD')], [('for', 'IN'), ('filing', 'VBG'), ('taxes', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('company', 'NN'), ('there', 'EX'), ('is', 'VBZ'), ('time', 'NN'), ('till', 'JJ'), ('september', 'NNP'), ('and', 'CC'), ('i', 'VB'), ('am', 'VBP'), ('coordinating', 'VBG'), ('on', 'IN'), ('it', 'PRP')], [('from', 'IN'), ('xxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('on', 'IN'), ('behalf', 'NN'), ('of', 'IN'), ('amol', 'JJ'), ('sarva', 'NN'), ('sent', 'VBD'), ('tuesday', 'JJ'), ('june', 'NN'), ('10', 'CD'), ('2014', 'CD'), ('452', 'CD'), ('am', 'VBP'), ('to', 'TO'), ('xxxxxxxxxxxxxxxxxxx', 'VB'), ('subject', 'JJ'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NN'), ('and', 'CC'), ('xxxxxxxx', 'NN'), ('thursday', 'NN')], [('from', 'IN'), ('emotiv', 'JJ'), ('newsletter', 'NN'), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'NN'), ('on', 'IN'), ('behalf', 'NN'), ('of', 'IN'), ('emotiv', 'JJ'), ('newsletter', 'NN'), ('sent', 'VBD'), ('06', 'CD'), ('june', 'NN'), ('2013', 'CD'), ('1625', 'CD'), ('to', 'TO')], [('goqii', 'NN'), ('total', 'JJ'), ('value', 'NN'), ('to', 'TO'), ('be', 'VB'), ('billed', 'VBN'), ('in', 'IN'), ('september', 'NN'), ('yyy', 'NN'), ('for', 'IN'), ('phase', 'NN'), ('y', 'NN')], [('xxxxxx', 'JJ'), ('xxxxxxxxxx', 'NNP'), ('june', 'NN'), ('2014', 'CD'), ('xxxxxxxx', 'NN')], [('hareesh', 'JJ'), ('prachod', 'NN'), ('xxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('will', 'MD'), ('be', 'VB'), ('attending', 'VBG'), ('xxxx', 'JJ'), ('sparks', 'NNS'), ('2013', 'CD'), ('event', 'NN'), ('tomorrow', 'NN')], [('hi', 'NN'), ('xxxxxxx', 'NN'), ('amended', 'VBD'), ('plan', 'NN'), ('we', 'PRP'), ('discussed', 'VBD'), ('during', 'IN'), ('the', 'DT'), ('presentation', 'NN'), ('with', 'IN'), ('tabs', 'NNS'), ('that', 'IN'), ('we', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('weekly', 'JJ'), ('demo', 'NN'), ('on', 'IN'), ('fridays', 'NNS')], [('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('writing', 'VBG'), ('to', 'TO'), ('xxxx', 'VB'), ('xxxxxx', 'RB'), ('today', 'NN'), ('to', 'TO'), ('initiate', 'VB'), ('xxxxxxxx', 'JJ'), ('incorporation', 'NN')], [('ist', 'NN'), ('date', 'NN'), ('sat', 'VBD'), ('sun', 'JJ'), ('31st', 'CD'), ('mayy', 'NN')], [('interesting', 'JJ'), ('observations', 'NNS'), ('on', 'IN'), ('07th', 'CD'), ('august', 'NN')], [('july', 'NN'), ('2014', 'CD'), ('issue', 'NN'), ('of', 'IN'), ('xxx', 'NNP'), ('will', 'MD'), ('be', 'VB'), ('covering', 'VBG'), ('a', 'DT'), ('special', 'JJ'), ('focus', 'NN'), ('on', 'IN'), ('xxxxxxxxxx', 'NN'), ('in', 'IN'), ('xxxxxxxxx', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('never', 'RB'), ('missed', 'VBN'), ('your', 'PRP$'), ('presence', 'NN'), ('in', 'IN'), ('our', 'PRP$'), ('karnataka', 'NNS'), ('issue', 'NN'), ('for', 'IN'), ('past', 'IN'), ('more', 'JJR'), ('than', 'IN'), ('a', 'DT'), ('decade', 'NN')], [('july', 'NN'), ('2014', 'CD'), ('issue', 'NN'), ('of', 'IN'), ('xxxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('will', 'MD'), ('be', 'VB'), ('covering', 'VBG'), ('a', 'DT'), ('special', 'JJ'), ('focus', 'NN'), ('on', 'IN'), ('xxxxxxxxxx', 'NN'), ('in', 'IN'), ('xxxxxxxxx', 'NN')], [('xxxx', 'JJ'), ('sat', 'VBD'), ('xxxxxxx', 'NNP'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('xxxxxxxxxthanks', 'VBZ'), ('a', 'DT'), ('lot', 'NN'), ('for', 'IN'), ('your', 'PRP$'), ('mail', 'NN')], [('june', 'NN'), ('4', 'CD'), ('wednesday', 'NN'), ('sewage', 'NN'), ('system', 'NN')], [('keep', 'VB'), ('an', 'DT'), ('eye', 'NN'), ('out', 'RP'), ('next', 'JJ'), ('week', 'NN'), ('for', 'IN'), ('how', 'WRB'), ('much', 'JJ'), ('was', 'VBD'), ('charged', 'VBN'), ('besides', 'IN'), ('the', 'DT'), ('tuition', 'NN'), ('fee', 'NN')], [('xxxxxxxx', 'NN'), ('has', 'VBZ'), ('just', 'RB'), ('completed', 'VBN'), ('his', 'PRP$'), ('xxx', 'NN'), ('from', 'IN'), ('xxx', 'NN'), ('in', 'IN'), ('april', 'NN'), ('2014', 'CD')], [('mar', 'NN'), ('14', 'CD'), ('2014', 'CD')], [('may', 'MD'), ('15th', 'CD'), ('april', 'NN'), ('4th', 'CD'), ('unavailable', 'JJ'), ('i', 'NN'), ('will', 'MD'), ('have', 'VB'), ('to', 'TO'), ('prepare', 'VB'), ('for', 'IN'), ('our', 'PRP$'), ('semester', 'JJ'), ('jury', 'NN'), ('scheduled', 'VBD'), ('during', 'IN'), ('1st', 'CD'), ('week', 'NN'), ('of', 'IN'), ('april', 'NN')], [('meeting', 'VBG'), ('with', 'IN'), ('xxxxxxxxx', 'NN'), ('to', 'TO'), ('discuss', 'VB'), ('fridays', 'NNS'), ('xxxxxxx', 'VB')], [('xmonday', 'JJ'), ('7', 'CD'), ('july', 'NN'), ('14', 'CD')], [('observation', 'NN'), ('y', 'PRP'), ('xxxxx', 'VBP'), ('xxxxx', 'JJ'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('yy', 'NN'), ('of', 'IN'), ('xxxxxx', 'NNP'), ('created', 'VBD'), ('better', 'RBR'), ('improvement', 'NN'), ('in', 'IN'), ('current', 'JJ'), ('weeks', 'NNS'), ('however', 'RB'), ('this', 'DT'), ('week', 'NN'), ('it', 'PRP'), ('came', 'VBD'), ('down', 'RB'), ('to', 'TO'), ('yy', 'VB'), ('please', 'NN'), ('check', 'VB')], [('xxxxxx', 'JJ'), ('number', 'NN'), ('yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy', 'NN'), ('order', 'NN'), ('date', 'NN'), ('jun', 'NN'), ('8', 'CD'), ('2014', 'CD'), ('94544', 'CD'), ('am', 'VBP'), ('xxx', 'JJ'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('proyyyy', 'VBZ'), ('tax', 'NN'), ('yyyyxxxxx', 'NN'), ('yyyy', 'JJ'), ('payment', 'NN'), ('methodimage', 'NN'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('visa1998', 'NN'), ('questions', 'NNS')], [('xxxxxx', 'JJ'), ('number', 'NN'), ('yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy', 'NN'), ('order', 'NN'), ('date', 'NN'), ('may', 'MD'), ('6', 'CD'), ('2014', 'CD'), ('92140', 'CD'), ('xxxx', 'JJ'), ('xxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('pro', 'JJ'), ('version', 'NN'), ('slidelockyyyy', 'NN'), ('tax', 'NN'), ('yyyyxxxxx', 'NN'), ('yyyy', 'JJ'), ('payment', 'NN'), ('methodimage', 'NN'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('visa0186', 'NN'), ('questions', 'NNS')], [('plans', 'NNS'), ('for', 'IN'), ('february', 'JJ')], [('qa', 'NN'), ('for', 'IN'), ('xxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('is', 'VBZ'), ('completed', 'VBN'), ('will', 'MD'), ('continue', 'VB'), ('with', 'IN'), ('the', 'DT'), ('testing', 'VBG'), ('for', 'IN'), ('xxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('tomorrow', 'NN')], [('qa', 'NNS'), ('have', 'VBP'), ('lined', 'VBN'), ('up', 'RP'), ('y', 'JJ'), ('candidates', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('week', 'NN')], [('return', 'NN'), ('xxxxxxx', 'NN'), ('to', 'TO'), ('xxxxxx', 'VB'), ('xxxxxx', 'NN'), ('to', 'TO'), ('xxxxxxxxx', 'VB'), ('0655', 'CD'), ('mar', 'NN'), ('10th', 'CD'), ('time', 'NN'), ('between', 'IN'), ('flights', 'NNS'), ('2hryyymn', 'CD')], [('sessiondate', 'JJ'), ('duration', 'NN'), ('in', 'IN'), ('mins', 'NNS'), ('participantcount', 'VBP'), ('20140512', 'CD'), ('y', 'NNS'), ('y', 'RB'), ('20140523', 'CD'), ('y', 'NNS'), ('y', 'RB'), ('20140523', 'CD'), ('y', 'NNS'), ('y', 'RB'), ('20140523', 'CD'), ('y', 'NNS'), ('y', 'RB'), ('20140523', 'CD'), ('yy', 'NNS'), ('yy', 'RB'), ('20140526', 'CD'), ('y', 'NNS'), ('yy', 'RB'), ('20140526', 'CD'), ('y', 'NNS'), ('yy', 'RB'), ('20140526', 'CD'), ('yy', 'NNS'), ('yy', 'NN')], [('xxxxxxx', 'JJ'), ('xxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('sheikhshuvo', 'NN')], [('xxxxxx', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('aprilyy', 'NN')], [('xxxxxx', 'JJ'), ('xxxxxx', 'NN'), ('should', 'MD'), ('be', 'VB'), ('about', 'RB'), ('close', 'RB'), ('to', 'TO'), ('done', 'VBN'), ('with', 'IN'), ('design', 'NN'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('switch', 'NN'), ('concepts', 'NNS'), ('y', 'VBP'), ('in', 'IN'), ('the', 'DT'), ('sunday', 'JJ'), ('xxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxx', 'NNP'), ('yyy', 'NN')], [('tasks', 'NNS'), ('planned', 'VBN'), ('for', 'IN'), ('tomorrow', 'NN'), ('date', 'NN'), ('y', 'NN')], [('themes', 'NNS'), ('portfolio', 'NN'), ('theme', 'NN'), ('y', 'NN'), ('theme', 'NN'), ('y', 'NN'), ('in', 'IN'), ('qa', 'JJ'), ('xxxxxxxxxx', 'JJ'), ('theme', 'NN'), ('y', 'NN'), ('theme', 'NN'), ('y', 'NN'), ('submitting', 'VBG'), ('to', 'TO'), ('xx', 'VB'), ('today', 'NN'), ('business', 'NN'), ('theme', 'NN'), ('y', 'NN'), ('theme', 'NN'), ('y', 'NN'), ('in', 'IN'), ('xxxxxxxx', 'NN')], [('to', 'TO'), ('be', 'VB'), ('fixed', 'VBN'), ('today', 'NN')], [('tomorrow', 'NN'), ('plan', 'NN')], [('updated', 'VBN'), ('thursday', 'JJ'), ('yyyyy', 'NN')], [('we', 'PRP'), ('all', 'DT'), ('will', 'MD'), ('wait', 'VB'), ('to', 'TO'), ('see', 'VB'), ('you', 'PRP'), ('on', 'IN'), ('the', 'DT'), ('big', 'JJ'), ('day', 'NN'), ('of', 'IN'), ('my', 'PRP$'), ('life', 'NN')], [('week', 'NN'), ('of', 'IN'), ('yyyyy', 'NN'), ('aug', 'NN'), ('xxxxx', 'NNP'), ('will', 'MD'), ('help', 'VB'), ('harness', 'VB'), ('with', 'IN'), ('details', 'NNS'), ('of', 'IN'), ('xxxxxxxx', 'NN'), ('and', 'CC')], [('for', 'IN'), ('the', 'DT'), ('xxxxxxxx', 'NN'), ('of', 'IN'), ('xxxxxxs', 'NNP'), ('xxxxxxx', 'NNP'), ('towards', 'NNS'), ('xxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('july', 'RB'), ('7', 'CD'), ('2014', 'CD'), ('xxxx', 'NN'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxx', 'NN')], [('yy', 'RB'), ('issues', 'NNS'), ('out', 'IN'), ('of', 'IN'), ('which', 'WDT'), ('y', 'EX'), ('are', 'VBP'), ('xxxxxx', 'JJ'), ('issues', 'NNS'), ('may', 'MD'), ('annual', 'JJ'), ('august', 'NN')], [('date', 'NN'), ('friday', 'NN'), ('july', 'VBZ'), ('4th', 'CD')], [('11052014', 'CD'), ('nicht', 'JJ'), ('im', 'NN'), ('bro', 'NN')], [('11am', 'CD'), ('to', 'TO'), ('yyyyypm', 'VB'), ('defiling', 'VBG'), ('xxxxxxx', 'JJ'), ('statement', 'NN'), ('and', 'CC'), ('address', 'NN'), ('by', 'IN'), ('the', 'DT'), ('keynote', 'NN'), ('sponsor', 'NN')], [('yy', 'NN'), ('customers', 'NNS'), ('by', 'IN'), ('april', 'JJ'), ('30th', 'NNS')], [('xxx', 'JJ'), ('xxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('augy', 'NN')], [('allocation', 'NN'), ('of', 'IN'), ('fresh', 'JJ'), ('leaves', 'NNS'), ('to', 'TO'), ('all', 'DT'), ('from', 'IN'), ('1st', 'CD'), ('january', 'JJ'), ('2014', 'CD')], [('august', 'RB'), ('planning', 'VBG'), ('review', 'NN'), ('feedback', 'NN'), ('primary', 'JJ'), ('input', 'NN'), ('was', 'VBD'), ('to', 'TO'), ('focus', 'VB')], [('deadline', 'NN'), ('for', 'IN'), ('this', 'DT'), ('next', 'JJ'), ('weekend', 'NN'), ('13th', 'CD'), ('dec', 'NN')], [('delivery', 'NN'), ('start', 'NN'), ('1st', 'CD'), ('week', 'NN'), ('of', 'IN'), ('june', 'NN'), ('our', 'PRP$'), ('caveat', 'NN'), ('actually', 'RB'), ('he', 'PRP'), ('wants', 'VBZ'), ('asap', 'JJ')], [('do', 'VBP'), ('we', 'PRP'), ('setup', 'VB'), ('multiple', 'JJ'), ('branches', 'NNS'), ('in', 'IN'), ('code', 'NN'), ('repositories', 'NNS'), ('as', 'IN'), ('of', 'IN'), ('today', 'NN')], [('due', 'JJ'), ('date', 'NN'), ('7th', 'CD'), ('jan', 'NN')], [('friday', 'JJ'), ('tomorrow', 'NN'), ('jan', 'NN'), ('3rd', 'CD'), ('6', 'CD'), ('pm', 'NN'), ('ist', 'NN'), ('monday', 'NN'), ('jan', 'VBD'), ('6th', 'CD'), ('6', 'CD'), ('pm', 'NNS'), ('ist', 'NN')], [('from', 'IN'), ('monday', 'JJ'), ('pitch', 'NN'), ('practice', 'NN'), ('will', 'MD'), ('be', 'VB'), ('held', 'VBN')], [('identify', 'VB'), ('broad', 'JJ'), ('goal', 'NN'), ('for', 'IN'), ('the', 'DT'), ('coming', 'VBG'), ('sprint', 'NN'), ('starting', 'VBG'), ('tomorrow', 'NN'), ('and', 'CC'), ('identify', 'VB'), ('individual', 'JJ'), ('tasks', 'NNS'), ('with', 'IN'), ('an', 'DT'), ('estimatenumber', 'NN'), ('of', 'IN'), ('hours', 'NNS'), ('for', 'IN'), ('each', 'DT'), ('sub', 'NN'), ('task', 'NN')], [('if', 'IN'), ('docdatetime', 'NN'), ('is', 'VBZ'), ('weekend', 'NN')], [('xxxxx', 'NN'), ('for', 'IN'), ('xxxx', 'JJ'), ('vacation', 'NN'), ('task', 'NN'), ('the', 'DT'), ('due', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('appears', 'VBZ'), ('above', 'IN')], [('netnet', 'IN'), ('the', 'DT'), ('following', 'JJ'), ('capabilities', 'NNS'), ('stand', 'VBP'), ('out', 'RP'), ('in', 'IN'), ('the', 'DT'), ('product', 'NN'), ('as', 'IN'), ('it', 'PRP'), ('stands', 'VBZ'), ('today', 'NN')], [('payment', 'NN'), ('recd', 'NN'), ('between', 'IN'), ('yyyy', 'NN'), ('to', 'TO'), ('21st', 'CD'), ('dec', 'NN'), ('late', 'JJ'), ('payment', 'NN'), ('fee', 'NN'), ('rs', 'NN'), ('yyy', 'NN')], [('payment', 'NN'), ('recd', 'NN'), ('between', 'IN'), ('yyyy', 'NN'), ('to', 'TO'), ('28th', 'CD'), ('dec', 'NN'), ('late', 'JJ'), ('payment', 'NN'), ('fee', 'NN'), ('rs', 'NN'), ('yyy', 'NN')], [('payment', 'NN'), ('recd', 'NN'), ('between', 'IN'), ('8th', 'CD'), ('to', 'TO'), ('14th', 'CD'), ('dec', 'NN'), ('late', 'JJ'), ('payment', 'NN'), ('fee', 'NN'), ('rs', 'NN'), ('yy', 'NN')], [('payment', 'NN'), ('recd', 'NN'), ('between', 'IN'), ('8th', 'CD'), ('to', 'TO'), ('14th', 'CD'), ('jan', 'NN'), ('late', 'JJ'), ('payment', 'NN'), ('fee', 'NN'), ('rs', 'NN'), ('yy', 'NN')], [('prepare', 'NN'), ('for', 'IN'), ('xxx', 'JJ'), ('2014', 'CD'), ('xxxx', 'NN'), ('date', 'NN'), ('5th', 'CD'), ('jan', 'NN'), ('2014', 'CD')], [('schneider', 'NN'), ('xxxxxxxxxx', 'NN'), ('for', 'IN'), ('2', 'CD'), ('days', 'NNS'), ('starting', 'VBG'), ('monday', 'NN'), ('confirmed', 'VBD')], [('stupio', 'NN'), ('na', 'TO'), ('snagu', 'VB'), ('pravilnik', 'FW'), ('o', 'FW'), ('gospodarenju', 'NN'), ('otpadom', 'NN'), ('25022014', 'CD')], [('the', 'DT'), ('clientdate', 'NN'), ('is', 'VBZ'), ('correctly', 'RB'), ('being', 'VBG'), ('sent', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('server', 'NN'), ('below', 'IN'), ('are', 'VBP'), ('xxxxxxs', 'JJ'), ('and', 'CC'), ('my', 'PRP$'), ('examples', 'NNS'), ('tue', 'VBP'), ('jun', 'NN'), ('03', 'CD'), ('2014', 'CD'), ('214841', 'CD'), ('gmt0700', 'NN'), ('xxx', 'NNS'), ('wedjun04yyyyyyyyyyyy3a07gmt2b0530ist', 'VBP')], [('thursday', 'JJ'), ('yyyyy', 'NN'), ('at', 'IN'), ('3pm', 'CD'), ('in', 'IN'), ('xxxxxxxx', 'NN')], [('thursday', 'NN'), ('august', 'VBZ'), ('7th', 'CD')], [('total', 'JJ'), ('number', 'NN'), ('of', 'IN'), ('documents', 'NNS'), ('converted', 'VBN'), ('in', 'IN'), ('june', 'NN'), ('yy', 'NN'), ('yyy', 'NN'), ('xxxx', 'VBD'), ('the', 'DT'), ('word', 'NN'), ('moved', 'VBD'), ('to', 'TO'), ('new', 'JJ'), ('v2', 'NN'), ('apis', 'NN'), ('on', 'IN'), ('21st', 'CD'), ('june', 'NN'), ('2014', 'CD'), ('total', 'JJ'), ('number', 'NN'), ('of', 'IN'), ('documents', 'NNS'), ('converted', 'VBN'), ('from', 'IN'), ('22nd', 'CD'), ('june', 'NN'), ('to', 'TO'), ('30th', 'CD'), ('june', 'NN'), ('yy', 'CD'), ('yyy', 'NN')], [('tuesday', 'NN'), ('15th', 'CD')], [('xxxxxxxx', 'NN'), ('from', 'IN'), ('2153pm', 'CD')], [('uploads', 'NNS'), ('of', 'IN'), ('product', 'NN'), ('of', 'IN'), ('the', 'DT'), ('week', 'NN'), ('on', 'IN'), ('homepage', 'NN')], [('we', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('allocate', 'VB'), ('tasks', 'NNS'), ('to', 'TO'), ('thursday', 'VB'), ('friday', 'JJ'), ('saturday', 'NN'), ('and', 'CC'), ('sunday', 'NN')], [('we', 'PRP'), ('are', 'VBP'), ('looking', 'VBG'), ('to', 'TO'), ('have', 'VB'), ('yyyyy', 'VBN'), ('interviews', 'NNS'), ('by', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('appointments', 'NNS'), ('in', 'IN'), ('calendar', 'NN'), ('for', 'IN'), ('today', 'NN')], [('other', 'JJ'), ('brand', 'NN'), ('building', 'VBG'), ('efforts', 'NNS'), ('no', 'DT'), ('action', 'NN'), ('for', 'IN'), ('this', 'DT'), ('month', 'NN'), ('till', 'IN'), ('we', 'PRP'), ('know', 'VBP'), ('about', 'IN'), ('our', 'PRP$'), ('financial', 'JJ'), ('status', 'NN')], [('performio', 'NN'), ('contract', 'NN'), ('should', 'MD'), ('be', 'VB'), ('in', 'IN'), ('before', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('this', 'DT'), ('week', 'NN')], [('pubdate', 'NN'), ('20140804t053633000z', 'CD')], [('within', 'IN'), ('january', 'JJ'), ('all', 'PDT'), ('the', 'DT'), ('material', 'NN'), ('required', 'VBN'), ('for', 'IN'), ('the', 'DT'), ('sales', 'NNS'), ('xxxx', 'VBP'), ('will', 'MD'), ('be', 'VB'), ('addressed', 'VBN'), ('and', 'CC'), ('the', 'DT'), ('obstacles', 'NNS'), ('coming', 'VBG'), ('in', 'IN'), ('the', 'DT'), ('way', 'NN'), ('need', 'NN'), ('to', 'TO'), ('be', 'VB'), ('removed', 'VBN')], [('xxxxxxxxxxxxx', 'JJ'), ('founder', 'NN'), ('xxxxxxxxxxxx', 'NNP'), ('reach', 'VBZ'), ('out', 'RP'), ('to', 'TO'), ('your', 'PRP$'), ('xxxxxxxx', 'NNS'), ('today', 'NN')], [('on', 'IN'), ('mon', 'NNS'), ('12', 'CD'), ('may', 'MD'), ('2014', 'CD'), ('164350', 'CD'), ('yyyyy', 'NN'), ('xxxxxxx', 'NNP'), ('xx', 'NNP'), ('xxx', 'NNP'), ('wrote', 'VBD')], [('on', 'IN'), ('mon', '$'), ('16', 'CD'), ('jun', 'NN'), ('2014', 'CD'), ('184010', 'CD'), ('yyyyy', 'NN'), ('xxxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('wrote', 'VBD')], [('on', 'IN'), ('sat', 'JJ'), ('14', 'CD'), ('jun', 'NN'), ('2014', 'CD'), ('180155', 'CD'), ('yyyyy', 'NN'), ('gaurav', 'NN'), ('wrote', 'VBD')], [('on', 'IN'), ('sun', 'NN'), ('29', 'CD'), ('jun', 'NN'), ('2014', 'CD'), ('045432', 'CD'), ('yyyyy', 'NN'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('wrote', 'VBD')], [('on', 'IN'), ('thu', 'NNS'), ('15', 'CD'), ('may', 'MD'), ('2014', 'CD'), ('141436', 'CD'), ('yyyyy', 'NN'), ('xxxxxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('wrote', 'VBD')], [('on', 'IN'), ('tue', 'NN'), ('03', 'CD'), ('jun', 'NN'), ('2014', 'CD'), ('113852', 'CD'), ('yyyyy', 'NN'), ('xxxxxxx', 'NNP'), ('xx', 'NNP'), ('xxx', 'NNP'), ('wrote', 'VBD')], [('on', 'IN'), ('tue', 'NN'), ('19', 'CD'), ('aug', 'NN'), ('2014', 'CD'), ('154445', 'CD'), ('yyyyy', 'NN'), ('xxxxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('wrote', 'VBD')], [('on', 'IN'), ('wed', '$'), ('18', 'CD'), ('jun', 'NN'), ('2014', 'CD'), ('183635', 'CD'), ('yyyyy', 'NN'), ('xxxxxxx', 'NNP'), ('wrote', 'VBD')], [('on', 'IN'), ('wed', '$'), ('30', 'CD'), ('jul', 'NN'), ('2014', 'CD'), ('215510', 'CD'), ('yyyyy', 'NN'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('wrote', 'VBD')], [('forwarded', 'VBN'), ('by', 'IN'), ('xxxx', 'NNP'), ('xxxxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('xxxxxx', 'VBD'), ('06102014', 'CD'), ('0551', 'CD'), ('am', 'VBP')], [('forwarded', 'VBN'), ('by', 'IN'), ('xxxx', 'NNP'), ('xxxxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('xxxxxx', 'VBD'), ('06302014', 'CD'), ('0755', 'CD'), ('pm', 'NN')], [('forwarded', 'VBN'), ('by', 'IN'), ('xxxx', 'NNP'), ('xxxxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('xxxxxx', 'VBD'), ('06302014', 'CD'), ('1101', 'CD'), ('pm', 'NN')], [('forwarded', 'VBN'), ('by', 'IN'), ('xxxxxx', 'NNP'), ('xxxxxxxxxxxxxxxxx', 'NNP'), ('xxxxxx', 'VBD'), ('06302014', 'CD'), ('0905', 'CD'), ('pm', 'NN')], [('sms', 'NNS'), ('to', 'TO'), ('yyyyyyyyyyyyy', 'VB'), ('sent', 'NN'), ('may', 'MD'), ('6', 'CD'), ('2014', 'CD'), ('529', 'CD'), ('pm', 'NN')], [('original', 'JJ'), ('message', 'NN'), ('subject', 'JJ'), ('xxxxx', 'NNP'), ('sunday', 'NN'), ('date', 'NN'), ('wed', 'VBD'), ('9', 'CD'), ('oct', 'NN'), ('2013', 'CD'), ('183227', 'CD'), ('yyyyy', 'NN'), ('from', 'IN'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('x', 'NNP'), ('to', 'TO'), ('xxxxxxxxxxxxxxxxxxxxxx', 'VB')], [('forwarded', 'VBN'), ('message', 'NN'), ('date', 'NN'), ('thu', 'VBD'), ('7', 'CD'), ('nov', 'JJ'), ('2013', 'CD'), ('124826', 'CD'), ('yyyyy', 'NN')], [('forwarded', 'VBN'), ('message', 'NN'), ('from', 'IN'), ('xxxxxx', 'JJ'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('date', 'NN'), ('tue', 'NN'), ('oct', 'IN'), ('1', 'CD'), ('2013', 'CD'), ('at', 'IN'), ('718', 'CD'), ('pm', 'NN'), ('subject', 'JJ'), ('xxxx', 'NNP'), ('xxxxxxxxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('x', 'NNP'), ('batch', 'NN'), ('y', 'NN'), ('xxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('to', 'TO'), ('xxxxxxxxxx', 'VB'), ('x', 'NNP'), ('xx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxxxx', 'NN')], [('forwarded', 'VBN'), ('message', 'NN'), ('from', 'IN'), ('xxxxx', 'JJ'), ('xxxn', 'NN'), ('date', 'NN'), ('tue', 'NN'), ('jan', 'NN'), ('7', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('218', 'CD'), ('pm', 'NN'), ('subject', 'JJ'), ('xx', 'NNP'), ('your', 'PRP$'), ('xxx', 'NN'), ('xxxxx', 'JJ'), ('weekend', 'NN'), ('project', 'NN'), ('to', 'TO'), ('xxxxx', 'VB'), ('xxxxxxx', 'NN')], [('forwarded', 'VBN'), ('message', 'NN'), ('from', 'IN'), ('xxxxxxxx', 'JJ'), ('date', 'NN'), ('thu', 'NN'), ('oct', 'IN'), ('3', 'CD'), ('2013', 'CD'), ('at', 'IN'), ('127', 'CD'), ('pm', 'NN'), ('subject', 'JJ'), ('xxxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('also', 'RB'), ('commented', 'VBD'), ('on', 'IN'), ('her', 'PRP'), ('status', 'NN')], [('forwarded', 'VBN'), ('message', 'NN'), ('from', 'IN'), ('xxx', 'JJ'), ('xxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('date', 'NN'), ('fri', 'NN'), ('oct', 'IN'), ('25', 'CD'), ('2013', 'CD'), ('at', 'IN'), ('434', 'CD'), ('pm', 'NN'), ('subject', 'JJ'), ('xx', 'NNP'), ('xxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('confirmation', 'NN'), ('of', 'IN'), ('presentation', 'NN'), ('and', 'CC'), ('other', 'JJ'), ('timeline', 'NN'), ('details', 'NNS'), ('to', 'TO'), ('xxxxxxx', 'VB'), ('xxxxx', 'NN')], [('forwarded', 'VBN'), ('message', 'NN'), ('from', 'IN'), ('xxxxxxxx', 'JJ'), ('xxxxxx', 'NN'), ('date', 'NN'), ('mon', 'NN'), ('nov', 'RB'), ('4', 'CD'), ('2013', 'CD'), ('at', 'IN'), ('1150', 'CD'), ('pm', 'NN'), ('subject', 'JJ'), ('xxxxxxxx', 'NNP'), ('belt', 'NN'), ('and', 'CC'), ('roller', 'NN'), ('issue', 'NN'), ('to', 'TO'), ('xxxxxxxxxx', 'VB'), ('mm', 'JJ'), ('cc', 'NN'), ('g', 'NN'), ('g', 'NN'), ('p', 'NN'), ('p', 'NN'), ('v', 'NN'), ('shenoy', 'NN')], [('forwarded', 'VBN'), ('message', 'NN'), ('from', 'IN'), ('xxxxx', 'JJ'), ('sales', 'NNS'), ('date', 'NN'), ('fri', 'VBD'), ('nov', 'RB'), ('8', 'CD'), ('2013', 'CD'), ('at', 'IN'), ('705', 'CD'), ('pm', 'NN'), ('subject', 'JJ'), ('xx', 'NNP'), ('ticket', 'NN'), ('yyyyyyyyyyyyyyyy', 'NN'), ('xxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('to', 'TO'), ('xxxxxxxxxxxxxxxx', 'VB')], [('forwarded', 'VBN'), ('message', 'NN'), ('from', 'IN'), ('ra', 'JJ'), ('sa', 'NN'), ('date', 'NN'), ('mon', 'NN'), ('feb', 'VBD'), ('17', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('352', 'CD'), ('pm', 'NN'), ('subject', 'JJ'), ('xx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('house', 'NN'), ('flat', 'NN')], [('original', 'JJ'), ('message', 'NN'), ('subject', 'JJ'), ('lecture', 'NN'), ('xxxx', 'VBZ'), ('16th', 'CD'), ('dec', 'NN'), ('2013', 'CD'), ('xxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('and', 'CC'), ('xxxxxxxxx', 'NNP'), ('xxxxx', 'NNP')], [('xxxxxx', 'JJ'), ('xxxxxxx', '$'), ('15', 'CD'), ('mar', 'NN'), ('2014', 'CD'), ('1148am', 'CD'), ('yyyyy', 'NN')], [('xxxxxx', 'JJ'), ('xxxxxxx', '$'), ('28', 'CD'), ('jun', 'NN'), ('2014', 'CD'), ('1214', 'CD'), ('pm', 'NN'), ('yyyyy', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('212014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('for', 'IN'), ('as', 'RB'), ('low', 'JJ'), ('as', 'IN'), ('y', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('222014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('for', 'IN'), ('as', 'RB'), ('low', 'JJ'), ('as', 'IN'), ('y', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('332014', 'CD')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('2102014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('for', 'IN'), ('as', 'RB'), ('low', 'JJ'), ('as', 'IN'), ('yyyy', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('222014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('for', 'IN'), ('as', 'RB'), ('low', 'JJ'), ('as', 'IN'), ('yyyy', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('212014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('for', 'IN'), ('as', 'RB'), ('low', 'JJ'), ('as', 'IN'), ('yyyy', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('332014', 'CD')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('1112014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('today', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('392014', 'CD')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('5132014', 'CD')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('392014', 'CD')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxx', 'JJ'), ('date', 'NN'), ('2142014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('for', 'IN'), ('as', 'RB'), ('low', 'JJ'), ('as', 'IN'), ('yyyy', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxx', 'JJ'), ('date', 'NN'), ('1172014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('today', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxx', 'JJ'), ('date', 'NN'), ('2142014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('for', 'IN'), ('as', 'RB'), ('low', 'JJ'), ('as', 'IN'), ('yyyy', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxx', 'JJ'), ('date', 'NN'), ('222014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('for', 'IN'), ('as', 'RB'), ('low', 'JJ'), ('as', 'IN'), ('yyyy', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('3162014', 'CD')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('112014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('today', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('1162014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('today', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('162014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('today', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('142014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('today', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('1102014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('today', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('3162014', 'CD')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('382014', 'CD')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('1302014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('for', 'IN'), ('as', 'RB'), ('low', 'JJ'), ('as', 'IN'), ('y', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('312014', 'CD')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('1222014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('today', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('1222014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('today', 'NN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('252014', 'CD'), ('renew', 'NN'), ('your', 'PRP$'), ('domains', 'NNS'), ('for', 'IN'), ('as', 'RB'), ('low', 'JJ'), ('as', 'IN')], [('xxxxxxxxxxxxx', 'NN'), ('domain', 'NN'), ('renewal', 'NN'), ('xxxxxx', 'NN'), ('for', 'IN'), ('xxxxxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('date', 'NN'), ('312014', 'CD')], [('20131213', 'CD'), ('014303', 'CD'), ('try', 'NN'), ('2', 'CD'), ('httplocalhost1935vodmp4comedykapil13g3gpplaylistm3u8', 'NN'), ('connecting', 'VBG'), ('to', 'TO'), ('localhost', 'VB'), ('localhostyyyyyyyyyyyyyy', 'NN'), ('failed', 'JJ'), ('connection', 'NN'), ('refused', 'VBD')], [('yyy', 'JJ'), ('students', 'NNS'), ('were', 'VBD'), ('added', 'VBN'), ('in', 'IN'), ('lite', 'JJ'), ('version', 'NN'), ('on', 'IN'), ('17th', 'CD'), ('july', 'NN')], [('rooms', 'NNS'), ('dining', 'VBG'), ('meetings', 'NNS'), ('offers', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('completed', 'VBN'), ('by', 'IN'), ('tuesday', 'NN'), ('xxx', 'NN'), ('7114', 'CD')], [('february', 'JJ'), ('22nd', 'CD'), ('xxxx', 'JJ'), ('primary', 'JJ'), ('xxxxxx', 'NN'), ('xxxxxxxx', 'NNP'), ('tournament', 'NN'), ('march', 'NN'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('issued', 'VBD'), ('march', 'JJ'), ('14th', 'CD'), ('parentteacher', 'NN'), ('conference', 'NN'), ('march', 'NN'), ('xxxxxxxxxx', 'NNP'), ('yy', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('march', 'VBD'), ('24th', 'CD'), ('term', 'NN'), ('y', 'NN'), ('begins', 'VBZ'), ('march', '$'), ('27th', 'CD'), ('xxxx', 'JJ'), ('celebrations', 'NNS'), ('march', 'VBP'), ('31st', 'CD'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('no', 'DT'), ('sc', 'NN')], [('usually', 'RB'), ('offer', 'VBP'), ('letters', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('given', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('day', 'NN'), ('right', 'VBD')], [('memu', 'NN'), ('andaram', 'NN'), ('genthukuntu', 'NN'), ('vastham', 'NN'), ('call', 'NN'), ('sometime', 'RB'), ('in', 'IN'), ('jan', 'NN'), ('xx', 'NNP'), ('nenu', 'NN'), ('appati', 'NN'), ('varaku', 'NN'), ('busy', 'JJ')], [('y', 'NN'), ('today', 'NN'), ('y', 'VBP'), ('tomorrow', 'NN'), ('yyy', 'NN'), ('later', 'RB')], [('01062014', 'CD'), ('18', 'CD'), ('days', 'NNS')], [('03rd', 'CD'), ('april', 'JJ'), ('2014', 'CD'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxx', 'NN')], [('04', 'CD'), ('jun', 'NN'), ('2014', 'CD'), ('cx5153', 'NN')], [('04', 'CD'), ('march', 'NN'), ('4pminenco', 'CD'), ('energy', 'NN'), ('analyst', 'NN'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('is', 'VBZ'), ('quoted', 'VBN'), ('today', 'NN'), ('alongside', 'IN'), ('world', 'NN'), ('leaders', 'NNS'), ('commenting', 'VBG'), ('on', 'IN'), ('current', 'JJ'), ('xxxxxxx', 'JJ'), ('conflict', 'NN'), ('httptco1jzvj1msup5', 'NN')], [('05082014', 'CD')], [('05012014', 'CD'), ('details', 'NNS'), ('for', 'IN'), ('trip', 'NN'), ('no', 'DT'), ('yyyyyyyyyy', 'NN'), ('223319', 'CD')], [('05132014', 'CD'), ('details', 'NNS'), ('for', 'IN'), ('trip', 'NN'), ('no', 'DT'), ('yyyyyyyyyy', 'NN'), ('235202', 'CD')], [('05232014', 'CD'), ('details', 'NNS'), ('for', 'IN'), ('trip', 'NN'), ('no', 'DT'), ('yyyyyyyyyy', 'NN'), ('092333', 'CD')], [('08082014', 'CD')], [('09', 'CD'), ('november', 'JJ'), ('2013', 'CD')], [('0945', 'CD'), ('am', 'VBP'), ('sun', 'JJ'), ('yyyyyyyyyy', 'NN'), ('pm', 'NN'), ('sun', 'VBD'), ('09226h', 'CD'), ('50m', 'CD'), ('0nana', 'CD'), ('nayyyyy', 'JJ'), ('xxxxxxxx', 'NN'), ('details', 'NNS')], [('1', 'CD'), ('06152014', 'CD'), ('1401', 'CD'), ('06302014', 'CD'), ('2400', 'CD'), ('xxxxxx', 'NN'), ('mm', 'NN'), ('o', 'NN')], [('y', 'RB'), ('new', 'JJ'), ('emails', 'NNS'), ('in', 'IN'), ('your', 'PRP$'), ('spam', 'NN'), ('folder', 'NN'), ('xxxxxx', 'NNP'), ('report', 'NN'), ('from', 'IN'), ('14022014', 'CD')], [('1', 'CD'), ('yyb', 'JJ'), ('election', 'NN'), ('this', 'DT'), ('needs', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('completed', 'VBN'), ('and', 'CC'), ('signed', 'VBN'), ('and', 'CC'), ('mailed', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('xxx', 'NN'), ('at', 'IN'), ('the', 'DT'), ('address', 'NN'), ('shown', 'VBN'), ('within', 'IN'), ('30', 'CD'), ('days', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('grant', 'NN'), ('date', 'NN'), ('march', 'NN'), ('2', 'CD')], [('1', 'CD'), ('e4s', 'JJ'), ('invoiceinvoice', 'NN'), ('dashboarddelete', 'NN'), ('y', 'NN'), ('entries', 'NNS'), ('ie', 'VBP'), ('e4s20140905', 'JJ'), ('e4s20140804', 'NN')], [('1', 'CD'), ('fyi', 'NN'), ('for', 'IN'), ('xxxxxxxxx', 'NN'), ('with', 'IN'), ('lots', 'NNS'), ('of', 'IN'), ('this', 'DT'), ('weeks', 'NNS'), ('offer', 'VBP'), ('etc', 'RB'), ('2', 'CD'), ('if', 'IN'), ('xxxxx', 'VBN'), ('laws', 'NNS'), ('apply', 'VBP'), ('to', 'TO'), ('you', 'PRP'), ('xxxx', 'VB'), ('or', 'CC'), ('all', 'DT'), ('of', 'IN'), ('the', 'DT'), ('above', 'JJ'), ('disclaimers', 'NNS'), ('exclusions', 'NNS'), ('or', 'CC'), ('limitations', 'NNS'), ('may', 'MD'), ('xxx', 'VB'), ('xxxxx', 'NN'), ('to', 'TO'), ('you', 'PRP'), ('and', 'CC'), ('you', 'PRP'), ('might', 'MD'), ('have', 'VB'), ('additional', 'JJ'), ('rights', 'NNS')], [('1', 'CD'), ('i', 'NN'), ('am', 'VBP'), ('attending', 'VBG'), ('the', 'DT'), ('openstack', 'NN'), ('event', 'NN'), ('next', 'JJ'), ('week', 'NN'), ('on', 'IN'), ('wed', 'NN'), ('and', 'CC'), ('thursday', 'NN'), ('in', 'IN'), ('xxxxxxx', 'NN')], [('1', 'CD'), ('our', 'PRP$'), ('xxxxxxx', 'NN'), ('xxxxxxxx', 'NN'), ('attended', 'VBD'), ('to', 'TO'), ('the', 'DT'), ('xxxx', 'NN'), ('on', 'IN'), ('1382014', 'CD')], [('1', 'CD'), ('the', 'DT'), ('sentimeter', 'NN'), ('should', 'MD'), ('say', 'VB'), ('positive', 'JJ'), ('sentiment', 'NN'), ('today', 'NN'), ('and', 'CC'), ('the', 'DT'), ('meter', 'NN'), ('has', 'VBZ'), ('to', 'TO'), ('display', 'VB'), ('only', 'RB'), ('green', 'JJ'), ('and', 'CC'), ('red', 'JJ'), ('even', 'RB'), ('if', 'IN'), ('its', 'PRP$'), ('yyy', 'NN'), ('sentiment', 'NN')], [('1', 'CD'), ('wave', 'NN'), ('axis', 'NN'), ('will', 'MD'), ('deliver', 'VB'), ('the', 'DT'), ('s', 'NN'), ('pm', 'NN'), ('by', 'IN'), ('220814', 'CD'), ('also', 'RB'), ('to', 'TO'), ('ensure', 'VB'), ('that', 'IN'), ('default', 'NN'), ('pokayoke', 'VBD'), ('xxxxx', 'NNS')], [('1', 'CD'), ('we', 'PRP'), ('need', 'VBP'), ('the', 'DT'), ('xxxx', 'NNP'), ('xxx', 'NNP'), ('statement', 'NN'), ('for', 'IN'), ('the', 'DT'), ('month', 'NN'), ('for', 'IN'), ('august', 'NN'), ('2013', 'CD')], [('1aug', 'CD')], [('13014', 'CD'), ('meeting', 'NN')], [('yy', 'JJ'), ('final', 'JJ'), ('xxxxxxxx', 'NN'), ('xxxxxxxx', 'NN'), ('to', 'TO'), ('be', 'VB'), ('completed', 'VBN'), ('by', 'IN'), ('15th', 'CD'), ('of', 'IN'), ('february', 'JJ')], [('yy', 'NN'), ('amfeb', 'NN'), ('yy', 'NN'), ('xxxxxxxxxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('lab', 'NN'), ('february', 'JJ'), ('session', 'NN'), ('gravitytank', 'NN'), ('will', 'MD'), ('conduct', 'VB'), ('two', 'CD'), ('workshops', 'NNS'), ('for', 'IN'), ('xxxxxxxxxxxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('yyyys', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('of', 'IN'), ('xxxxxxxxxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('xxx', 'NNP'), ('class', 'NN')], [('10', 'CD'), ('am', 'VBP'), ('xxx', 'NN'), ('is', 'VBZ'), ('good', 'JJ'), ('for', 'IN'), ('me', 'PRP'), ('as', 'RB'), ('well', 'RB'), ('tomorrowsunday', 'IN')], [('yy', 'NN'), ('yyy', 'NN'), ('startups', 'NNS'), ('founder', 'NN'), ('xxxxxxx', 'NN'), ('shared', 'VBN'), ('by', 'IN'), ('yy', 'NN'), ('yyy', 'NN'), ('startups', 'VBD'), ('10000startupscom', 'CD'), ('xxxxxxx', 'NN'), ('invited', 'VBN'), ('applications', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('yy', 'NN'), ('yyy', 'NN'), ('startups', 'JJ'), ('program', 'NN'), ('in', 'IN'), ('july13', 'NN'), ('and', 'CC'), ('dec13', 'NN')], [('yyyyy', 'NN'), ('from', 'IN'), ('june', 'NN'), ('2014', 'CD'), ('salary', 'NN')], [('yyyyyyyyyyyyyyyyyyyyy', 'NN'), ('y', 'VBZ'), ('20140814', 'CD'), ('200100308739', 'CD'), ('20140814', 'CD'), ('200100308739', 'CD')], [('10th', 'CD'), ('june', 'NN')], [('11', 'CD'), ('am', 'VBP'), ('xxx', 'NN')], [('11jul14', 'CD')], [('111213', 'CD')], [('1117', 'CD'), ('am', 'VBP'), ('xxx', 'VBN'), ('on', 'IN'), ('06162014', 'CD')], [('1145', 'CD'), ('pm', 'NN'), ('tue', 'NN'), ('yyyyyyyyyy', 'NN'), ('am', 'VBP'), ('wed', 'VBN'), ('10027h', 'CD'), ('30m', 'CD'), ('yyyyyyy', 'NN'), ('yyyyy', 'NN'), ('hide', 'NN'), ('details', 'NNS')], [('yy', 'NN'), ('cr', 'JJ'), ('end', 'NN'), ('of', 'IN'), ('sep', 'NN'), ('14', 'CD'), ('roughly', 'RB'), ('2', 'CD'), ('month', 'NN'), ('cash', 'NN'), ('till', 'NN'), ('nov', 'NN')], [('yy', 'NN'), ('th', 'NN'), ('july', 'NN'), ('workshop', 'NN')], [('12aug14', 'CD')], [('13jun14', 'CD')], [('13052014', 'CD'), ('for', 'IN'), ('air', 'NN'), ('cylinder', 'NN'), ('and', 'CC'), ('spare', 'JJ'), ('kit', 'NN')], [('13th', 'CD'), ('july', 'NN'), ('2014', 'CD')], [('yyyyyyyyyy', 'NN'), ('thu', 'VBZ'), ('8', 'CD'), ('may', 'MD'), ('2014', 'CD'), ('191056', 'CD'), ('yyyyy', 'NNS'), ('received', 'VBN'), ('from', 'IN'), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'JJ'), ('yyyyyyyyyyyyy', 'NN'), ('by', 'IN')], [('yyyyyyyyyyyyy', 'NN'), ('viz', 'NN'), ('mon', 'NN'), ('jul', 'NN'), ('21', 'CD'), ('000000', 'CD'), ('xxx', 'NN'), ('2014', 'CD')], [('yyy', 'JJ'), ('students', 'NNS'), ('were', 'VBD'), ('added', 'VBN'), ('in', 'IN'), ('lite', 'JJ'), ('version', 'NN'), ('on', 'IN'), ('17th', 'CD'), ('july', 'NN')], [('14th', 'CD'), ('april', 'JJ'), ('2nd', 'CD'), ('half', 'NN')], [('14th', 'CD'), ('march', 'NN')], [('15nov14', 'CD')], [('15sep', 'CD')], [('1524', 'CD'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('yyy', 'NNP'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xx', 'NNP'), ('yyyyy', 'NN'), ('delivery', 'NN'), ('hold', 'NN'), ('at', 'IN'), ('xxxx', 'NNP'), ('call', 'JJ'), ('payment', 'NN'), ('card', 'NN'), ('type', 'NN'), ('visa', 'NN'), ('ending', 'VBG'), ('in', 'IN'), ('yyyy', 'NN'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('yyyyyyy', 'POS'), ('description', 'NN'), ('details', 'NNS'), ('price', 'NN'), ('total', 'JJ'), ('tribes', 'NN'), ('friday', 'NN'), ('january', 'VBZ'), ('24', 'CD'), ('2014', 'CD'), ('8pm', 'CD'), ('xxxxxxxxx', 'JJ'), ('xxxxxx', 'NNP'), ('e13', 'NN'), ('e14', 'NN'), ('xxxxxxxx', 'NNP'), ('yyyyy', 'NNP'), ('subtotal', 'JJ'), ('yyyyy', 'NN'), ('handling', 'VBG'), ('yyyyy', 'JJ'), ('total', 'JJ'), ('yyyyyy', 'NN'), ('visaweb', 'NN'), ('pt', 'NN'), ('yyyyyy', 'NN'), ('xxxxxxx', 'NN'), ('due', 'JJ'), ('y', 'NN')], [('15th', 'CD'), ('july', 'NN'), ('2014', 'CD'), ('is', 'VBZ'), ('convenient', 'JJ')], [('15th', 'CD'), ('dec', 'JJ'), ('jan', 'NN'), ('4th', 'CD'), ('vaapas', 'NN')], [('15th', 'CD'), ('is', 'VBZ'), ('sunday', 'JJ')], [('yy', 'RB'), ('17', 'CD'), ('september', 'NN'), ('2014', 'CD'), ('xxxxxxxxx', 'NN')], [('16', 'CD'), ('may', 'MD'), ('2014', 'CD'), ('friday', 'NN'), ('0930', 'CD'), ('hrs', 'NN'), ('1800', 'CD'), ('hrs', 'NN'), ('xxxxxxx', 'NN')], [('16jun', 'CD')], [('16th', 'CD'), ('july', 'NN'), ('xxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('for', 'IN'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('at', 'IN'), ('yyyy', 'NNP'), ('am', 'VBP')], [('16th', 'CD'), ('october', 'NN'), ('to', 'TO'), ('16th22nd', 'CD'), ('november', 'NN'), ('2014', 'CD')], [('17jun14', 'CD')], [('17th', 'CD'), ('aug', 'JJ'), ('xxxxxxxxx', 'NN'), ('xxxxxxx', 'NN')], [('17th', 'CD'), ('jan', 'NN'), ('2014', 'CD'), ('x', 'NNP'), ('yyyyy', 'NN'), ('pm', 'NN')], [('17th', 'CD'), ('june', 'NN')], [('1819th', 'CD'), ('june', 'NN'), ('2014', 'CD')], [('18jun', 'CD')], [('18jun14', 'CD')], [('18mar14', 'CD')], [('18th', 'CD'), ('aug', 'NN'), ('is', 'VBZ'), ('monday', 'JJ')], [('18th', 'CD'), ('march', 'JJ'), ('average', 'NN'), ('for', 'IN'), ('yyyy', 'NN'), ('records', 'NNS'), ('is', 'VBZ'), ('79ms', 'CD'), ('and', 'CC'), ('occasionally', 'RB'), ('it', 'PRP'), ('reached', 'VBD'), ('100ms', 'CD'), ('200ms', 'CD'), ('around', 'IN'), ('yyy', 'NN'), ('records', 'NNS'), ('19th', 'CD'), ('march', 'JJ'), ('average', 'NN'), ('for', 'IN'), ('yyyy', 'NN'), ('records', 'NNS'), ('is', 'VBZ'), ('80ms', 'CD'), ('and', 'CC'), ('occasionally', 'RB'), ('it', 'PRP'), ('reached', 'VBD'), ('100ms', 'CD'), ('200ms', 'CD'), ('around', 'IN'), ('yyy', 'NN'), ('records', 'NNS')], [('yy', 'NNS'), ('yyy', 'RB'), ('when', 'WRB'), ('we', 'PRP'), ('are', 'VBP'), ('processing', 'VBG'), ('the', 'DT'), ('salary', 'NN'), ('for', 'IN'), ('may', 'MD'), ('2014', 'CD')], [('yxxxxxxxxx', 'NN'), ('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('products', 'NNS'), ('team', 'NN'), ('from', 'IN'), ('1st', 'CD'), ('xxxx', 'NNS'), ('2he', 'CD'), ('might', 'MD'), ('actually', 'RB'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('start', 'VB'), ('working', 'VBG'), ('only', 'RB'), ('after', 'IN'), ('his', 'PRP$'), ('fracture', 'NN'), ('heels', 'NNS')], [('1s0x3bae14067cca9bddyyx111bbe37cc24e71aon', 'CD'), ('10th', 'CD'), ('may', 'MD'), ('2014', 'VB')], [('2', 'CD'), ('in', 'IN'), ('oct', 'NN'), ('and', 'CC'), ('3rd', 'CD'), ('one', 'CD'), ('in', 'IN'), ('december', 'NN')], [('2', 'CD'), ('dec', 'VBZ'), ('only', 'RB'), ('huge', 'JJ'), ('savings', 'NNS'), ('on', 'IN'), ('holiday', 'NN'), ('shopping', 'NN')], [('2', 'CD'), ('xxxx', 'JJ'), ('calls', 'NNS'), ('next', 'IN'), ('week', 'NN')], [('y', 'NN'), ('task', 'NN'), ('for', 'IN'), ('today', 'NN')], [('2', 'CD'), ('do', 'VBP'), ('get', 'VB'), ('in', 'IN'), ('touch', 'NN'), ('with', 'IN'), ('ashwik', 'NN'), ('today', 'NN')], [('2', 'CD'), ('the', 'DT'), ('xxx', 'NN'), ('seems', 'VBZ'), ('pretty', 'RB'), ('ambitious', 'JJ'), ('for', 'IN'), ('october', 'JJ'), ('particularly', 'RB'), ('signals', 'NNS'), ('mining', 'VBG'), ('g', 'JJ'), ('xxxxxxx', 'NN'), ('may', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('comment', 'VB'), ('and', 'CC'), ('coach', 'VB'), ('ux', 'JJ'), ('c', 'NN'), ('d', 'NN')], [('2', 'CD'), ('we', 'PRP'), ('have', 'VBP'), ('already', 'RB'), ('raised', 'VBN'), ('a', 'DT'), ('relocation', 'NN'), ('request', 'NN'), ('of', 'IN'), ('our', 'PRP$'), ('old', 'JJ'), ('offices', 'NNS'), ('airtel', 'VBP'), ('xxxxxxxx', 'JJ'), ('connection', 'NN'), ('to', 'TO'), ('the', 'DT'), ('new', 'JJ'), ('office', 'NN'), ('and', 'CC'), ('alternately', 'RB'), ('applying', 'VBG'), ('for', 'IN'), ('a', 'DT'), ('new', 'JJ'), ('internet', 'NN'), ('connection', 'NN'), ('as', 'RB'), ('soon', 'RB'), ('as', 'IN'), ('the', 'DT'), ('lease', 'NN'), ('agreement', 'NN'), ('is', 'VBZ'), ('done', 'VBN'), ('this', 'DT'), ('week', 'NN')], [('2', 'CD'), ('well', 'RB'), ('be', 'VB'), ('rolling', 'VBG'), ('our', 'PRP$'), ('beta', 'NN'), ('of', 'IN'), ('bugclipper', 'NN'), ('with', 'IN'), ('the', 'DT'), ('dashboard', 'NN'), ('and', 'CC'), ('bug', 'NN'), ('management', 'NN'), ('this', 'DT'), ('month', 'NN'), ('end', 'NN')], [('21314', 'CD')], [('21914', 'CD')], [('2013', 'CD'), ('ill', 'JJ'), ('be', 'VB'), ('running', 'VBG'), ('the', 'DT'), ('analytics', 'NNS'), ('early', 'RB'), ('next', 'JJ'), ('week', 'NN')], [('20131014', 'CD'), ('xxxxx', 'CD'), ('xxxxxxxx', 'NN')], [('20131028', 'CD'), ('niketh', 'NNS'), ('sabbineni', 'NN')], [('20131031', 'CD'), ('xxxxxxx', 'CD'), ('xxxxxx', 'NN')], [('20131110', 'CD'), ('sharada', 'NN'), ('b', 'NN')], [('20131127', 'CD'), ('xxxxxx', 'CD'), ('dominic', 'NN')], [('20131230', 'CD'), ('xxxxx', 'JJ'), ('xxxx', 'NN'), ('xxxxxx', 'NN')], [('20140201', 'CD'), ('xxxxx', 'CD'), ('xxxxxxxx', 'NN')], [('xxxxxxxxxxxxxxxxxx', 'JJ'), ('xxxxxx', 'NNP'), ('xxxxx', 'NN'), ('to', 'TO'), ('expand', 'VB'), ('xxxxxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('relationship', 'NN')], [('20140501', 'CD'), ('326', 'CD'), ('xxx0300', 'NN')], [('20140516', 'CD'), ('944', 'CD'), ('xxx0530', 'NN'), ('xxxxx', 'NN'), ('xxxxxx', 'NN')], [('20140602', 'CD'), ('200422631', 'CD'), ('scibleryyyyyyb', 'JJ'), ('assertion', 'NN'), ('failure', 'NN'), ('in', 'IN'), ('uidatepickerview', 'NN'), ('setdateanimatedforced', 'VBD'), ('sourcecacheuikituikityyyyyyyyyuidatepickerviewmyyyy', 'NN')], [('20140604', 'CD'), ('2138', 'CD'), ('xxx0300', 'NN'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NN')], [('20140608', 'CD'), ('194626055', 'CD'), ('scibleryyyyyyyb', 'NN'), ('error', 'NN'), ('error', 'NN'), ('domainxxxxxxxxxxxxxxxx', 'NN'), ('xxxxyyyyy', 'NNP'), ('could', 'MD'), ('not', 'RB'), ('connect', 'VB'), ('to', 'TO'), ('the', 'DT'), ('server', 'NN')], [('20140612', 'CD'), ('213447768', 'CD'), ('scibleryyyyyyyyb', 'NN'), ('terminating', 'VBG'), ('app', 'NNS'), ('due', 'JJ'), ('to', 'TO'), ('uncaught', 'JJ'), ('exception', 'NN'), ('nsinvalidargumentexception', 'NN'), ('reason', 'NN'), ('nsnull', 'JJ'), ('length', 'NN'), ('unrecognized', 'JJ'), ('selector', 'NN'), ('sent', 'VBD'), ('to', 'TO'), ('instance', 'NN'), ('0x2e770', 'CD')], [('20140624', 'CD'), ('174139', 'CD'), ('2384', 'CD'), ('syyyyyyy', 'NN'), ('akamaiauthschemeonconnect', 'JJ'), ('applicationobjofpublishedstreamsyyyyyy', 'NN'), ('y', 'NN'), ('m', 'NN')], [('20140624t214139050z', 'CD')], [('20140626', 'CD'), ('2205', 'CD'), ('gmt0700', 'NN'), ('xxxxx', 'NNP'), ('xxxxxxxx', 'NN')], [('20140630', 'CD'), ('843', 'CD'), ('xxx0300', 'NN'), ('xxx', 'NN'), ('xxxxxxx', 'NN')], [('20140702', 'CD'), ('2257', 'CD'), ('gmt0700', 'NN'), ('xxxxxxx', 'NNP'), ('xxxx', 'NN')], [('20140719', 'CD'), ('1954', 'CD'), ('xxx0900', 'NN'), ('xxxxxxx', 'NNP'), ('xxxxxxx', 'NN')], [('201407w30', 'CD'), ('xxxxxxxxx', 'JJ'), ('xxxxxxxxxx', 'NNP'), ('xxxxwxx4', 'NNP'), ('pt0s', 'NN'), ('from', 'IN'), ('monday', 'NN'), ('to', 'TO'), ('thursday', 'VB'), ('next', 'JJ'), ('week', 'NN')], [('20140817', 'CD'), ('122627471', 'CD'), ('scibleryyyyyyyb', 'NN'), ('url', 'NN')], [('20140817', 'CD'), ('122627934', 'CD'), ('scibleryyyyyyyb', 'NN'), ('u', 'JJ'), ('downloadtime', 'NN'), ('yyyyyyyy', 'NN')], [('20140821', 'CD'), ('2218', 'CD'), ('xxx0530', 'NN'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NN')], [('20140823', 'CD'), ('225713534', 'CD'), ('scibleryyyyyyyyf', 'NN'), ('addnewtasklastupdated', 'VBD'), ('yyyyyyy', 'NN')], [('20140217', 'CD'), ('032', 'CD'), ('xxxx', 'NNS'), ('xxxx', 'VBP')], [('20140602', 'CD'), ('2327xxxxxxx', 'CD'), ('xxx', 'NN')], [('20140603', 'CD'), ('1532xxxxxxx', 'CD'), ('xxx', 'NN')], [('20140604', 'CD'), ('1123xxxxxxx', 'CD'), ('xxxxx', 'NNS'), ('shortform', 'NN')], [('20140605', 'CD'), ('1837xxxxxxx', 'CD'), ('xxxxxxx', 'NN')], [('20140606', 'CD'), ('2020xxxxx', 'CD'), ('xxxxx', 'NN')], [('20140718', 'CD'), ('2313xxxxx', 'CD'), ('xxxxxxxxxx', 'NN')], [('20th', 'CD'), ('xxxx', 'JJ'), ('2013', 'CD'), ('tme', 'NN'), ('yyyy', 'CC'), ('pm', 'NN'), ('to', 'TO'), ('yyyy', 'VB'), ('pm', 'NN')], [('20th', 'JJ'), ('oct', 'NN'), ('sun', 'JJ'), ('depart', 'NN'), ('from', 'IN'), ('location', 'NN'), ('after', 'IN')], [('21', 'CD'), ('february', 'JJ'), ('2014hyders', 'CD'), ('silver', 'NN'), ('status', 'NN'), ('turns', 'VBZ'), ('gold', 'NN'), ('in', 'IN'), ('xxxxxxxx', 'JJ'), ('xxxx', 'NNP'), ('initiative', 'NN'), ('xxxxx', 'NN'), ('has', 'VBZ'), ('received', 'VBN'), ('silver', 'RB'), ('status', 'NN'), ('in', 'IN'), ('the', 'DT'), ('building', 'NN'), ('and', 'CC'), ('xxxxxx', 'NNP'), ('category', 'NN'), ('of', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxs', 'NNP'), ('supplier', 'NN'), ('listings', 'NNS'), ('part', 'NN'), ('of', 'IN'), ('its', 'PRP$'), ('xxxxxxxx', 'NNP'), ('xxxxx', 'NN'), ('to', 'TO'), ('gold', 'VB'), ('initiat', 'NN')], [('21', 'CD'), ('mar', 'NN'), ('yy', 'NN'), ('22th', 'CD'), ('annual', 'JJ'), ('dinner', 'NN'), ('and', 'CC'), ('xxxxx', 'VB'), ('xxxxxxxx', 'NNP'), ('more', 'JJR'), ('pdf', 'JJ'), ('normal', 'JJ'), ('price', 'NN'), ('s', 'NN'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('syyy', 'VBZ'), ('member', 'NN'), ('entitles', 'NNS'), ('free', 'JJ'), ('na', 'TO'), ('freesubsequent', 'JJ'), ('pax', 'NN'), ('na', 'TO'), ('yyyyy', 'VB')], [('21', 'CD'), ('march', 'NN'), ('2014', 'CD'), ('friday', 'NN'), ('0930', 'CD'), ('hrs', 'NN'), ('1300', 'CD'), ('hrs', 'NN'), ('xxxxxxxxxx', 'NN')], [('21', 'CD'), ('dec', 'JJ'), ('6', 'CD'), ('jan', 'NN'), ('on', 'IN'), ('vacation', 'NN'), ('out', 'IN'), ('of', 'IN'), ('country', 'NN'), ('and', 'CC'), ('largely', 'RB'), ('inaccessible', 'JJ')], [('21aug14', 'CD')], [('22may14', 'CD')], [('22oct13', 'CD')], [('22nd', 'CD'), ('august', 'NN')], [('23', 'CD'), ('jun', 'NN'), ('2014', 'CD'), ('departure', 'NN'), ('y', 'CC'), ('stoptotal', 'JJ'), ('travel', 'NN'), ('time', 'NN'), ('9h', 'CD'), ('yyy', 'NN'), ('cheapest', 'NN')], [('23rd', 'CD'), ('june', 'NN')], [('23rd', 'CD'), ('may', 'MD'), ('xxxxx', 'VB'), ('to', 'TO'), ('xxx', 'VB')], [('yy', 'NN'), ('april', 'NN'), ('xxxxxxxxx', 'NNP'), ('yy', 'NNP'), ('april', 'VBZ'), ('ygn', 'RB'), ('yy', 'JJ'), ('april', 'NN'), ('xxx', 'NNP'), ('yy', 'NNP'), ('april', 'VBZ'), ('ygn', 'JJR'), ('yy', 'NN'), ('may', 'MD'), ('xxx', 'VB'), ('16', 'CD'), ('may', 'MD'), ('ygn', 'VB'), ('23', 'CD'), ('may', 'MD'), ('xxxxxxxxx', 'VB')], [('24', 'CD'), ('may', 'MD'), ('at', 'IN'), ('1900', 'CD'), ('at', 'IN'), ('xxxxxx', 'NNP'), ('xxxxxxxxxx', 'NN')], [('yy', 'NN'), ('th', 'NN'), ('june', 'NN'), ('2014', 'CD'), ('saturday', 'NN'), ('xxxxxxxx', 'NNP'), ('xxx', 'NNP'), ('y', 'NN')], [('24apr14', 'CD')], [('yy', 'NN'), ('xxxxxxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy', 'VBZ'), ('20130912', 'CD'), ('084403404195', 'CD'), ('f', 'NN'), ('f', 'NN'), ('f', 'NN'), ('y', 'NN')], [('25022014', 'CD')], [('250614', 'CD')], [('25th', 'CD'), ('july', 'NN'), ('is', 'VBZ'), ('fine', 'JJ'), ('with', 'IN'), ('me', 'PRP'), ('i', 'VBP'), ('will', 'MD'), ('not', 'RB'), ('approve', 'VB'), ('any', 'DT'), ('leaves', 'NNS'), ('during', 'IN'), ('the', 'DT'), ('transition', 'NN'), ('period', 'NN')], [('26042014', 'CD'), ('saturday', 'JJ'), ('9', 'CD'), ('hours', 'NNS'), ('yyyyyyyyyy', 'RB'), ('sunday', 'JJ'), ('2', 'CD'), ('hours', 'NNS'), ('minor', 'JJ'), ('updates', 'NNS'), ('in', 'IN'), ('design', 'NN')], [('26th', 'CD'), ('june', 'NN')], [('27may', 'CD')], [('27th', 'CD'), ('oct', 'NN'), ('2013', 'CD')], [('28jul14', 'CD')], [('28th', 'CD'), ('february', 'JJ'), ('2014', 'CD'), ('friday', 'NN')], [('29', 'CD'), ('dec', 'JJ'), ('13', 'CD'), ('yyyyyy', 'RB'), ('1', 'CD'), ('jan', 'NN'), ('14', 'CD'), ('yyyyyy', 'NN')], [('2nd', 'CD'), ('october', 'JJ'), ('xxxx', 'NNP'), ('includes', 'VBZ'), ('about', 'IN'), ('us', 'PRP'), ('xxxxxxxxxx', 'VBP'), ('team', 'JJ'), ('careers', 'NNS'), ('xxxxxxxxx', 'VBP'), ('offices', 'NNS'), ('4th', 'CD'), ('october', 'JJ'), ('xxxx', 'NNP'), ('includes', 'VBZ'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('why', 'WRB'), ('xxxxxxxx', 'NN')], [('2nd', 'CD'), ('week', 'NN'), ('sat', 'VBD'), ('5', 'CD'), ('hours', 'NNS'), ('offline', 'VBP')], [('3', 'CD'), ('august', 'NN'), ('sunday', 'NN')], [('3', 'CD'), ('plan', 'NN'), ('of', 'IN'), ('action', 'NN'), ('for', 'IN'), ('december', 'NN')], [('yyy', 'NN'), ('pm', 'VBZ'), ('march', '$'), ('18th', 'CD'), ('yyyyy', 'NN'), ('pm', 'NN'), ('march', 'NN'), ('21th', 'CD'), ('yyyyy', 'NN'), ('pm', 'NN')], [('yyy', 'NN'), ('pm', 'VBZ'), ('march', '$'), ('4th', 'CD'), ('yyyyy', 'NN'), ('pm', 'NN'), ('march', 'NN'), ('7th', 'CD'), ('yyyyy', 'NN'), ('pm', 'NN')], [('3jul14', 'CD')], [('yyyl', 'NN'), ('for', 'IN'), ('feb', 'NN')], [('31614', 'CD')], [('32014', 'CD')], [('yy', 'NN'), ('xxxxxxxxxxxxxxxxx', 'NNP'), ('yyyf7c4d46ead9f6a6b318598f464475c', 'VBZ'), ('20130912', 'CD'), ('085251465147', 'CD'), ('f', 'NN'), ('f', 'NN'), ('f', 'NN'), ('y', 'NN')], [('30aug14', 'CD')], [('30jul14', 'CD')], [('30th', 'LS'), ('august', 'JJ'), ('2014', 'CD'), ('xxxxxx', 'NN')], [('30th', 'CD'), ('july', 'NN'), ('2014', 'CD')], [('31', 'CD'), ('jul', 'NN'), ('2014', 'CD'), ('thursday', 'NN'), ('0930', 'CD'), ('hrs', 'NN'), ('1800', 'CD'), ('hrs', 'NN'), ('xxxxxxx', 'NN')], [('4', 'CD'), ('05142014', 'CD'), ('1701', 'CD'), ('05162014', 'CD'), ('1401', 'CD'), ('xxxxxxxxx', 'NN'), ('mm', 'NN'), ('o', 'NN')], [('4jul14', 'CD')], [('41414', 'CD'), ('41814', 'CD')], [('yyyyyyy', 'NN'), ('qtp45303876334', 'NN'), ('warn', 'NN'), ('orgeclipsejettyserverabstracthttpconnection', 'NN'), ('uclientdatemonjun09yyyyyyyyyyyy3a23gmt0700xxxpastyyfutureyupdateypolltrue', 'NN')], [('yyyy', 'RB'), ('dated', 'VBD'), ('13052014', 'CD')], [('4pm', 'CD'), ('xxx', 'NN')], [('4pm', 'CD'), ('on', 'IN'), ('thursday', 'NN')], [('4th', 'CD'), ('xxxxxxxxxxxxx', 'JJ'), ('xxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('yy', 'VBZ'), ('16', 'CD'), ('apr', 'NN'), ('2014', 'CD'), ('xxxxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxx', 'NN')], [('4th', 'CD'), ('may', 'MD'), ('xxx', 'VB'), ('0415', 'CD'), ('xxxxx', 'NN'), ('0650', 'CD'), ('ek', 'NN'), ('yyy', 'CC'), ('4th', 'CD'), ('may', 'MD'), ('xxxxx', 'VB'), ('0950', 'CD'), ('xxxxxx', 'NN'), ('1405', 'CD'), ('ek', 'NN'), ('yyy', 'NN')], [('5', 'CD'), ('june', 'NN'), ('would', 'MD'), ('work', 'VB'), ('if', 'IN'), ('its', 'PRP$'), ('not', 'RB'), ('much', 'JJ'), ('trouble', 'NN')], [('5may', 'CD')], [('51014', 'CD'), ('530', 'CD')], [('51314', 'CD')], [('51414', 'CD')], [('53114', 'CD')], [('5714', 'CD')], [('5714', 'CD'), ('435', 'CD')], [('yyyyy', 'NN'), ('y', 'VBZ'), ('20130919', 'CD'), ('000000', 'CD'), ('20130918', 'CD'), ('133502', 'CD'), ('yyyyyyyyyyyyyyyyyyy', 'NN'), ('y', 'NN'), ('my', 'PRP$'), ('wednesday', 'JJ'), ('alerts', 'NNS'), ('vanished', 'VBD'), ('and', 'CC'), ('only', 'RB'), ('my', 'PRP$'), ('thursday', 'NN'), ('alerts', 'VBZ'), ('show', 'NN')], [('xxxxxxxxxxxxxx', 'JJ'), ('xxxxx', 'NNP'), ('xxxxxxxxxxx', 'NNP'), ('across', 'IN'), ('all', 'DT'), ('channel50target', 'NN'), ('yyyyyyxxxxxxx', 'NNP'), ('xxx', 'VBZ'), ('100200bluestoneoverall', 'CD'), ('target', 'NN'), ('yyy1kotakcampaigns', 'NNS'), ('to', 'TO'), ('start', 'VB'), ('from', 'IN'), ('10th', 'CD'), ('augustfaballeycpt', 'NNS'), ('rsyyyyy', 'NN'), ('in', 'IN'), ('aug', 'JJ'), ('xxxxxxxx', 'JJ'), ('month', 'NN'), ('xxx', 'NNP'), ('y', 'NN'), ('xxxxxx', 'NNP'), ('target', 'NN'), ('rs', 'NN')], [('yyyy', 'NN'), ('sat', 'VBD'), ('jul', '$'), ('26', 'CD'), ('2014', 'CD')], [('5th', 'CD'), ('7th', 'CD'), ('march', 'NN'), ('2014', 'CD')], [('6aug14', 'CD')], [('6mar14', 'CD')], [('6114', 'CD'), ('224', 'CD')], [('6262014', 'CD'), ('xxxxxx', 'NN')], [('6th', 'CD'), ('june', 'NN')], [('6th', 'CD'), ('xxxx', 'JJ'), ('2013', 'CD')], [('6th', 'CD'), ('june', 'NN'), ('2014', 'CD')], [('y', 'NN'), ('xxxxxxxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('yya976d8ab7354194a88eb61677890d91', 'VBZ'), ('20130910', 'CD'), ('213545007845', 'CD'), ('f', 'NN'), ('f', 'NN'), ('f', 'NN'), ('y', 'NN')], [('71814', 'CD')], [('72414', 'CD')], [('7514', 'CD')], [('7614', 'CD'), ('929', 'CD')], [('yyyyam600', 'NN'), ('xxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('time', 'NN'), ('sunday', 'JJ'), ('yyyyyam600', 'NN'), ('pm', 'NN'), ('xxxxxxx', 'JJ'), ('time', 'NN'), ('yyyy', 'NN'), ('xxxx', 'NNP'), ('xxx', 'NNP'), ('yyyyy', 'NNP'), ('xxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('xx', 'NN')], [('7th', 'CD'), ('july', 'NN')], [('8114', 'CD'), ('2000', 'CD')], [('8814', 'CD')], [('800', 'CD'), ('am', 'VBP'), ('to', 'TO'), ('600', 'CD'), ('pm', 'NNS'), ('conference', 'NN'), ('22nd', 'CD'), ('november', 'JJ'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxxxxx', 'NNP'), ('parallel', 'NN'), ('session', 'NN')], [('8pm', 'CD'), ('two', 'CD'), ('key', 'JJ'), ('note', 'NN'), ('speeches', 'NNS'), ('each', 'DT'), ('for', 'IN'), ('20', 'CD'), ('minutes', 'NNS')], [('8th', 'CD'), ('november', 'JJ'), ('2013', 'CD')], [('y', 'NN'), ('1030', 'CD'), ('am', 'VBP'), ('xxx', 'JJ'), ('run', 'NN'), ('in', 'IN'), ('the', 'DT'), ('order', 'NN'), ('that', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('presenting', 'VBG'), ('during', 'IN'), ('the', 'DT'), ('final', 'JJ'), ('demo', 'NN'), ('day', 'NN')], [('yyyy', 'RB'), ('am', 'VBP'), ('to', 'TO'), ('yyyy', 'VB'), ('pm', 'NN'), ('saturday', 'JJ'), ('30th', 'CD'), ('november', 'NN')], [('9614', 'CD')], [('yy', 'JJ'), ('students', 'NNS'), ('added', 'VBD'), ('in', 'IN'), ('lite', 'JJ'), ('version', 'NN'), ('on', 'IN'), ('16th', 'CD'), ('july', 'NN')], [('yy', 'JJ'), ('students', 'NNS'), ('were', 'VBD'), ('added', 'VBN'), ('in', 'IN'), ('lite', 'JJ'), ('version', 'NN'), ('on', 'IN'), ('16th', 'CD'), ('july', 'NN')], [('930pm', 'CD'), ('just', 'RB'), ('for', 'IN'), ('today', 'NN')], [('9am', 'CD'), ('pt', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('may', 'MD'), ('19', 'CD')], [('9pm', 'CD'), ('lucky', 'JJ'), ('draw', 'NN'), ('six', 'CD'), ('winning', 'VBG'), ('gifts', 'NNS'), ('sponsored', 'VBN'), ('by', 'IN'), ('our', 'PRP$'), ('alumni', 'NNS')], [('9th', 'CD'), ('august', 'JJ'), ('2014', 'CD'), ('saturday', 'NN')], [('9th', 'CD'), ('and', 'CC'), ('10th', 'CD'), ('august', 'NN')], [('9xm', 'CD'), ('i', 'NNS'), ('need', 'VBP'), ('to', 'TO'), ('work', 'VB'), ('on', 'IN'), ('this', 'DT'), ('today', 'NN')], [('yyy', 'NN'), ('yyyth', 'NNS'), ('september', 'VBP'), ('2014', 'CD')], [('aug', 'RB'), ('20', 'CD'), ('2014', 'CD'), ('900', 'CD'), ('am', 'VBP')], [('xxxx', 'NN')], [('thanks', 'NNS'), ('a', 'DT'), ('ton', 'NN'), ('for', 'IN'), ('being', 'VBG'), ('open', 'JJ'), ('to', 'TO'), ('these', 'DT'), ('requests', 'NNS'), ('as', 'IN'), ('always', 'RB'), ('in', 'IN'), ('addition', 'NN'), ('to', 'TO'), ('your', 'PRP$'), ('day', 'NN'), ('today', 'NN'), ('work', 'NN'), ('and', 'CC'), ('getting', 'VBG'), ('these', 'DT'), ('done', 'VBN'), ('on', 'IN'), ('time', 'NN')], [('so', 'RB'), ('wats', 'JJ'), ('special', 'JJ'), ('today', 'NN')], [('ho', 'NN'), ('nahi', 'NN'), ('paayaa', 'NN'), ('is', 'VBZ'), ('week', 'NN'), ('mein', 'RB'), ('next', 'JJ'), ('week', 'NN'), ('mera', 'NN'), ('patna', 'NN'), ('ka', 'NN'), ('plan', 'NN'), ('tha', 'VBP'), ('wo', 'MD'), ('cancel', 'VB'), ('ho', 'JJ'), ('gaya', 'NNS'), ('so', 'RB'), ('ill', 'RB'), ('do', 'VBP'), ('it', 'PRP'), ('by', 'IN'), ('coming', 'VBG'), ('tuesday', 'NN')], [('xx', 'JJ'), ('xxxt', 'NNP'), ('skip', 'VBD'), ('the', 'DT'), ('gym', 'NN'), ('this', 'DT'), ('weekend', 'NN'), ('rajnees', 'VBZ')], [('july', 'RB'), ('12', 'CD'), ('and', 'CC'), ('yy', 'VB'), ('2014', 'CD')], [('xxxxx', 'JJ'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('yyyyyyyyyyyyyyyyyyy', 'NN'), ('placed', 'VBD'), ('on', 'IN'), ('friday', 'JJ'), ('july', 'NN'), ('11', 'CD'), ('2014', 'CD')], [('xxxxx', 'JJ'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('yyyyyyyyyyyyyyyyyyy', 'NN'), ('placed', 'VBD'), ('on', 'IN'), ('friday', 'JJ'), ('july', 'NN'), ('11', 'CD'), ('2014', 'CD')], [('on', 'IN'), ('thu', 'NNS'), ('15', 'CD'), ('may', 'MD'), ('2014', 'CD'), ('141436', 'CD'), ('yyyyy', 'NN'), ('xxxxxxxxxxxxxxxxxxxxxxxx', 'NNP'), ('wrote', 'VBD')], [('yyyy', 'RB'), ('thursday', 'JJ'), ('xxx', 'NNP'), ('app', 'NN'), ('store', 'NN'), ('xxxxxxx', 'NNP'), ('web', 'NN'), ('android', 'NN'), ('bug', 'NN'), ('fix', 'NN')], [('yyyy', 'RB'), ('thursday', 'JJ'), ('xxx', 'NNP'), ('xxxxxxx', 'NNP'), ('yyy', 'NN'), ('with', 'IN'), ('all', 'DT'), ('xxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('yyy', 'NN'), ('if', 'IN'), ('necessary', 'JJ')], [('thanks', 'NNS'), ('xxxxxxx', 'VBP'), ('xxxxx', 'JJ'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('cell', 'NN'), ('yy', 'RB'), ('609', 'CD'), ('9173214', 'CD'), ('xxxxx', 'NN'), ('yyyyyyyyyyyyyy', 'NN'), ('xxxxx', 'NNP'), ('shyamal99', 'NN'), ('on', 'IN'), ('mon', 'NN'), ('jul', 'NN'), ('21', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('730', 'CD'), ('pm', 'NN'), ('xxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'NN')], [('thanks', 'NNS'), ('xxxxxxx', 'VBP'), ('xxxxx', 'JJ'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('cell', 'NN'), ('yy', 'RB'), ('609', 'CD'), ('9173214', 'CD'), ('xxxxx', 'NN'), ('yyyyyyyyyyyyyy', 'NN'), ('xxxxx', 'NNP'), ('shyamal99', 'NN'), ('on', 'IN'), ('tue', 'NN'), ('jul', 'NN'), ('15', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('842', 'CD'), ('pm', 'NN'), ('xxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'NN')], [('thanks', 'NNS'), ('xxxxx', 'VBD'), ('20140605', 'CD'), ('1837xxxxxxx', 'CD'), ('xxxxxxx', 'JJ'), ('miurasan', 'NNS'), ('thank', 'IN'), ('you', 'PRP'), ('update', 'VBP')], [('the', 'DT'), ('deadline', 'NN'), ('for', 'IN'), ('the', 'DT'), ('submission', 'NN'), ('is', 'VBZ'), ('wednesday', 'JJ'), ('october', 'IN'), ('16', 'CD'), ('at', 'IN'), ('yyyyy', 'NN'), ('pm', 'NN'), ('est', 'NN')], [('timedate', 'NN'), ('1530', 'CD'), ('hrs', 'NN'), ('yy', 'CC'), ('th', 'NN'), ('january', 'JJ'), ('2014', 'CD'), ('friday', 'JJ'), ('xxxxx', 'NNP'), ('room311', 'NN'), ('xx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('few', 'JJ'), ('applications', 'NNS'), ('of', 'IN'), ('computer', 'NN'), ('vision', 'NN'), ('and', 'CC'), ('machine', 'NN'), ('learning', 'NN'), ('are', 'VBP'), ('presented', 'VBN'), ('in', 'IN'), ('this', 'DT'), ('seminar', 'NN')], [('but', 'CC'), ('hes', 'NNS'), ('coming', 'VBG'), ('to', 'TO'), ('xxxxx', 'VB'), ('between', 'IN'), ('oct', 'JJ'), ('yyy', 'NN'), ('and', 'CC'), ('well', 'RB'), ('arrange', 'VB'), ('schedul', 'NN')], [('could', 'MD'), ('you', 'PRP'), ('come', 'VB'), ('to', 'TO'), ('xxxxxxx', 'VB'), ('head', 'NN'), ('office', 'NN'), ('xxxxxxxx', 'NNP'), ('south', 'NN'), ('tower', 'NN'), ('in', 'IN'), ('xxxxxxxx', 'NN'), ('at', 'IN'), ('1545', 'CD'), ('on', 'IN'), ('29th', 'CD'), ('xxxx', 'JJ'), ('thanks', 'NNS'), ('murara', 'VBP'), ('on', 'IN'), ('jul', 'NN'), ('26', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('1409', 'CD'), ('xxxxxxx', 'NN'), ('xxxxxxx', 'NN')], [('date', 'NN'), ('wed', 'VBD'), ('18', 'CD'), ('jun', 'NN'), ('2014', 'CD'), ('110652', 'CD'), ('yyyyy', 'NN')], [('from', 'IN'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('date', 'NN'), ('march', 'NN'), ('7', 'CD'), ('2014', 'CD'), ('80000', 'CD'), ('am', 'VBP'), ('xxx', 'VBN'), ('to', 'TO'), ('xxxxxxxxxxxxxxxxxxx', 'VB'), ('subject', 'JJ'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('getting', 'VBG'), ('xxxxxx', 'JJ'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('lessons', 'NNS'), ('learned', 'VBD'), ('learn', 'RB'), ('more', 'JJR'), ('xxxxxxxxx', 'JJ'), ('viewpoint', 'NN'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('xx', 'NNP'), ('how', 'WRB'), ('an', 'DT'), ('xxxx', 'JJ'), ('xxxxxx', 'NN'), ('xxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('is', 'VBZ'), ('paying', 'VBG'), ('off', 'RP'), ('hybrid', 'JJ'), ('clouds', 'NNS'), ('are', 'VBP'), ('the', 'DT'), ('next', 'JJ'), ('generation', 'NN'), ('of', 'IN'), ('computing', 'VBG')], [('from', 'IN'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('date', 'NN'), ('september', 'VBD'), ('8', 'CD'), ('2013', 'CD'), ('80000', 'CD'), ('am', 'VBP'), ('xxx', 'VBN'), ('to', 'TO'), ('xxxxxxxxxxxxxxxxxxx', 'VB'), ('subject', 'JJ'), ('comparing', 'VBG'), ('xxxxx', 'NN'), ('xxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('for', 'IN'), ('xxxxxxxxxxxxx', 'NNP'), ('applications', 'NNS'), ('xxxxxxxxxxxxx', 'NNS'), ('are', 'VBP'), ('looking', 'VBG'), ('for', 'IN'), ('cloud', 'JJ'), ('adoption', 'NN'), ('use', 'NN'), ('cases', 'NNS'), ('for', 'IN'), ('all', 'DT'), ('their', 'PRP$'), ('major', 'JJ'), ('application', 'NN'), ('platforms', 'NNS'), ('includingnet', 'VBP'), ('on', 'IN'), ('xxxxxxx', 'NN')], [('from', 'IN'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('to', 'TO'), ('eacpf', 'VB'), ('eacpqtl', 'NN'), ('subject', 'JJ'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('guidelines', 'NNS'), ('for', 'IN'), ('environment', 'NN'), ('and', 'CC'), ('xxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('and', 'CC'), ('xxxxxxxxx', 'NNP'), ('colleagues', 'NNS'), ('attached', 'VBN'), ('is', 'VBZ'), ('the', 'DT'), ('new', 'JJ'), ('eap', 'JJ'), ('guidelines', 'NNS'), ('for', 'IN'), ('safeguard', 'JJ'), ('review', 'NN'), ('and', 'CC'), ('clearances', 'NNS'), ('effective', 'JJ'), ('may', 'MD'), ('30', 'CD'), ('2014', 'CD')], [('from', 'IN'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('date', 'NN'), ('28', 'CD'), ('january', 'JJ'), ('2014', 'CD'), ('52545', 'CD'), ('am', 'VBP'), ('xxx', 'VBN'), ('to', 'TO'), ('xxxxxxxxxxxxxxxxxxx', 'VB'), ('subject', 'JJ'), ('reception', 'NN'), ('replyto', 'NN'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('yy', 'NNP'), ('photos', 'NN'), ('in', 'IN'), ('this', 'DT'), ('album', 'NN'), ('xxxx', 'VBD'), ('or', 'CC'), ('comment', 'NN'), ('on', 'IN'), ('xxxxxx', 'NNP'), ('xxxxxxs', 'NNP'), ('album', 'NN'), ('xxxxxx', 'NNP'), ('makes', 'VBZ'), ('sharing', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('web', 'NN'), ('more', 'RBR'), ('like', 'IN'), ('sharing', 'VBG'), ('in', 'IN'), ('real', 'JJ'), ('life', 'NN')], [('from', 'IN'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('date', 'NN'), ('28', 'CD'), ('january', 'JJ'), ('2014', 'CD'), ('52600', 'CD'), ('am', 'VBP'), ('xxx', 'VBN'), ('to', 'TO'), ('xxxxxxxxxxxxxxxxxxx', 'VB'), ('subject', 'JJ'), ('xxxxxxxxxxxxxxxx', 'NNP'), ('replyto', 'NN'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('yy', 'NNP'), ('photos', 'NN'), ('in', 'IN'), ('this', 'DT'), ('album', 'NN'), ('xxxx', 'VBD'), ('or', 'CC'), ('comment', 'NN'), ('on', 'IN'), ('xxxxxx', 'NNP'), ('xxxxxxs', 'NNP'), ('album', 'NN'), ('xxxxxx', 'NNP'), ('makes', 'VBZ'), ('sharing', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('web', 'NN'), ('more', 'RBR'), ('like', 'IN'), ('sharing', 'VBG'), ('in', 'IN'), ('real', 'JJ'), ('life', 'NN')], [('from', 'IN'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('date', 'NN'), ('june', 'NN'), ('29', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('45832', 'CD'), ('xxxx', 'JJ'), ('xxx630', 'NN'), ('to', 'TO'), ('hnin', 'VB'), ('hnin', 'NN'), ('dear', 'JJ'), ('xxxx', 'NNP'), ('xxxx', 'NNP'), ('last', 'JJ'), ('week', 'NN'), ('in', 'IN'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('xxx', 'NNP'), ('we', 'PRP'), ('could', 'MD'), ('fine', 'VB'), ('a', 'DT'), ('good', 'JJ'), ('time', 'NN'), ('and', 'CC'), ('had', 'VBD'), ('a', 'DT'), ('good', 'JJ'), ('discussion', 'NN'), ('with', 'IN'), ('seida', 'NN'), ('related', 'VBN'), ('to', 'TO'), ('xx', 'VB'), ('and', 'CC'), ('disbursement', 'VB')], [('from', 'IN'), ('date', 'NN'), ('june', 'NN'), ('27', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('110000', 'CD'), ('pm', 'NN'), ('xxx', 'NN'), ('to', 'TO'), ('xxxxx', 'VB'), ('xxxxx', 'NNP'), ('hi', 'NN'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('you', 'PRP'), ('are', 'VBP'), ('doing', 'VBG'), ('grea', 'NN')], [('from', 'IN'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('subject', 'JJ'), ('xxxxxx', 'NNP'), ('xxxxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('date', 'NN'), ('june', 'NN'), ('15', 'CD'), ('2014', 'CD'), ('125057', 'CD'), ('am', 'VBP'), ('xxx', 'VBN'), ('to', 'TO'), ('kp', 'VB'), ('unnikrishnan', 'JJ'), ('dear', 'JJ'), ('xxxx', 'NN'), ('what', 'WP'), ('are', 'VBP'), ('some', 'DT'), ('useful', 'JJ'), ('programming', 'NN'), ('languages', 'NNS'), ('to', 'TO'), ('learn', 'VB')], [('from', 'IN'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('subject', 'JJ'), ('next', 'JJ'), ('week', 'NN'), ('my', 'PRP$'), ('plans', 'NNS'), ('date', 'NN'), ('june', 'NN'), ('2', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('101641', 'CD'), ('am', 'VBP'), ('xxx', 'VBN'), ('to', 'TO'), ('xxxxxxxxxxxxxxxxxxxxx', 'VB'), ('net', 'JJ'), ('xxxx', 'NNS'), ('next', 'IN'), ('week', 'NN'), ('monday', 'NN'), ('and', 'CC'), ('tuesday', 'JJ'), ('9th', 'CD'), ('and', 'CC'), ('10th', 'CD'), ('i', 'NN'), ('am', 'VBP'), ('on', 'IN'), ('xxx', 'NN')], [('from', 'IN'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('subject', 'JJ'), ('office', 'NN'), ('mgr', 'NN'), ('marketing', 'NN'), ('mgr', 'NN'), ('date', 'NN'), ('july', 'NN'), ('21', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('111326', 'CD'), ('pm', 'NN'), ('xxx', 'NN'), ('to', 'TO'), ('xxx', 'VB'), ('xxxxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('has', 'VBZ'), ('agreed', 'VBN'), ('to', 'TO'), ('take', 'VB'), ('a', 'DT'), ('little', 'JJ'), ('salary', 'JJ'), ('cut', 'NN'), ('from', 'IN'), ('what', 'WP'), ('she', 'PRP'), ('is', 'VBZ'), ('making', 'VBG')], [('from', 'IN'), ('xxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('subject', 'JJ'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('date', 'NN'), ('18', 'CD'), ('june', 'NN'), ('2014', 'CD'), ('82744', 'CD'), ('pm', 'NN'), ('xxx', 'NN'), ('to', 'TO'), ('xxxxxxxxxxxxxxxxxx', 'VB'), ('hi', 'NN'), ('i', 'NN'), ('had', 'VBD'), ('a', 'DT'), ('discussion', 'NN'), ('with', 'IN'), ('the', 'DT'), ('investor', 'NN'), ('today', 'NN'), ('and', 'CC'), ('he', 'PRP'), ('communicated', 'VBD'), ('the', 'DT'), ('poker', 'NN'), ('rules', 'NNS'), ('to', 'TO'), ('meits', 'VB'), ('very', 'RB'), ('similar', 'JJ'), ('to', 'TO'), ('xxxxx', 'VB'), ('holde', 'NN')], [('from', 'IN'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('subject', 'JJ'), ('xx', 'VBD'), ('a', 'DT'), ('day', 'NN'), ('leave', 'VB'), ('on', 'IN'), ('25th', 'CD'), ('august', 'JJ'), ('date', 'NN'), ('21', 'CD'), ('august', 'NN'), ('2014', 'CD'), ('124645', 'CD'), ('pm', 'NN'), ('xxx', 'NN'), ('to', 'TO'), ('xxxxxx', 'VB'), ('xx', 'NNP'), ('cc', 'NN'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('approved', 'VBD')], [('from', 'IN'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('subject', 'JJ'), ('xx', 'NNP'), ('comparebrokerages', 'NNS'), ('date', 'NN'), ('26', 'CD'), ('april', 'NN'), ('2014', 'CD'), ('120934', 'CD'), ('pm', 'NN'), ('xxx', 'NN'), ('to', 'TO'), ('sujith', 'VB'), ('jose', 'JJ'), ('cc', 'NNS'), ('xxxxxxx', 'VBP'), ('xxxx', 'JJ'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('icon', 'NN'), ('for', 'IN'), ('warning', 'VBG'), ('in', 'IN'), ('yellow', 'JJ'), ('and', 'CC'), ('danger', 'NN'), ('in', 'IN'), ('red', 'JJ'), ('something', 'NN'), ('like', 'IN'), ('these', 'DT')], [('from', 'IN'), ('rag', 'NN'), ('ramanathan', 'NN'), ('subject', 'JJ'), ('xx', 'NNP'), ('dinner', 'NN'), ('on', 'IN'), ('monday', 'JJ'), ('date', 'NN'), ('may', 'MD'), ('30', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('72322', 'CD'), ('pm', 'NN'), ('xxx', 'NN'), ('to', 'TO'), ('xxxxx', 'VB'), ('xxxxx', 'NNP'), ('cc', 'NN'), ('xxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('im', 'VBZ'), ('not', 'RB'), ('in', 'IN'), ('agreement', 'NN'), ('with', 'IN'), ('this', 'DT'), ('approach', 'NN'), ('at', 'IN'), ('all', 'DT')], [('from', 'IN'), ('xxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('subject', 'JJ'), ('xx', 'NNP'), ('xxxxx', 'NNP'), ('meeting', 'NN'), ('you', 'PRP'), ('date', 'NN'), ('may', 'MD'), ('28', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('64300', 'CD'), ('am', 'VBP'), ('xxx', 'VBN'), ('to', 'TO'), ('xxxxx', 'VB'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('thank', 'NN'), ('you', 'PRP'), ('for', 'IN'), ('wonderful', 'JJ'), ('meeting', 'NN'), ('with', 'IN'), ('your', 'PRP$'), ('team', 'NN'), ('and', 'CC'), ('extended', 'VBD'), ('team', 'NN')], [('from', 'IN'), ('xxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('subject', 'JJ'), ('xx', 'NNP'), ('interviewdiscussion', 'NN'), ('setup', 'NN'), ('with', 'IN'), ('prabakarrajan', 'JJ'), ('date', 'NN'), ('may', 'MD'), ('15', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('62954', 'CD'), ('am', 'VBP'), ('xxx', 'VBN'), ('to', 'TO'), ('xxxxx', 'VB'), ('xxxxx', 'NNP'), ('cc', 'NN'), ('xxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('for', 'IN'), ('belated', 'VBN'), ('reply', 'NN')], [('from', 'IN'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('subject', 'JJ'), ('mobile', 'JJ'), ('xxxxx', 'NN'), ('25th', 'CD'), ('june', 'NN'), ('xxx', 'NN'), ('xxxxx', 'NNP'), ('date', 'NN'), ('27', 'CD'), ('may', 'MD'), ('2014', 'CD'), ('103710', 'CD'), ('am', 'VBP'), ('xxx', 'VBN'), ('to', 'TO'), ('xxxxxx', 'VB'), ('xxxxx', 'JJ'), ('dear', 'JJ'), ('xxxxxx', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('to', 'TO'), ('quickly', 'RB'), ('update', 'VB'), ('you', 'PRP'), ('regarding', 'VBG'), ('our', 'PRP$'), ('3rd', 'CD'), ('edition', 'NN'), ('of', 'IN'), ('xxxxxxxxxx', 'NNP'), ('mobile', 'NNP'), ('xxxxx', 'VBZ'), ('25th', 'CD'), ('june', 'NN'), ('xxx', 'CD'), ('xxxxx', 'NN')], [('he', 'PRP'), ('is', 'VBZ'), ('leading', 'VBG'), ('rural', 'JJ'), ('xxxxx', 'NN'), ('to', 'TO'), ('a', 'DT'), ('healthier', 'JJR'), ('tomorrow', 'NN'), ('one', 'CD'), ('xxxxxx', 'NN'), ('at', 'IN'), ('a', 'DT'), ('time', 'NN'), ('xxx', 'JJ'), ('xxxxxxxxx', 'NNP'), ('xxxxxx', 'NN'), ('of', 'IN'), ('xxxxxxxx', 'NNP'), ('the', 'DT'), ('xxxxxxxxxxxxx', 'NNP'), ('two', 'CD'), ('brothers', 'NNS'), ('xxxxxxx', 'VBP'), ('xxxxx', 'NN'), ('for', 'IN'), ('their', 'PRP$'), ('xxxxx', 'NN'), ('invented', 'VBD'), ('a', 'DT'), ('xxxxxx', 'JJ'), ('xxxxxxxx', 'NN'), ('that', 'WDT'), ('is', 'VBZ'), ('yy', 'JJ'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NN')], [('how', 'WRB'), ('are', 'VBP'), ('they', 'PRP'), ('different', 'JJ'), ('from', 'IN'), ('other', 'JJ'), ('accelerators', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('country', 'NN'), ('today', 'NN')], [('xxxxxxx', 'JJ'), ('xxx', 'NNP'), ('yes', 'NN'), ('i', 'NN'), ('agree', 'VBP'), ('i', 'NN'), ('talked', 'VBD'), ('to', 'TO'), ('xxxxxx', 'VB'), ('about', 'IN'), ('this', 'DT'), ('today', 'NN')], [('on', 'IN'), ('01082014', 'CD'), ('at', 'IN')], [('on', 'IN'), ('09062014', 'CD'), ('at', 'IN')], [('on', 'IN'), ('09062014', 'CD'), ('at', 'IN'), ('1955', 'CD'), ('hnin', 'NN'), ('hnin', 'NN'), ('pyne', 'NN')], [('on', 'IN'), ('09062014', 'CD'), ('at', 'IN'), ('2145', 'CD'), ('xxxxxxxxxxxx', 'NN'), ('xxxxxxx', 'NN')], [('on', 'IN'), ('10062014', 'CD'), ('at', 'IN'), ('1311', 'CD'), ('xxxx', 'NNP'), ('xx', 'NNP'), ('xxxxxxxxxxx', 'NN')], [('on', 'IN'), ('12052014', 'CD'), ('at', 'IN'), ('2308', 'CD'), ('xxxx', 'NN'), ('xxxxxxxxxx', 'NN')], [('on', 'IN'), ('14082014', 'CD'), ('at', 'IN'), ('2235', 'CD'), ('hnin', 'NN'), ('hnin', 'NN'), ('pyne', 'NN')], [('on', 'IN'), ('15', 'CD'), ('jul', 'NN'), ('2014', 'CD'), ('at', 'IN')], [('on', 'IN'), ('21062014', 'CD'), ('at', 'IN'), ('103', 'CD'), ('xxxx', 'NNS'), ('xxxxxxxxxx', 'VBP')], [('on', 'IN'), ('21062014', 'CD'), ('at', 'IN'), ('139', 'CD'), ('hnin', 'NN'), ('hnin', 'NN'), ('pyne', 'NN')], [('on', 'IN'), ('21062014', 'CD'), ('at', 'IN'), ('519', 'CD'), ('hnin', 'NN'), ('hnin', 'NN'), ('pyne', 'NN')], [('on', 'IN'), ('22062014', 'CD'), ('at', 'IN'), ('740', 'CD'), ('hnin', 'NN'), ('hnin', 'NN'), ('pyne', 'NN')], [('on', 'IN'), ('29', 'CD'), ('may', 'MD'), ('2014', 'CD'), ('at', 'IN'), ('1506', 'CD'), ('xxxxxxxxx', 'NN'), ('xxxxxxxxx', 'NN')], [('on', 'IN'), ('29062014', 'CD'), ('at', 'IN'), ('2304', 'CD'), ('hnin', 'NN'), ('hnin', 'NN'), ('pyne', 'NN')], [('on', 'IN'), ('4', 'CD'), ('aug', 'JJ'), ('2014', 'CD'), ('at', 'IN')], [('our', 'PRP$'), ('next', 'JJ'), ('parents', 'NNS'), ('xxxx', 'WP'), ('will', 'MD'), ('be', 'VB'), ('held', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('following', 'JJ'), ('dates', 'NNS'), ('xxxxxxxxx', 'VBP'), ('february', 'JJ'), ('22nd', 'CD'), ('march', 'NN'), ('1st', 'CD'), ('8th', 'CD'), ('15th', 'CD'), ('and', 'CC'), ('22nd', 'CD'), ('2014', 'CD'), ('1030', 'CD'), ('am', 'VBP'), ('1230', 'CD'), ('pm', 'NN')], [('xxxxxxxx', 'NN'), ('xxxxxxxxxxx', 'VBD'), ('march', 'RB'), ('16', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('901', 'CD'), ('pm', 'JJ'), ('thanks', 'NNS'), ('xxxxx', 'VBP'), ('xxxxxx', 'VBN'), ('march', 'NN'), ('16', 'CD'), ('2014', 'CD'), ('at', 'IN'), ('527', 'CD'), ('pm', 'JJ'), ('ok', 'NN'), ('i', 'NN'), ('have', 'VBP'), ('it', 'PRP'), ('blocked', 'VBD'), ('out', 'RP')], [('sent', 'NN'), ('on', 'IN'), ('29', 'CD'), ('january', 'JJ'), ('2014', 'CD'), ('thank', 'NN'), ('you', 'PRP')], [('similarly', 'RB'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('which', 'WDT'), ('has', 'VBZ'), ('been', 'VBN'), ('trying', 'VBG'), ('to', 'TO'), ('warm', 'VB'), ('up', 'RP'), ('to', 'TO'), ('the', 'DT'), ('government', 'NN'), ('and', 'CC'), ('earn', 'VB'), ('the', 'DT'), ('goodwill', 'NN'), ('it', 'PRP'), ('enjoyed', 'VBD'), ('of', 'IN'), ('the', 'DT'), ('previous', 'JJ'), ('regime', 'NN'), ('was', 'VBD'), ('slapped', 'VBN'), ('a', 'DT'), ('fourth', 'JJ'), ('penalty', 'NN'), ('this', 'DT'), ('week', 'NN'), ('for', 'IN'), ('failing', 'VBG'), ('to', 'TO'), ('meet', 'VB'), ('gasproduction', 'JJ'), ('targets', 'NNS'), ('at', 'IN'), ('its', 'PRP$'), ('xxxxxx', 'NNP'), ('offshore', 'NN'), ('field', 'NN')], [('tmpreportsprolog', 'NN'), ('yy', 'CC'), ('y', 'NN'), ('thu', 'NN'), ('lynx', 'NN')], [('sharepoint', 'NN'), ('keynote', 'NN'), ('xxxxx', 'NN'), ('at', 'IN'), ('830', 'CD'), ('am', 'VBP'), ('pt', 'VBN'), ('march', 'NN'), ('3', 'CD'), ('convergence', 'NN'), ('keynote', 'NN'), ('xxxxx', 'NN'), ('at', 'IN'), ('6', 'CD'), ('am', 'VBP'), ('pt', 'VBN'), ('march', 'NN'), ('4', 'CD'), ('customers', 'NNS'), ('continue', 'VBP'), ('to', 'TO'), ('win', 'VB'), ('with', 'IN'), ('xxxxxxxxx', 'JJ'), ('xxxxxxxx', 'NN')], [('may', 'MD'), ('you', 'PRP'), ('always', 'RB'), ('fulfill', 'VB'), ('me', 'PRP')], [('ffmpeg', 'NN'), ('i', 'NN'), ('rtmpsourceadsparxmobiyyyyylivecuepointsourcestream', 'VBP'), ('vf', 'NN'), ('cropdetect24161', 'NN'), ('outflv', 'NN')], [('effect', 'NN'), ('of', 'IN'), ('xxxxxxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('if', 'IN'), ('implemented', 'VBN'), ('today', 'NN'), ('1prices', 'CD'), ('of', 'IN'), ('all', 'DT'), ('things', 'NNS'), ('will', 'MD'), ('come', 'VB'), ('down', 'RP'), ('2salaried', 'CD'), ('people', 'NNS'), ('will', 'MD'), ('get', 'VB'), ('more', 'JJR'), ('cash', 'NN'), ('in', 'IN'), ('hand', 'NN'), ('yxxxxxxxxxx', 'NN'), ('power', 'NN'), ('of', 'IN'), ('xxxxxxx', 'NNP'), ('will', 'MD'), ('increased', 'VBD'), ('4demand', 'CD'), ('will', 'MD'), ('boosted', 'VBN'), ('so', 'RB'), ('is', 'VBZ'), ('production', 'NN'), ('and', 'CC'), ('industrialisation', 'NN'), ('and', 'CC'), ('ultimately', 'RB'), ('more', 'RBR'), ('employment', 'NN'), ('opportunity', 'NN'), ('for', 'IN'), ('youth', 'NN'), ('y', 'NN'), ('surplus', 'NN'), ('revenue', 'NN'), ('to', 'TO'), ('the', 'DT'), ('govt', 'NN'), ('for', 'IN'), ('effective', 'JJ'), ('health', 'NN'), ('education', 'NN'), ('infrastructure', 'NN'), ('security', 'NN'), ('social', 'JJ'), ('works', 'NNS')], [('x', 'RB'), ('all', 'DT'), ('we', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('do', 'VB'), ('the', 'DT'), ('code', 'NN'), ('freeze', 'NN'), ('by', 'IN'), ('tomorrow', 'NN'), ('afternoon', 'NN'), ('for', 'IN'), ('the', 'DT'), ('release', 'NN'), ('one', 'CD'), ('and', 'CC'), ('move', 'VB'), ('the', 'DT'), ('build', 'NN'), ('to', 'TO'), ('the', 'DT'), ('production', 'NN'), ('by', 'IN'), ('the', 'DT'), ('xxx', 'NN')], [('xxxxxxx', 'NN'), ('can', 'MD'), ('you', 'PRP'), ('talk', 'VB'), ('to', 'TO'), ('xxxxx', 'VB'), ('for', 'IN'), ('sure', 'JJ'), ('today', 'NN')], [('xxxxxxx', 'NN'), ('1000', 'CD'), ('by', 'IN'), ('end', 'NN'), ('of', 'IN'), ('may', 'MD')], [('xxxxxxx', 'NN'), ('we', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('share', 'NN'), ('with', 'IN'), ('shantanu', 'PDT'), ('the', 'DT'), ('weekly', 'JJ'), ('report', 'NN'), ('by', 'IN'), ('friday', 'JJ'), ('xxx', 'NNS')], [('a', 'DT'), ('better', 'JJR'), ('way', 'NN'), ('of', 'IN'), ('phrasing', 'VBG'), ('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('i', 'JJ'), ('request', 'NN'), ('you', 'PRP'), ('to', 'TO'), ('sanction', 'VB'), ('leave', 'VB'), ('on', 'IN'), ('monday', 'NN'), ('or', 'CC'), ('i', 'VB'), ('request', 'VBP'), ('you', 'PRP'), ('to', 'TO'), ('grant', 'VB'), ('leave', 'VB'), ('on', 'IN'), ('monday', 'NN')], [('a', 'DT'), ('gentle', 'JJ'), ('reminder', 'NN'), ('that', 'IN'), ('we', 'PRP'), ('will', 'MD'), ('hv', 'VB'), ('weekly', 'JJ'), ('sales', 'NNS'), ('meeting', 'VBG'), ('tomorrowthu', 'JJ'), ('10am', 'CD')], [('a', 'DT'), ('long', 'JJ'), ('manual', 'NN'), ('would', 'MD'), ('follow', 'VB'), ('on', 'IN'), ('monday', 'NN')], [('a', 'DT'), ('quick', 'JJ'), ('reminder', 'NN'), ('about', 'IN'), ('xxxxxs', 'NNP'), ('birthday', 'NN'), ('party', 'NN'), ('tomorrow', 'NN'), ('10th', 'CD'), ('april', 'NN'), ('at', 'IN'), ('4pm', 'CD')], [('a', 'DT'), ('quick', 'JJ'), ('update', 'NN'), ('from', 'IN'), ('our', 'PRP$'), ('end', 'NN'), ('is', 'VBZ'), ('that', 'IN'), ('we', 'PRP'), ('will', 'MD'), ('also', 'RB'), ('be', 'VB'), ('in', 'IN'), ('xxxxx', 'NN'), ('on', 'IN'), ('the', 'DT'), ('6th', 'CD'), ('and', 'CC'), ('7th', 'CD'), ('of', 'IN'), ('february', 'JJ'), ('since', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('been', 'VBN'), ('invited', 'VBN'), ('to', 'TO'), ('showcase', 'VB'), ('at', 'IN'), ('the', 'DT'), ('8th', 'CD'), ('xxxxx', 'JJ'), ('digital', 'JJ'), ('summit', 'NN'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('largest', 'JJS'), ('annual', 'JJ'), ('gatherings', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('digital', 'JJ'), ('industry', 'NN'), ('in', 'IN'), ('xxxxx', 'NN')], [('a', 'DT'), ('reminder', 'NN'), ('for', 'IN'), ('tomorrows', 'NNS'), ('meeting', 'VBG'), ('in', 'IN'), ('hall5', 'NN'), ('xxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('between', 'IN'), ('345', 'CD'), ('500', 'CD'), ('pm', 'NN')], [('a', 'DT'), ('special', 'JJ'), ('thanks', 'NNS'), ('for', 'IN'), ('all', 'DT'), ('participants', 'NNS'), ('from', 'IN'), ('various', 'JJ'), ('teams', 'NNS'), ('who', 'WP'), ('would', 'MD'), ('be', 'VB'), ('participating', 'VBG'), ('on', 'IN'), ('saturday', 'NN')], [('a', 'DT'), ('special', 'JJ'), ('thanks', 'NNS'), ('to', 'TO'), ('my', 'PRP$'), ('cofounder', 'NN'), ('xxxxxx', 'NNP'), ('xxxxxxx', 'NN'), ('who', 'WP'), ('has', 'VBZ'), ('spent', 'VBN'), ('time', 'NN'), ('reviewing', 'VBG'), ('the', 'DT'), ('pitch', 'NN'), ('with', 'IN'), ('the', 'DT'), ('startups', 'NNS'), ('and', 'CC'), ('getting', 'VBG'), ('the', 'DT'), ('teams', 'NNS'), ('ready', 'VBP'), ('for', 'IN'), ('the', 'DT'), ('session', 'NN'), ('today', 'NN')], [('xxx', 'JJ'), ('comments', 'NNS'), ('on', 'IN'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('on', 'IN'), ('xxxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('published', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('xxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('posted', 'VBD'), ('february', 'JJ'), ('14', 'CD'), ('2014', 'CD')], [('accs', 'JJ'), ('legal', 'JJ'), ('argument', 'NN'), ('gets', 'VBZ'), ('careful', 'JJ'), ('hearing', 'NN'), ('by', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('in', 'IN'), ('xxxxxxxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxx', 'NNP'), ('posted', 'VBD'), ('february', 'JJ'), ('25', 'CD'), ('2014journal', 'CD'), ('of', 'IN'), ('xxxxxxxx', 'JJ'), ('xxxxxxx', 'NNP'), ('xxxxxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('suggests', 'VBZ'), ('xxx', 'VBP'), ('exposure', 'NN'), ('from', 'IN'), ('thermal', 'JJ'), ('paper', 'NN'), ('within', 'IN'), ('xxxx', 'NNP'), ('xxxxxx', 'NNP'), ('posted', 'VBD'), ('february', 'JJ'), ('25', 'CD'), ('xxxxxxxxxx', 'JJ'), ('xxxxxxx', 'NNP'), ('puts', 'VBZ'), ('xxxxxxxx', 'NN'), ('freeze', 'NN'), ('on', 'IN'), ('xxxxxxxx', 'JJ'), ('expansion', 'NN'), ('says', 'VBZ'), ('leading', 'VBG'), ('xxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('posted', 'VBD'), ('february', 'JJ'), ('25', 'CD'), ('yyy', 'NN')], [('xxx', 'NN'), ('xxxxxxxx', 'NNS'), ('wednesday', 'VBP'), ('may', 'MD'), ('14', 'CD'), ('2014', 'CD')], [('additional', 'JJ'), ('discounts', 'NNS'), ('may', 'MD'), ('xxxxx', 'VB'), ('xxxxxxxxx', 'NNP'), ('xx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('or', 'CC')], [('agenda900am', 'NN'), ('registrationsessi', 'NN')], [('arcad', 'NN'), ('y', 'CC'), ('04', 'CD'), ('mar', 'NN'), ('2014', 'CD'), ('euroyyyyy', 'NN'), ('xxxxxx', 'VBD'), ('163503', 'CD'), ('xxxxxxxxxxxxx', 'NNP'), ('rt', 'NN'), ('x', 'NNP'), ('henkdejongcy', 'VBZ'), ('our', 'PRP$'), ('dear', 'JJ'), ('client', 'NN'), ('xxxxxxx', 'NN'), ('is', 'VBZ'), ('top', 'JJ'), ('sponsor', 'NN'), ('of', 'IN'), ('xx', 'NNP'), ('habitat', 'NN'), ('efforts', 'NNS'), ('towards', 'NNS'), ('xxxxxxx', 'VBP'), ('xxx', 'NNP'), ('httptco1j7ewv5eeg', 'VBD'), ('5', 'CD'), ('hours', 'NNS'), ('ago', 'RB')], [('arcad', 'NN'), ('y', 'CC'), ('20', 'CD'), ('feb', 'NN'), ('2014', 'CD'), ('euroyyyyy', 'NN'), ('xxxxxx', 'VBD'), ('163502', 'CD'), ('gmt2yyyyyyyy', 'NN'), ('xxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('delivers', 'NNS'), ('y', 'VBP'), ('operating', 'VBG'), ('profit', 'NN'), ('growth', 'NN'), ('in', 'IN'), ('2013', 'CD'), ('xxxxxxxxx', 'NN'), ('xxxxxxxxxx', 'NNP'), ('koersdoelen', 'NNP'), ('voor', 'NN'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxx', 'NNP'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxxxxx', 'NNP'), ('en', 'FW'), ('xxxxxxxxxxxxx', 'NN')], [('arcad', 'NN'), ('yyyy', 'CC'), ('21', 'CD'), ('feb', 'NN'), ('2014', 'CD'), ('euroyyyyy', 'NN'), ('xxxxxx', 'VBD'), ('163502', 'CD'), ('xxxxxxxxxxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('zit', 'NNP'), ('xxxx', 'NNP'), ('in', 'IN'), ('xxxxxxx', 'NNP'), ('xx', 'NNP'), ('xxx', 'NNP'), ('beurs', 'NN')], [('xxx', 'NN'), ('just', 'RB'), ('started', 'VBD'), ('work', 'NN'), ('today', 'NN'), ('since', 'IN'), ('xgmac', 'NN'), ('work', 'NN'), ('got', 'VBD'), ('done', 'VBN')], [('aadre', 'NN'), ('before', 'IN'), ('december', 'JJ'), ('10th', 'CD'), ('and', 'CC'), ('after', 'IN'), ('january', 'JJ'), ('20th', 'CD'), ('ille', 'NN'), ('irteeni', 'NN')], [('xxxxxx', 'NN'), ('amp', 'NN'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('ran', 'VBD'), ('xxxxxxx', 'NNP'), ('xx', 'NNP'), ('business', 'NN'), ('at', 'IN'), ('xxxxxxxxxxx', 'PDT'), ('the', 'DT'), ('parent', 'NN'), ('company', 'NN'), ('behind', 'IN'), ('xxxxxx', 'JJ'), ('yy', 'NNS'), ('worldwide', 'IN'), ('middleware', 'NN'), ('market', 'NN'), ('share', 'NN'), ('as', 'IN'), ('svp', 'NN'), ('since', 'IN'), ('january', 'JJ'), ('2014this', 'CD'), ('month', 'NN')], [('xxxxxxxx', 'JJ'), ('xxxxx', 'NN'), ('we', 'PRP'), ('start', 'VBP'), ('including', 'VBG'), ('xxx', 'NN'), ('on', 'IN'), ('our', 'PRP$'), ('calls', 'NNS'), ('from', 'IN'), ('tomorrow', 'NN')], [('xxxxxxxx', 'JJ'), ('xxxxx', 'CD'), ('10222013', 'CD'), ('0616', 'CD'), ('pm', 'NN')], [('xxxxxxxx', 'JJ'), ('mtg', 'NN'), ('is', 'VBZ'), ('tomorrow', 'NN'), ('morning', 'NN'), ('at', 'IN'), ('9am', 'CD'), ('for', 'IN'), ('ujwal', 'NN')], [('account', 'NN'), ('xxxxxxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('mon', 'VBD'), ('fri', 'JJ'), ('10', 'CD'), ('am', 'VBP'), ('to', 'TO'), ('6', 'CD'), ('pm', 'NNS'), ('sat', 'VBD'), ('10', 'CD'), ('am', 'VBP'), ('to', 'TO'), ('1', 'CD'), ('pm', 'NNS'), ('contact', 'JJ'), ('person', 'NN'), ('xxxx', 'NN')], [('xxxxxx', 'JJ'), ('item', 'NN'), ('y', 'NN'), ('on', 'IN'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('to', 'TO'), ('them', 'PRP'), ('now', 'RB'), ('they', 'PRP'), ('are', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('give', 'VB'), ('us', 'PRP'), ('notice', 'JJ'), ('period', 'NN'), ('till', 'IN'), ('july', '$'), ('12', 'CD'), ('at', 'IN'), ('least', 'JJS'), ('instead', 'RB'), ('of', 'IN'), ('june', 'JJ'), ('end', 'NN')], [('actual', 'JJ'), ('product', 'NN'), ('launch', 'NN'), ('pencilled', 'VBD'), ('for', 'IN'), ('late', 'JJ'), ('june', 'NN')], [('actually', 'RB'), ('10th', 'CD'), ('is', 'VBZ'), ('sunday', 'JJ')], [('actually', 'RB'), ('i', 'NN'), ('also', 'RB'), ('need', 'VBP'), ('rgnnpt', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('morning', 'NN'), ('of', 'IN'), ('the', 'DT'), ('25th', 'JJ'), ('april', 'NN'), ('7', 'CD'), ('am', 'VBP')], [('additionally', 'RB'), ('i', 'VB'), ('should', 'MD'), ('be', 'VB'), ('seeing', 'VBG'), ('the', 'DT'), ('analysis', 'NN'), ('for', 'IN'), ('each', 'DT'), ('client', 'NN'), ('from', 'IN'), ('today', 'NN'), ('onwards', 'NNS')], [('admissions', 'NNS'), ('have', 'VBP'), ('closed', 'VBN'), ('for', 'IN'), ('our', 'PRP$'), ('inaugural', 'JJ'), ('cohort', 'NN'), ('and', 'CC'), ('it', 'PRP'), ('started', 'VBD'), ('june', 'NN'), ('11th', 'CD')], [('after', 'IN'), ('finishing', 'VBG'), ('ill', 'JJ'), ('send', 'VB'), ('you', 'PRP'), ('a', 'DT'), ('writeup', 'NN'), ('and', 'CC'), ('on', 'IN'), ('the', 'DT'), ('basis', 'NN'), ('of', 'IN'), ('that', 'DT'), ('we', 'PRP'), ('will', 'MD'), ('meet', 'VB'), ('tomorrow', 'NN'), ('in', 'IN'), ('the', 'DT'), ('office', 'NN'), ('to', 'TO'), ('make', 'VB'), ('a', 'DT'), ('concrete', 'JJ'), ('plan', 'NN'), ('to', 'TO'), ('make', 'VB'), ('this', 'DT'), ('plan', 'NN'), ('to', 'TO'), ('work', 'VB')], [('again', 'RB'), ('for', 'IN'), ('your', 'PRP$'), ('reference', 'NN'), ('xxxxx', 'NN'), ('xx', 'NNP'), ('x', 'NNP'), ('tata', 'NN'), ('xxxxxxxxxx', 'NN'), ('time', 'NN'), ('xxx', 'IN'), ('all', 'DT'), ('are', 'VBP'), ('welcome', 'JJ')], [('again', 'RB'), ('i', 'JJ'), ('fully', 'RB'), ('understand', 'VBP'), ('that', 'IN'), ('this', 'DT'), ('may', 'MD'), ('not', 'RB'), ('be', 'VB'), ('the', 'DT'), ('typical', 'JJ'), ('process', 'NN'), ('but', 'CC'), ('getting', 'VBG'), ('screens', 'NNS'), ('in', 'IN'), ('batches', 'NNS'), ('starting', 'VBG'), ('monday', 'NN'), ('or', 'CC'), ('over', 'IN'), ('the', 'DT'), ('weekend', 'NN'), ('will', 'MD'), ('at', 'IN'), ('the', 'DT'), ('very', 'RB'), ('least', 'JJS'), ('save', 'VB'), ('valuable', 'JJ'), ('time', 'NN'), ('on', 'IN'), ('our', 'PRP$'), ('end', 'NN')], [('ah', 'NN'), ('and', 'CC'), ('when', 'WRB'), ('i', 'JJ'), ('get', 'VBP'), ('time', 'NN'), ('today', 'NN'), ('ill', 'VB'), ('write', 'VB'), ('to', 'TO'), ('xxxxx', 'VB'), ('our', 'PRP$'), ('listener', 'NN')], [('xxxxxxxxx', 'NN'), ('is', 'VBZ'), ('absent', 'JJ'), ('so', 'RB'), ('can', 'MD'), ('one', 'CD'), ('of', 'IN'), ('you', 'PRP'), ('sit', 'VBP'), ('with', 'IN'), ('them', 'PRP'), ('today', 'NN')], [('xxxxx', 'JJ'), ('please', 'NN'), ('email', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('details', 'NNS'), ('today', 'NN')], [('xxxs', 'JJ'), ('photos', 'NNS'), ('from', 'IN'), ('mondays', 'NNS'), ('lunc', 'VBP')], [('all', 'DT'), ('xxxxxxxxx', 'NNP'), ('issued', 'VBD'), ('devices', 'NNS'), ('for', 'IN'), ('your', 'PRP$'), ('project', 'NN'), ('has', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('returned', 'VBN'), ('to', 'TO'), ('me', 'PRP'), ('on', 'IN'), ('or', 'CC'), ('before', 'IN'), ('16th', 'CD'), ('may', 'MD'), ('2014', 'VB')], [('all', 'DT'), ('xxxxx', 'NN'), ('of', 'IN'), ('xxxxxxx', 'NN'), ('is', 'VBZ'), ('done', 'VBN'), ('currently', 'RB'), ('i', 'VBP'), ('am', 'VBP'), ('working', 'VBG'), ('on', 'IN'), ('xxxx', 'JJ'), ('xxxx', 'NN'), ('structure', 'NN'), ('will', 'MD'), ('be', 'VB'), ('done', 'VBN'), ('before', 'IN'), ('monday', 'NN')], [('all', 'DT'), ('students', 'NNS'), ('must', 'MD'), ('be', 'VB'), ('in', 'IN'), ('proper', 'JJ'), ('uniform', 'NN'), ('with', 'IN'), ('effect', 'NN'), ('from', 'IN'), ('november', '$'), ('6', 'CD')], [('all', 'PDT'), ('the', 'DT'), ('best', 'JJS'), ('with', 'IN'), ('your', 'PRP$'), ('childs', 'NNS'), ('admission', 'NN'), ('today', 'NN')], [('all', 'PDT'), ('the', 'DT'), ('issues', 'NNS'), ('in', 'IN'), ('spreadsheet', 'NN'), ('will', 'MD'), ('be', 'VB'), ('resolved', 'VBN'), ('by', 'IN'), ('eod', 'NN'), ('tomorrow', 'NN')], [('all', 'PDT'), ('the', 'DT'), ('list', 'NN'), ('of', 'IN'), ('tasks', 'NNS'), ('which', 'WDT'), ('we', 'PRP'), ('have', 'VBP'), ('discussed', 'VBN'), ('on', 'IN'), ('friday', 'JJ'), ('morning', 'NN'), ('meeting', 'NN'), ('are', 'VBP'), ('completed', 'VBN')], [('all', 'DT'), ('this', 'DT'), ('may', 'MD'), ('change', 'VB'), ('of', 'IN'), ('course', 'NN'), ('as', 'IN'), ('the', 'DT'), ('opex', 'NN'), ('savings', 'NNS'), ('plan', 'NN'), ('unfolds', 'VBZ'), ('euphemism', 'NN'), ('for', 'IN'), ('youknowwhat', 'WP')], [('allow', 'VB'), ('me', 'PRP'), ('the', 'DT'), ('weekend', 'NN'), ('to', 'TO'), ('check', 'VB'), ('this', 'DT'), ('up', 'RP'), ('then', 'RB')], [('already', 'RB'), ('missed', 'VBN'), ('this', 'DT'), ('months', 'NNS'), ('date', 'NN'), ('too', 'RB')], [('also', 'RB'), ('i', 'NN'), ('have', 'VBP'), ('updated', 'VBN'), ('the', 'DT'), ('pd', 'NN'), ('release', 'NN'), ('cycle', 'NN'), ('sheet', 'NN'), ('based', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('discussion', 'NN'), ('we', 'PRP'), ('had', 'VBD'), ('in', 'IN'), ('todays', 'NNS'), ('call', 'VBP')], [('also', 'RB'), ('i', 'RB'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('know', 'VB'), ('what', 'WP'), ('technologies', 'VBZ'), ('you', 'PRP'), ('require', 'VBP'), ('and', 'CC'), ('i', 'VBP'), ('will', 'MD'), ('find', 'VB'), ('our', 'PRP$'), ('about', 'IN'), ('the', 'DT'), ('rates', 'NNS'), ('so', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('discuss', 'VB'), ('it', 'PRP'), ('today', 'NN')], [('also', 'RB'), ('are', 'VBP'), ('talking', 'VBG'), ('to', 'TO'), ('couple', 'NN'), ('of', 'IN'), ('people', 'NNS'), ('today', 'NN'), ('tomorrow', 'NN')], [('also', 'RB'), ('cibi', 'VBZ'), ('only', 'RB'), ('these', 'DT'), ('designs', 'NNS'), ('are', 'VBP'), ('sorted', 'VBN'), ('lets', 'NNS'), ('aim', 'VBP'), ('to', 'TO'), ('start', 'VB'), ('the', 'DT'), ('sample', 'NN'), ('work', 'NN'), ('by', 'IN'), ('this', 'DT'), ('week', 'NN'), ('end', 'NN'), ('hopefully', 'RB')], [('also', 'RB'), ('meeting', 'VBG'), ('xxx', 'PRP'), ('from', 'IN'), ('xxxxxxxx', 'NN'), ('in', 'IN'), ('xxxxxxxxx', 'NN'), ('on', 'IN'), ('22nd', 'CD'), ('may', 'MD')], [('also', 'RB'), ('mention', 'VB'), ('them', 'PRP'), ('that', 'DT'), ('availability', 'NN'), ('of', 'IN'), ('server', 'NN'), ('over', 'IN'), ('weekend', 'NN'), ('is', 'VBZ'), ('crucial', 'JJ'), ('for', 'IN'), ('your', 'PRP$'), ('testing', 'NN')], [('also', 'RB'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('about', 'IN'), ('the', 'DT'), ('schedule', 'NN'), ('for', 'IN'), ('tomorrows', 'NNS'), ('class', 'NN')], [('also', 'RB'), ('the', 'DT'), ('class', 'NN'), ('photo', 'NN'), ('will', 'MD'), ('be', 'VB'), ('taken', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('25th', 'CD'), ('tuesday', 'NN'), ('feb', 'NN')], [('also', 'RB'), ('we', 'PRP'), ('have', 'VBP'), ('finalized', 'VBN'), ('the', 'DT'), ('detailed', 'JJ'), ('reports', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('traffic', 'NN'), ('and', 'CC'), ('will', 'MD'), ('share', 'NN'), ('you', 'PRP'), ('the', 'DT'), ('same', 'JJ'), ('by', 'IN'), ('tomorrow', 'NN')], [('also', 'RB'), ('i', 'JJ'), ('havent', 'NN'), ('gotten', 'NN'), ('my', 'PRP$'), ('scores', 'NNS'), ('yet', 'RB'), ('should', 'MD'), ('cone', 'VB'), ('around', 'RP'), ('july', 'JJ'), ('ninth', 'JJ'), ('but', 'CC'), ('im', 'JJ'), ('starting', 'VBG'), ('my', 'PRP$'), ('clinical', 'JJ'), ('rotations', 'NNS'), ('next', 'IN'), ('week', 'NN'), ('with', 'IN'), ('psychiatr', 'NN')], [('also', 'RB'), ('as', 'IN'), ('i', 'NN'), ('mentioned', 'VBD'), ('to', 'TO'), ('you', 'PRP'), ('today', 'NN'), ('i', 'NNS'), ('have', 'VBP'), ('changed', 'VBN'), ('the', 'DT'), ('manual', 'JJ'), ('alerts', 'NNS'), ('based', 'VBN'), ('on', 'IN'), ('alertorigin', 'NN'), ('not', 'RB'), ('alert', 'JJ'), ('status', 'NN')], [('also', 'RB'), ('by', 'IN'), ('y', 'JJ'), ('lets', 'NNS'), ('sit', 'VBP'), ('together', 'RB'), ('and', 'CC'), ('plan', 'VB'), ('the', 'DT'), ('next', 'JJ'), ('steps', 'NNS'), ('on', 'IN'), ('this', 'DT'), ('since', 'IN'), ('me', 'PRP'), ('and', 'CC'), ('xxxxxx', 'NNS'), ('are', 'VBP'), ('meeting', 'VBG'), ('them', 'PRP'), ('on', 'IN'), ('thursday', 'NN')], [('also', 'RB'), ('hope', 'VBP'), ('xxxxx', 'JJ'), ('went', 'VBD'), ('well', 'RB'), ('today', 'NN')], [('also', 'RB'), ('not', 'RB'), ('able', 'JJ'), ('to', 'TO'), ('see', 'VB'), ('any', 'DT'), ('manual', 'JJ'), ('alerts', 'VBZ'), ('other', 'JJ'), ('than', 'IN'), ('tomorrow', 'NN')], [('also', 'RB'), ('the', 'DT'), ('explicit', 'NN'), ('date', 'NN'), ('on', 'IN'), ('the', 'DT'), ('today', 'NN'), ('line', 'NN'), ('of', 'IN'), ('alerts', 'NNS'), ('can', 'MD'), ('be', 'VB'), ('removed', 'VBN')], [('also', 'RB'), ('we', 'PRP'), ('are', 'VBP'), ('meeting', 'VBG'), ('xxxx', 'NNP'), ('and', 'CC'), ('xxxxx', 'NNP'), ('from', 'IN'), ('xxxxxx', 'NNP'), ('next', 'JJ'), ('week', 'NN'), ('in', 'IN'), ('xxxxxxxxx', 'NN')], [('also', 'RB'), ('you', 'PRP'), ('had', 'VBD'), ('told', 'VBN'), ('that', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('give', 'VB'), ('us', 'PRP'), ('an', 'DT'), ('early', 'JJ'), ('drop', 'NN'), ('untested', 'VBD'), ('of', 'IN'), ('the', 'DT'), ('xxx', 'NNP'), ('reusable', 'JJ'), ('pieces', 'NNS'), ('by', 'IN'), ('aug', 'NN'), ('22nd', 'CD')], [('also', 'RB'), ('ill', 'RB'), ('be', 'VB'), ('working', 'VBG'), ('from', 'IN'), ('home', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('likely', 'JJ'), ('to', 'TO'), ('be', 'VB'), ('on', 'IN'), ('leave', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('or', 'CC'), ('working', 'VBG'), ('from', 'IN'), ('home', 'NN')], [('although', 'IN'), ('he', 'PRP'), ('expressed', 'VBD'), ('some', 'DT'), ('discomfort', 'NN'), ('with', 'IN'), ('the', 'DT'), ('short', 'JJ'), ('window', 'NN'), ('affecting', 'VBG'), ('his', 'PRP$'), ('july', 'NN'), ('planning', 'NN'), ('and', 'CC'), ('asked', 'VBD'), ('that', 'IN'), ('any', 'DT'), ('future', 'NN'), ('planned', 'VBN'), ('absences', 'NNS'), ('be', 'VB'), ('discussed', 'VBN'), ('with', 'IN'), ('him', 'PRP'), ('well', 'RB'), ('in', 'IN'), ('advance', 'NN'), ('so', 'IN'), ('he', 'PRP'), ('can', 'MD'), ('plan', 'VB'), ('for', 'IN'), ('better', 'JJR'), ('business', 'NN'), ('continuity', 'NN')], [('am', 'VBP'), ('11122013', 'CD'), ('1302', 'CD'), ('schrieb', 'NN'), ('xxxxxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('my', 'PRP$'), ('bank', 'NN'), ('account', 'NN'), ('yyyyyyyyyyyyyy', 'JJ'), ('xxxx', 'NNP'), ('code', 'NN'), ('hdfcyyyyyyy', 'NN')], [('am', 'VBP'), ('back', 'RB'), ('in', 'IN'), ('xxxxx', 'NN'), ('on', 'IN'), ('sunday', 'NN'), ('am', 'VBP')], [('am', 'VBP'), ('back', 'RB'), ('in', 'IN'), ('xxxxx', 'NN'), ('this', 'DT'), ('coming', 'VBG'), ('weekend', 'NN')], [('am', 'VBP'), ('meeting', 'VBG'), ('ujwal', 'NN'), ('tomorrow', 'NN')], [('am', 'VBP'), ('not', 'RB'), ('feeling', 'VBG'), ('well', 'RB'), ('for', 'IN'), ('that', 'DT'), ('i', 'NN'), ('ll', 'VBP'), ('leave', 'VBP'), ('early', 'JJ'), ('today', 'NN')], [('am', 'VBP'), ('slammed', 'VBN'), ('this', 'DT'), ('weekend', 'NN'), ('with', 'IN'), ('kid', 'JJ'), ('duty', 'NN'), ('as', 'IN'), ('my', 'PRP$'), ('wife', 'NN'), ('is', 'VBZ'), ('on', 'IN'), ('call', 'NN')], [('am', 'VBP'), ('working', 'VBG'), ('on', 'IN'), ('it', 'PRP'), ('will', 'MD'), ('give', 'VB'), ('you', 'PRP'), ('an', 'DT'), ('update', 'JJ'), ('end', 'NN'), ('of', 'IN'), ('tomorrow', 'NN')], [('xxxx', 'JJ'), ('x', 'NNP'), ('jan', 'NN'), ('22', 'CD'), ('2014', 'CD'), ('0856pm', 'CD'), ('xxx', 'NNP'), ('original', 'JJ'), ('message', 'NN')], [('xxxx', 'JJ'), ('x', 'NNP'), ('jan', 'NN'), ('23', 'CD'), ('2014', 'CD'), ('0843pm', 'CD'), ('xxx', 'NN')], [('an', 'DT'), ('interesting', 'JJ'), ('observation', 'NN'), ('on', 'IN'), ('09th', 'CD'), ('august', 'NN')], [('an', 'DT'), ('interesting', 'JJ'), ('observation', 'NN'), ('on', 'IN'), ('11th', 'CD'), ('august', 'NN')], [('an', 'DT'), ('interesting', 'JJ'), ('observation', 'NN'), ('on', 'IN'), ('12th', 'CD'), ('august', 'NN')], [('an', 'DT'), ('interesting', 'JJ'), ('observation', 'NN'), ('on', 'IN'), ('13th', 'CD'), ('august', 'NN')], [('an', 'DT'), ('interesting', 'JJ'), ('observation', 'NN'), ('on', 'IN'), ('13th', 'CD'), ('august', 'NN')], [('an', 'DT'), ('interesting', 'JJ'), ('observation', 'NN'), ('on', 'IN'), ('20th', 'CD'), ('july', 'NN')], [('an', 'DT'), ('interesting', 'JJ'), ('observation', 'NN'), ('on', 'IN'), ('22nd', 'CD'), ('july', 'NN')], [('an', 'DT'), ('interesting', 'JJ'), ('observation', 'NN'), ('on', 'IN'), ('28th', 'CD'), ('july', 'NN')], [('an', 'DT'), ('interesting', 'JJ'), ('observation', 'NN'), ('on', 'IN'), ('31st', 'CD'), ('july', 'NN')], [('an', 'DT'), ('interesting', 'JJ'), ('observations', 'NNS'), ('on', 'IN'), ('11th', 'CD'), ('august', 'NN')], [('an', 'DT'), ('update', 'NN'), ('from', 'IN'), ('my', 'PRP$'), ('side', 'NN'), ('the', 'DT'), ('golive', 'NN'), ('date', 'NN'), ('has', 'VBZ'), ('been', 'VBN'), ('extended', 'VBN'), ('to', 'TO'), ('march', 'VB'), ('31st', 'CD')], [('xxxxx', 'JJ'), ('xxxxxxxxx', 'NN'), ('from', 'IN'), ('my', 'PRP$'), ('xxxxxxx', 'JJ'), ('office', 'NN'), ('will', 'MD'), ('talk', 'VB'), ('to', 'TO'), ('you', 'PRP'), ('on', 'IN'), ('monday', 'NN')], [('xxxxx', 'NN'), ('called', 'VBN'), ('me', 'PRP'), ('and', 'CC'), ('requested', 'VBD'), ('to', 'TO'), ('reschedule', 'VB'), ('as', 'IN'), ('he', 'PRP'), ('has', 'VBZ'), ('a', 'DT'), ('heavy', 'JJ'), ('day', 'NN'), ('today', 'NN'), ('on', 'IN'), ('account', 'NN'), ('of', 'IN'), ('the', 'DT'), ('long', 'JJ'), ('weekend', 'NN'), ('coming', 'VBG'), ('up', 'RP')], [('and', 'CC'), ('xxxxxxxx', 'NNP'), ('is', 'VBZ'), ('staying', 'VBG'), ('with', 'IN'), ('us', 'PRP'), ('for', 'IN'), ('the', 'DT'), ('weekend', 'NN')], [('and', 'CC'), ('by', 'IN'), ('the', 'DT'), ('way', 'NN'), ('its', 'PRP$'), ('1015', 'CD'), ('in', 'IN'), ('the', 'DT'), ('night', 'NN'), ('here', 'RB'), ('and', 'CC'), ('we', 'PRP'), ('have', 'VBP'), ('a', 'DT'), ('midnight', 'NN'), ('sun', 'NN'), ('here', 'RB'), ('in', 'IN'), ('the', 'DT'), ('summers', 'NNS')], [('and', 'CC'), ('by', 'IN'), ('tomorrow', 'NN'), ('am', 'VBP'), ('i', 'JJ'), ('presume', 'VBP'), ('you', 'PRP'), ('meant', 'VBP'), ('fri', 'JJ'), ('am', 'VBP'), ('pacific', 'JJ'), ('time', 'NN'), ('as', 'IN'), ('sady', 'JJ'), ('ha', 'NN'), ('mentioned', 'VBD')], [('and', 'CC'), ('can', 'MD'), ('i', 'VB'), ('sne', 'JJ'), ('wireframe', 'NN'), ('draft', 'NN'), ('to', 'TO'), ('xxxxxxxx', 'VB'), ('today', 'NN')], [('and', 'CC'), ('do', 'VB'), ('you', 'PRP'), ('have', 'VB'), ('sufficient', 'JJ'), ('work', 'NN'), ('for', 'IN'), ('next', 'JJ'), ('weekheard', 'NN'), ('the', 'DT'), ('other', 'JJ'), ('day', 'NN'), ('that', 'IN'), ('you', 'PRP'), ('dont', 'VBP'), ('have', 'VBP'), ('any', 'DT'), ('work', 'NN'), ('and', 'CC'), ('thats', 'NNS'), ('why', 'WRB'), ('you', 'PRP'), ('left', 'VBD'), ('for', 'IN'), ('hom', 'NN')], [('and', 'CC'), ('for', 'IN'), ('this', 'DT'), ('month', 'NN'), ('we', 'PRP'), ('are', 'VBP'), ('just', 'RB'), ('waiting', 'VBG'), ('for', 'IN'), ('the', 'DT'), ('approval', 'NN'), ('for', 'IN'), ('the', 'DT'), ('no', 'DT')], [('and', 'CC'), ('hopeful', 'JJ'), ('to', 'TO'), ('meet', 'VB'), ('the', 'DT'), ('jury', 'NN'), ('this', 'DT'), ('coming', 'VBG'), ('friday', 'NN')], [('and', 'CC'), ('i', 'VB'), ('wont', 'VBP'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('let', 'VB'), ('you', 'PRP'), ('in', 'IN'), ('until', 'IN'), ('monday', 'JJ'), ('evening', 'NN')], [('and', 'CC'), ('of', 'IN'), ('course', 'NN'), ('i', 'NN'), ('see', 'VBP'), ('the', 'DT'), ('order', 'NN'), ('was', 'VBD'), ('placed', 'VBN'), ('may', 'MD'), ('29th', 'CD'), ('not', 'RB'), ('in', 'IN'), ('august', 'NN'), ('so', 'IN'), ('the', 'DT'), ('expiration', 'NN'), ('probably', 'RB'), ('is', 'VBZ'), ('imminent', 'JJ')], [('and', 'CC'), ('on', 'IN'), ('sunday', 'JJ'), ('evening', 'VBG'), ('you', 'PRP'), ('tell', 'VBP'), ('me', 'PRP'), ('we', 'PRP'), ('are', 'VBP'), ('delayed', 'VBN'), ('by', 'IN'), ('6', 'CD'), ('hours', 'NNS')], [('and', 'CC'), ('ready', 'JJ'), ('to', 'TO'), ('send', 'VB'), ('asap', 'NN'), ('tomorrow', 'NN')], [('and', 'CC'), ('signoff', 'VB'), ('the', 'DT'), ('activity', 'NN'), ('only', 'RB'), ('after', 'IN'), ('the', 'DT'), ('xxxs', 'NNP'), ('review', 'NN'), ('on', 'IN'), ('tuesday', 'NN')], [('and', 'CC'), ('then', 'RB'), ('plan', 'VB'), ('the', 'DT'), ('launch', 'NN'), ('for', 'IN'), ('likely', 'JJ'), ('end', 'NN'), ('jan', 'NN')], [('and', 'CC'), ('they', 'PRP'), ('need', 'VBP'), ('two', 'CD'), ('more', 'JJR'), ('from', 'IN'), ('us', 'PRP'), ('by', 'IN'), ('march', 'NN')], [('and', 'CC'), ('today', 'NN'), ('is', 'VBZ'), ('25814', 'CD'), ('not', 'RB'), ('yet', 'RB'), ('completed', 'VBN'), ('2', 'CD'), ('xxxxxx', 'JJ'), ('machine', 'NN'), ('feeder', 'NN'), ('to', 'TO'), ('be', 'VB'), ('installed', 'VBN'), ('before', 'IN'), ('30814', 'CD'), ('y', 'NNS'), ('working', 'VBG'), ('days', 'NNS'), ('only', 'RB'), ('left', 'VBD'), ('out', 'RP'), ('status', 'NN'), ('unknown', 'JJ')], [('and', 'CC'), ('will', 'MD'), ('stay', 'VB'), ('ahead', 'RB'), ('of', 'IN'), ('timelines', 'NNS'), ('even', 'RB'), ('by', 'IN'), ('starting', 'VBG'), ('on', 'IN'), ('monday', 'NN')], [('xxxx', 'RB'), ('appreciated', 'VBD'), ('the', 'DT'), ('interest', 'NN'), ('and', 'CC'), ('effort', 'NN'), ('we', 'PRP'), ('put', 'VBD'), ('in', 'IN'), ('to', 'TO'), ('come', 'VB'), ('up', 'RP'), ('with', 'IN'), ('this', 'DT'), ('solution', 'NN'), ('and', 'CC'), ('said', 'VBD'), ('he', 'PRP'), ('would', 'MD'), ('discuss', 'VB'), ('internally', 'RB'), ('and', 'CC'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('me', 'PRP'), ('today', 'NN')], [('xxxxx', 'NN'), ('is', 'VBZ'), ('available', 'JJ'), ('on', 'IN'), ('monday', 'JJ'), ('16dec13', 'CD'), ('x', 'JJ'), ('4', 'CD'), ('pm', 'NN'), ('to', 'TO'), ('attend', 'VB'), ('the', 'DT'), ('interview', 'NN'), ('at', 'IN'), ('xxxxx', 'NN')], [('announcing', 'VBG'), ('with', 'IN'), ('great', 'JJ'), ('pleasure', 'NN'), ('that', 'WDT'), ('five', 'CD'), ('of', 'IN'), ('our', 'PRP$'), ('yyyyy', 'NN'), ('startups', 'NNS'), ('have', 'VBP'), ('being', 'VBG'), ('given', 'VBN'), ('the', 'DT'), ('invitation', 'NN'), ('to', 'TO'), ('join', 'VB'), ('the', 'DT'), ('xxxxxxxxxxxx', 'NNP'), ('xxxxxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('for', 'IN'), ('a', 'DT'), ('period', 'NN'), ('of', 'IN'), ('4', 'CD'), ('months', 'NNS'), ('starting', 'VBG'), ('19th', 'CD'), ('may', 'MD'), ('2014', 'VB')], [('anonymized', 'VBN'), ('data', 'NNS'), ('for', 'IN'), ('xx', 'NN'), ('is', 'VBZ'), ('in', 'IN'), ('xxxxxxx', 'JJ'), ('dashboardresources', 'NNS'), ('docs', 'VBP'), ('allalertsforvj12172013anonymized', 'VBN')], [('another', 'DT'), ('package', 'NN'), ('came', 'VBD'), ('today', 'NN'), ('making', 'VBG'), ('three', 'CD'), ('packages', 'NNS'), ('total', 'VBP')], [('any', 'DT'), ('changes', 'NNS'), ('if', 'IN'), ('made', 'VBN'), ('on', 'IN'), ('late', 'JJ'), ('friday', 'NN'), ('would', 'MD'), ('not', 'RB'), ('have', 'VB'), ('taken', 'VBN'), ('effect', 'NN')], [('any', 'DT'), ('feedback', 'NN'), ('on', 'IN'), ('fridays', 'NNS'), ('build', 'VBP')], [('any', 'DT'), ('time', 'NN'), ('this', 'DT'), ('week', 'NN')], [('anyhow', 'NN'), ('will', 'MD'), ('try', 'VB'), ('to', 'TO'), ('get', 'VB'), ('these', 'DT'), ('docs', 'NNS'), ('revised', 'VBD'), ('on', 'IN'), ('monday', 'NN'), ('or', 'CC'), ('latest', 'JJS'), ('tue', 'NN'), ('kha', 'NN')], [('anyone', 'NN'), ('game', 'NN'), ('for', 'IN'), ('nets', 'NNS'), ('tomorrow', 'NN'), ('at', 'IN'), ('kioc', 'NN')], [('anyway', 'RB'), ('i', 'NN'), ('decided', 'VBD'), ('to', 'TO'), ('send', 'VB'), ('him', 'PRP'), ('a', 'DT'), ('slightly', 'RB'), ('revised', 'VBN'), ('statement', 'NN'), ('which', 'WDT'), ('we', 'PRP'), ('had', 'VBD'), ('shared', 'VBN'), ('with', 'IN'), ('xxxx', 'NN'), ('earlier', 'RBR'), ('this', 'DT'), ('week', 'NN'), ('so', 'RB'), ('that', 'IN'), ('xxxxxx', 'NN'), ('has', 'VBZ'), ('time', 'NN'), ('to', 'TO'), ('review', 'VB'), ('it', 'PRP')], [('apart', 'RB'), ('from', 'IN'), ('xxxxxx', 'NN'), ('did', 'VBD'), ('xxxxx', 'NNP'), ('and', 'CC'), ('you', 'PRP'), ('discuss', 'VBP'), ('about', 'IN'), ('how', 'WRB'), ('to', 'TO'), ('close', 'VB'), ('xxxxxx', 'NNP'), ('project', 'NN'), ('today', 'NN')], [('apologies', 'NNS'), ('i', 'VBP'), ('didnt', 'VBP'), ('realize', 'VBP'), ('that', 'IN'), ('it', 'PRP'), ('was', 'VBD'), ('as', 'RB'), ('urgent', 'JJ'), ('as', 'IN'), ('it', 'PRP'), ('was', 'VBD'), ('or', 'CC'), ('i', 'NN'), ('would', 'MD'), ('have', 'VB'), ('made', 'VBN'), ('sure', 'JJ'), ('to', 'TO'), ('get', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('you', 'PRP'), ('today', 'NN')], [('apparently', 'RB'), ('he', 'PRP'), ('is', 'VBZ'), ('meeting', 'VBG'), ('you', 'PRP'), ('today', 'NN'), ('x10am', 'VB')], [('xxxxx', 'JJ'), ('xxx', 'NNP'), ('xxxxxxxx', 'NNP'), ('is', 'VBZ'), ('till', 'VBN'), ('march', 'JJ'), ('end', 'NN')], [('xxxxx', 'JJ'), ('xxxxx', 'NNP'), ('yy', 'NN'), ('gb', 'NN'), ('mp4', 'NN'), ('xxxxxx', 'NNP'), ('estimated', 'VBD'), ('shipment', 'JJ'), ('date', 'NN'), ('aug', 'NN'), ('24', 'CD'), ('2014', 'CD'), ('estimated', 'VBN'), ('delivery', 'NN'), ('date', 'NN'), ('aug', 'NN'), ('30', 'CD'), ('2014', 'CD'), ('ordered', 'JJ'), ('quantity', 'NN'), ('y', 'NN'), ('xxxxx', 'NNP'), ('xxxx', 'NNP'), ('rs', 'NN')], [('appreciate', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('take', 'VB'), ('look', 'NN'), ('at', 'IN'), ('it', 'PRP'), ('and', 'CC'), ('provide', 'VB'), ('your', 'PRP$'), ('feedback', 'NN'), ('today', 'NN')], [('appreciate', 'IN'), ('it', 'PRP'), ('i', 'VBP'), ('will', 'MD'), ('follow', 'VB'), ('up', 'RP'), ('with', 'IN'), ('requests', 'NNS'), ('for', 'IN'), ('introductions', 'NNS'), ('over', 'IN'), ('the', 'DT'), ('coming', 'JJ'), ('days', 'NNS')], [('april', 'IN'), ('14th', 'CD'), ('i', 'JJ'), ('report', 'NN'), ('at', 'IN'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NN')], [('april', 'NN'), ('2014', 'CD'), ('1231', 'CD'), ('an', 'DT'), ('xxxxxxx', 'NN'), ('xxxx', 'NN'), ('xxxxxxx', 'NNP'), ('xx', 'NNP'), ('xxx', 'NN')], [('april', 'NN'), ('2014', 'CD'), ('1610', 'CD'), ('an', 'DT'), ('xxxxxx', 'NN'), ('xxxxxx', 'NN'), ('xxxxxxx', 'NNP'), ('xxx', 'NN')], [('are', 'VBP'), ('any', 'DT'), ('if', 'IN'), ('them', 'PRP'), ('going', 'VBG'), ('wednesday', 'JJ'), ('instead', 'RB')], [('are', 'VBP'), ('between', 'IN'), ('september', '$'), ('29', 'CD'), ('and', 'CC'), ('oct', '$'), ('8', 'CD')], [('are', 'VBP'), ('there', 'EX'), ('any', 'DT'), ('more', 'JJR'), ('folks', 'NNS'), ('in', 'IN'), ('for', 'IN'), ('tomorrow', 'NN'), ('nets', 'NNS')], [('are', 'VBP'), ('we', 'PRP'), ('ready', 'JJ'), ('for', 'IN'), ('19th', 'CD'), ('june', 'NN'), ('or', 'CC'), ('it', 'PRP'), ('will', 'MD'), ('get', 'VB'), ('postponed', 'VBN')], [('are', 'VBP'), ('you', 'PRP'), ('around', 'IN'), ('available', 'JJ'), ('later', 'RB'), ('in', 'IN'), ('week', 'NN'), ('of', 'IN'), ('sept', '$'), ('1', 'CD')], [('are', 'VBP'), ('you', 'PRP'), ('going', 'VBG'), ('to', 'TO'), ('be', 'VB'), ('in', 'IN'), ('todays', 'NNS'), ('meeting', 'NN')], [('are', 'VBP'), ('you', 'PRP'), ('writing', 'VBG'), ('this', 'DT'), ('month', 'NN'), ('off', 'IN')], [('xxxx', 'JJ'), ('xxxxx', 'CD'), ('09252013', 'CD'), ('0359', 'CD'), ('pm', 'NN')], [('xxxx', 'NN'), ('is', 'VBZ'), ('ready', 'JJ'), ('to', 'TO'), ('got', 'VB'), ('to', 'TO'), ('collectives', 'VB'), ('tomorrow', 'NN'), ('or', 'CC'), ('on', 'IN'), ('friday', 'NN'), ('for', 'IN'), ('an', 'DT'), ('interviewplease', 'NN'), ('confirm', 'NN')], [('xxxx', 'JJ'), ('x', 'NN'), ('may', 'MD'), ('16', 'CD'), ('2014', 'CD'), ('0432', 'CD'), ('xxxx', 'NN'), ('xxx', 'NN')], [('xxxxxx', 'NN'), ('and', 'CC'), ('i', 'NN'), ('have', 'VBP'), ('to', 'TO'), ('be', 'VB'), ('elsewhere', 'RB'), ('tomorrow', 'NN'), ('morning', 'NN'), ('and', 'CC'), ('that', 'DT'), ('meet', 'NN'), ('is', 'VBZ'), ('unavoidable', 'JJ')], [('as', 'IN'), ('xxxx', 'NN'), ('mentioned', 'VBD'), ('please', 'JJ'), ('let', 'VB'), ('them', 'PRP'), ('know', 'VB'), ('we', 'PRP'), ('will', 'MD'), ('start', 'VB'), ('only', 'RB'), ('on', 'IN'), ('monday', 'NN')], [('as', 'IN'), ('xxxxx', 'NN'), ('mentioned', 'VBD'), ('his', 'PRP$'), ('xxxxxxxx', 'NN'), ('is', 'VBZ'), ('coming', 'VBG'), ('next', 'JJ'), ('week', 'NN')], [('as', 'IN'), ('i', 'JJ'), ('already', 'RB'), ('informed', 'VBN'), ('that', 'IN'), ('i', 'JJ'), ('need', 'VBP'), ('to', 'TO'), ('go', 'VB'), ('home', 'NN'), ('for', 'IN'), ('passport', 'NN'), ('police', 'NN'), ('xxxxxxxxxxxx', 'VBD'), ('today', 'NN'), ('i', 'NN'), ('got', 'VBD'), ('call', 'NN'), ('from', 'IN'), ('xxxxxx', 'NN'), ('regarding', 'VBG'), ('the', 'DT'), ('same', 'JJ')], [('as', 'IN'), ('i', 'NNS'), ('have', 'VBP'), ('not', 'RB'), ('yet', 'RB'), ('recovered', 'VBN'), ('from', 'IN'), ('the', 'DT'), ('fever', 'NN'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('ooto', 'RB'), ('today', 'NN'), ('as', 'IN'), ('well', 'RB')], [('as', 'IN'), ('i', 'NNS'), ('have', 'VBP'), ('training', 'VBG'), ('in', 'IN'), ('evening', 'VBG'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('leaving', 'VBG'), ('from', 'IN'), ('office', 'NN'), ('x1pm', 'NN')], [('as', 'IN'), ('a', 'DT'), ('result', 'NN'), ('of', 'IN'), ('the', 'DT'), ('exercise', 'NN'), ('we', 'PRP'), ('undertook', 'VBD'), ('this', 'DT'), ('week', 'NN'), ('in', 'IN'), ('cleaning', 'VBG'), ('up', 'RP'), ('our', 'PRP$'), ('consultant', 'NN'), ('database', 'NN'), ('related', 'VBN'), ('to', 'TO'), ('project', 'VB'), ('skills', 'NNS'), ('domain', 'JJ'), ('information', 'NN'), ('we', 'PRP'), ('are', 'VBP'), ('almost', 'RB'), ('through', 'IN'), ('in', 'IN'), ('completing', 'VBG'), ('the', 'DT'), ('domaintechnology', 'NN'), ('matrix', 'NN')], [('as', 'IN'), ('a', 'DT'), ('result', 'NN'), ('of', 'IN'), ('the', 'DT'), ('votes', 'NNS'), ('cast', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxxxxxxx', 'NNP'), ('members', 'NNS'), ('who', 'WP'), ('were', 'VBD'), ('eligible', 'JJ'), ('to', 'TO'), ('vote', 'VB'), ('in', 'IN'), ('the', 'DT'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('election', 'NN'), ('the', 'DT'), ('following', 'JJ'), ('individuals', 'NNS'), ('were', 'VBD'), ('elected', 'VBN'), ('to', 'TO'), ('serve', 'VB'), ('on', 'IN'), ('the', 'DT'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('effective', 'JJ'), ('1', 'CD'), ('july', 'NN'), ('2014', 'CD')], [('as', 'IN'), ('desired', 'VBN'), ('by', 'IN'), ('you', 'PRP'), ('i', 'VBP'), ('will', 'MD'), ('request', 'VB'), ('the', 'DT'), ('school', 'NN'), ('to', 'TO'), ('reschedule', 'VB'), ('the', 'DT'), ('meet', 'NN'), ('to', 'TO'), ('the', 'DT'), ('afternoon', 'NN'), ('of', 'IN'), ('nov', '$'), ('5', 'CD')], [('as', 'IN'), ('discussed', 'VBN'), ('earlier', 'RB'), ('wanted', 'VBN'), ('to', 'TO'), ('reconnect', 'VB'), ('with', 'IN'), ('you', 'PRP'), ('and', 'CC'), ('know', 'VB'), ('when', 'WRB'), ('would', 'MD'), ('be', 'VB'), ('a', 'DT'), ('good', 'JJ'), ('time', 'NN'), ('to', 'TO'), ('touch', 'VB'), ('base', 'NN'), ('this', 'DT'), ('week', 'NN')], [('as', 'IN'), ('discussed', 'VBN'), ('few', 'JJ'), ('min', 'NNS'), ('earlier', 'RBR'), ('no', 'DT'), ('notification', 'NN'), ('came', 'VBD'), ('to', 'TO'), ('xxxxxxxs', 'VB'), ('xxx', 'NN')], [('as', 'IN'), ('discussed', 'VBN'), ('on', 'IN'), ('wednesday', 'NN'), ('below', 'IN'), ('are', 'VBP'), ('the', 'DT'), ('details', 'NNS'), ('you', 'PRP'), ('had', 'VBD'), ('requested', 'VBN'), ('for', 'IN')], [('as', 'IN'), ('discussed', 'VBN'), ('on', 'IN'), ('wednesday', 'JJ'), ('please', 'NN'), ('share', 'NN'), ('the', 'DT'), ('login', 'NN'), ('credentials', 'NNS'), ('and', 'CC'), ('other', 'JJ'), ('technology', 'NN'), ('configuration', 'NN'), ('details', 'NNS'), ('with', 'IN'), ('the', 'DT'), ('tata', 'NN'), ('tech', 'NN'), ('team', 'NN'), ('for', 'IN'), ('xxx', 'NN')], [('as', 'IN'), ('discussed', 'VBN'), ('today', 'NN'), ('connecting', 'VBG'), ('you', 'PRP'), ('to', 'TO'), ('xxxxxxxx', 'VB'), ('who', 'WP'), ('runs', 'VBZ'), ('httpwwwventurehireco', 'NN'), ('and', 'CC'), ('focuses', 'NNS'), ('on', 'IN'), ('helping', 'VBG'), ('startups', 'NNS'), ('hire', 'VB'), ('excellent', 'JJ'), ('talent', 'NN')], [('as', 'IN'), ('discussed', 'VBN'), ('with', 'IN'), ('you', 'PRP'), ('xxxxx', 'VBP'), ('will', 'MD'), ('be', 'VB'), ('working', 'VBG'), ('out', 'IN'), ('of', 'IN'), ('xxxxxxx', 'NN'), ('starting', 'VBG'), ('today', 'NN'), ('for', 'IN'), ('next', 'JJ'), ('2', 'CD'), ('weeks', 'NNS')], [('as', 'IN'), ('discussed', 'VBN'), ('i', 'NN'), ('am', 'VBP'), ('confirming', 'VBG'), ('your', 'PRP$'), ('internship', 'NN'), ('between', 'IN'), ('june', '$'), ('2', 'CD'), ('till', 'NN'), ('jul', 'NN'), ('25', 'CD'), ('for', 'IN'), ('a', 'DT'), ('period', 'NN'), ('of', 'IN'), ('8', 'CD'), ('weeks', 'NNS')], [('as', 'IN'), ('discussed', 'VBN'), ('i', 'NN'), ('will', 'MD'), ('be', 'VB'), ('in', 'IN'), ('xxxxxxxxx', 'NNP'), ('till', 'NN'), ('8th', 'CD'), ('march', 'NN')], [('as', 'IN'), ('discussed', 'VBN'), ('we', 'PRP'), ('are', 'VBP'), ('launching', 'VBG'), ('xxxxxxxx', 'NNP'), ('next', 'JJ'), ('week', 'NN')], [('as', 'IN'), ('for', 'IN'), ('the', 'DT'), ('travel', 'NN'), ('itinerary', 'JJ'), ('what', 'WP'), ('you', 'PRP'), ('have', 'VBP'), ('stated', 'VBN'), ('is', 'VBZ'), ('correct', 'JJ'), ('unfortunately', 'RB'), ('there', 'EX'), ('is', 'VBZ'), ('no', 'DT'), ('direct', 'JJ'), ('flight', 'NN'), ('from', 'IN'), ('xxxxxx', 'NN'), ('to', 'TO'), ('xxxxx', 'VB'), ('i', 'NNS'), ('have', 'VBP'), ('to', 'TO'), ('go', 'VB'), ('via', 'IN'), ('xxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('of', 'IN'), ('xxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('this', 'DT'), ('means', 'VBZ'), ('i', 'NN'), ('will', 'MD'), ('spend', 'VB'), ('almost', 'RB'), ('the', 'DT'), ('whole', 'JJ'), ('day', 'NN'), ('on', 'IN'), ('the', 'DT'), ('18th', 'CD'), ('going', 'VBG'), ('from', 'IN'), ('xxxxxx', 'NNP'), ('to', 'TO'), ('xxxxx', 'VB')], [('as', 'IN'), ('i', 'NNS'), ('need', 'VBP'), ('leave', 'VBP'), ('on', 'IN'), ('yy', 'NN'), ('of', 'IN'), ('this', 'DT'), ('month', 'NN'), ('for', 'IN'), ('personal', 'JJ'), ('purpose', 'JJ'), ('please', 'NN'), ('grant', 'VB'), ('me', 'PRP'), ('leave', 'VB'), ('for', 'IN'), ('the', 'DT'), ('above', 'NN'), ('mentioned', 'VBD'), ('days', 'NNS')], [('as', 'IN'), ('i', 'NN'), ('was', 'VBD'), ('not', 'RB'), ('feeling', 'VBG'), ('well', 'RB'), ('today', 'NN'), ('not', 'RB'), ('able', 'JJ'), ('to', 'TO'), ('reach', 'VB'), ('office', 'NN')], [('as', 'IN'), ('informed', 'VBN'), ('by', 'IN'), ('xxxxx', 'NN'), ('and', 'CC'), ('her', 'PRP$'), ('classmates', 'NNS'), ('their', 'PRP$'), ('hod', 'NN'), ('will', 'MD'), ('be', 'VB'), ('available', 'JJ'), ('at', 'IN'), ('their', 'PRP$'), ('campus', 'NN'), ('tomorrow', 'NN'), ('only', 'RB')], [('as', 'IN'), ('leads', 'NNS'), ('were', 'VBD'), ('coming', 'VBG'), ('very', 'RB'), ('lessso', 'RB'), ('we', 'PRP'), ('used', 'VBD'), ('to', 'TO'), ('update', 'JJ'), ('weekly', 'JJ'), ('in', 'IN'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('today', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('mentioned', 'VBN'), ('each', 'DT'), ('and', 'CC'), ('every', 'DT'), ('details', 'NNS'), ('on', 'IN'), ('xxxxx', 'NN'), ('and', 'CC'), ('from', 'IN'), ('now', 'RB'), ('onwards', 'NNS'), ('will', 'MD'), ('update', 'VB'), ('it', 'PRP'), ('daily', 'RB')], [('as', 'RB'), ('long', 'RB'), ('as', 'IN'), ('were', 'VBD'), ('engaged', 'VBN'), ('for', 'IN'), ('maintenance', 'NN'), ('agreement', 'NN'), ('til', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('august', 'NN'), ('wed', 'VBN'), ('better', 'RBR'), ('to', 'TO'), ('make', 'VB'), ('effort', 'NN'), ('to', 'TO'), ('meet', 'VB'), ('with', 'IN'), ('expectatio', 'NN')], [('as', 'IN'), ('mentioned', 'VBN'), ('by', 'IN'), ('xxxx', 'NNS'), ('have', 'VBP'), ('made', 'VBN'), ('the', 'DT'), ('new', 'JJ'), ('salary', 'JJ'), ('wef', 'NN'), ('may', 'MD'), ('2014', 'VB')], [('as', 'IN'), ('of', 'IN'), ('73114', 'CD'), ('he', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('vested', 'VBN'), ('in', 'IN'), ('yyy', 'JJ'), ('yyy', 'NNS'), ('units', 'NNS')], [('as', 'IN'), ('of', 'IN'), ('today', 'NN'), ('txtweb', 'NN'), ('is', 'VBZ'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('largest', 'JJS'), ('sms', 'NNS'), ('based', 'VBN'), ('platform', 'NN'), ('in', 'IN'), ('the', 'DT'), ('world', 'NN'), ('with', 'IN'), ('more', 'JJR'), ('than', 'IN'), ('y', 'JJR'), ('million', 'CD'), ('users', 'NNS'), ('and', 'CC'), ('over', 'IN'), ('yyyy', 'JJR'), ('developers', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('platform', 'NN')], [('as', 'IN'), ('part', 'NN'), ('of', 'IN'), ('assessing', 'VBG'), ('group', 'NN'), ('activity', 'NN'), ('we', 'PRP'), ('are', 'VBP'), ('writing', 'VBG'), ('to', 'TO'), ('you', 'PRP'), ('today', 'NN'), ('to', 'TO'), ('ask', 'VB'), ('about', 'IN'), ('your', 'PRP$'), ('groups', 'NNS'), ('communicationactivity', 'NN'), ('level', 'NN')], [('as', 'IN'), ('part', 'NN'), ('of', 'IN'), ('my', 'PRP$'), ('ongoing', 'JJ'), ('efforts', 'NNS'), ('to', 'TO'), ('improve', 'VB'), ('our', 'PRP$'), ('services', 'NNS'), ('and', 'CC'), ('provide', 'VB'), ('you', 'PRP'), ('with', 'IN'), ('the', 'DT'), ('best', 'JJS'), ('hosting', 'NN'), ('experience', 'NN'), ('possible', 'JJ'), ('i', 'NN'), ('am', 'VBP'), ('asking', 'VBG'), ('that', 'IN'), ('you', 'PRP'), ('take', 'VBP'), ('a', 'DT'), ('moment', 'NN'), ('and', 'CC'), ('complete', 'VB'), ('the', 'DT'), ('survey', 'NN'), ('form', 'NN'), ('that', 'WDT'), ('was', 'VBD'), ('sent', 'VBN'), ('to', 'TO'), ('you', 'PRP'), ('this', 'DT'), ('month', 'NN')], [('as', 'IN'), ('per', 'IN'), ('august', 'NN'), ('2014', 'CD'), ('visa', 'NN'), ('bulletin', 'NN'), ('those', 'DT'), ('who', 'WP'), ('have', 'VBP'), ('a', 'DT'), ('priority', 'NN'), ('date', 'NN'), ('on', 'IN'), ('or', 'CC'), ('before', 'IN'), ('22', 'CD'), ('january', 'JJ'), ('2009', 'CD'), ('can', 'MD'), ('file', 'VB'), ('for', 'IN'), ('adjustment', 'NN'), ('of', 'IN'), ('status', 'NN'), ('starting', 'VBG'), ('august', 'RB'), ('01', 'CD'), ('2014', 'CD')], [('as', 'IN'), ('per', 'IN'), ('my', 'PRP$'), ('discussion', 'NN'), ('with', 'IN'), ('akil', 'JJ'), ('today', 'NN'), ('i', 'VBP'), ('am', 'VBP'), ('sending', 'VBG'), ('out', 'RP'), ('our', 'PRP$'), ('standard', 'JJ'), ('proposal', 'NN'), ('that', 'IN'), ('we', 'PRP'), ('put', 'VBD'), ('out', 'RP')], [('as', 'IN'), ('per', 'IN'), ('our', 'PRP$'), ('discussion', 'NN'), ('on', 'IN'), ('friday', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('assuming', 'VBG'), ('following', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('conclusion', 'NN')], [('as', 'IN'), ('per', 'IN'), ('our', 'PRP$'), ('discussion', 'NN'), ('today', 'NN'), ('minutes', 'NNS'), ('of', 'IN'), ('meeting', 'NN'), ('are', 'VBP'), ('as', 'IN'), ('follows', 'VBZ')], [('as', 'IN'), ('per', 'IN'), ('our', 'PRP$'), ('plan', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('finish', 'VB'), ('the', 'DT'), ('xxx', 'NN'), ('clean', 'VBZ'), ('up', 'RP'), ('today', 'NN')], [('as', 'IN'), ('per', 'IN'), ('our', 'PRP$'), ('records', 'NNS'), ('your', 'PRP$'), ('date', 'NN'), ('of', 'IN'), ('joining', 'NN'), ('is', 'VBZ'), ('14th', 'CD'), ('july', 'NN'), ('2014', 'CD'), ('in', 'IN'), ('our', 'PRP$'), ('ms', 'NN'), ('idc', 'NN'), ('business', 'NN'), ('at', 'IN'), ('xxxxxxxxx', 'NN')], [('as', 'IN'), ('per', 'IN'), ('our', 'PRP$'), ('telephonic', 'JJ'), ('conversation', 'NN'), ('on', 'IN'), ('friday', 'NN'), ('we', 'PRP'), ('do', 'VBP'), ('not', 'RB'), ('have', 'VB'), ('to', 'TO'), ('file', 'VB'), ('our', 'PRP$'), ('returns', 'NNS'), ('from', 'IN'), ('jan', 'NN'), ('to', 'TO'), ('march', 'VB'), ('2014', 'CD')], [('as', 'IN'), ('per', 'IN'), ('our', 'PRP$'), ('telephonic', 'JJ'), ('discussion', 'NN'), ('tomorrow', 'NN'), ('after', 'IN'), ('yyyy', 'JJ'), ('pm', 'NN'), ('xxxxxx', 'NNP'), ('will', 'MD'), ('give', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('team', 'NN'), ('viewer', 'NN'), ('access', 'NN'), ('for', 'IN'), ('configure', 'NN'), ('new', 'JJ'), ('xxxxx', 'NNP'), ('gateways', 'NNS')], [('as', 'IN'), ('per', 'IN'), ('our', 'PRP$'), ('telephonic', 'JJ'), ('discussion', 'NN'), ('we', 'PRP'), ('expect', 'VBP'), ('the', 'DT'), ('payment', 'NN'), ('for', 'IN'), ('the', 'DT'), ('pending', 'VBG'), ('invoice', 'NN'), ('in', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('week', 'NN'), ('of', 'IN'), ('october', 'NN'), ('and', 'CC'), ('i', 'NN'), ('will', 'MD'), ('also', 'RB'), ('send', 'VB'), ('you', 'PRP'), ('the', 'DT'), ('invoice', 'NN'), ('for', 'IN'), ('the', 'DT'), ('month', 'NN'), ('of', 'IN'), ('september', 'NN'), ('2013', 'CD'), ('by', 'IN'), ('yyy', 'NN'), ('or', 'CC'), ('2nd', 'CD'), ('of', 'IN'), ('october', 'NN')], [('as', 'IN'), ('per', 'IN'), ('our', 'PRP$'), ('todays', 'NNS'), ('telecoms', 'VBP'), ('with', 'IN'), ('mrkiran', 'PDT'), ('the', 'DT'), ('subject', 'JJ'), ('item', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('assembled', 'VBN'), ('run', 'VB'), ('on', 'IN'), ('26052014', 'CD')], [('as', 'IN'), ('per', 'IN'), ('the', 'DT'), ('conversation', 'NN'), ('with', 'IN'), ('xxxxxxxx', 'JJ'), ('hes', 'NNS'), ('not', 'RB'), ('available', 'JJ'), ('for', 'IN'), ('the', 'DT'), ('interview', 'NN'), ('till', 'NN'), ('june', 'NN'), ('because', 'IN'), ('of', 'IN'), ('his', 'PRP$'), ('marriage', 'NN'), ('issue', 'NN')], [('as', 'IN'), ('per', 'IN'), ('the', 'DT'), ('discussion', 'NN'), ('with', 'IN'), ('xxxxxx', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('working', 'VBG'), ('on', 'IN'), ('tomorrow', 'NN')], [('as', 'IN'), ('per', 'IN'), ('the', 'DT'), ('discussion', 'NN'), ('with', 'IN'), ('gautham', 'NN'), ('i', 'NN'), ('am', 'VBP'), ('working', 'VBG'), ('on', 'IN'), ('tomorrow', 'NN')], [('as', 'IN'), ('per', 'IN'), ('the', 'DT'), ('schedule', 'NN'), ('today', 'NN'), ('i', 'NN'), ('started', 'VBD'), ('working', 'VBG'), ('with', 'IN'), ('css', 'NN')], [('as', 'IN'), ('per', 'IN'), ('your', 'PRP$'), ('advice', 'NN'), ('i', 'NN'), ('spend', 'VBP'), ('the', 'DT'), ('weekend', 'NN'), ('thinking', 'VBG'), ('through', 'IN'), ('many', 'JJ'), ('of', 'IN'), ('the', 'DT'), ('points', 'NNS'), ('we', 'PRP'), ('discussed', 'VBD')], [('as', 'IN'), ('per', 'IN'), ('your', 'PRP$'), ('requirement', 'NN'), ('vide', 'IN'), ('your', 'PRP$'), ('email', 'NN'), ('dt270614', 'NN'), ('and', 'CC'), ('also', 'RB'), ('email', 'VBP'), ('on', 'IN'), ('today', 'NN'), ('by', 'IN'), ('xxx', 'NNP'), ('xxxxxxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('we', 'PRP'), ('present', 'VBP'), ('our', 'PRP$'), ('most', 'RBS'), ('economical', 'JJ'), ('offer', 'NN'), ('as', 'IN'), ('follows', 'VBZ')], [('as', 'IN'), ('suggested', 'VBN'), ('by', 'IN'), ('xxxxxxxx', 'NNP'), ('lets', 'NNS'), ('do', 'VBP'), ('the', 'DT'), ('run', 'VB'), ('together', 'RB'), ('tomorrow', 'NN')], [('as', 'IN'), ('usual', 'JJ'), ('drs', 'NN'), ('came', 'VBD'), ('back', 'RB'), ('with', 'IN'), ('urgent', 'JJ'), ('requirement', 'NN'), ('he', 'PRP'), ('wants', 'VBZ'), ('to', 'TO'), ('generate', 'VB'), ('all', 'DT'), ('pos', 'NNS'), ('and', 'CC'), ('complete', 'JJ'), ('formalities', 'NNS'), ('oct', 'VBP'), ('30', 'CD'), ('is', 'VBZ'), ('year', 'NN'), ('ending', 'VBG'), ('for', 'IN'), ('snps', 'NN'), ('and', 'CC'), ('wants', 'VBZ'), ('to', 'TO'), ('have', 'VB'), ('all', 'DT'), ('this', 'DT'), ('before', 'IN'), ('that', 'DT')], [('as', 'IN'), ('we', 'PRP'), ('discussed', 'VBD'), ('over', 'IN'), ('telephone', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('take', 'VB'), ('control', 'NN'), ('of', 'IN'), ('the', 'DT'), ('xxxx', 'NNP'), ('server', 'NN'), ('by', 'IN'), ('tomorrow', 'NN'), ('yyyyy', 'NN'), ('am', 'VBP'), ('to', 'TO'), ('understand', 'VB'), ('the', 'DT'), ('issue', 'NN'), ('raised', 'VBD')], [('as', 'IN'), ('we', 'PRP'), ('discussed', 'VBD'), ('we', 'PRP'), ('have', 'VBP'), ('made', 'VBN'), ('the', 'DT'), ('request', 'NN'), ('for', 'IN'), ('disconnecting', 'VBG'), ('our', 'PRP$'), ('xxxx', 'JJ'), ('connection', 'NN'), ('no', 'DT'), ('yyyyyyyyyy', 'NN'), ('since', 'IN'), ('sep', 'NN'), ('2013', 'CD'), ('and', 'CC'), ('before', 'IN'), ('to', 'TO'), ('this', 'DT'), ('we', 'PRP'), ('have', 'VBP'), ('made', 'VBN'), ('all', 'PDT'), ('the', 'DT'), ('payments', 'NNS'), ('to', 'TO'), ('airtel', 'VB'), ('as', 'IN'), ('per', 'IN'), ('the', 'DT'), ('details', 'NNS'), ('provided', 'VBD'), ('to', 'TO'), ('you', 'PRP'), ('today', 'NN')], [('as', 'IN'), ('we', 'PRP'), ('enter', 'VBP'), ('into', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('exciting', 'JJ'), ('phase', 'NN'), ('of', 'IN'), ('beta', 'NN'), ('in', 'IN'), ('july', 'NN'), ('production', 'NN'), ('service', 'NN'), ('in', 'IN'), ('september', 'JJ'), ('building', 'NN'), ('market', 'NN'), ('awareness', 'NN'), ('and', 'CC'), ('scaling', 'VBG'), ('customer', 'NN'), ('acquisition', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('augmented', 'VBN'), ('the', 'DT'), ('team', 'NN'), ('on', 'IN'), ('the', 'DT'), ('marketing', 'NN'), ('side', 'NN')], [('as', 'IN'), ('we', 'PRP'), ('gear', 'VBP'), ('up', 'RP'), ('for', 'IN'), ('our', 'PRP$'), ('xxxxxx', 'NN'), ('xxxx', 'NN'), ('which', 'WDT'), ('starts', 'VBZ'), ('today', 'NN')], [('as', 'IN'), ('we', 'PRP'), ('have', 'VBP'), ('discussed', 'VBN'), ('with', 'IN'), ('the', 'DT'), ('client', 'NN'), ('on', 'IN'), ('what', 'WP'), ('all', 'DT'), ('products', 'NNS'), ('to', 'TO'), ('be', 'VB'), ('featured', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('mobile', 'JJ'), ('app', 'NN'), ('they', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('providing', 'VBG'), ('us', 'PRP'), ('with', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('by', 'IN'), ('tomorrow', 'NN')], [('as', 'IN'), ('you', 'PRP'), ('all', 'DT'), ('know', 'VBP'), ('xxxxxxx', 'NNP'), ('participated', 'VBD'), ('in', 'IN'), ('xxxx', 'NNP'), ('sparks', 'NNS'), ('xxxxx', 'NNP'), ('xxxxxx', 'NN'), ('2013', 'CD'), ('today', 'NN'), ('httptechsparks2013yourstoryin', 'NN')], [('as', 'IN'), ('you', 'PRP'), ('know', 'VBP'), ('velocloud', 'JJ'), ('seriesb', 'NN'), ('is', 'VBZ'), ('rapidly', 'RB'), ('approaching', 'JJ'), ('closure', 'NN'), ('so', 'IN'), ('we', 'PRP'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('facilitate', 'VB'), ('today', 'NN'), ('if', 'IN'), ('possible', 'JJ')], [('as', 'IN'), ('you', 'PRP'), ('wont', 'VBP'), ('work', 'VB'), ('on', 'IN'), ('saturday', 'JJ'), ('sunday', 'NN'), ('so', 'IN'), ('i', 'JJ'), ('am', 'VBP'), ('rescheduling', 'VBG'), ('the', 'DT'), ('interview', 'NN'), ('of', 'IN'), ('xxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('please', 'NN'), ('find', 'VB'), ('his', 'PRP$'), ('availability', 'NN')], [('at', 'IN'), ('xxxxx', 'NNP'), ('xxxxx', 'VBP'), ('the', 'DT'), ('digital', 'JJ'), ('team', 'NN'), ('is', 'VBZ'), ('at', 'IN'), ('office', 'NN'), ('between', 'IN'), ('yyyyyyyy', 'NN')], [('at', 'IN'), ('xxxxxxxxx', 'NNP'), ('xxxxxxx', 'NNP'), ('xxxxxx', 'NNP'), ('today', 'NN')], [('at', 'IN'), ('the', 'DT'), ('meeting', 'NN'), ('on', 'IN'), ('june', 'NN'), ('yyyyy', 'NN'), ('in', 'IN'), ('xxxxxxx', 'CC'), ('the', 'DT'), ('program', 'NN'), ('committee', 'NN'), ('accepted', 'VBD'), ('yy', 'CC'), ('full', 'JJ'), ('papers', 'NNS'), ('and', 'CC'), ('yy', 'VB'), ('new', 'JJ'), ('ideas', 'NNS'), ('papers', 'NNS'), ('many', 'JJ'), ('of', 'IN'), ('these', 'DT'), ('were', 'VBD'), ('recategorized', 'VBN'), ('full', 'JJ'), ('papers', 'NNS')], [('at', 'IN'), ('this', 'DT'), ('point', 'NN'), ('tickets', 'NNS'), ('are', 'VBP'), ('not', 'RB'), ('available', 'JJ'), ('for', 'IN'), ('next', 'JJ'), ('week', 'NN')], [('at', 'IN'), ('this', 'DT'), ('point', 'NN'), ('we', 'PRP'), ('are', 'VBP'), ('getting', 'VBG'), ('crunched', 'VBN'), ('for', 'IN'), ('time', 'NN'), ('so', 'RB'), ('lets', 'VBZ'), ('cover', 'NN'), ('on', 'IN'), ('friday', 'NN'), ('could', 'MD'), ('be', 'VB'), ('after', 'IN'), ('the', 'DT'), ('status', 'NN'), ('mtg', 'NN'), ('over', 'IN'), ('beer', 'NN')], [('at', 'IN'), ('this', 'DT'), ('rate', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('not', 'RB'), ('going', 'VBG'), ('to', 'TO'), ('be', 'VB'), ('cleared', 'VBN'), ('up', 'RP'), ('by', 'IN'), ('tomorrow', 'NN')], [('attached', 'VBN'), ('how', 'WRB'), ('it', 'PRP'), ('looks', 'VBZ'), ('today', 'NN')], [('attached', 'VBN'), ('is', 'VBZ'), ('our', 'PRP$'), ('new', 'JJ'), ('price', 'NN'), ('list', 'NN'), ('effective', 'JJ'), ('1st', 'CD'), ('december', 'NN'), ('2013', 'CD')], [('attached', 'VBN'), ('is', 'VBZ'), ('the', 'DT'), ('slide', 'NN'), ('deck', 'NN'), ('for', 'IN'), ('todays', 'NNS'), ('meeting', 'NN')], [('attached', 'VBN'), ('the', 'DT'), ('invoice', 'NN'), ('for', 'IN'), ('the', 'DT'), ('month', 'NN'), ('of', 'IN'), ('november', 'NN')], [('attend', 'VB'), ('this', 'DT'), ('twoday', 'JJ'), ('course', 'NN'), ('delivered', 'VBN'), ('by', 'IN'), ('a', 'DT'), ('xxxxxxxx', 'JJ'), ('xxxxxxx', 'NN'), ('xxxxxxx', 'NN'), ('to', 'TO'), ('increase', 'VB'), ('your', 'PRP$'), ('xxxxxxxxxxxxx', 'JJ'), ('expertise', 'NN'), ('and', 'CC'), ('help', 'VB'), ('accelerate', 'VB'), ('your', 'PRP$'), ('organizations', 'NNS'), ('xxxxxxxx', 'VBP'), ('adoption', 'NN')], [('audience', 'NN'), ('and', 'CC'), ('intent', 'NN'), ('for', 'IN'), ('y', 'NN'), ('late', 'JJ'), ('sept', 'JJ'), ('event', 'NN'), ('is', 'VBZ'), ('as', 'IN'), ('inperson', 'JJ'), ('wrapup', 'JJ'), ('private', 'JJ'), ('indepth', 'NN'), ('update', 'NN'), ('for', 'IN'), ('fab1', 'JJ'), ('investors', 'NNS')], [('aug', 'NN')], [('aug', 'NN'), ('2014', 'CD')], [('aug14', 'NN')], [('august', 'NN'), ('2014', 'CD'), ('special', 'NN')], [('august', 'JJ'), ('2014', 'CD'), ('volume', 'NN'), ('yy', 'CC'), ('no', 'DT'), ('y', 'NN')], [('august', 'RB'), ('2nd', 'CD'), ('will', 'MD'), ('be', 'VB'), ('very', 'RB'), ('busy', 'JJ'), ('with', 'IN'), ('people', 'NNS'), ('moving', 'VBG'), ('in', 'IN'), ('and', 'CC'), ('out', 'IN'), ('so', 'IN'), ('it', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('difficult', 'JJ'), ('to', 'TO'), ('have', 'VB'), ('such', 'PDT'), ('a', 'DT'), ('wide', 'JJ'), ('time', 'NN'), ('frame', 'NN')], [('august', 'NN'), ('planning', 'NN'), ('reflected', 'VBD'), ('that', 'IN'), ('thought', 'NN'), ('process', 'NN')], [('august', 'NN'), ('2014', 'CD')], [('auto', 'NN'), ('xxxx', 'NNP'), ('xxxx', 'NNP'), ('sun', 'VBD'), ('dec', 'RB'), ('01', 'CD'), ('2013', 'CD'), ('191502', 'CD'), ('xxxyyyyy', 'NNP'), ('xxxxx', 'NNP'), ('standard', 'JJ'), ('time', 'NN'), ('tocall', 'NN')], [('autoresponse', 'NN'), ('by', 'IN'), ('xxxxxxxxxxxxx', '$'), ('05262014', 'CD'), ('0440', 'CD'), ('am', 'VBP'), ('thank', 'NN'), ('you', 'PRP'), ('for', 'IN'), ('contacting', 'VBG'), ('xxxx', 'NN')], [('autoresponse', 'NN'), ('by', 'IN'), ('xxxxxxxxxxxxx', '$'), ('07242014', 'CD'), ('0120', 'CD'), ('thanks', 'NNS'), ('for', 'IN'), ('contacting', 'VBG'), ('us', 'PRP')], [('xxxxxx', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('call', 'VB'), ('rachit', 'NN'), ('tomorrow', 'NN'), ('and', 'CC'), ('schedule', 'NN'), ('an', 'DT'), ('interview', 'NN')], [('xxxxx', 'JJ'), ('xxxxxxxxxx', 'NNP'), ('april', 'NN'), ('2014', 'CD'), ('having', 'VBG'), ('trouble', 'NN'), ('viewing', 'VBG'), ('this', 'DT'), ('email', 'NN')], [('xxxxx', 'JJ'), ('xxxxxxxxxx', 'NNP'), ('june', 'NN'), ('2014', 'CD'), ('having', 'VBG'), ('trouble', 'NN'), ('viewing', 'VBG'), ('this', 'DT'), ('email', 'NN')], [('xxxxx', 'JJ'), ('xxxxxxxxxx', 'NN'), ('may', 'MD'), ('2014', 'CD'), ('having', 'VBG'), ('trouble', 'NN'), ('viewing', 'VBG'), ('this', 'DT'), ('email', 'NN')], [('bda', 'NN'), ('y', 'RB'), ('converted', 'VBD'), ('this', 'DT'), ('month', 'NN'), ('y', 'JJ'), ('students', 'NNS'), ('paid', 'VBN'), ('last', 'JJ'), ('month', 'NN'), ('y', 'VBD'), ('students', 'NNS'), ('so', 'RB'), ('far', 'RB')], [('bdcs', 'NN'), ('variable', 'JJ'), ('payouts', 'NNS'), ('w', 'VBP'), ('december', 'VB'), ('salary', 'NN'), ('here', 'RB'), ('supporting', 'VBG'), ('data', 'NNS'), ('here', 'RB')], [('xxx', 'VB'), ('both', 'DT'), ('you', 'PRP'), ('and', 'CC'), ('xxxxxx', 'NNS'), ('have', 'VBP'), ('been', 'VBN'), ('confirmed', 'VBN'), ('for', 'IN'), ('another', 'DT'), ('3', 'CD'), ('months', 'NNS'), ('december', 'JJ'), ('end', 'NN')], [('btw', 'NN'), ('did', 'VBD'), ('you', 'PRP'), ('confirm', 'VB'), ('your', 'PRP$'), ('call', 'NN'), ('with', 'IN'), ('nate', 'NN'), ('for', 'IN'), ('today', 'NN')], [('xxx', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('long', 'JJ'), ('weekend', 'NN'), ('is', 'VBZ'), ('in', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('week', 'NN'), ('of', 'IN'), ('september', 'NN')], [('back', 'RB'), ('14th', 'CD'), ('october', 'NN')], [('back', 'RB'), ('at', 'IN'), ('530am', 'CD'), ('tue', 'NN'), ('in', 'IN'), ('xxxxxxxxx', 'NN')], [('back', 'RB'), ('in', 'IN'), ('delhi', 'NN'), ('tomorrow', 'NN')], [('balancing', 'VBG'), ('commercial', 'JJ'), ('and', 'CC'), ('xxxxxxx', 'JJ'), ('xxxxxxxxxxxx', 'NNP'), ('xxx', 'NNP'), ('xxxxx', 'NNP'), ('xx', 'NNP'), ('november', 'NNP'), ('yyyyy', 'NN'), ('2013', 'CD')], [('basic', 'JJ'), ('visual', 'JJ'), ('design', 'NN'), ('for', 'IN'), ('theme', 'NN'), ('approval', 'NN'), ('yyyyyyyy', 'NN'), ('xxxxxx', 'NNP'), ('screen', 'NN'), ('060614', 'CD'), ('log', 'NN'), ('in', 'IN'), ('screen', 'JJ'), ('060614', 'CD'), ('registration', 'NN'), ('screen', 'NN'), ('060614', 'CD'), ('xxxxx', 'NN'), ('map', 'NN'), ('and', 'CC'), ('court', 'NN'), ('list', 'NN'), ('060614', 'CD'), ('xxxxxx', 'NN'), ('profile', 'NN'), ('card', 'NN'), ('060614', 'CD'), ('xxxxxxx', 'NN'), ('tennis', 'NN')], [('xxxx', 'NN'), ('in', 'IN'), ('mind', 'NN'), ('that', 'IN'), ('this', 'DT'), ('week', 'NN'), ('had', 'VBD'), ('more', 'JJR'), ('than', 'IN'), ('its', 'PRP$'), ('share', 'NN'), ('of', 'IN'), ('unproductive', 'JJ'), ('days', 'NNS'), ('else', 'RB'), ('we', 'PRP'), ('wouldve', 'VBP'), ('ensured', 'VBD'), ('the', 'DT'), ('sows', 'NNS'), ('had', 'VBD'), ('passed', 'VBN'), ('full', 'JJ'), ('due', 'JJ'), ('dilligence', 'NN'), ('prior', 'RB'), ('to', 'TO'), ('anyone', 'NN'), ('having', 'VBG'), ('to', 'TO'), ('start', 'VB')], [('because', 'IN'), ('the', 'DT'), ('team', 'NN'), ('xxxx', 'NN'), ('told', 'VBD'), ('me', 'PRP'), ('out', 'IN'), ('of', 'IN'), ('that', 'DT'), ('one', 'CD'), ('member', 'NN'), ('has', 'VBZ'), ('applied', 'VBN'), ('one', 'CD'), ('week', 'NN'), ('leave', 'VBP'), ('in', 'IN'), ('august', 'JJ'), ('second', 'NN'), ('week', 'NN')], [('because', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('compensating', 'VBG'), ('on', 'IN'), ('saturday', 'NN'), ('for', 'IN'), ('today', 'NN'), ('no', 'DT'), ('xxxx', 'NN')], [('xxxxxxx', 'NN'), ('will', 'MD'), ('be', 'VB'), ('taken', 'VBN'), ('up', 'RP'), ('today', 'NN')], [('before', 'IN'), ('friday', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('signing', 'VBG'), ('the', 'DT'), ('contract', 'NN'), ('on', 'IN'), ('this', 'DT'), ('along', 'IN'), ('with', 'IN'), ('xxxx', 'NNP'), ('work', 'NN')], [('before', 'IN'), ('you', 'PRP'), ('work', 'VBP'), ('on', 'IN'), ('anything', 'NN'), ('else', 'RB'), ('this', 'DT'), ('needs', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('fixed', 'VBN'), ('as', 'IN'), ('it', 'PRP'), ('has', 'VBZ'), ('delayed', 'VBN'), ('our', 'PRP$'), ('test', 'NN'), ('with', 'IN'), ('peecho', 'NN'), ('and', 'CC'), ('now', 'RB'), ('jeopardizing', 'VBG'), ('launch', 'NN'), ('in', 'IN'), ('august', 'NN')], [('below', 'IN'), ('i', 'NNS'), ('have', 'VBP'), ('mentioned', 'VBN'), ('my', 'PRP$'), ('todays', 'NNS'), ('work', 'VBP'), ('plan', 'NN')], [('xxxxx', 'NNS'), ('are', 'VBP'), ('his', 'PRP$'), ('detailed', 'JJ'), ('updates', 'NNS'), ('he', 'PRP'), ('sends', 'VBZ'), ('via', 'IN'), ('his', 'PRP$'), ('sat', 'NN'), ('xxxxx', 'NN')], [('xxxxx', 'NNS'), ('are', 'VBP'), ('the', 'DT'), ('action', 'NN'), ('items', 'NNS'), ('that', 'IN'), ('we', 'PRP'), ('got', 'VBD'), ('to', 'TO'), ('complete', 'VB'), ('before', 'IN'), ('end', 'NN'), ('of', 'IN'), ('day', 'NN'), ('tomorrow', 'NN')], [('xxxxx', 'NNS'), ('are', 'VBP'), ('the', 'DT'), ('contents', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('652013', 'CD'), ('xxx', 'NN'), ('xxxxxxx', 'NN')], [('xxxxx', 'NNS'), ('are', 'VBP'), ('the', 'DT'), ('key', 'JJ'), ('points', 'NNS'), ('updating', 'VBG'), ('you', 'PRP'), ('for', 'IN'), ('this', 'DT'), ('week', 'NN'), ('on', 'IN'), ('ror', 'NN'), ('open', 'JJ'), ('positions', 'NNS')], [('xxxxx', 'NNS'), ('are', 'VBP'), ('the', 'DT'), ('todays', 'JJ'), ('minutes', 'NNS'), ('of', 'IN'), ('meeting', 'NN')], [('xxxxx', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('list', 'NN'), ('of', 'IN'), ('issues', 'NNS'), ('logged', 'VBN'), ('today', 'NN')], [('xxxxx', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('list', 'NN'), ('of', 'IN'), ('issues', 'NNS'), ('logged', 'VBN'), ('for', 'IN'), ('xxxxx', 'NNP'), ('xxxxx', 'NNP'), ('will', 'MD'), ('continue', 'VB'), ('testing', 'VBG'), ('tomorrow', 'NN')], [('xxxxx', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('list', 'NN'), ('of', 'IN'), ('points', 'NNS'), ('discussed', 'VBN'), ('in', 'IN'), ('todays', 'NNS'), ('telecon', 'VBP'), ('with', 'IN'), ('xxx', 'NN')], [('xxxxx', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('list', 'NN'), ('of', 'IN'), ('points', 'NNS'), ('which', 'WDT'), ('were', 'VBD'), ('discussed', 'VBN'), ('in', 'IN'), ('todays', 'NNS'), ('teleconwith', 'VBP'), ('punch', 'NN')], [('xxxxx', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('count', 'NN'), ('of', 'IN'), ('issues', 'NNS'), ('logged', 'VBN'), ('on', 'IN'), ('xxxxxx', 'NNS'), ('today', 'NN')], [('xxxxx', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('count', 'NN'), ('of', 'IN'), ('issues', 'NNS'), ('logged', 'VBN'), ('today', 'NN')], [('xxxxx', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('list', 'NN'), ('of', 'IN'), ('changesfeedback', 'NN'), ('discussed', 'VBN'), ('in', 'IN'), ('todays', 'NNS'), ('telecon', 'VBP'), ('with', 'IN'), ('punch', 'NN')], [('xxxxx', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('list', 'NN'), ('of', 'IN'), ('points', 'NNS'), ('discussed', 'VBN'), ('in', 'IN'), ('todays', 'NNS'), ('telecon', 'VBP'), ('with', 'IN'), ('punch', 'NN'), ('for', 'IN'), ('the', 'DT'), ('responsive', 'JJ'), ('layout', 'NN'), ('in', 'IN'), ('smaller', 'JJR'), ('devicesstarting', 'NN'), ('from', 'IN'), ('320x480', 'CD')], [('xxxxx', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('list', 'NN'), ('of', 'IN'), ('points', 'NNS'), ('discussed', 'VBN'), ('in', 'IN'), ('todays', 'NNS'), ('meeting', 'VBG'), ('internal', 'JJ'), ('dev', 'NN'), ('qa', 'NN'), ('for', 'IN'), ('xxxxxxxx', 'NNP'), ('xxxxxx', 'NN')], [('besides', 'IN'), ('the', 'DT'), ('challenge', 'NN'), ('of', 'IN'), ('creating', 'VBG'), ('global', 'JJ'), ('brands', 'VBZ'), ('the', 'DT'), ('high', 'JJ'), ('priced', 'VBN'), ('production', 'NN'), ('factors', 'NNS'), ('and', 'CC'), ('inadequate', 'JJ'), ('infrastructure', 'NN'), ('are', 'VBP'), ('xxxxxs', 'JJ'), ('major', 'JJ'), ('deterrents', 'NNS'), ('today', 'NN')], [('best', 'JJS'), ('regards', 'NNS'), ('xxxxx', 'VBP'), ('xxxxxxxxx', 'NN'), ('on', 'IN'), ('11082014', 'CD'), ('1449', 'CD'), ('xxxxx', 'NN'), ('xxxx', 'NNP'), ('xxxxxx', 'NN')], [('best', 'JJS'), ('regards', 'NNS'), ('xxxxx', 'NNP'), ('xxxxxxxxxx', 'NNP'), ('and', 'CC'), ('xxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('xxxxxxxxx', 'NNP'), ('yyyyyyyyyyyyyy', 'NN'), ('on', 'IN'), ('monday', 'NN'), ('09', 'CD'), ('december', 'NN'), ('2013', 'CD')], [('between', 'IN'), ('me', 'PRP'), ('and', 'CC'), ('you', 'PRP'), ('i', 'VBP'), ('think', 'VBP'), ('chuppis', 'JJ'), ('xxx', 'NNP'), ('will', 'MD'), ('fall', 'VB'), ('sick', 'JJ'), ('by', 'IN'), ('mid', 'NN'), ('or', 'CC'), ('end', 'NN'), ('of', 'IN'), ('mar', 'NN')], [('big', 'JJ'), ('thanks', 'NNS'), ('to', 'TO'), ('xxxxx', 'VB'), ('for', 'IN'), ('packaging', 'NN'), ('this', 'DT'), ('up', 'RB'), ('and', 'CC'), ('launching', 'VBG'), ('it', 'PRP'), ('this', 'DT'), ('weekend', 'NN')], [('xxxxxxx', 'NN'), ('xxxxx', 'CD'), ('july', 'NN')], [('bindings', 'NNS'), ('value', 'NN'), ('text', 'NN'), ('text', 'NN'), ('alertsfiltercountstoday', 'JJ'), ('message', 'NN'), ('unexpected', 'VBD'), ('token', 'JJ')], [('xxxxx', 'NN'), ('with', 'IN'), ('regards', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('service', 'NN'), ('tax', 'NN'), ('amount', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('pay', 'VB'), ('yy', 'NN'), ('of', 'IN'), ('that', 'DT'), ('amount', 'NN'), ('in', 'IN'), ('december', 'NN'), ('and', 'CC'), ('yy', 'NN'), ('in', 'IN'), ('january', 'NN')], [('bit', 'NN'), ('tied', 'VBD'), ('up', 'RP'), ('today', 'NN')], [('xxxxx', 'NN'), ('for', 'IN'), ('now', 'RB'), ('and', 'CC'), ('i', 'VB'), ('will', 'MD'), ('get', 'VB'), ('back', 'RB'), ('by', 'IN'), ('cob', 'NN'), ('today', 'NN')], [('xxxxx', 'VB'), ('your', 'PRP$'), ('date', 'NN'), ('for', 'IN'), ('the', 'DT'), ('25th', 'JJ'), ('october', 'NN'), ('for', 'IN'), ('xxx', 'JJ'), ('workshops', 'NNS'), ('across', 'IN'), ('xxxxxx', 'NNP'), ('xxxxx', 'NNP'), ('and', 'CC'), ('xxxxxxxxx', 'VB')], [('xxxxx', 'JJ'), ('y', 'NN'), ('xxx', 'NNP'), ('y', 'NNP'), ('x', 'NNP'), ('yyy', 'NN'), ('metres', 'NNS'), ('on', 'IN'), ('572014', 'CD'), ('evening', 'NN')], [('booked', 'VBN'), ('on11082014', 'JJ'), ('1256', 'CD'), ('pm', 'NN')], [('bulk', 'JJ'), ('purchase', 'NN'), ('beginning', 'NN'), ('of', 'IN'), ('the', 'DT'), ('month', 'NN'), ('and', 'CC'), ('constant', 'JJ'), ('refills', 'NNS'), ('or', 'CC'), ('small', 'JJ'), ('purchase', 'NN'), ('through', 'IN'), ('the', 'DT'), ('month', 'NN')], [('xxxxxxxxxx', 'JJ'), ('xx', 'NNP'), ('yyyyy', 'NN'), ('enddate', 'NN'), ('yyyyyyyyyyyyy', 'NN'), ('eventtime', 'NN'), ('tue', 'NN'), ('jul', 'NN'), ('08', 'CD'), ('140000', 'CD'), ('xxx', 'NN'), ('2014', 'CD'), ('lastupdated', 'VBD'), ('yyyyyyy', 'NN'), ('urllink', 'NN'), ('alertorigin', 'NN'), ('y', 'NN'), ('snippet', 'NN'), ('srivatsansunil', 'NN'), ('docid', 'NN'), ('doctime', 'NN'), ('yyyyyyyyyyyyy', 'NN'), ('taskheader', 'NN'), ('0200', 'CD'), ('pm0300', 'NN'), ('pm', 'NN'), ('contact', 'NN')], [('xxxxxxxx', 'NN'), ('xxxxx', 'NN')], [('but', 'CC'), ('i', 'NN'), ('had', 'VBD'), ('a', 'DT'), ('lot', 'NN'), ('of', 'IN'), ('energy', 'NN'), ('after', 'IN'), ('coming', 'VBG'), ('back', 'RB'), ('was', 'VBD'), ('at', 'IN'), ('xxxxxx', 'NNP'), ('on', 'IN'), ('sunday', 'NN')], [('but', 'CC'), ('both', 'DT'), ('will', 'MD'), ('have', 'VB'), ('to', 'TO'), ('be', 'VB'), ('in', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('release', 'NN'), ('and', 'CC'), ('not', 'RB'), ('for', 'IN'), ('the', 'DT'), ('poc', 'NN'), ('which', 'WDT'), ('is', 'VBZ'), ('anyway', 'RB'), ('ending', 'VBG'), ('tomorrow', 'NN')], [('but', 'CC'), ('let', 'VB'), ('us', 'PRP'), ('just', 'RB'), ('see', 'VB'), ('how', 'WRB'), ('long', 'JJ'), ('he', 'PRP'), ('plays', 'VBZ'), ('this', 'DT'), ('game', 'NN'), ('we', 'PRP'), ('should', 'MD'), ('give', 'VB'), ('him', 'PRP'), ('time', 'NN'), ('till', 'NN'), ('xxxx', '$'), ('2nd', 'CD'), ('to', 'TO'), ('return', 'VB'), ('it', 'PRP'), ('as', 'IN'), ('he', 'PRP'), ('has', 'VBZ'), ('promised', 'VBN'), ('and', 'CC'), ('then', 'RB'), ('call', 'VB'), ('his', 'PRP$'), ('bluff', 'NN')], [('but', 'CC'), ('make', 'VB'), ('sure', 'JJ'), ('you', 'PRP'), ('purchase', 'VBP'), ('your', 'PRP$'), ('subscription', 'NN'), ('by', 'IN'), ('may', 'MD'), ('23', 'CD'), ('2014', 'CD')], [('but', 'CC'), ('parabola', 'NN'), ('considered', 'VBN'), ('todays', 'JJ'), ('work', 'NN'), ('as', 'IN'), ('a', 'DT'), ('next', 'JJ'), ('week', 'NN'), ('working', 'VBG'), ('hour', 'NN')], [('but', 'CC'), ('she', 'PRP'), ('is', 'VBZ'), ('coming', 'VBG'), ('back', 'RB'), ('next', 'JJ'), ('week', 'NN')], [('but', 'CC'), ('that', 'DT'), ('buffer', 'VBP'), ('day', 'NN'), ('should', 'MD'), ('have', 'VB'), ('been', 'VBN'), ('monday', 'JJ'), ('not', 'RB'), ('thursday', 'JJ')], [('but', 'CC'), ('the', 'DT'), ('displaydate', 'NN'), ('is', 'VBZ'), ('1', 'CD'), ('sec', 'NN'), ('less', 'JJR'), ('than', 'IN'), ('the', 'DT'), ('startdate', 'NN'), ('so', 'RB'), ('in', 'IN'), ('plugin', 'NN'), ('it', 'PRP'), ('shows', 'VBZ'), ('a', 'DT'), ('day', 'NN'), ('before', 'IN'), ('sunday', 'JJ'), ('instead', 'RB'), ('of', 'IN'), ('monday', 'NN')], [('but', 'CC'), ('we', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('report', 'VB'), ('the', 'DT'), ('personal', 'JJ'), ('information', 'NN'), ('of', 'IN'), ('your', 'PRP$'), ('staff', 'NN'), ('to', 'TO'), ('hida', 'VB'), ('until', 'IN'), ('next', 'JJ'), ('monday', 'NN'), ('if', 'IN'), ('we', 'PRP'), ('decided', 'VBD'), ('the', 'DT'), ('registration', 'NN'), ('of', 'IN'), ('spring', 'NN'), ('term', 'NN')], [('but', 'CC'), ('we', 'PRP'), ('understand', 'VBP'), ('from', 'IN'), ('the', 'DT'), ('conversation', 'NN'), ('today', 'NN'), ('that', 'IN'), ('the', 'DT'), ('requirement', 'NN'), ('was', 'VBD'), ('where', 'WRB'), ('xxx', 'JJ'), ('value', 'NN'), ('will', 'MD'), ('be', 'VB'), ('either', 'CC'), ('or', 'CC'), ('sometext', 'NN')], [('but', 'CC'), ('we', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('no', 'DT'), ('choice', 'NN'), ('but', 'CC'), ('to', 'TO'), ('go', 'VB'), ('ahead', 'RB'), ('with', 'IN'), ('conversion', 'NN'), ('and', 'CC'), ('go', 'VB'), ('with', 'IN'), ('the', 'DT'), ('gross', 'JJ'), ('up', 'RP'), ('lp', 'NN'), ('for', 'IN'), ('now', 'RB'), ('else', 'JJ'), ('company', 'NN'), ('has', 'VBZ'), ('to', 'TO'), ('stop', 'VB'), ('lending', 'VBG'), ('next', 'JJ'), ('week', 'NN')], [('but', 'CC'), ('when', 'WRB'), ('he', 'PRP'), ('called', 'VBD'), ('them', 'PRP'), ('today', 'NN'), ('he', 'PRP'), ('found', 'VBD'), ('that', 'IN'), ('you', 'PRP'), ('didnt', 'VBP'), ('follow', 'VB'), ('up', 'RP'), ('with', 'IN'), ('those', 'DT'), ('candidates', 'NNS'), ('after', 'IN'), ('your', 'PRP$'), ('first', 'JJ'), ('call', 'NN')], [('but', 'CC'), ('when', 'WRB'), ('seen', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('log', 'NN'), ('files', 'VBZ'), ('only', 'RB'), ('yyyyy', 'JJ'), ('entries', 'NNS'), ('are', 'VBP'), ('there', 'RB'), ('need', 'VBN'), ('to', 'TO'), ('check', 'VB'), ('it', 'PRP'), ('once', 'RB'), ('tomorrow', 'NN')], [('but', 'CC'), ('i', 'NN'), ('could', 'MD'), ('not', 'RB'), ('followup', 'VB'), ('with', 'IN'), ('xxxx', 'NN'), ('on', 'IN'), ('the', 'DT'), ('problem', 'NN'), ('in', 'IN'), ('the', 'DT'), ('following', 'JJ'), ('months', 'NNS'), ('nor', 'CC'), ('did', 'VBD'), ('i', 'VB'), ('know', 'VBP'), ('that', 'IN'), ('the', 'DT'), ('problem', 'NN'), ('had', 'VBD'), ('worsened', 'VBN'), ('after', 'IN'), ('that', 'DT')], [('by', 'IN'), ('next', 'JJ'), ('friday', 'NN'), ('xxx', 'NNP'), ('one', 'CD'), ('hotel', 'NN'), ('site', 'NN'), ('should', 'MD'), ('be', 'VB'), ('completed', 'VBN'), ('for', 'IN'), ('xxxxxxxxincluding', 'VBG'), ('the', 'DT'), ('feedbackchanges', 'NNS'), ('provided', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('pdf', 'NN'), ('corrections', 'NNS'), ('31', 'CD'), ('october', 'RB'), ('posted', 'VBN'), ('on', 'IN'), ('basecamp', 'NN')]]]

In [ ]: