책을 읽게 된 이유
얼마전까지만해도 머신러닝이라는 것은 저와는 완전히 동떨어진 기술이고, 관심은 가지만 알필요는 없을 것 같다는 생각을 가지고 있었습니다. 왜냐하면 머신러닝을 설명하는 글들을 보면 항상 복잡한 수학 공식이 적혀 있었고, 이 공식들을 사용해서 컴퓨터를 학습시켜 미래를 예측한다는 내용이었기 때문에 너무 어려워보이고 범접할 수 없는 느낌이 들었기 때문입니다. 하지만 불과 1,2년 사이에 먼 이야기 같았던 머신러닝이 점점 생활 속으로 들어오고 익숙한 단어가 되고, 주 마다 찾아가는 서점에서도 머신러닝, 딥러닝에 대한 책들이 점점 많아지는 것을 느꼈습니다. 그만큼 많은 사람들이 관심을 가지고 이에 대한 공부를 하고 있고, 제 주변에서도 관심을 가지고 살펴보는 사람들이 늘어가고 있었습니다.
최근에 회사에서 진행한 프로젝트와 주말마다 진행하는 스터디를 통해 데이터를 다루는 일이 많아지면서 이제는 머신러닝에 대해 한번 공부해보고 적용할 수 있었으면 좋겠다는 생각을 가지게 되었습니다. 그러면서 처음 머신러닝에 대한 개념을 잡기 위해 한빛미디어에서 출간한 처음 배우는 머신러닝이라는 책을 읽게 되었습니다. 처음 배우는 이라는 타이틀이 붙은 만큼 쉽게 쓰여져 있을 것이라 기대하고 읽기 시작하였습니다.
이 책을 읽으려면
이 책은 머신러닝을 처음 배우는 프로그래머나, 머신러닝 전공 희망자, 데이터 과학자를 대상으로 하기 때문에 입문자를 위한 책이기는 하지만 어느정도 프로그래밍에 대한 기초지식은 있어야 한다고 생각합니다. 실전 예제에 들어가기 전까지 이론적인 부분들은 프로그래밍 지식이 없이도 읽을 수 있지만 후반부에 실제로 실습을 하는 부분에서는 파이썬을 사용하여 코딩을 하고, 파이썬 문법에 대한 언급은 없으므로, 기본적인 지식이 있어야 따라해보며 이해해 나갈 수 있을 것입니다.
내가 책을 읽었던 방법
입문자용 책이었기 때문에 머신러닝의 개념들에 대한 설명이 깊이 있게 들어가지는 않고 추상적인 설명이 주를 이루고 있습니다. 아마도 깊게 들어가면 수학공식이 복잡하게 나올 것이기 때문에 저와 같은 입문자들에게는 적절한 난이도라고 생각합니다. 하지만 쉽게 쓰여진 이 개념들도 종류가 너무 많다보니 머릿속에 정리가 잘 되지는 않았습니다. 수학 공식이 등장하는 부분은 대부분 이런게 있구나 하고 넘어갔고, 개념적인 설명이 있는 부분은 정독을 하며 최대한 이해해보려고 노력하며 읽어내려갔습니다. 하지만 이 또한 두세번정도 읽어도 이해가 안되면 그냥 넘어갔습니다. 머신러닝은 여러번의 시행착오를 거쳐가며 개선해나가는 과정을 통해 익숙해지고 이해가 되기 때문에 너무 이론적인 부분에서 막혀 있을 필요는 없을 것 같다는 생각이었습니다. 수학 공식 또한 이 공식이 어떠한 곳에 사용되고 왜 사용해야하는지 정도만 이해하면 어차피 검증된 라이브러리들이 잘 구현되어 있기 때문에 적절한 곳에 가져다 쓰면 된다고 생각하여 그정도 까지만 이해하고 넘어갔습니다.
책을 읽으며 좋았던 점
9장까지 이론적인 내용들을 읽고나면 이제 실제로 코딩을 해볼 수 있는 실전 예제들이 등장합니다. 저는 이론적인 부분은 난해하고 조금 지겨움을 느꼈었는데 실전 예제를 직접 따라해보고 실제 결과를 눈으로 확인하니 큰 재미를 느꼈습니다. 그리고 이전에 이해가 잘 안되던 부분도 어느정도 이해가 되면서 실제 업무에 적용할 수 있을만한 요소들에 대한 인사이트를 얻을 수 있었습니다. 저는 이 과정에서 재미와 경험, 인사이트를 얻을 수 있었기 때문에 이론적인 부분을 스킵하더라도 실전 예제는 꼭 직접 해보실 것을 추천합니다. 조금씩 다른 유형의 실전 예제들이 4가지나 수록이 되어 있기 때문에 전부 다 따라해본다면 이 책에서 설명하고 있는 이론적인 부분들 또한 함께 이해가 될 것이라 생각됩니다.
예제 따라해보기
import syssys.version'3.5.2 (default, Nov 23 2017, 16:37:01) \n[GCC 5.4.0 20160609]'
vocabulary = {}with open('/notebooks/resources/SMSSpamCollection', encoding='utf-8') as file_handle: for line in file_handle: splits = line.split() # 공백을 구분자로 문자열 구분 label = splits[0] # 맨 앞 단어는 레이블 text = splits[1:] for word in text: lower = word.lower() # 대소문자를 소문자로 통일 lower = lower.replace(".", "") if not word in vocabulary: vocabulary[word] = len(vocabulary)print(vocabulary){'exist,': 1339, '=D': 2707, "hw'd": 12292, 'Hmm,': 9205, 'guys.': 3253, 'answered': 9345, 'Aaniye': 7031, '2day,': 2207, 'voucher.': 7651, 'heater': 12760, 'Smiling': 14522, 'Registered': 7087, 'format': 6821, 'while,': 3265, 'moms.': 8158, 'that.i': 13661, 'Might': 6224, 'ASLEEP..."': 11005, 'FM...you': 7491, 'SLEEPING': 11838, 'else...': 14805, 'bored.': 8945, '330.': 11305, 'process?': 10851, 'something...': 12410, 'late:)but': 15263, 'lose.': 3081, 'Freeentry': 14816, 'Sweet,': 6215, 'grand': 3518, '$1': 675, 'STUDENTFINANCIAL': 11550, 'tear...."': 11543, 'tolerance': 13517, 'King': 3879, 'lucky.': 10259, 'thing....how': 6763, 'message..Its': 6740, 'Starting': 14918, 'character?': 6499, 'water': 5120, "idea's?": 8047, 'paru..': 7562, 'series.': 672, 'awake?': 3850, 'mac': 11071, 'tming': 8468, 'Ilol': 5828, 'blogging': 4854, 'book': 2282, 'landlineonly': 11589, 'Tiwary': 9886, 'worries,': 11405, 'chocolate': 5048, 'WENWECAN': 13767, 'fathima': 9761, 'Theoretically': 12604, 'assumed': 4777, 'barely': 3393, 'anyones': 15225, 'eye': 7687, 'silly': 3363, 'especially': 7451, 'endless': 15626, 'OTHERWISE': 11033, 'lift...': 11240, 'bedroom': 3868, 'prospects': 6914, 'A': 252, 'do,"': 8058, 'LUV!': 4566, 'occurs': 12928, 'gr8.': 2609, 'converted': 8220, 'wherever': 4883, 'tuesday': 11473, '"KUDI"yarasu': 9256, 'im': 2041, '146tf150p': 12329, 'hw': 11216, 'here.pls': 12282, 'amk.': 8164, 'clean...': 3429, '08712402779': 5949, 'now.': 1462, 'lik': 11198, 'finally...': 13365, 'differ': 2993, 'bambling': 11675, '"VALENTINES': 8751, 'jacket': 822, 'IBHltd': 3150, '8.Attractive': 2764, 'starring': 9831, 'dealer': 13193, 'COMPLETELY': 6102, 'by': 458, 'fal': 10856, 'Woodland': 13416, 'scraped': 14218, 'of,': 12606, 'finds': 5190, 'cedar': 10395, 'moseley': 8732, '08718726970': 7842, 'campus?': 3198, 'yest': 8020, 'deal': 1544, 'NIC': 11291, 'walk': 1736, 'OptOut': 6631, 'bitching': 15731, "DIDN'T": 8186, 'July': 13094, 'BEGIN': 4027, 'de': 5439, '3G': 5056, 'determine': 6537, 'Rajnikant': 3541, 'O.': 3366, 'Co': 172, 'landmark,': 13577, "i'd": 9499, 'rather': 3309, 'sorts': 9110, 'Men': 4122, 'imposed': 1158, 'xxxxxxxxxxxxxX': 11764, 'Cuz': 979, 'pa...': 12046, 'Lol.': 7485, 'less.': 13399, 'mum': 3426, 'indian?': 5276, 'Pilates': 14897, 'numbers.': 10171, 'issue.': 12491, "did'nt": 8633, 'facebook.': 2618, 'PORN': 10403, 'jungle': 9515, 'frndshp': 11199, 'evenings': 12871, 'wrking': 5534, 'recharge.': 7656, 'unhappy': 7924, 'polys:': 4443, 'today..': 2778, '2yr': 5492, 'Vijay': 11927, 'hoping': 3250, 'Michael': 13229, 'shopping.': 6313, 'cousin...': 8755, 'insurance': 2413, 'bawling': 15094, 'Day,': 10711, 'bundle': 8722, 'it.i': 14478, 'printed': 1765, 'chat?Im': 13927, 'Chloe,': 14174, 'morning': 596, 'now...': 782, 'yet..': 12278, 'renting': 12623, 'there--': 12493, 'synced': 12333, 'Ok..': 2039, "'Uptown": 6192, 'Lancaster,': 12203, 'course': 1677, 'MUCH': 8180, '24th': 13937, 'Dom': 13720, 'HEY': 1162, 'bao': 3386, 'FIZZ.': 14148, 'ringtoneking': 12788, 'CAUSE': 11030, '1000': 2476, 'Secret': 4684, 'u.So': 13556, 'mths': 12769, 'flower...': 6585, 'PARTY': 7918, 'Izzit': 9212, 'Lucy': 6693, 'me.': 106, 'SEXYCHAT': 14671, 'two!': 5802, 'tool?': 2017, 'Games,': 2159, '08701417012150p': 9131, '$95/pax,': 6063, 'www.SMS.ac/u/bootydelious': 1388, '09111030116.': 7533, 'chikku:-):-DB-)': 2449, '"get': 12416, 'nachos.': 12797, 'number,': 8279, 'I\x92m': 7535, 'so': 52, 'PoBox12n146tf150p': 2745, 'MATE!': 12533, 'paracetamol': 10201, 'Day!': 11387, 'ate?': 13698, '1172.': 14331, 'soon.xxx': 14289, 'talks': 15549, 'silence..."': 6513, 'unusual': 10045, '430': 13341, 'myparents': 11631, 'From': 197, 'bk': 6443, 'It,,s': 9914, 'Final': 8469, 'Dear,regret': 5170, 'Sure!': 6082, 'PUTTIN': 14055, 'k:)': 15104, 'strange': 9541, 'wait': 2964, 'winds': 12117, 'Catching': 5606, "Let's": 7063, 'DONTIGNORE': 8679, 'come...': 13701, 'GRAVEL': 1217, 'fassyole!': 15006, 'nothin': 13374, 'etc': 657, 'with:': 13825, 'Obviously,': 12803, 'steps.': 12639, 'thk': 1316, 'Finished': 767, '(10p/min).': 6365, 'flowing': 1314, 'ringtones,': 9670, 'himself.': 5958, 'Wk': 927, 'boys': 13071, '=/': 8948, 'Dorothy@kiefer.com': 11765, 'jacuzzi': 12261, 'Squishy': 7765, 'strict': 1723, 'Disconnect': 12316, 'nigro': 8045, '01223585236': 11692, 'Wherevr..': 12168, 'hopeful...': 10882, 'next': 264, 'Wrong': 14691, 'MORE': 3166, 'payments': 7844, 'NYTHO,': 11842, 'Adrian': 11331, 'SLAP': 2389, 'WELL': 1167, 'HOWS': 12534, 'SOMEONE': 874, 'liver.': 14882, 'usually': 585, 'GM+GN+GE+GN:)': 8134, 'hide': 14115, 'FFFFUUUUUUU': 13723, 'agidhane..': 10609, 'Simply': 900, 'clarify': 14865, 'pleasure...': 10746, 'book...': 2147, '08081263000': 11512, 'Er': 9594, 'ok?': 5024, 'qet...': 13643, 'fatty': 11282, 'Yeah': 413, 'program.': 15388, 'Till': 425, 'door': 4263, 'Euro': 13270, 'Start': 2913, 'INCLU': 15669, 'Stop': 1297, '5K,': 4671, 'rude,': 3197, 'bruv!': 12756, 'hsbc.': 14361, 'Frnd,': 11191, '(Henry,': 14634, 'remember.': 9955, 'Lover.': 10332, 'disc': 6822, 'Boo.': 9259, 'Bob,': 13580, 'ruin': 9737, 'BIRTHDAY': 3277, 'HL': 211, 'pie.': 3532, 'soon': 180, 'LAY': 13261, 'perf?': 13072, '5pm': 6062, 'Garbage': 15347, 'sick.': 6550, 'BABE,PROBPOP': 13983, 'korche': 5419, 'YES-434': 1384, 'k:)but': 9363, 'grownup': 15356, 'ass': 2617, '08714714011': 10564, '@kiosk.': 14612, 'birla': 1310, 'these': 3270, 'costs': 6938, "We'd": 1484, 'Pink;u': 8372, 'assessment': 15202, 'salon': 10701, 'Hero,i': 5153, 'chip': 4828, 'Hari-': 11968, 'southern': 12862, 'eruku.': 9939, 'Deliver': 13936, 'denis': 14354, 'lovers': 5164, 'choices': 10368, 'askd..': 15506, 'custcare': 3498, 'TWILIGHT': 7192, 'cd': 7356, 'u,': 1867, 'railway.': 3044, 'fallen': 417, 'sunlight.': 13378, 'necessarily': 1898, 'sittin': 5538, 'laundry': 7878, 'suzy': 1905, 'review': 714, 'them': 952, 'Making': 7199, 'BREATHE1': 10265, '69696': 9960, 'Trackmarque': 7439, 'sang': 6191, 'Fyi': 12939, 'call': 145, 'alcohol?': 2397, 'May': 39, 'HATES': 13448, 'Reason,': 9334, 'ISNT': 13888, 'Min': 10228, 'laugh!': 3820, 'man': 543, 'MONKEYAROUND!': 2847, '(Get': 14299, 'AROUND!': 1931, 'more?': 159, 'motor': 15590, 'stop?txtStop': 14042, 'Hack': 7784, 'underdtand': 12098, "address.u'll": 5525, '4eva': 15491, 'srt': 7902, '!!!!': 11443, 'chat!': 12275, 'pussy!': 14485, "THERE'S": 13204, 'Carlos': 5075, 'cheese': 12629, 'frnd': 10758, '"GUD': 10474, 'dresser': 703, 're-sub': 9155, 'miles': 15643, 'gimme': 4154, 'nange': 3808, 'Lil': 10244, 'mumHas': 15290, 'dinero': 7460, 'much.': 3760, 'ubandu': 1666, 'passionate': 3260, 'God,': 2628, 'painting?': 11421, 'speechless.': 13749, 'anna': 9994, 'MSG:We': 11508, '1405,': 3913, 'shipping': 1886, 'actin': 420, 'Coca-Cola': 10187, 'man!': 7395, 'senor': 10634, 'plane': 757, "week's": 76, 'Done': 10630, 'worlds': 4581, 'edhae,': 6656, 'SK3': 4527, 'lotto': 12519, 'feel.': 290, 'necesity': 12288, 'Shifad': 8885, '08715203652': 14462, 'Peripherals': 11260, 'STILL': 6526, 'sha.': 13757, 'Doing': 7484, 'arguments': 5780, 'Celebrated': 11619, 'Expected...': 9078, 'albi': 15023, 'comes..': 11317, 'earth': 3765, 'things': 1262, '2day!': 9217, 'good': 683, 'People': 11174, '09058097189': 11300, 'at?': 1587, 'LORD': 10870, 'POBOX114/14TCR/W1': 9608, '07123456789': 2732, 'finishing': 6970, 'thin': 5777, '.by': 13611, 'Sam': 1759, 'teeth?if': 15256, 'juicy': 5402, 'bitch..........': 8108, 'do.': 1147, 'August.': 1536, 'Consider': 9536, 'A,': 13102, 'V': 1802, '6pm': 15106, 'SLEEPINGWITH,': 10267, 'paper?': 14415, 'priest': 10897, '113,': 8515, 'mummy': 1513, 'length': 8167, 'Nookii': 4789, '"ALRITE': 7468, 'Cheers,': 13618, 'Now,': 7723, 'dabbles': 9723, 'telly?': 8942, 'award!': 2975, 'NICE': 2107, 'juliana.': 12795, '84484': 12789, 'SP:Tyrone': 1203, 'journey!': 11799, 'worry': 2545, 'C-Red': 13099, 'Eve': 11855, 'swoop': 15231, 'sura,': 4479, 'BA128NNFWFLY150ppm': 10023, 'Chance!': 4337, 'anything,': 4707, 'answered:': 10792, '80878': 15421, 'apt': 5154, 'cinema': 647, 'arts': 9898, "child's": 14642, 'Anytime...': 14200, 'carryin': 7566, "she's": 4273, 'Messages.': 6755, 'Fancy': 2365, 'TALKBUT': 13763, 'POBox334,': 8081, 'care:-)': 13388, 'thru.Respect': 8739, 'Limited': 12643, 'Low-cost': 4069, 'siva..tats': 15505, 'juan.': 12624, 'shldxxxx': 11828, "can't": 562, 'Yelow;i': 8378, 'MINI!!!!': 1917, 'ME?': 11382, 'auto': 11117, 'maximum': 11939, 'family.': 4519, 'Alwys': 11724, 'bhaskar,': 12053, 'Seem': 13031, 'camera.': 9606, 'hip': 8092, 'eyes.': 4126, '3wks.': 14272, 'spanish': 1457, '09095350301': 15395, 'acted': 14083, ':)going': 10979, 'replies': 13190, 'oga.': 14401, 'prey': 6827, 'god': 5465, 'Nice': 1903, 'Aiyah': 5547, 'rule.': 13806, "'HEART'...": 14493, 'prepayment.': 2298, 'fun': 85, 'REPLYS150': 5383, 'home...': 3937, '177.': 15280, 'babyjontet!': 1581, 'YEAH': 11011, 'bat:)': 13359, 'throat': 7247, 'HAVEBEEN': 8209, 'mt': 4198, 'BACKWARDS)': 13961, 'U’ve': 10216, 'cried': 191, 'cstore': 5745, 'American': 3400, 'fave': 2956, 'Update_Now': 2468, 'alternative.hope': 4873, 'You?': 436, 'nordstrom': 6883, 'ge': 8411, 'maga?': 9589, 'hunny.': 14046, 'problem-free': 8537, '09056242159': 8993, '1x150p/wk.': 9429, 'Free': 26, 'shipped.': 2657, 'sleeping..and': 2328, 'surprised,': 7203, 'Small': 10933, 'nevering..': 1315, 'skins': 12423, 'Guess': 2220, 'nyc': 4755, 'patty': 7093, '7634': 14101, 'Bored': 5581, 'cost.': 1548, 'WinnersClub': 2197, 'asa': 11746, 'pa?': 12244, 'abi.': 10597, 'turn': 360, 'asus': 11047, 'HAS': 14620, 'rayan': 12864, 'NUMBER': 11383, 'IS': 3643, 'University': 12861, 'RT-KIng': 7119, 'spontaneously..': 7251, 'brothas?': 12194, 'tune': 4294, 'handle': 10348, 'physics': 12402, '(You': 14861, 'future.': 3608, 'growing': 10057, 'Grl:': 10982, 'shadow.': 8352, 'immed.': 13673, 'success.': 10215, 'Awesome': 10787, 'wtc': 10273, 'Years': 1361, 'eg': 306, 'in!!': 10966, 'report.': 13438, 'normally': 8412, 'positions': 3803, 'shortage': 2785, 'Thought': 7453, 'us.GET': 13663, 'blur...': 13299, 'vill': 11700, 'note:': 12314, '40411': 15617, 'AL!!!!!!!!!': 4312, 'applying,': 4944, 'period': 11729, 'cum.': 8918, "'An": 11538, 'ignore': 10040, 'good?': 8018, 'friday?': 9454, 'arent': 9209, 'messy...': 7377, 'mids': 8969, 'sterling': 8536, 'diddy': 11101, 'Found': 1585, 'closingdate04/09/02': 4193, 'rael': 6886, 'Haha...': 6436, "There'll": 14245, 'quiet.': 5123, 'U?????': 9579, 'year?': 4141, 'THE': 5068, '80155,': 5587, 'rs.': 13505, 'Pls': 501, 'Oops,': 478, 'sms': 529, 'bite': 3458, 'lady.': 10734, 'worrying': 5759, 'Dear1': 2178, 'then?': 15475, '£2,000': 3200, 'outta': 11671, '09066362220': 8362, 'minus': 6177, '-VIVEKANAND-': 14936, '"wylie': 11311, 'least,': 11535, '£5000.00': 7493, 'sutra': 3805, 'Si': 2891, 'deals': 8723, 'easter.': 10157, 'n8': 14285, 'five': 4494, 'burn,': 8770, 'Yep,': 2659, '1/1': 9377, 'scammers': 8865, 'ready': 1842, 'yer': 8445, 'map': 5803, 'big,': 3255, '"BOO': 4400, '*****': 8478, '121': 7416, '12mths': 7823, 'say': 51, 'Golf': 14240, '078498****7': 14398, 'him:': 14772, 'poem:': 9005, 'voice]': 15344, 'Ok...': 1319, 'theirs?': 5667, 'Claim.': 10223, 'studying?': 12233, 'B.': 7214, 'mins?': 1912, 'shower,': 3705, 'convince': 6276, 'responsibilities.': 15011, 'MIX"': 12121, '*Number': 2686, 'cld': 8607, 'Lol!': 4239, "employer's": 2307, 'MSG': 524, 'cmon': 13183, 'match': 1129, 'textoperator': 7773, 'Dey': 3980, 'poking': 11106, 'advising': 12212, 'falls': 5612, 'EXTREME': 7941, 'eta.': 12798, 'Nice.nice.how': 10319, 'Hey..': 5674, 'zac': 12080, 'invite': 499, 'TRUBLE': 13445, 'Travel': 4673, 'fridays': 13500, 'Ltd,': 6324, 'goin,': 4221, 'bsn': 12211, 'over,': 1154, 'un-redeemed': 3240, 'first,': 15208, 'seriously..': 1869, 'message.': 2078, 'employee': 6854, '6pm..:-)': 8828, 'compromised': 7293, 'Nasdaq': 11775, 'Invaders': 7635, 'friendship:-)': 14578, 'eveB-).': 10868, 'princess.': 4129, '12hrs': 1040, 'call.urgent.': 12283, 'only.': 153, 'K:)i': 4862, 'status': 2452, 'Jackpot!': 223, 'contains': 14149, 'bowa?': 8137, 'did': 489, 'pain': 828, 'preponed': 14866, 'it..let': 11936, 'Rock': 11901, 'world:).very': 2834, 'set': 123, 'spatula': 5481, 'cardin': 6937, 'checkup': 9893, 'expecting': 8580, 'unlimited...': 7977, 'SPTV': 636, 'sometimes': 1328, 'Maybe?!': 3844, 'eighth': 588, 'frauds.': 6461, 'happiness': 5440, 'via': 2291, '2!': 426, 'stealing': 2306, 'dl': 11403, 'ali': 6651, 'DAY!': 6482, ':)finally': 1550, 'Fails': 6047, 'nokia': 531, 'diet': 15508, 'mah..': 8413, 'Mite': 15705, 'loose': 3355, 'much!': 15528, 'Gn': 9236, 'can,': 9923, 'degree.': 6911, 'twelve,': 10566, 'pull': 9921, 'clean': 3428, 'ax': 6225, 'sound...': 10350, 'SEE..NO': 5017, '3-u': 11162, 'colours!': 13269, 'again*loving': 12345, '(kadeem)': 9441, 'TOPLAY': 12711, 'plan?': 4244, 'muht': 15022, 'Sometimes': 3745, 'usf': 2665, '1-u': 11159, 'visiting': 4062, 'breather.': 238, 'prix?': 3519, 'sq825,': 9590, 'asleep?': 5214, 'number?': 3923, 'chennai:-)': 6982, 'then!': 2337, 'teacher': 3663, 'slovely.': 7386, '"Ur': 6704, '9.': 3127, 'me.need': 7005, 'budget': 9389, 'passes': 12342, 'told': 1816, 'half-8th': 13504, 'honest.': 7706, 'K..k...from': 10812, 'Expires': 1110, 'Amazing...': 14964, 'secret': 1787, 'feet*': 9978, 'Dates': 2143, 'eyes': 7669, 'stressed': 8457, 'facilities': 15103, 'popping': 8695, 'EXACT': 6004, 'wipro': 10345, 'beers': 12411, 'Slow': 3161, 'BSLVYL': 2109, 'part!': 6992, 'price!': 5579, 'performance': 2600, 'SORTED,BUT': 5945, 'forgets': 11386, 'start.': 9461, 'hour.': 15535, 'Okay.': 1806, 'SEEN.': 14350, '£1.50ea.': 13873, 'FRNDSHIP"': 8758, 'swann': 11298, 'kano..anyway': 14214, 'good...no': 4648, 'door:)': 11690, 'have': 137, 'it..just': 4082, 'Hi!': 1480, 'hanger': 9001, 'discreet': 4582, 'MO': 7480, 'sticky': 13189, 'vale': 12235, 'shaping': 10420, 'date.': 12135, 'Ni8;-)': 13090, 'walmart,': 15681, 'lower': 10172, 'ajith': 15446, 'WELLDA': 11548, 'jontin': 7907, 'west': 10050, 'Frnd': 12164, 'lined': 10531, '08718726978': 11236, 'marriage.': 9329, 'money?': 13699, 'leh.': 1683, 'recorder': 14072, 'POBox36504W45WQ': 2734, 'Anyway,': 1046, '/': 12836, 'wap': 7303, 'easier.': 5852, 'Natural': 11217, 'classmates?': 7427, 'MUM': 7559, 'amigos': 8769, 'gooD': 13545, 'starts': 2664, 'Valid': 150, 'sometme': 1944, 'pay': 323, 'Urgh,': 13911, 'brolly': 15465, 'AGO.CUSOON': 12856, 'w1t1jy': 4871, 'themed': 10026, 'also,': 1885, 'sofa..': 8649, 'seven.': 11254, 'today.he': 9902, 'nus': 7391, 'terrible.': 8964, 'god..': 10505, 'life...!!': 14284, 'der..': 10002, 'txtin': 5855, 'buy.': 958, 'zhong': 8021, 'vouchers-Text': 4508, 'tape': 11058, 'answerin': 13007, '#': 7724, '150ppm.': 5494, 'meetin': 4223, 'CAMERA,': 9687, 'kilos': 7378, 'oh...': 9294, 'OK?TAKE': 4407, 'threats': 8882, '88888': 14877, 'cash-balance': 2422, 'pmt': 11825, '2waxsto': 11459, 'frying': 370, 'fun.': 9065, 'Yellow': 10328, 'directly': 6824, 'tv/': 4693, 'isComing': 9084, 'Whom': 8958, 'prepared': 5367, 'alive.better': 5754, 'lovers...': 6292, 'Colleagues.': 8647, 'must': 1084, 'astoundingly': 3342, 'fix': 1841, 'admirer.': 4461, 'Tension': 3016, 'secret.': 6073, 'Questions:': 9673, 'VCo': 15013, 'sd': 5094, 'afghanistan.': 7704, ',': 509, 'shorts...': 12667, 'cross': 1737, 'gifted': 7107, 'cc100p/min': 9853, 'WKEND': 13530, 'attach': 8505, 'bother?': 5783, 'Much': 6046, 'ok.': 1501, 'popped': 6423, 'boston': 971, '"POLYS"': 9858, 'Can?': 13300, '"HELLO': 9808, 'called': 1665, 'news.': 301, 'offc': 9453, 'Thanks,': 15315, 'pending.': 11660, 'YOR': 14625, 'message..no': 9243, 'frnd..': 12291, 'know,': 5829, 'laundry,': 14598, 'Lol,': 15407, 'fired?': 14394, 'FONE': 7233, 'iphone': 2381, 'darkest': 14849, 'WK': 11015, '0870': 6792, 'load': 12992, 'reply-': 12202, 'Shopping?': 13796, 'hour?': 8771, 'BLOOD.Send': 7855, 'twelve!': 6663, 'reward!': 142, 'far.': 4060, 'token': 5013, 'Hui': 12089, 'deposited': 9387, 'ages.': 12929, 'SOON.C': 3606, 'TOCALL.SHALL': 15031, 'Cup': 35, '-NO': 6112, 'SOIREE': 3558, 'GIMMI': 12537, 'REALLYNEED': 8676, '*smacks': 12184, 'SOONLOTS': 4410, 'pataistha': 12240, 'Natalie': 14868, 'Havnt': 8126, 'Use': 7302, "aren't": 2169, 'AGAIN.call': 4028, 'quiz': 2316, 'steak': 4077, 'Scotch': 9253, 'sum': 7459, 'retrieve': 8994, 'laptop...': 8140, 'fuck': 4416, 'Cannot': 12841, 'record': 2272, 'skills': 6782, 'lousy': 8088, 'name.my': 5448, 'trouser': 12327, 'reckon': 13788, 'num.': 2360, 'slippery': 2960, 'tho-': 848, 'dificult': 3080, '(nat': 14852, '150p/msg,': 5815, 'treacle?': 15288, 'trying': 498, 'Network': 1214, 'badly': 434, 'Box177.': 5490, 'Wewa': 14176, 'Boo': 8857, 'happiness.': 4262, 'ak': 3135, 'WANT': 10455, 'enjoying': 13198, 'Strokes!': 4788, 'times.': 250, 'solihull,': 14615, 'u:': 6588, 'obey': 11562, 'Valentine': 6710, '-)': 13187, 'Sirji.I': 2410, 'lots': 1336, 'WK?': 11897, 'Avenge': 10354, 'msn.': 1223, 'ever,': 10949, 'busty': 7278, 'end.': 760, 'wisheds.': 6561, 'specialisation.': 8653, 'announcement.': 3527, 'Titles:': 7187, 'took': 694, 'windows,': 1326, 'Moms': 9892, 'lists.': 14549, 'eh?': 3406, 'chain': 9661, 'teach': 4767, 'Yourself': 4657, "olayiwola's": 14821, 'too...': 2697, 'Shuhui': 6305, 'sure.': 505, 'slower': 10599, '10p.': 1755, 'min:)': 5076, 'cancer.': 9891, 'www.textcomp.com': 5884, "how're": 5338, 'content': 1951, 'darlin!im': 14286, 'yelling': 3857, 'stop.': 814, 'mufti': 15024, 'saved': 9186, 'working': 3028, 'flute': 9724, '"song': 723, 'alrite.have': 11803, 'imp.': 8069, 'yourinclusive': 4422, 'temple': 3732, 'sink': 3324, '3MOBILE': 15667, 'wonder': 4224, 'sat....': 14898, 'http://www.e-tlp.co.uk/reward.': 11061, 'up...': 3627, 'nails': 13323, 'surprise!': 15228, 'victors': 10888, 'ing': 11471, 'Irritates': 6043, 'loud..': 7250, 'Indian.Pls': 15324, 'app?': 7137, 'chikku..ali': 6658, 'locks': 9496, 'Putting': 7197, 'mean': 968, 'nights...We': 15170, 'service!': 15205, 'IKNOW': 11547, 'Guild.': 2258, 'She.s': 9369, 'minAPN': 8067, 'din': 2840, 'Club': 3964, 'sound..': 11740, 'BACK': 8177, 'Regards.': 15326, 'drinking': 9197, 'Becomes': 7551, 'brah,': 12487, 'stereo': 7410, 'ring...': 5539, '10': 2869, 'UR': 736, '7+2+5=?????': 10524, 'BETTERSN': 4565, '69669.': 11907, 'Mwahs.': 7766, '08708034412': 10916, 'complete.': 14191, 'murder': 4731, 'itself': 1620, 'romantic!': 8980, 'deal...Farm': 6059, 'humans': 10503, 'march.': 5523, 'cute': 9302, 'basketball.': 12061, 'Mode': 15518, 'obviously,': 8294, 'change.': 14026, 'work?': 1347, 'loan.': 9404, 'weeks': 3689, 'EVENING*': 11995, 'jod': 8809, 'shall': 3895, '1st...': 3618, 'F=': 5353, 'vry': 2782, '-PLS': 1378, 'james': 14697, 'Icic...': 6203, 'OUT.': 14504, 'tho!': 13922, 'roads.': 9395, "term's": 4874, 'time?': 4998, 'HONEY?DID': 12535, 'SHAME': 14342, 'sad.': 4727, 'taken...Only': 8953, 'FUCK.': 15175, '5years': 5850, 'xxxmobilemovieclub.com?n=QJKGIGHJJGCBL': 268, 'DAY..U': 2172, 'shower.': 6220, 'M26': 2200, 'seriously': 314, 'possible,Hope': 4169, 'reached': 668, 'Hm': 10693, 'dont': 298, 'Open': 10167, 'Gyno': 15563, 'ystrday.ice': 12542, 'Maintain': 7319, 'Jen': 3404, 'LOU!': 14340, 'over.': 5639, 'screamed,': 2982, 'robinson': 14153, 'said': 704, 'Costs': 13777, 'I‘m': 316, 'contact': 1031, 'REALITY': 10341, 'atlanta': 9618, '8007': 4440, 'Reckon': 5053, 'path': 6379, 'punish': 4266, 'magazine,': 13420, 'Shijas': 8557, 'taunton': 13687, 'father:': 8756, 'Dictionary': 6348, 'information.': 12404, '"Wen': 2018, 'yoga?': 15060, 'nvm': 14059, 'someone.': 13064, 'evng.': 14661, 'gray,': 6155, 'Prem.': 14986, 'cr': 11078, 'leona': 3621, 'snowman': 7982, 'Bx': 7169, 'Orange': 2569, 'hearin': 14659, 'Activate': 3038, 'coach': 13912, 'process.': 10093, 'buffet': 2578, 'K.:)do': 9511, 'decking?': 10964, 'answers.': 10750, 'windy.': 11137, 'Z': 2466, 'gay.': 14108, 'Missing': 2687, 'Vouchers': 8283, 'brain': 4451, '78': 14639, 'informed': 1092, 'YEAR': 5222, 'feathery': 8136, 'yr': 1242, 'dress': 10438, 'starting.': 12906, 'ASAP': 11229, 'order,': 8800, 'Heroes,': 12980, 'technologies': 9901, 'Birthday': 8764, 'drunkard!': 4240, '09701213186': 6127, '8Ball': 15608, 'Sh!jas': 7321, 'Goodnight.': 13705, 'point,': 3, 'less': 3174, 'BILL.': 15676, 'Wah...': 7974, 'misbehaved': 2386, 'Wat': 2489, 'langport?': 12159, 'ear': 4709, 'me.she': 5443, 'braved': 3721, 'NY-USA': 6683, '5+-': 11165, 'millers': 7064, 'iccha': 5418, 'class,': 7274, "don\\'t": 4835, 'PARENTS': 15245, 'Club>>': 7121, 'India:-):': 14146, 'both.': 13566, '08448714184': 11587, 'Press': 128, 'eve.': 5375, 'ipod.': 7970, 'OUR': 11771, 'lengths': 13750, '7.30': 12473, '140ppm': 11045, 'fridge!': 2126, 'do?': 6310, 'back,': 1895, 'Evry': 13547, 'sneham"': 14093, 'www.Ldew.com.subs16+1win150ppmx3': 5800, 'VIDEO': 4493, 'further': 2484, 'weekend?': 3029, 'support.providing': 14325, 'month.': 2878, 'aproach': 9179, 'PARK': 9959, 'elsewhere.': 3191, 'Bcoz,': 2391, 'player.why': 7811, 'upgrading': 13117, 'sarasota?': 15134, 'chain.': 6299, '2stoptxt': 10067, 'own.': 4275, 'yogasana?': 10072, 'SNAP': 9688, 'up.': 1844, 'meive': 3483, 'place': 599, 'Teacher': 1727, 'already,': 3395, 'It..': 7556, 'eating': 374, 'interesting.': 5532, 'Ambrith..madurai..met': 8264, 'cheap!': 15137, 'Darling': 12179, 'connections,': 4600, 'buy': 891, '09065989180': 11149, 'freaky': 3854, 'Year.': 10903, 'REWARD': 14134, 'carry': 13080, 'Virgin': 4610, 'CDs': 4609, 'willpower': 12999, 'Eleven': 14962, 'online.': 9421, 'suntec...': 11110, 'Tyler': 11861, 'Call2OptOut/674': 14899, 'pulls': 7894, 'tau': 5623, 'ship': 11988, 'Sac': 11427, '5p': 14916, 'meets': 10836, 'obese.': 5408, 'here': 68, 'Spose': 9798, 'la,': 11664, 'FANTASY': 10342, 'hanging': 2153, 'Let': 1466, 'Die,': 9304, 'shite.': 13110, 'Yup,': 2963, 'BOX334SK38ch': 15207, 'swell': 10614, 'mall': 14723, "leona's": 6236, 'Bergkamp': 14637, 'lmao': 14563, 'SUNDAY..:)': 12594, 'mo.': 5129, 'caller': 6669, 'MK45': 1958, 'screen': 6350, 'hard': 1669, 'shoes.': 4553, 'icky': 3399, 'Gravity..': 4966, 'uneventful': 12013, 'Ldn': 2808, 'justify': 11312, '4u,': 7183, 'hence': 4500, 'in2': 11324, 'cold!': 12662, 'nyt...': 6953, 'Ding': 15005, 'removed': 3582, 'GSOH?': 13015, 'Minnaminunginte': 119, 'software': 6115, 'ON': 254, 'along.': 12734, 'visit': 3042, "28thFeb.T&C's": 2092, 'Sure': 11602, 'passed': 2032, '-apples&pairs&all': 1120, 'gET': 3552, 'art?!': 14666, ':)why': 8690, '"GOODMORNING': 6589, 'something?': 5529, '3hrs': 14041, 'INFORM': 14618, 'camera/video': 11591, 'sambar.life': 5463, 'way': 289, "we'd": 15398, 'time..:-)': 15086, 'scotland.': 3468, 'el': 5956, 'dodgey': 12765, 'i\x92d': 5275, 'seing': 12774, 'paces,': 3326, '2optout/D3WV': 7831, 'triumphed.': 3724, 'pretsovru': 10866, 'sleepy.': 10114, '*Sent:Date': 2688, '-sub': 7346, 'news:': 5972, 'sheets': 864, 'Welcome!': 11576, 'vl': 6222, 'wasn‘t': 14669, 'Ttyl!': 4132, 'cafe': 6445, 'Doll..:-D;-),': 11476, 'lionp': 6132, 'okay...': 11603, 'His': 5821, "T&C's": 2946, 'borrow': 4382, 'dun': 50, 'ill!': 9275, 'argh': 9917, 'drunk!': 11232, 'flower': 7102, 'wkg': 7389, 'wrenching': 14576, 'hopes': 1489, 'upto': 7822, 'missin': 6566, 'Once': 3880, 'mt..': 8328, 'frnds': 732, 'k:)after': 14263, 'tamilnadu..then': 15609, '6ZF': 13978, 'running.lets': 4046, 'Never': 2934, 'tall': 10346, 'Detroit.': 13267, '12hours': 12469, 'practical': 6621, 'Pie': 12851, 'Networking': 12255, 'Triple': 12847, 'blue': 1981, 'female': 1290, 'tongued': 12666, 'Ya:)going': 6591, '*adoring': 12419, 'khelate': 13801, 'build': 7981, 'Gal': 15327, 'reading.': 2340, 'HOME.': 8985, 'Huh': 2580, ':-/': 13630, 'toa': 8277, 'Speaking': 3546, 'wc1n3xx': 7796, 'show?': 14330, 'tell.': 8998, 'TaKe': 3550, 'agalla': 10988, 'drms': 5706, 'NOW1!': 15726, 'island': 15484, 'footprints': 10754, 'okay.': 5228, 'da:)good': 7808, 'Now': 4913, 'spares': 13809, 'propose': 7078, '92H.': 914, 'charge': 4499, '80062': 4476, 'da:)urgent:)': 9512, 'favourite': 7630, 'Cine': 15, 'Yes..but': 7289, 'Aww': 9336, "how's": 3105, 'Nickey': 8522, 'info!': 13274, 'ripped': 14118, 'am.x': 11806, 'effect...': 6440, 'JD': 5966, 'stops."': 14591, 'Baaaaabe!': 6272, 'CL.': 9286, '077xxx': 9879, 'steamboat?': 6307, 'actually': 2607, 'stupid.': 10116, 'Congrats': 7363, 'verifying': 2529, 'hannaford': 15351, 'only:-)..': 9956, 'cricketer': 2832, 'infront': 3008, 'holiday..so': 3247, 'range.': 10775, 'much?': 6882, 'frndZ': 10330, 'HOT': 6319, 'too?': 2589, 'porridge,': 8702, 'computer': 1002, 'Chasing': 9996, 'mates.': 4349, 'decide...': 486, 'smiling?': 13512, 'Oooooh': 10482, 'smidgin.': 8814, 'club': 6121, '£3.00': 3220, 'BE': 7328, 'approaches': 1494, '1.5p/min': 4810, 'differences...': 14548, 'calls!': 11582, 'CASH': 2426, 'MISTAKE.U': 14621, 'easiest': 9500, 'her:': 1387, 'signin': 980, 'kb': 2221, 'It\x92s': 11091, 'friendship:': 11188, 'graduated': 13844, 'sitting.': 10501, 'mnth': 13012, 'credit?': 12742, 'GBP/week!': 10339, '2nite!.': 9767, 'her.I': 5450, 'ym': 4816, 'TheMob>Hit': 14989, 'pics,': 7955, 'RGENT!': 7272, 'walsall': 7729, 'help': 242, 'deciding': 5340, 'murderer,': 10082, 'YOU.': 7257, 'rays': 1978, '09071512433': 4006, 'Quiz!': 14071, 'Gods': 7083, 'mono': 6131, 'hills': 8625, 'you,': 511, 'U...': 3012, 'Meanwhile': 4531, 'Goodnoon..:)': 10692, 'max.': 15591, 'time': 581, 'MINUTES': 2402, 'parchi': 5412, 'telugu..thts': 10190, 'Neither': 15341, 'sat': 2584, '10am-7pm': 3996, 'nights...Excellent': 9850, 'relation..': 13375, 'Prize.': 11529, 'rent,': 8454, 'family..': 9649, 'worc': 15523, 'think.': 2827, 'Dude': 4603, 'of£2000': 7510, 'semiobscure': 13280, 'free!': 11644, '(long': 15501, 'Mr': 1453, '69888Nyt.': 3003, 'Nt.': 1219, 'paining': 10288, 'poured': 10252, 'evaluation': 5577, 'va?i': 8996, 'open': 1276, 'influx': 15699, 'pics': 4130, 'OKDEN': 11012, 'QUITEAMUZING': 13981, 'OFSI': 11348, 'Umma.': 5140, 'pdate_Now': 10439, 'na-tuition..': 5791, 'senthil': 14360, 'Ffffffffff.': 340, 'konw': 6884, 'Orchard': 12309, 'gently': 15121, '07946746291/07880867867': 3568, '150pm.': 660, 'joking': 320, 'days,': 14694, '08712405020.': 5886, 'jurong': 2, 'else.': 7883, '2MWEN': 11846, '97N7QP,': 9072, 'betta': 5863, 'l8r.': 7237, 'morphine': 13051, 'dial': 13652, 'disappointment,': 15653, 'call:': 6126, '420': 11917, 'STAR': 11500, 'gift': 4376, '(25/F)': 13346, 'roommates': 693, 'Calling!': 15511, '\x93Harry': 12574, 'kiss': 3261, 'Congrats!': 644, 'BROTHER': 7647, 'beautiful,May': 4171, 'Wish': 4102, 'oyster...': 15306, 'Lands': 15440, 'lovely': 4255, 'points': 1406, 'grinule': 4796, '"life': 13002, '08702840625': 9354, "don't": 61, '1)Unbreakable,': 11752, 'adoring': 7180, '*kisses*': 2244, 'luxury': 10102, 'annoying': 7861, 'attraction.i': 5442, 'sofa': 11230, 'accent.': 15709, "'help'": 2890, 'tired': 1260, 'once': 785, 'ji': 12559, 'utter': 1430, 'user.': 5553, 'mah...': 8387, 'EACHOTHER.': 9826, 'professors': 3972, 'MALL': 12834, '09066649731from': 14367, 'stuff,': 1146, 'smiling.': 13818, 'aeroplane.': 3976, 'five.': 7815, 'shower!': 7275, 'Congratulations': 1849, 'ARE': 538, '"Margaret': 6408, 'WANNATELL': 13764, 'Nigeria.': 13641, 'Organizer': 7014, 'text?': 1287, 'since': 609, '946': 13842, '"Aww': 9081, 'negative': 15575, '50': 2826, 'coz': 4471, 'PoBox1,': 9241, 'genes': 15281, 'Offer:': 7605, 'Credit!': 12953, 'Marvel': 15602, 'Box334': 4893, 'champ': 6829, 'drink': 2679, 'clever': 8503, 'young': 15633, 'gate?': 11640, 'Aiya': 6570, 'cabin': 1057, 'reply..': 3129, 'BUDDY!!': 12783, 'fiend/make': 12817, 'HELLO': 14233, 'still.maybe': 4037, 'website..now': 4852, 'tour': 6060, 'da:)i': 9930, 'effect': 15654, 'DIS': 744, 'Loving': 7143, 'prize.': 4018, 'Saw': 14375, 'Pg': 3235, '62735=£450': 14908, 'Dolls': 14377, 'ask...': 13904, 'Delivery': 5488, 'pile': 6427, 'meal': 2127, 'havin': 5925, 'aka': 9894, 'texas': 14482, 'home?': 15601, 'ENC': 1586, 'nothing.': 6161, 'during': 5267, 'were/are': 12017, '3miles': 11469, '2?': 2045, 'kidding': 8778, 'deserve.': 11092, 'missing': 1358, 'ass!!': 11077, 'offense': 14265, 'knickers': 11691, 'S3XY': 12364, 'hes': 2528, 'Not..tel': 14154, 'love!!': 13143, 'forever,': 695, 'divert': 11696, 'dear.': 5793, 'tp': 6318, '09061749602': 4903, 'urgnt': 6183, 'alone?': 8293, 'HIT': 5234, 'stranger': 3520, 'um': 11076, 'LOG': 6484, '(Ranju)': 14915, 'eshxxxxxxxxxxx': 13260, 'Holder': 12340, '£500.': 6189, 'TV': 5342, 'Incredible': 11984, 'like!': 15112, 'Prabu': 2531, '62220Cncl': 12569, '0121': 15559, 'forgive': 6314, 'COMPETITION".': 14166, 'ethnicity': 9168, 'yours.': 649, 'movie.': 2280, 'neighbors': 5692, 'je': 7306, 'Building': 3883, 'minecraft': 1004, 'everyday': 11107, 'bathe.': 11689, 'Sherawat': 639, 'lover!': 6746, 'LITTLE': 12782, 'boo': 5965, '*whispers*': 14206, 'begun': 9625, 'jesus.': 12477, 'til': 1472, 'nyc,': 976, 'ENTRY': 9770, 'home.': 678, 'permanent': 9627, 'latelyxxx': 8418, 'purse': 5891, 'wearing?': 5630, 'hurt...:-)': 5258, 'mee..': 10296, 'how': 275, 'Ice': 630, 'Hanumanji': 11355, 'B-day': 9366, '“Harry': 6162, 'wat,': 13325, 'Charles': 11641, '(marriage)program': 6655, 'out': 418, 'alwa....!!:)': 10867, 'poorly': 14402, 'worry...use': 6960, 'grasp': 13714, 'call.drove': 5172, 'WWW.ASJESUS.COM': 9374, 'college': 1592, 'difficult:)': 14104, '82242': 7224, '36504': 4352, 'call2optout/LF56': 6374, 'conclusion': 10207, 'BY': 5873, 'command...': 15580, 'yet,': 1945, 'package.': 14210, '£33:50': 15079, 'sore': 5210, 'IMPORTANT': 6477, '1st?': 15015, 'stories': 4978, 'By': 3176, 'thing!': 5282, '......forward': 11223, 'mindset.believe': 4023, 'bathing...': 5394, '>:(': 2837, 'days.he': 5050, 'Crying': 3881, 'may': 473, 'evening.': 8065, 'access': 2292, 'chennai': 5740, 'costs,': 9633, 'deck': 3963, 'Madam,regret': 9347, 'age23,': 12375, 'appt': 9704, 'created': 7657, 'lt': 11882, 'b\x92day,': 13724, 'Company': 9665, 'male': 13018, 'collages': 8780, 'lunch': 332, 'quitting': 13684, 'teacher...': 1725, 'pints': 12889, '1030': 11702, 'shuhui': 3620, 'popcorn': 5763, 'decisions': 2928, 'COOL': 11841, 'bored': 3096, 'february,': 6541, 'oredi..': 11464, 'business': 2614, 'caught': 423, 'Symbol': 11776, 'pole': 11784, 'www.areyouunique.co.uk': 1537, 'myself.': 8628, 'BANK': 1433, '2004': 1099, 'alcohol.': 5049, '1-month': 11581, 'on!': 7800, 'gt': 1654, '2.15': 5022, 'Tayseer,TISSCO': 2629, 'Sky': 9140, 'compare': 5346, 'link.': 15069, 'misss': 6273, 'Hottest': 7767, 'rewarding': 1631, "Haven't": 11050, 'rule': 8254, 'PX3748': 4017, 'RINGS:RETURN': 10871, 'pretend': 11611, 'STUDY': 11616, 'includes': 863, 'unique': 1533, 'W14RG': 9242, '"Hi': 4254, 'remove.': 13150, 'DREAMS..': 6904, 'smile*': 7897, 'fires.Are': 7428, '81151': 4098, 'toaday': 14648, 'spk': 7542, 'cant': 1450, 'Sarcasm': 6843, 'there,': 2380, 'unspoken': 7311, 'SAY': 2845, 'two?': 4601, 'cbe.': 15229, 'HUN!LOVE': 12602, 'Dvd': 5426, 'mcat.': 9617, 'GOWER': 11889, 'Aslamalaikkum....insha': 15019, 'tank.': 8455, 'gravy.': 13210, 'go2': 15082, 'MUSIC': 1853, 'figure': 2396, 'steve': 13898, 'EXPLOSIVE': 11770, 'Box39822': 8449, 'reslove.': 11658, 'lag': 1891, 'yeah': 1747, 'swt.': 8373, 'FIFA': 8153, 'ah?what': 3017, 'care': 1876, 'canceled,': 13813, 'ASAP!': 6671, '£1.50/wk.': 9862, 'lyricalladie(21/F)': 14541, 'tallent': 10738, 'face!': 14710, 'housing': 12621, 'hai...': 15586, 'weekend.': 506, ';>': 15253, 'smeone': 7062, 'upstairs.': 12130, '09094646631': 14851, 'later?"': 7806, 'rights': 9407, 'to:': 1238, 'subject': 13120, 'Text82228>>': 9669, 'lor...We': 15632, 'response': 9964, 'stressfull..': 14306, 'anywhere': 4235, 'definite': 3180, 'rdy': 13954, 'not': 103, 'hungry': 351, 'Ave': 2802, 'Shall': 3192, 'knocking': 8830, 'Meat': 5163, 'told..she': 5167, 'fring': 7136, 'OF': 4411, 'Toxic': 3163, '08701752560.': 11911, 'company': 1718, 'theplace!': 15292, 'lasagna': 11226, 'shore..The': 10752, '2NITE-TELL': 5935, 'Congratulations!': 9029, 'silver': 6508, 'connections': 13344, '400mins...Call': 10684, 'rang': 11025, 'ie': 4740, 'fear': 442, ';)': 3806, 'heart-': 3005, 'laugh,': 7867, 'voucher,': 4674, 'BOUT!)xx': 11133, 'convincing..just': 4078, 'cartoon,': 3728, 'Chart': 12979, 'Cheers.': 15297, 'comp.': 15362, 'opposite': 14371, 'tops': 13817, 'U,': 3771, 'offers.': 6373, 'he.': 15703, 'nights.': 1647, 'Yes.mum': 12365, 'possession,': 14264, 'wishin': 1566, 'Bits': 4449, 'friendship': 2152, 'stranger?': 2347, 'comes.': 6618, 'game!': 12084, 'ths': 11557, 'FreeMsg:': 8401, 'Poly/200p': 10940, 'decide': 4988, 'meet,itz': 5475, 'quit': 3473, 'other!': 5635, 'position.': 2957, 'funs': 10181, 'cutting': 3322, '5min': 1862, 'HALF': 4503, 'publish': 6072, 'tonite': 4084, 'So': 321, 'ok.varunnathu': 2062, 'X2': 11090, 'month': 759, 'game,': 5227, 'THATMUM': 14944, 'sorry,': 3650, 'big..|': 10214, 'office..still': 15390, 'nights,': 4181, 'thesis': 5312, 'b‘ham.': 3726, 'colours': 6150, 'gud..k,': 10191, 'Intelligent': 7023, 'appropriate': 2095, 'missing,': 14170, 'fuelled': 9657, 'change,': 9474, 'rows': 13999, 'pulling': 10136, 'cornwall.': 13107, '08718738034.': 8982, 'disaster': 14732, 'Pro': 7120, 'lot.will': 13356, 'havent...': 15279, 'much"': 6539, 'Mob?': 3000, 'remain': 7317, 'MAKE': 3638, 'UPDAT': 11021, 'somewhere.': 13418, '…Thanks': 13014, '88066': 8929, '153': 2941, 'images': 5194, 'totes.': 6934, 'off?': 13247, '300603': 2806, 'Allah,meet': 2632, 'praises': 5460, 'Ahhhh...just': 14712, 'address': 1000, '116': 13041, 'minutes': 2549, '4got,': 8731, 'XX': 778, 'wrote': 14593, 'dogwood': 13735, 'xin': 12090, '+449071512431': 4003, 'STOP2stop)': 7958, '2667': 15663, 'general': 13170, 'Ar.Praveesh.': 12405, 'eve?': 13493, '2moro': 6009, 'rocks': 7571, 'welp?': 6734, 'PLEASE': 8670, 'over': 377, 'Arun': 7665, "havn't": 13814, 'gep': 8144, 'ppm': 4529, 'IBN.': 12325, "Quote''": 11540, 'sad...': 13741, 'GOODNIGHT': 6902, 'November': 12509, 'disturbance.might': 9348, 'Fear': 9008, '$5.00': 11778, 'Orh': 14277, 'calling.': 9472, 'knees': 14651, 'way&this': 2209, 'Yest': 4201, 'wish!': 12672, 'Like': 3623, "one's?": 1418, 'pictures,': 7876, 'discussed': 8824, 'ice': 6961, '2hrs.': 8785, 'hungry.': 6518, 'oso?': 9614, 'Hopefully': 10885, 'hours.': 10258, 'valuing': 13793, 'tiwary': 10935, 'CustCare:08718720201': 9368, 'PAUL.': 14757, 'changed.': 978, '"Speak': 6512, 'sept.': 13938, 'www.ringtones.co.uk,': 6134, 'JOBYET': 2853, 'here.."': 5287, 'Free!': 168, 'HELL': 13450, 'Hey,': 7695, 'cysts.': 9777, 'Cust': 4466, 'before.': 3707, 'camcorder.': 533, 'PHP.': 4359, 'away.': 8002, 'promise': 239, 'pissed.': 4821, 'Quiz.Win': 9016, 'flood': 12428, 'www.telediscount.co.uk': 15147, 'them..:-P': 11207, 'wat..': 6635, 'chop': 14015, 'AGE,': 5292, 'kisses*': 11445, 'nudist': 10025, 'fun...': 9362, 'belligerent': 5314, 'check?': 6453, 'occur': 3539, 'has,': 10044, '£79': 4183, 'Burger': 10183, 'products': 5867, 'L8R."': 11552, 'Isaiah.=D': 10834, 'coherently,': 12846, 'decided': 494, 'woulda': 14363, 'nt': 4220, 'stock': 328, '£5/month': 455, 'too.': 834, 'drugs!': 3759, 'tomo': 1425, 'Peace.': 3840, 'http://gotbabes.co.uk.': 10806, '09061701461.': 146, 'ho.': 6035, 'Kit': 13403, 'WKENT/150P16+': 5359, 'nuerologist.': 3083, 'life': 985, 'qing': 8023, 'liao,': 10921, 'off:-)': 14016, 'Expression': 13085, 'da:)nalla': 9968, 'trip': 738, 'Fuck': 3394, 'BBD..thts': 14266, 'gonna': 177, '9t;-)': 5480, 'No1': 4347, 'lastest': 4782, "'SIMPLE'": 7148, 'LIKE': 2902, 'Nokia,': 3965, 'anyone': 4164, 'lucky': 762, 'reache': 3073, 'massages.': 4711, '*BILLING': 13592, 'PERIL': 11549, 'car.': 14595, 'symbol': 11951, 'pray': 1303, 'screamed': 9121, 'probably,': 7089, 'ansr': 1201, 'Want': 1204, 'on:)': 15541, 'I\x92LLSPEAK': 4408, 'dept.': 15401, 'slave!': 15497, 'PoBox12n146tf15': 7534, 'Dasara': 10715, 'aphex\x92s': 8840, 'www.bridal.petticoatdreams.co.uk': 11651, 'chechi.': 2655, 'Raj': 10724, 'stone..': 12359, 'correct.!': 1785, 'complementary': 9506, 'cannot?': 12173, 'heap.': 15715, 'scratching': 8046, 'difficult..': 7149, 'market': 3660, 'moved': 11323, '80488.': 8117, 'hello,': 12200, 'Jones!': 8944, 'Why.': 7698, 'Someonone': 15204, 'night:-)': 15270, 'Live': 3471, 'snowboarding': 13616, 'garage.': 10196, 'offers': 3215, 'Beware': 6460, 'SWEET': 12599, 'slippers': 1832, '£10,000': 4905, 'NITE': 13338, 'engaged': 3898, 'who': 1282, 'wisdom': 13147, 'Early': 12524, 'bet': 3757, 'Welcome.': 12954, '30s': 14386, 'Better.': 4909, 'hillsborough': 2813, 'heal': 2931, 'sore!': 13168, 'Dear.': 9011, 'KING"!...': 11792, 'Right': 1739, 'peaceful': 4622, 'kfc': 13207, 'experiencehttp://www.vouch4me.com/etlp/dining.asp': 14722, 'again,': 4389, 'Brandy': 9248, 'tallahassee': 14581, 'Imprtant': 3885, 'husband': 11961, 'Moral:One': 6415, '(getting': 11862, 'Map..': 3884, 'woul': 4697, '2,': 11703, 'SOFA': 11839, '63miles.': 13857, 'their': 1270, 'July.': 2945, 'mone,eppolum': 11782, 'Ref:9280114': 14172, 'park.6ph': 5089, 'GoTo': 1401, 'bian': 5953, 'sound': 3711, 'Mom': 7900, 'ofice...got': 7996, 'Shit': 2117, 'ideal': 6378, 'killed': 8627, '5pm.': 12150, 'house': 1349, 'social': 7539, 'Liverpool': 4680, 'REBEL!': 12780, 'beehoon...': 8707, 'do..': 11171, 'Meds': 11315, 'FINISH': 9811, 'Messages': 3039, 'WRONG!!TAKE': 12598, 'over..': 9531, 'payback.': 8116, 'morphine.': 8587, 'p£3.99': 5496, 'india.': 7847, '£600.': 13574, 'Vodafone': 3675, 'nusstu...': 12228, 'dad.': 12972, '09058094507': 14726, 'Macedonia': 296, 'great.bye': 1505, 'run.': 929, 'CALL': 1177, 'BK': 11847, 'LONG': 1173, 'more.': 13753, 'egg-potato': 1086, 'convincing.': 364, 'hand:)': 1372, 'show': 895, 'gone': 960, '150P': 10973, 'cool.': 788, 'postal': 5524, 'semester': 8425, '2day.love': 13159, 'money,': 6955, 'studies': 15224, '0871277810810': 1364, 'Loved': 13088, 'post,erode': 5151, 'Hey!!!': 9365, 'stopped.': 7340, 'Aldrine,': 12279, 'hundred.he': 11428, 'welcome': 6333, '69876.': 2371, 'bat': 1835, 'meeting,': 3491, 'true..': 11379, 'Vry': 6045, 'shitstorm': 3993, 'ru': 9502, 'transferred': 7499, 'Thank': 2407, 'askin': 2815, 'Hee..': 9430, 'loko': 10529, 'forth': 12074, 'No:83355!': 6681, 'trek': 3954, 'album-quite': 8834, 'anthony.': 3106, 'matters': 10666, 'doing!': 15452, 'asleep': 9757, '3)Unkempt.': 11754, 'Lvblefrnd': 2181, "''OK'',": 8638, 'attended': 13220, '09065069154': 8881, '0845': 2088, '85222': 2195, 'Hurt': 2096, 'Persian': 14431, 'who.': 5278, 'bishan': 11389, 'tablets.': 6964, 'SMS.': 620, 'web2mobile': 8404, 'Diseases': 13480, 'hardcore': 11426, 'hypotheticalhuagauahahuagahyuhagga': 11612, 'WANNA': 775, 'player.': 7963, "me?Don't": 10689, 'Phone?': 13124, 'finance': 14357, 'VIA': 14942, 'overtime': 11517, 'SORRY': 5937, 'tuesday.': 11472, 'Eek': 12850, 'edukkukayee': 2063, 'transfered': 2989, 'completing..': 6223, 'soft': 1311, 'divorce.': 11134, 'writhing': 4916, 'town': 4274, 'LIKELY': 7326, 'About': 13542, 'korli.': 9716, 'lipo.': 10154, 'problem..but': 4649, 'Moment': 13173, 'go..': 11926, 'but': 474, 'prods': 4635, 'Near': 6983, 'Bcm': 7793, 'gona': 2249, 'wylie,': 15133, 'meet?': 13923, 'sayy': 6805, 'anyway': 1657, '£4.50.': 8803, 'Poly': 4442, '9AE': 4432, 'thing?': 6174, 'notice.': 9792, '89545': 1691, 'Row/W1J6HL': 2431, 'ah.the': 5080, '2go': 8415, 'thinking': 3023, 'swimsuit': 11186, 'shopping': 1920, 'cam,': 9873, 'wow.': 965, 'restaurant.': 9012, 'wad?': 7394, 'legitimat': 15531, 'fancies': 5201, '3rd': 6702, 'recieve': 3227, 'U.': 1754, 'duffer': 7997, 'inner': 4557, 'xuhui': 14744, 'receipt': 5515, 'hate': 7859, 'access!': 2300, 'videochat': 5059, 'frnd:': 15275, 'mayb?': 14540, 'message?': 3052, 'corvettes': 4605, 'address.': 1436, 'XXXXX."': 11023, '87021.': 5854, 'Onam': 2409, 'failure': 15095, 'wiv': 2341, 'menu.': 5009, 'Ringtone!From:': 12578, 'either': 3076, 'details:)': 4865, 'outbid': 4384, 'L-oveable.': 8744, 'code': 148, 'anymore.': 942, 'bucks,': 6491, 'independently': 12001, "dad's": 14900, 'admit,i': 4041, 'Mostly': 10610, 'natural?': 8272, 'Year,': 13142, 'gv': 9173, 'resolution.': 11735, 'Airtel': 11873, 'problem,': 13392, 'album.': 7414, 'Neville?': 10926, 'venugopal': 7587, 'reaction': 3624, 'park...': 10927, 'Beautiful': 4963, '08701417012': 4445, 'french': 7204, 'yahoo': 6315, 'Bye.': 10849, 'mu?': 9552, '84122': 5651, 'SMSSERVICES.': 4421, 'mouth,': 1329, 'bit...': 12737, "dramastorm's": 9867, 'high.': 9041, 'Don‘t': 845, 'cud': 2247, 'Orange;i': 8374, 'These': 13218, 'Pleasure': 867, 'water.': 9379, 'aft': 3628, 'honey': 9422, 'packing': 385, 'elliot': 7819, 'audiitions': 13381, 'reflex': 8072, 'Jia': 6920, 'skype,': 7875, 'handset?': 12657, 'Ms.Suman': 9566, 'FREE*': 14584, 'god!': 12582, 'window': 15510, 'remembered': 2411, 'Hee...': 766, 'Mathe': 8485, 'staying': 1471, 'hamper!!!': 9852, 'dat..': 11998, '8077': 4348, 'Alright': 341, 'disagreeable': 14928, 'was': 414, 'You': 215, 'stop..': 11141, 'sleep.': 1848, 'marandratha.': 15311, '08714712412': 14833, '3XX': 15665, 'better': 1012, 'aquarius': 15337, '50p': 10406, '"find': 8050, 'ok,': 10008, 'nearer...': 6922, 'pump': 10029, 'treats': 15037, 'avble.': 8724, '(come': 10396, 'eh': 5215, '1120': 11306, 'rest!U??Wud': 9581, 'mood': 12039, '"YEH': 8198, 'official': 8443, 'bcz': 14087, 'Cut': 13322, 'unbelievable': 4728, "you'll": 3353, 'Po': 14439, '1DA': 3873, 'Japanese': 10355, '2morro': 8871, 'slice': 8355, 'murderer': 9331, 'POLYPHONIC': 10649, 'value-Morning': 13175, 'Monday,': 14803, 'DOESDISCOUNT!SHITINNIT"': 10595, '0870..k': 6329, 'latest': 164, 'bitch?': 13830, 'signing': 5676, 'pleasured': 14323, 'video/pic': 7952, 'clearing': 10759, 'js': 11805, 'help?': 7122, 'calicut?': 8326, 'Gift': 4613, 'Sad': 8629, 'Ringtone.': 13625, 'sweets': 4822, 'vl..do': 14854, 'trainners': 7565, 'room.': 1161, 'bye.': 6017, 'friday.': 9708, 'k': 3405, 'planning': 890, 'Goal!': 14632, 'genuine': 1986, 'gek1510...': 14535, 'GURL': 2094, 'department,': 13634, 'difficult...;-)': 15378, 'ASKED,': 12353, '*kiss*': 13195, 'That‘s': 9788, '4217': 13976, 'ID': 1602, 'arranging': 8386, 'Christmas...': 11626, 'wife.': 13851, 'mate': 4468, 'maps': 6728, 'method': 13295, 'Draw.': 12036, 'iPod': 3146, 'driving': 962, '"morning"': 10466, 'slots': 8822, '12': 151, 'BELIEVE': 12714, 'wasted': 14297, 'appointment': 932, 'are.': 1274, 'pm': 2670, 'nose': 12838, 'years!!': 14310, 'awesome,': 1517, 'Hmm...Bad': 8949, 'num': 8172, 'charged': 454, 'violence': 13234, 'HAVENTCN': 7524, 'again...': 469, 'dreams..Muah..': 14926, 'PIX': 8922, '150ppmPOBox10183BhamB64XE': 11854, 'lucozade.co.uk/wrc': 5720, 'freely,': 5505, 'ar.': 3535, 'first?': 4555, 'china.': 8906, 'flight': 7777, 'space': 4249, 'gOoD': 15251, 'bites': 3453, 'exam,': 1730, 'gotto': 9353, 'lou': 12201, 'monday...': 3065, 'wind.': 8429, 'Feel': 7548, "u're": 3851, 'Kicchu': 5415, 'LDN.': 5638, 'Webpage': 10799, 'DEF': 8199, 'hurts': 1495, '%.': 12521, 'choose': 1950, 'clover': 14826, 'pixels,': 11794, 'Drop': 13554, 'hey,': 6744, 'R': 160, '2C': 8920, 'here....': 13996, 'yellow': 13706, 'prompts.': 8038, "'taxless'": 9388, 'Huh...': 11395, 'free.': 786, "what's": 4779, 'DENA': 8877, 'loxahatchee': 2660, 'Whatsup': 2712, 'Mother-in-law': 14959, 'by,': 11180, 'envelope.': 3786, 'head,': 14807, 'smart': 2190, 'Msgs': 5701, 'yo': 6875, 'message,': 12005, 'really.': 15499, 'Purple;u': 8369, 'law;': 15613, 'mrng': 1567, 'process.Excellent': 9563, 'needed.Salary': 9564, 'Bill,': 10447, 'favorite': 15305, 'puppy': 14838, 'yay': 8354, 'houseful': 10134, 'msgs,': 4830, 'Day.': 13100, 'BORN.PLEASE': 14623, 'ah?': 811, 'everyones': 11335, '3x£150pw': 2653, 'Syria': 6207, 'tyler': 561, 'is.': 6237, 'version:': 10359, 'essay': 12839, 'LOVE': 2726, 'there..do': 13413, 'SK38XH.': 4894, 'MONKEESPEOPLE': 2844, 'needle': 5470, 'Expecting': 12766, 'sextextuk.com': 2368, 'shud': 15704, '£1': 1696, 'pa': 2532, 'sleeping.': 3852, 'display': 8852, '£1,500': 10562, 'zed': 4444, 'JULY': 5098, 'chat,': 9941, 'Care..:-)': 13482, 'clue,': 1456, 'prob': 937, 'stuffs.': 15174, 'Remember': 6867, '2PX': 9508, 'ar?': 12175, 'HARDCORE': 10695, '0578': 4268, '83222.': 5300, 'motive': 9713, 'YOU': 539, 'opinion': 3112, 'LookAtMe!:': 10951, 'CARLIE': 11599, 'Senthil': 12148, 'atrocious..': 11684, '[…]': 12869, "bb's": 8846, 'getting?': 5904, 'call2optout/N9DX': 2564, 'Hmmm.still': 14885, 'Joanna': 7803, 'LONGER': 14454, 'start': 5381, 'heart': 3138, 'London': 7167, 'tones': 2652, 'Anything...': 10508, 'potato': 8296, 'net..no': 6395, 'completely': 1427, 'fault&fed': 5781, 'affidavit': 10235, 'firsg': 14021, 'Red': 627, 'liao': 8194, "There're": 7978, 'PoBox202': 14586, 'w/c': 8569, 'feed.': 15474, 'doing?how': 1881, 'msg..': 3939, 'styles?': 14917, 'giv': 8384, 'naked': 1934, 'Gd': 5704, 'units': 15708, 'parachute': 7965, 'readiness.': 8492, 'see..': 10688, '*covers': 11444, '"Crazy"': 12720, 'PRIVATE!': 1098, 'Calls£1/minMobsmore': 11600, 'www.santacalling.com': 14387, 'Always': 6044, 'W4': 9943, 'nigpun?': 11518, 'meetins': 6689, 'murdered': 10083, '£5000,': 3444, 'suffer.': 6300, 'bend': 8253, 'Leaving': 4083, 'frnds..': 11723, 'choose.': 9114, 're-send.': 11565, '6,': 5279, '*exposes': 7893, 'XMAS': 9214, 'hunting': 4237, 'atHome': 11605, 'YES!': 9227, 'ALEX': 3640, '10:10': 8090, 'skype.': 10261, 'Keep': 1365, 'nyt:-*': 10495, 'late.': 1830, 'killing': 681, 'PISS': 13955, 'kids': 3466, 'Boys.': 10402, 'CRISIS!SPK': 11551, 'T-Mobile.': 13308, 'BUT': 3599, 'game.': 3586, 'Single?': 12566, 'steering...': 12548, 'talents!': 7173, 'HER': 6002, 'started.india': 14675, '(I': 6743, 'rice,': 8704, '85555': 9754, 'still?': 90, "George's": 6252, 'Food': 11276, "Gumby's": 12628, 'changing': 15062, '"What': 12354, 'Holiday': 2973, '£1.': 14443, 'lor?': 10148, 'taylor': 4776, 'CERI': 12779, 'around.': 4322, 'Stop2': 11913, 'manual': 8564, '(Book': 6166, 'ubi': 5081, 'Brought': 11654, 'kitty': 8270, '6pm.': 7174, 'DD': 10070, 'unsold.mike': 4721, 'Goodmorning..': 14437, 'cliff': 5528, 'possibly': 10636, 'ondu': 11368, 'wat': 1142, 'bike?': 2962, 'gota': 293, 'ILL': 11895, 'terms': 3040, 'yours': 1693, '89070': 13897, 'lol.': 11718, "account's": 3053, 'WC1N3XX': 2809, 'HEART': 7854, 'Drop,': 4668, 'email:)': 14327, 'minutes,': 2722, 'others': 6055, 'early..': 3459, 'sent.': 12631, 'onto': 5554, 'No!': 12572, 'BRISTOL': 5317, 'borrow?': 11060, 'BANG': 10459, 'her.my': 5449, 'toClaim.': 8078, 'ONE.': 12708, 'prakasam': 14094, ':-)keep': 15644, 'talks?': 10422, 'champlaxigating,': 11683, 'educational': 5286, '09064011000.': 4675, 'rebooting': 12690, 'bras': 7880, 'FREINDS': 14167, 'wedding': 11649, 'hut?': 13246, '09061213237': 15217, 'Txt:': 1689, 'canteen': 14305, 'TRUE:': 15459, 'close?': 1504, 'Homeowners': 2883, '8.Neighbour:': 9328, 'searching': 234, 'know..he': 10661, 'Thanx': 1823, '9!': 11849, 'Aiyar': 5598, 'ard...É': 14318, 'super': 6249, 'place.No': 9542, 'SMS': 3092, 'Petey!noi\x92m': 11801, 'festival': 10714, 'i.e.': 6842, 'PETE,': 14450, 'dreading': 15436, 'nosy': 6997, 'Ay': 10827, 'mouth': 11098, 'hubby': 12990, 'sales': 8883, 'emergency': 6229, 'ears': 2917, 'Old': 12308, 'girl.': 7689, 'nalla': 12018, '84,': 2199, 'Rental?': 12659, 'sense,': 7133, 'trains': 3723, 'word': 80, 'give': 758, '$140': 14317, 'coimbatore.': 9152, "everybody's": 8664, '£1.50pm': 4617, 'habba..hw': 7581, '"For': 15554, 'lingerie': 11650, 'agent': 10822, '(2/3)': 12128, 'Watch': 10156, 'connection': 1618, 'present': 3534, 'Sinco': 6455, 'Arcade.': 14241, 'CANCEL': 10976, 'Cancel': 5592, '21/11/04': 14144, '25.': 1760, 'TOWN?': 12243, 'holy': 8776, 'Price': 10682, 'CUP': 10304, 'raining?': 12688, 'nig': 7042, 'there...': 9344, 'Call,': 8956, 'then,': 4990, 'ideas': 15068, 'Rate.': 4292, 'Roger': 9285, 'Okay...': 7322, 'raised': 8886, 'Transaction': 1601, 'Nope.': 9470, 'ish?': 9004, 'sudden': 15698, 'WAP': 262, 'don': 7357, 'kerala': 5365, '4mths': 2568, 'bandages': 12118, 'dose': 6706, 'carefully:': 4968, 'bootydelious': 1380, 'strongly': 8575, '150p/MsgrcvdHG/Suite342/2Lands/Row/W1J6HL': 6497, 'yo.': 8159, 'moby.': 13925, '1.50p': 5604, 'removed.': 2991, 'NO-434': 1385, 'ABOUT': 7330, 'IFINK': 5943, 'start.i': 3894, 'pending.i': 8737, "b'coz": 14934, 'play!!': 6876, 'HMV': 1983, 'suply': 9397, 'K...': 11506, 'memories!': 14337, 'Network.': 9958, 'else....': 7500, '1.50p/wk.': 8407, 'No,': 6464, 'nammanna': 10865, 'hello-ed': 13431, 'shopping?': 10310, 'lil': 13941, 'gd': 4106, 'Luckily': 9830, 'Tour.': 7434, 'WILL!!': 257, 'No..he': 9124, 'goverment': 14130, 'asked': 1833, 'www.ldew.com': 8286, 'Scotsman': 15080, 'crave': 512, 'ya.': 7575, 'yck': 11290, 'yes.': 2150, 'A£50': 8205, 'POSTCARD': 11126, 'wildlife': 7097, 'DATE': 253, 'PIX!': 8603, 'o': 6419, 'performed?': 781, 'uv': 3367, 'ruining': 11313, 'Safe': 13266, 'related': 8162, 'Bless': 2345, 'lifeis': 10726, 'stones,': 12394, 'was.': 13629, 'Science': 13377, 'deduct': 8104, 'time!;-)': 11176, 'Chat80155': 5590, 'cyclists': 12015, 'first': 324, 'turning': 8796, 'Unni': 9863, '7.30.': 15299, 'inches...': 548, 'Mum': 3936, 'stupid': 2071, 'brought': 7193, '4742': 1522, 'atten': 5271, 'prize!': 888, 'wud': 8033, 'girlfrnd': 6410, 'GOODFRIEND': 12339, 'raining': 8235, 'da..al': 9856, 'GONE(U': 11130, 'appt.': 5760, 'S:)but': 12222, "'That": 14097, 'Time': 5696, 'inside': 7284, 'Ringtones': 12981, 'dressed': 9273, 'Trav,': 740, 'bugis': 8, 'select': 15384, 'jeans...': 5546, 'Cash': 4672, 'job...': 13063, 'motivating': 13385, 'sensible,': 9951, 'tmr': 1574, 'appointment.': 7884, '85233': 8419, 'DOIN': 7522, 'Yes..gauti': 669, 'kissing!': 7820, 'paying': 1093, 'mine': 6331, 'Oic...': 2838, 'here.thanks,i': 14979, 'healthy.': 14208, 'www.win-82050.co.uk': 7688, 'tomorrow.call': 5082, 'ex-wife': 3464, 'Tired.': 1643, '18+6*£1.50(moreFrmMob.': 745, 'Lovely': 4770, '7ZS': 14588, '49557': 15651, 'tait': 13605, 'ah.now': 7388, 'condition': 6545, 'URGENT!!': 8774, 'atm,': 14057, 'list.': 14550, 'drink.pa': 9522, '£1.50perWKsub': 4219, 'hunks': 10804, 'soup.': 8858, 'afternoon': 856, 'way!': 2445, 'lightly,': 11423, 'blessings!': 7084, 'stuff--why': 15357, 'Invest': 9580, 'ard': 2699, 'habit..': 12236, 'b': 294, 'number': 2293, '9996.': 4323, 'time.Your': 13664, 'there.': 809, 'bears,': 12421, 'Ditto.': 3836, 'Back.': 7432, 'Lover': 2177, 'sitting': 8312, '123': 4073, 'term': 8541, 'howard?': 11264, 'contract.': 5145, 'wanna?': 6935, '(20/F)': 14869, 'town.': 13069, 'tick,': 10140, 'coco': 12938, 'chase': 10061, 'coaxing': 5193, 'sariyag': 11478, 'ingredients!': 10622, 'company!': 7220, 'Miserable.': 14573, 'activate': 4559, 'toking': 13798, 'and': 78, 'chill': 6226, 'wrk,': 15166, 'Spring': 4075, 'Tunde,': 10099, 'Bad': 7081, 'heavily': 14372, 'shows...': 10507, 'cooking': 11523, 'MonthlySubscription@50p/msg': 3281, 'impression': 12898, 'mind': 2775, 'MOST': 7325, 'friends,': 2053, 'information,': 13394, 'Sub.': 3221, 'machan.': 784, '1,His': 9314, 'monster!': 11554, 'connected': 9696, 'thm': 12391, 'heater?': 12759, 'flyng': 1707, 'mj': 12996, 'shouted': 4118, 'mentionned': 10967, 'four,': 11221, 'night.nobody': 10570, 'Cool': 6580, 'is..': 6383, 'T.': 7681, 'Next': 10112, 'Cheers': 9089, 'Come': 1969, '12:30': 14785, '42810': 14463, 'spoilt': 421, 'pix': 8790, 'ENJOYIN': 4402, 'std': 94, "mum's": 3533, 'Wana': 1942, 'sleeps': 12554, 'dirtiest': 13896, 'guy': 4257, 'WON': 884, 'living': 4282, 'Tickets': 7435, 'kills': 9277, 'later...': 3797, 'cheers.': 435, 'Oooh': 3407, 'Darren': 3665, 'gentle': 12725, 'oil': 14032, 'Videos': 14419, 'cute:)': 11202, "fren's": 10367, 'YES-440': 13347, 'used': 824, 'games,': 5062, 'uterus.': 12258, 'BOX95QU': 3205, '09050000332': 15571, "cann't": 11744, 'SW73SS': 7171, 'shrub': 15525, '24': 9557, 'calling': 2330, 'missionary': 7441, 'nigeria': 6285, 'Am': 2348, 'SF': 10408, '62468': 1391, 'HOME': 773, 'rem': 6507, '4U!:': 2132, 'announced': 10911, 'Ben': 13583, 'prsn': 13368, 'buyer': 6286, 'Wotz': 11685, 'stressful.': 15581, 'legal!': 950, 'filling': 15391, 'specialise': 7393, 'topic': 15312, 'Yupz...': 9999, 'pg..': 10212, 'Classic': 10937, 'jewelry,': 13302, 'receipts—well': 13076, 'kidding,': 6447, 'pop': 14348, 'waiting.': 15386, 'understanding': 11992, 'Same.': 1941, 't&c': 14611, 'j!': 14043, 'type..lyk': 10611, 'splash': 15139, 'grief': 9660, 'evrydy': 9198, 'dryer': 9339, 'helpful': 11610, 'luck.': 11946, '087123002209am-7pm.': 8506, 'b,': 11053, 'Take': 1661, 'intelligent,': 13846, 'rummer.': 6606, 'DIDN\x92T': 14758, 'Fifty?': 6085, "ain't": 4365, 'Yo': 2395, 'carlin': 12890, '09077818151': 14384, 'Gettin': 13953, 'loyal': 14136, 'video': 2799, 'avoids': 6295, '1hr.': 9756, 'shock': 3619, 'go..a': 13617, 'lunchtime,': 5837, "U'll": 5887, 'sure': 405, 'Awesome,': 2006, 'florida': 13146, 'lonely,': 10817, '£54.': 11938, 'med.': 14607, 'ZOE': 5233, 'joined': 1539, 'TsCs08714740323': 14920, '1146': 12127, 'Best1': 2179, 'double': 700, 'foregate': 15524, 'Second-': 14412, 'small,': 3916, 'plural': 1018, 'MISS': 2105, 'Unlimited': 12642, '6': 5433, 'or2optout/HV9D': 9101, 'polys': 9159, 'Maybe': 2281, 'posts..': 13060, 'leaving?': 7362, '*childish': 15273, 'hvae': 9555, 'aa': 14397, 'Msg150p': 7225, 'Machan': 15628, '£12': 10032, '1Winaweek,': 8529, 'bevies.waz': 13677, 'biatch!': 5039, 'upgrade': 2084, 'TELLMISS': 13900, 'mobiles.': 6372, 'Hey': 71, 'coming.': 2000, '7.30ish?': 2598, 'well...': 7967, '?350': 11326, 'hurts.': 15144, 'darling': 72, 'advance..': 4209, 'sehwag': 670, 'REALY': 14158, 'code:': 12654, 'REMINDER': 15720, 'complete': 5844, 'award.': 1128, 'Whos': 12190, 'Natalja': 13345, "'rencontre'": 14830, 'her.': 1477, 'skirt...': 5107, '$50': 6064, 'holla?': 4162, 'AWARD!': 12885, 'diwali': 10137, 'gauge': 6217, 'lot..': 3015, 'night.': 1465, 'drinkin,': 10375, 'headin': 1900, 'mega': 15449, 'suite': 14655, 'avalarr': 4845, 'trained': 14703, 'kettoda': 1878, 'Sleep.': 11270, 'Helen,': 9036, 'flying': 6607, 'LATER': 13766, 'pm.': 7791, 'INDIANS': 15248, 'shirt': 5545, 'sake?!': 10555, 'welcome.': 2885, 'XCHAT.': 5399, 'weekdays': 13319, 'rcv': 98, 'L8TR': 12601, 'Maretare': 11370, 'Apps': 9066, 'ettans': 14141, 'Eve?': 14383, 'ave': 955, 'blah...': 2704, 'bday': 5822, 'on..': 3540, 'Jos': 2148, 'worried.': 357, 'favour.': 8763, 'Mob': 715, 'Scared': 7721, 'property': 10279, 'fake..my': 12456, 'selected?': 9638, 'happenin': 6089, 'mag': 10119, 'plm': 5213, 'Weiyi': 10275, 'leaving': 1348, 'arrival': 9591, 'intrepid': 6562, 'age16': 3285, 'any,': 12287, 'ec2a.': 1220, 'touched': 7105, 'DLF': 9349, 'PT2': 10650, 'alright.Okay.': 5526, "ron's": 10431, 'amongst': 9948, 'Hi:)did': 13502, 'UNDERSTaND': 13647, 'name?': 315, '08712405020': 15369, 'reset': 8566, '8552.': 8923, 'arises': 11964, 'Two': 5404, 'xam': 8539, 'Wake': 10463, 'meant.': 7905, '*HAVE': 11994, 'whenever': 4599, 'hope?': 9969, "*didn't*": 14592, 'here,': 2442, 'K..': 11699, 'Sonetimes': 3748, 'Abiola.': 10100, 'LET': 10360, 'DRINK': 15246, 'here,remember': 7586, 'Problms': 13477, 'department': 9758, 'recently': 4937, 'happens': 9585, "there's": 391, 'Even': 99, 'saves': 13371, 'hurt': 2387, 'FREE!': 658, 'Strip': 13404, 'vid..not': 15215, 's': 8015, 'river': 3769, 'Erm': 12530, 'staring': 9092, 'a-?': 12403, 'hamster': 1572, 'Pass': 8364, 'regard': 13115, 'Babe,': 9278, 'bec': 4371, 'December': 2234, 'wot?': 11219, 'samantha': 4536, 'Nw': 8383, 'tackle': 6397, 'Huh?': 12172, 'swimming?': 12259, 'god.You': 13672, '\x96': 11899, 'yijue': 12919, 'chgs': 95, 'iouri': 14724, "y'day": 10606, 'ok': 696, 'lifetime': 8935, 'tough,': 11339, 'sec?': 9623, '%': 11378, 'INTERVIW': 6529, 'FREEMSG:': 13249, 'worry,': 10621, 'No:': 227, 'informed.Rgds,Rakhesh,Kerala.': 9351, '2%': 10516, 'stay.': 11448, 'jaykwon': 3034, 'otherwise': 5700, 'ROMCAPspam': 10289, 'caps.': 13396, 'improved': 10669, 'complain': 9450, 'ill?': 4187, 'squeezed': 15428, 'STOP': 1379, 'plumbers': 11057, 'technical': 5360, '£10)': 11944, 'Hol': 9510, ':)all': 4111, '150p/rcvd': 7957, 'ever!': 5100, 'perfect!': 9238, 'buns!': 7627, 'ok....take': 12640, 'Breaker': 13304, 'craving': 11408, 'move': 5504, 'oso,': 2230, 'html': 12123, 'IMIN': 8672, 'yourself...': 12748, '9061100010': 11919, 'Said:': 8120, 'life:': 11787, 'footie': 10923, '373': 13598, 'abj': 9982, 'What????': 15548, 'analysis': 5309, 'that!': 396, 'mina?': 14355, 'URGENT': 11501, 'earlier.': 7399, 'Haiz...': 13321, 'ibored.': 15040, 'not.': 8451, 'ringtone': 898, 'Dis': 2356, 'sry': 9489, 'Dont': 661, '4BREKKIE!': 13986, 'STORES': 4801, 'UR...': 11621, '"CHEERS': 11007, 'treat?': 12812, 'up?': 953, 'cutest': 8472, 'attend': 4847, '86888': 14038, 'DOIN?': 2851, 'World': 8154, 'somethin...': 8710, 'starve': 12897, 'wana': 2149, 'reffering': 12457, 'involved': 13571, '1st': 2651, 'i‘ll': 14199, 'pain.it': 12540, 'TEX': 11008, 'completed': 1551, 'Blank.': 12267, 'boundaries.': 15625, 'dear,': 4186, 'Customer': 1359, 'NRI': 11088, 'luv': 3766, 'Wen': 951, 'go.wait': 9547, 'both': 4024, '!1': 11127, 'logoff': 11739, 'initiate"': 10736, 'stable': 7705, 'stuff.leaving': 14983, 'CHILLIN': 7479, 'handing': 10053, 'downs': 10559, 'stripes': 5106, 'fellow?': 7746, 'cool': 2309, 'most': 514, 'reaching?': 13718, "80's": 6194, '88600.': 5767, 'cuddling..': 12553, 'hear,': 3657, 'major': 8230, 'smear': 9896, 'situation:': 5609, 'bilo': 6654, '09058095107': 12363, 'reply,': 12356, 'occupy': 1267, 'money...': 765, 'URFEELING': 4564, 'parts?': 7727, 'woken': 8091, 'amount': 9636, '2Hook': 8437, 'DVD': 1195, 'Arrow': 9025, 'easy': 1988, 'Detroit': 626, 'scorable': 9437, 'v.tired': 7536, 'car.so': 9479, 'exeter': 10545, 'plenty.': 10733, 'spoken.': 15622, 'trial': 4634, 'skip': 2698, 'continued': 14313, 'cum': 3007, 'Lion': 11869, 'me.i': 5019, 'months?': 9774, 'Dan': 9063, "It'll": 11338, 'yck?': 4840, 'ads': 2736, 'camera': 167, 'dehydrated.': 13731, 'testing': 6804, 'stop': 1553, '09050001808': 5000, 'alian': 9098, 'id.convey': 14828, '4wrd': 12302, 'good.': 4481, 'lager.': 1424, 'aroundn': 11215, 'ovarian': 9776, 'serving.': 9983, 'HI!!!"': 3827, 'land': 2750, 'thursday': 3719, '(an': 13837, 'opening': 4271, 'refund': 1622, 'buffet...': 14, 'adds': 14309, "shit's": 13758, 'Means': 2051, 'Aiyo': 7717, 'erupt,': 11210, 'alter': 1607, 'lesson,': 13839, '82277.': 1202, 'hows': 8810, 'meet': 343, 'U': 49, 'numbers': 1124, 'andre,': 14972, 'Nobody': 5917, 'source': 2787, 'send,': 96, 'best.': 2918, 'planned,': 14786, 'write': 6345, 'phonebook': 14256, 'orig': 7636, 'mrng...': 10920, '"Best': 6950, 'cheap:-)': 12849, 'files': 1672, 'GIV': 15183, 'close.': 3506, 'Took': 10195, 'itwhichturnedinto': 7106, 'PPL': 14798, 'One': 2361, 'usf,': 65, 'weather': 3632, 'sorta': 4935, 'DA': 7476, '8027': 7794, 'rcb.battle': 9887, '118p/msg': 13979, 'Aaooooright': 1346, 'TIME.': 5070, 'arrange': 1363, 'xxSP': 10818, '530': 894, "(he's": 9784, 'WORLD...!!!': 4663, 'STaY': 13650, '(Career': 14253, '(but': 13907, 'promises': 7406, 'wondarfull': 8400, 'lounge?': 8891, 'Here': 2481, 'uni?': 6574, 'freefone': 8973, 'crucial': 6774, 'belovd': 4958, 'Darren...': 9300, 'warm': 3351, 'it:)': 9764, '4-some1': 11163, 'mens': 13021, 'JANX': 6107, 'elsewhere?': 10627, "something's": 7748, 'Although': 1815, 'ALWAYS': 2439, '18+': 3875, 'mean,': 5923, ';).': 12016, 'Sister': 2176, 'Last': 1032, 'affectionate': 9109, 'conversations': 13662, 'stagwood': 10886, 'Messaging': 8988, 'hostel': 2747, 'kid.': 15355, 'vava': 986, 'Zindgi': 9056, 'babysitting': 11336, 'tomo.': 496, 'Convey': 5429, 'arsenal': 6543, 'applyed': 14031, 'bx420.': 9728, 'gentle.': 3747, 'Hi:)cts': 6853, 'pending': 14067, 'immediately': 2284, 'tel': 4079, 'musthu': 6742, 'replacement': 7809, '"alright': 8430, 'when...': 9743, '09063442151': 7345, 'fri!': 12082, 'Astronomer': 14953, 'Nvm': 8143, 'HRS': 9820, 'ogunrinde,': 4948, 'ouch': 12351, 'Pls.': 8766, 'awake': 5160, 'NIGHT': 4974, 'simple': 7621, 'mins': 2557, 'Student:': 12933, 'miss': 299, 'about!': 9517, 'filthy': 11904, 'wallpaper-all': 14996, 'DUMB?': 9268, '08707500020': 13027, 'process:)its': 8565, 'poly.': 6133, '08002888812': 4495, 'se': 8022, 'Onum': 9464, 'lect': 3877, '£5': 13309, 'wif': 23, '2': 28, 'days.so': 5366, "own--you've": 8453, 'move...': 3984, 'forever!!!': 3525, 'sake': 14580, '?!"': 10534, 'x."': 8441, 'max£7.': 4012, 'Oz?': 5712, 'LtdHelpDesk:': 12010, 'remind': 9120, 'glorious': 5186, 'Weightloss!': 7361, 'do.Interested?': 2367, 'Yup...': 465, 'help:08700469649.': 8479, 'alone"': 6559, 'pudunga': 7032, 'lyfu': 6645, 'Cougar-Pen': 5197, 'THINK': 5073, 'tmr?': 5906, '08707808226.': 5629, 'Looks': 3926, 'Takecare..:)': 12307, '0906346330.': 13162, 'view': 13459, ':zed': 12071, 'seconds': 4534, 'two.': 10567, "'": 3792, 'relax.': 2542, 'eviction': 13227, 'receiving': 2952, 'sorry': 615, 'jelly': 4035, 'blank?': 12268, 'charge.': 1968, 'polyPH': 5064, 'korte': 5417, 'moved,': 10390, 'okie': 11663, '09065989182': 12896, 'NOW!': 3828, 'Admirer': 4685, 'msging': 12482, 'died.': 10138, 'geting': 11982, 'hiya': 13968, 'pre-book': 7436, 'right': 235, 'overemphasise.or': 13666, 'enemies': 12590, 'break.': 1630, 'OK': 5813, 'accomodate.': 1185, 'acc': 4864, 'ghodbandar': 7382, 'sc.': 7392, 'sup': 4714, 'Mon': 11662, 'accounting': 12619, 'dollars.': 2816, 'smile,': 6775, 'shortly': 10373, 'pass': 648, 'fox': 10763, 'FRIENDS': 13644, 'Cancer': 14150, 'car': 386, 'box403': 4870, 'voice.': 11745, 'bellearlier': 5992, 'java': 5061, 'c': 55, '07732584351': 521, '300p.': 8911, 'alfie': 4433, '89080': 6255, 'HOLIDAY': 13885, 'cut': 706, 'Brainless': 11475, 'Nowadays': 11672, 'intelligent': 2911, 'solve': 11145, 'M221BP.': 5491, 'Good!': 13075, 'ans': 3899, 'WHORE': 12412, 'Yours': 7610, 'sells': 5304, '"Gimme': 4334, 'wan': 4554, 'latr': 8642, '81618-?3': 7349, 'prove': 12432, 'BT-national-rate.': 9032, 'www.gamb.tv': 15565, 'realised': 4119, 'already...': 4955, 'Dad.': 10854, 'epi,': 12050, 'SPIDER': 15606, 'yes,': 8456, "k...i'm": 270, 'chrgd@50p': 10698, 'U?': 1165, 'Select,': 14701, 'sense': 3773, 'shop..': 1675, 'pushes': 12096, 'bro.': 12454, 'borin': 5036, 'nurses': 5405, 'ttyl': 2919, 'asap': 14554, 'unhappiness!': 12285, 'suddenly': 12670, 'vibrate': 4177, 'possibility': 12730, 'cres,ubi': 5087, 'series': 8016, 'balloon!': 5698, 'neglet.': 11380, 'prone': 6675, 'best:)congrats...': 6832, 'handset': 13118, 'nearby': 8716, 'Nutter.': 4733, 'sun0819': 3821, 'grooved': 12732, 'isnt': 2921, 'YO': 9281, 'looks': 4047, 'fixed.': 15289, '“': 10106, 'advance.': 11819, 'evo.': 1960, 'treated': 9870, ':)': 1583, 'SNORING.THEY': 5326, 'feet,': 8499, 'still,': 10546, 'jogging...': 15376, 'dice,': 8473, 'flaky': 7139, 'Buzz': 10575, 'jenny': 2050, 'TnCs': 1855, 'qatar': 1302, 'upstairs': 1767, 'PocketBabe.co.uk': 5769, 'follows,': 15364, 'V-aluable.': 8742, 'wining': 13841, 'i,m': 8460, 'deluxe': 13305, 'God': 2938, 'reminder': 4829, 'broad': 11255, 'laugh?': 13971, '<Forwarded': 3903, 'May,': 6717, 'seeds': 15078, 'Single': 6947, 'THEMOB': 10493, 'login=': 4426, 'dreams..take': 14496, 'adsense': 14855, 'URN': 6459, 'password': 902, 'Gee...': 6470, 'Ard': 337, 'Gudnite': 10795, 'accidentally': 2077, 'course...': 14894, 'loverboy.': 13055, 'MySpace': 13292, 'kz': 4478, 'success': 13930, 'comes,': 11318, 'IF': 1930, 'you‘ll': 849, '402.': 14706, 'does': 398, 'types': 6362, 'Hi,': 7487, 'finishes': 1531, 'stocked': 11485, 'ralphs': 3051, 'trash.': 4251, 'book?': 11434, 'lifting': 7751, 'sources': 12284, 'citizen': 9399, 'letter': 482, 'Busy': 2453, 'takin': 11242, 'Argh': 8533, 'Happy?': 7009, '08000930705': 534, 'wks': 15366, 'best': 610, 'stoptxtstop£1.50/week': 9836, 'chasing': 7035, 'Up': 5104, '4.rowdy': 2759, 'sure,': 2547, 'thriller': 11069, 'LOL': 2867, 'minutes.': 4248, '"She': 10793, '&SAM': 9824, 'sending.': 1153, 'nav': 10863, 'quick': 10322, 'iter': 10590, 'WOW!': 7430, 'WISHING': 10722, 'diff': 4279, 'Behind': 12901, 'WEEK.': 14456, 'decision,': 4986, 'coughing': 11881, 'talent?': 12153, 'BAHAMAS!': 7505, 'puzzeles.': 8861, 'cheery': 6016, "08452810075over18's": 48, 'read.': 14802, 'jay': 6200, '2nd': 472, 'vijaykanth': 14111, 'lect.': 3876, 'buying': 2206, 'minute!': 2288, 'am,': 9701, 'landline': 2743, 'american': 4651, 'hockey': 13038, '2MORRO': 13863, 'DONTPLEASE': 8678, 'THAT\x92SCOOL': 13982, '83370.': 9427, 'Plz': 3006, 'Nope': 3433, 'Presleys': 5519, 'arms': 12119, 'elections': 13039, '2StopTxt': 15151, 'although': 13515, 'MITE': 5944, 'finished.': 11499, 'Prasanth': 14140, 'STARS': 11267, 'rebtel': 10168, 'POLYC': 9158, 'yalrigu': 12909, 'love.': 1351, 'one,': 2702, 'configure': 10443, 'reltnship..!!': 9303, 'Caller': 1112, 'fever:)': 10245, 'K.k:)advance': 2217, 'mails.': 8741, 'you..': 9710, 'advise': 711, '08719180219': 14399, 'Shopping': 4213, 'Boy;': 10981, 'hits': 13520, 'always,': 7628, 'asthma': 13351, '50"': 13995, 'peeps': 5683, 'dramatic.': 4227, 'notixiquating': 11673, 'attracts': 12193, 'me..': 2534, 'mental:)': 13216, '9am': 6061, '09066368753': 9071, 'Offer': 2943, 'WOKE': 11083, 'claypot': 8703, 'yi': 3489, 'going': 317, 'credit!': 5926, 'Chachi': 10127, 'Armand': 15680, 'neglect': 4081, 'don‘t': 6610, 'years?': 2868, 'bottle.': 15382, 'da..always': 13213, '09061104276': 12510, 'school': 1094, 'invited?': 13894, 'Sweetheart': 12178, 'then...': 7111, 'comes!': 12286, 'virtual': 12146, 'adore': 7629, 'Asking': 7425, 'Another': 4189, 'inc)': 1079, 'Made': 4910, 'moneY...as': 6760, '"Be': 4746, 'PRIVACY': 7945, 'jokin': 6137, 'In': 2358, 'seems': 3990, 'www.rtf.sphosting.com': 11980, 'safety': 9748, 'Calls£1/minMobsmoreLKPOBOX177HP51FL': 6694, 'swalpa': 10608, 'normal': 2208, 'gr8prizes': 15417, 'approve': 13058, 'today...!': 14737, 'sleep!': 5930, 'fixedline': 4678, 'ey?': 3409, 'slap': 3419, 'maggi': 10295, 'year': 645, 'rightly': 5261, 'outgoing.': 10292, 'sending': 2997, 'wid': 1866, 'Stylist': 7029, 'wap.': 1402, 'belong': 15564, 'mall?': 1469, 'tv..he': 14114, 'Jealous?': 1962, 'tescos': 8135, 'snogs.': 10048, 'Qatar': 2415, 'that...now': 10484, 'contacted': 2741, 'Honestly': 9675, 'Exam': 1731, 'noon....': 12434, 'tablet': 6707, 'chillin': 6248, '3)': 9991, 'leona?': 11322, 'friend-of-a-friend': 13182, 'sentence': 1044, 'CHEERS': 14339, 'AXIS': 1432, 'USER.': 6480, 'gigolo?': 13019, 'reservations.': 11185, 'remember': 274, 'interviews.': 11494, 'PROPERLY': 13768, 'ARR': 10164, 'grams': 9783, 'haunt': 13608, 'tip': 15610, 'Teach': 5859, 'suffers': 13233, 'www.cashbin.co.uk': 14301, "B'tooth*.": 7828, 'good:)when': 11225, 'ability': 3291, '7ish?': 9702, 'include:': 9986, 'excuses': 12552, 'mising': 12736, 'billy': 13424, 'dude': 6303, 'morning..': 11177, 'anything': 439, 'Waves': 10761, 'RV': 4469, 'She': 1067, '150p/Mtmsgrcvd18+': 3152, 'wicket:)': 15340, 'house?': 3104, 'Tease': 2097, 'relieved': 5907, 'june..': 6623, 'Good.': 3929, 'JAN': 4310, 'will': 244, '3)Cover': 6349, 'Rajitha': 14914, 'Xmas?': 4641, 'village,': 3102, '£250k': 9143, 'fine.,': 10311, "wasn't": 7202, 'BORED': 13884, 'Parents,': 8645, 'evng': 3772, 'ORANGE': 13200, 'fluids': 3943, 'whose': 6535, 'EH74RR': 10110, 'Keris': 8813, 'mate.': 5605, 'FREE2DAY': 6250, 'frens...': 9619, 'mate...': 11287, 'bimbo': 13263, 'crashing': 598, 'Abiola': 507, 'hostel.': 7109, 'yijue,': 9102, 'However': 10776, 'direct': 1209, 'fuckin': 10943, 'truly..': 10256, 'ADRINK': 14794, 'cared,': 12300, 'extra,': 12055, 'yourself,': 7061, 'days.': 2594, 'lt...': 14033, "mom's": 375, 'ph?': 12754, 'Turns': 1470, 'IVE': 6524, 'NBME': 12959, 'vital': 13638, 'law,': 3919, '.....': 8650, 'ever:': 7292, 'Erm.': 9739, 'aging': 5866, 'b4280703.': 3090, 'reg': 10074, 'nichols': 15187, 'LOVEJEN': 4574, 'belt,': 15693, 'weirdy': 12464, 'love...': 12726, 'die.': 9705, '***************': 9069, 'courtroom': 10239, 'Tom,': 6359, 'str': 334, 'full..': 5008, 'texting': 492, 'cm': 9105, 'Erutupalam': 13781, 'ice.': 11409, ';_;': 10027, 'drms.take': 15240, 'Queen?': 9972, 'Trust': 5758, "riley's": 10674, 'Henry': 14635, 'fat': 3267, 'da:-)i': 2639, 'Lk': 9346, 'administrator..': 2642, 'laurie': 7448, 'Vote.': 6798, 'fainting': 444, 'youwanna': 11606, 'WID': 15180, 'huge': 8965, '.': 1454, 'flavour': 13716, 'man...': 763, 'maths': 14010, 'for£38': 12946, 'fond': 5195, 'grown': 8700, 'hun-onbus': 8414, 'fit': 2164, 'sum1': 871, 'Hello-': 7775, 'Yes:)sura': 7663, 'dled': 4362, 'plenty': 9629, '09058091870': 13536, 'ago.': 4765, 'only!': 2235, 'SELFINDEPENDENCE': 12713, 'Texting': 14534, 'Guys': 14376, 'star': 1713, 'butt': 5096, "x'mas.": 3208, 'yoga': 2227, 'Siva': 2746, 'Honey': 5964, 'slice.': 349, 'CAME!': 14343, 'Friday': 4911, 'try.': 5373, 'wake,': 6748, 'SHITIN': 5236, 'Dizzee': 4785, 'tendencies.': 3470, '09094646899': 7421, 'comb': 9338, 'X29.': 11147, 'deliver': 9632, 'moon': 6495, 'wet.': 285, 'prestige': 2363, 'KeralaCircle': 1597, 'Hurts': 872, 'Cost': 205, "FR'NDSHIP": 5469, 'LdnW15H': 3151, 'weekend!': 12158, 'purchases': 12526, 'planet.I': 5458, 'hour': 2046, 'cup': 939, 'Okies...': 2694, 'PHONE': 2083, 'Tones,': 2160, 'correction?or': 4043, 'Yeah.': 7801, 'fun!': 15223, 'petrol': 10030, 'Aft': 330, 'scream.': 4314, 'anywhere.': 6752, 'Id': 3308, 'dollar': 9919, '08706091795.': 9746, 'DADS': 6110, 'NEFT': 5786, 'lasting': 10257, 'fishhead': 8706, 'goin...': 10276, 'Proverb:': 10356, 'smash': 12970, 'anand': 9073, 'Hmmm:)how': 9637, 'armenia': 11297, 'bored...': 5183, 'services': 1236, 'yah...': 14662, 'SEX': 10457, 'drop': 4653, '2nights': 12270, 'Gudnite....tc...practice': 2355, 'resume': 9571, 'objection.': 1998, 'rejected': 8550, "said,''": 8637, 'ANS': 6785, 'That': 1810, 'before.went': 6505, 'Halloween': 9127, '"POWER': 8757, 'hont.': 13113, 'celebrate': 11947, 'sight..': 7318, 'players': 6434, 'US': 9575, 'parking': 13738, '20p': 6323, '8pm,': 11858, "is'LOVE'": 14099, 'that': 313, 'How.': 7620, 'leo': 7090, 'Drink': 14425, '86688': 1992, 'sexiest': 13895, 'blow': 10924, 'TITLE': 7185, 'she.s': 6052, '08000407165': 4356, 'box334sk38ch': 2711, 'Think': 2189, 'hasnt': 2824, '645': 7118, 'nuclear': 10586, 'money.i': 15303, 'Day': 2314, 'TOMORROW': 7334, '08719180248': 1106, 'wondar': 4032, 'hint': 4380, 'Met': 8127, 'Yar': 3424, 'K.k:)when': 4530, 'pattern': 5208, 'option!': 14066, 'RTM': 12281, 'WENT': 13339, 'Sorry': 692, 'game?': 10737, 'don,t': 8691, 'vivek:)i': 14715, 'Provided': 8192, 'www.Idew.com': 8527, 'attached': 4109, 'bedrm-$900...': 8954, 'Tis': 11559, "shouldn't": 1157, 'mns': 14098, 'i': 181, 'thanks2.': 6616, 'dignity': 790, 'mood.': 8640, 'replying.': 8657, 'cappuccino*': 4418, 'aunt': 6855, 'coffee': 940, 'suits': 3591, 'Olol': 10883, 'gd,': 15638, 'WORLD': 6696, 'Sorry.': 865, '5free.': 12380, '20M12AQ.': 10105, 'look.': 13037, 'tuition': 10905, 'suckers.': 578, '*turn*': 13185, 'earlier...': 6672, 'Wtf.': 13563, '50%': 11918, 'SAUSAGE?LOVE': 2854, 'GAIL': 12596, 'Ache': 4415, 'level': 11638, 'YEST': 12830, 'club,': 11856, 'www.txt-2-shop.com': 3497, 'hard.': 1304, 'ASUSUAL!1': 9221, 'turkeys.': 15067, 'life:):)': 15092, 'there.goodnight': 7590, 'be.': 12006, 'well!': 10931, 'naughty': 283, 'S:-)kallis': 8461, 'Stupid': 13226, "'doctors'": 8888, 'garments': 13255, '08712402578': 13408, 'da:)': 6906, 'lttrs,': 9175, 'sad': 4817, 'box': 3922, 'shun': 5952, 'Hi.what': 15152, '09090900040': 7939, 'Nokia': 2473, 'Zebra': 14993, '09058094597': 1794, 'isn‘t': 3364, 'downstem': 5974, 'prize.To': 7908, 'rich': 8428, 'time...': 3702, 'yummy': 1902, 'pei': 8306, 'fans': 10011, 'Geeeee': 3392, 'cold..heard': 14268, 'batch!': 11039, 'genus': 14152, '"Hurt': 8898, 'Raji..pls': 8762, 'throwin': 12390, 'FANTASIES': 6321, 'dinner': 378, ':-):):-):-):-).': 14440, 'please': 1130, 'teju': 5569, 'reception': 7849, '£1.50pmmorefrommobile2Bremoved-MobyPOBox734LS27YF': 4196, 'Gnarls': 12718, 'Lions': 6128, 'optout': 10059, "Carlos'll": 3812, 'rest:-).': 7503, 'then.': 1839, 'shirt.': 1327, 'bloomberg.com': 11712, 'ONE': 3673, 'Weekly': 5799, 'fast.pls': 4086, 'senses.respect': 13665, '32323.': 10957, 'scream': 3417, 'chuck.:-)': 15169, 'shld': 6449, "we're": 384, 'AWAITING': 6490, '09061701939.': 1410, 'hostile': 13462, 'REAL1': 12679, 'tonights': 12083, "yetty's": 11430, 'safe': 1366, 'wrench': 11059, 'BORING.': 15717, 'google': 6727, 'horny': 1933, 'http://wap.': 267, 'marking': 8966, 'orchard': 1576, 'secrets.': 14283, 'Melle': 117, 'dear?': 10344, 'keluviri...!': 11369, 'certificate': 6071, 'urgnt,': 817, 'start........': 3987, '20p/min': 13778, 'customer,': 709, 'labor.': 8654, 'dogs': 12139, 'funny': 8792, 'Nah': 59, 'infernal': 8321, 'INDIA': 9413, '500': 1684, 'embarassed,': 7868, 'Nooooooo': 12694, 'GBP4.50/week.': 12125, 'Actually': 4851, 'guys': 1503, 'WEEK+': 14451, '&Cs': 15218, 'hdd': 11035, 'TA': 13421, '08718727870': 10230, 'help:)': 9097, 'both!': 11800, 'Woke': 10386, 'princess!': 2951, '2MORO': 14162, 'foreign': 5218, 'yours,': 9954, "You're": 966, 'unsold.': 6435, 'valentine?': 13854, 'calls': 551, 'weapon': 14492, 'engin?': 11257, 'shared': 11193, 'ko': 9047, 'tel,': 6375, 'P.': 5807, 'phasing': 7286, 'replacing.': 10199, "Ken's": 755, 'working?': 10320, 'ham': 9057, 'ivatte': 11365, 'reach?': 13732, 'Colin': 14603, 'del': 13573, 'push': 9343, 'need.': 1492, 'Lemme': 12983, '26/11/04': 15652, 'Money': 4921, 'anniversary': 5187, 'Enjoy,': 3333, 'Booked': 2810, 'newspapers': 8854, 'visitors,': 8245, 'problems?': 15438, 'gang': 6956, 'BOX42WR29C,': 1118, 'AVE': 3600, 'cal;l': 2709, 'K:)eng': 14257, 'force': 7060, 'Date': 2131, 'affairs': 12733, 'c,': 9602, 'oh!': 4485, 'MAN?': 11894, 'result': 2909, 'meaningful': 7291, '88088': 9151, 'stability': 15088, 'keyword': 9735, 'usc': 10740, 'Day:)': 7557, 'gift?': 12815, '07/11/04': 4628, 'Winning': 7145, 'bookedthe': 13245, 'PoBox45W2TG150P': 11438, 'Chat': 3667, 'sch': 3427, 'eveB-)': 13376, 'details..i': 7545, '84128,custcare': 15368, 'WRKIN?': 15129, 'rock.': 3784, 'MATE': 11890, 'special.': 1066, 'had.': 13254, 'simply': 10500, '4...': 11705, 'noon': 3548, 'Ubi': 5086, '08714712379': 8791, 'inmind': 13491, 'Tessy..pls': 8553, 'Hahaha..use': 4450, 'phne,': 6400, 'GO!': 1688, 'FreeMsg>FAV': 10242, 'faith,Evening': 13177, 'Unlike': 15065, 'me?': 729, 'Shoul': 2817, "UK's": 1212, 'Ooooooh': 15447, 'hire': 12025, 'meet.': 4586, 'pple': 6290, 'league': 1540, '5WB': 6328, 'Shb': 4962, '06.': 10914, 'fb.': 7268, 'pretsorginta,': 10864, 'face': 1819, '$2': 12630, 'hugh': 7447, 'Goodnight!': 6387, 'GMW': 9694, 'doke.': 9271, 'installing': 1668, 'Gay': 4806, 'test?': 8818, 'stopped': 3542, 'quiet': 13373, 'FLOWER': 5344, 'Player': 10226, 'samus': 4884, 'bad,': 9440, 'IMF': 9403, '4u:': 14814, 'Oi': 13217, 'Rofl.': 15732, 'M263UZ.': 4341, '4': 212, '08719181259': 12653, 'posting': 13831, 'dad': 3911, '*sighs*': 2517, 'luvs': 11164, '^': 5897, 'beverage': 13942, '1hr': 5869, 'soul': 7065, 'forget': 508, 'unconsciously': 7922, 'enjoy!': 9733, 'number!': 5116, 'ola?': 6090, 'flip': 5950, 'Other..': 13645, 'Sar': 15522, 'cough': 10299, 'marrge..remembr?': 8267, 'thing': 2693, 'Host-based': 6788, 'sex': 9766, 'uncountable': 4319, 'tomorrow/today?': 13028, 'KEEP': 3959, 'empty': 8821, 'HOTMIX': 7490, 'Mob!': 10823, 'cash,': 12452, 'sea': 3263, 'cheaper': 10551, 'Indyarocks.com': 9569, 'minor': 14246, 'blessed': 5113, 'recharged': 6446, 'GROW.RANDOM!': 12716, 'fishrman': 12383, 'kickoff!': 5297, 'division': 10238, 'Alfie': 12068, 'fool': 5263, 'chinese': 11666, 'asda': 15450, 'returns': 3274, 'cheaper,': 4807, 'recd@thirtyeight': 1763, 'it...': 7858, 'alerts': 3967, 'DETAILS': 13765, 'tomarrow': 4589, "they'll": 11466, 'mostly': 7283, 'Will': 1139, 'chikku,': 6018, '08719839835.': 13743, 'L8ER': 15674, 'will,': 1502, 'caroline!': 15262, 'bhayandar': 11261, 'shelves': 8789, 'Shit,': 14512, '69698': 1936, 'ladies?U': 13017, 'tea/coffee?': 3811, 'listening': 3729, 'USED': 11032, 'ta': 5421, 'winner': 1074, 'Nimya.': 8765, 'winning.': 14474, 'lady': 3225, 'big!': 10080, 'opinions.': 9376, 'Vegas': 12198, 'soc...': 12208, 'canlove': 4331, 'interesting..:)': 6355, '30': 13773, 'interfued': 12065, 'live:)': 8221, 'know..wait': 5185, 'esplanade?': 10193, '542': 3528, 'urmom.i': 7677, 'bathing': 8855, 'playing': 4537, 'creepy': 5836, 'fb': 3033, 'jules': 7037, 'eve': 3731, '7684': 14103, 'bullshit': 13398, 'conditions,': 3041, 'network': 135, 'cake,': 2239, 'anyone.': 5146, 'bucks': 1588, 'boss?': 7355, 'Now!4T&': 7611, 'teaching': 10565, 'plane..': 3982, 'red,red': 11155, 'Reaction': 10064, '861': 2295, '6.30': 8734, 'black..and': 10314, 'Neva': 3571, 'lab': 3430, 'blonde,': 12376, 'desperate': 6604, 'tomo?': 11068, '