packages feed

gotta-go-fast 0.3.0.0 → 0.3.0.6

raw patch · 6 files changed

+10031/−58 lines, 6 files

Files

+ details.txt view
@@ -0,0 +1,15 @@+gotta-go-fast has three modes of operation. In all three modes, type through the presented text and then submit with ENTER. You MUST correct your mistakes before you can submit. Press ESC at any time to restart.++1. NONSENSE MODE Run with no file inputs, it will generate nonsense which is statistically similar to English text. Words appear in the nonsense with the same frequency that they appear in actual English. The length of the nonsense can be specified with --nonsense-len (-l) (in characters).++    $ gotta-go-fast++2. CHUNK MODE Run with files to sample from, it will sample a random chunk from a random file as input. This works well for code or other text without a clear paragraph structure. Specify the height of the chunk in lines with --height (-h).++    $ gotta-go-fast src/*++3. PARAGRAPH MODE Run with files to sample from, and --paragraph (-p), it will sample a random paragraph (empty line delimited) from a random file. This works well for prose such as Project Gutenberg books. Reflow text to the target width with --reflow (-r). Specify the maximum and minimum length for a paragraph with --max-paragraph-len and --min-paragraph-len (in characters).++    $ gotta-go-fast -p books/*.txt++In all three modes the width of the text can be set with --width (-w), the tab width can be set with --tab (-t) and the colour of empty (not yet typed) text and of errors can be set with --fg-empty and --fg-error (ANSI colour codes).
gotta-go-fast.cabal view
@@ -1,5 +1,5 @@ name:                gotta-go-fast-version:             0.3.0.0+version:             0.3.0.6 synopsis:            A command line utility for practicing typing description:   A command line utility for practicing typing and measuring your WPM and accuracy. See the project <https://github.com/callum-oakley/gotta-go-fast/blob/master/README.md README> for details.@@ -12,6 +12,7 @@ license-file:        LICENSE build-type:          Simple cabal-version:       >=1.10+extra-source-files:  details.txt, wordWeights.txt  executable gotta-go-fast   hs-source-dirs:      src
src/GottaGoFast.hs view
@@ -2,12 +2,11 @@   ( Character(..)   , Line   , Page-  , State+  , State(..)   , accuracy   , applyBackspace   , applyBackspaceWord   , applyChar-  , applyWhitespace   , atEndOfLine   , cursor   , countChars@@ -43,6 +42,7 @@     , end     :: Maybe UTCTime     , strokes :: Integer     , hits    :: Integer+    , loop    :: Bool     }  -- For ease of rendering a character in the UI, we tag it as a Hit, Miss, or@@ -98,9 +98,16 @@         if isErrorFree s'           then 1           else 0+    , strokes = strokes s + 1     }   where-    s' = s {input = input s ++ [c], strokes = strokes s + 1}+    s'+      | isSpace c = s {input = input s ++ whitespace}+      | otherwise = s {input = input s ++ [c]}+    whitespace =+      case takeWhile isSpace . drop (length $ input s) $ target s of+        "" -> " "+        ws -> ws  applyBackspace :: State -> State applyBackspace s = s {input = reverse . drop n . reverse $ input s}@@ -121,14 +128,6 @@       | not (isSpace x) && isSpace y = 1       | otherwise = 1 + toWordBeginning (y : ys) -applyWhitespace :: State -> State-applyWhitespace s = s {input = input s ++ whitespace}-  where-    whitespace =-      case takeWhile isSpace . drop (length $ input s) $ target s of-        "" -> " "-        ws -> ws- initialState :: String -> State initialState t =   State@@ -138,6 +137,7 @@     , end = Nothing     , strokes = 0     , hits = 0+    , loop = False     }  character :: Position -> (Maybe Char, Maybe Char) -> Character@@ -168,14 +168,14 @@  -- The following functions are only safe to use when both hasStarted and -- hasEnded hold.-seconds :: State -> Rational-seconds s = toRational $ diffUTCTime (fromJust $ end s) (fromJust $ start s)+seconds :: State -> Double+seconds s = realToFrac $ diffUTCTime (fromJust $ end s) (fromJust $ start s)  countChars :: State -> Int countChars = length . groupBy (\x y -> isSpace x && isSpace y) . target -wpm :: State -> Rational+wpm :: State -> Double wpm s = fromIntegral (countChars s) / (5 * seconds s / 60) -accuracy :: State -> Rational+accuracy :: State -> Double accuracy s = fromIntegral (hits s) / fromIntegral (strokes s)
src/Main.hs view
@@ -4,7 +4,7 @@  module Main where -import           Control.Monad          (filterM)+import           Control.Monad          (filterM, when) import           Data.Char              (isAscii, isPrint) import           Data.FileEmbed         (embedStringFile) import           Data.List.Split        (splitOn)@@ -21,8 +21,8 @@  data Config =   Config-    { fg_empty          :: Maybe Word8-    , fg_error          :: Maybe Word8+    { fg_empty          :: Word8+    , fg_error          :: Word8     , files             :: [FilePath]     , height            :: Int     , max_paragraph_len :: Int@@ -56,9 +56,9 @@ config =   Config     { fg_empty =-        def &= typ "COLOUR" &=+        8 &= typ "COLOUR" &=         help "The ANSI colour code for empty (not yet typed) text"-    , fg_error = def &= typ "COLOUR" &= help "The ANSI colour code for errors"+    , fg_error = 1 &= typ "COLOUR" &= help "The ANSI colour code for errors"     , height =         20 &= typ "LINES" &=         help "The maximum number of lines to sample (default: 20)"@@ -79,10 +79,10 @@         help "The width at which to wrap lines (default: 80)"     , files = def &= args &= typ "FILES"     } &=-  summary "Gotta Go Fast 0.3.0.0" &=+  summary "Gotta Go Fast 0.3.0.6" &=   help "Practice typing and measure your WPM and accuracy." &=   program "gotta-go-fast" &=-  (details $ lines $(embedStringFile "details.txt"))+  details (lines $(embedStringFile "details.txt"))  wrap :: Int -> String -> String wrap width = T.unpack . wrapText wrapSettings width . T.pack@@ -109,35 +109,41 @@       | r < f = w       | otherwise = go (r - f) rest +loopWhile :: Monad m => (a -> Bool) -> m a -> m a+loopWhile p mx = do+  x <- mx+  if p x+    then loopWhile p mx+    else return x+ -- Generates nonsense which is superficially similar to English. Similar in the -- sense that the frequency of words in the generated text is approximately the -- same as the frequency of words in actual usage. nonsense :: Config -> IO String nonsense c = do-  words <- go $ nonsense_len c+  words <- go (nonsense_len c) Nothing   return $ (wrap (width c) . unwords $ words) ++ "\n"   where-    go :: Int -> IO [String]-    go n+    go n lastWord       | n <= 0 = return []       | otherwise = do-        word <- weightedRandomWord-        rest <- go (n - length word - 1) -- extra 1 to count the space+        word <- loopWhile ((== lastWord) . Just) weightedRandomWord+        rest <- go (n - length word - 1) (Just word) -- extra 1 to count the space         return $ word : rest  sample :: Config -> String -> IO String sample c file =-  if paragraph c+  if paragraph c && not (null paragraphs)     then sampleParagraph     else sampleLines   where     sampleParagraph = do       r <- randomRIO (0, length paragraphs - 1)       return $-        ((if reflow_ c-            then reflow-            else wrap (width c)) $-         paragraphs !! r) +++        (if reflow_ c+           then reflow+           else wrap (width c))+          (paragraphs !! r) ++         "\n"     sampleLines = do       r <- randomRIO (0, max 0 $ length (lines ascii) - height c)@@ -148,13 +154,12 @@         ((\l -> l >= min_paragraph_len c && l <= max_paragraph_len c) . length) .       map unlines . splitOn [""] . lines $       ascii-    reflow s =+    reflow =       wrap (width c) .       map         (\case            '\n' -> ' '-           c -> c) $-      s+           c -> c)     ascii = toAscii (tab c) file     chop = unlines . take (height c) . lines @@ -162,10 +167,12 @@ main = do   c <- cmdArgs config   fs <- filterM doesFileExist $ files c-  case fs of-    [] -> nonsense c >>= run (fg_empty c) (fg_error c)-    _ -> do-      r <- randomRIO (0, length fs - 1)-      file <- readFile $ fs !! r-      sampled <- sample c file-      run (fg_empty c) (fg_error c) sampled+  target <-+    case fs of+      [] -> nonsense c+      _ -> do+        r <- randomRIO (0, length fs - 1)+        file <- readFile $ fs !! r+        sample c file+  loop <- run (fg_empty c) (fg_error c) target+  when loop main
src/UI.hs view
@@ -18,6 +18,7 @@ import           Graphics.Vty           (Attr, Color (..), Event (..), Key (..),                                          Modifier (..), bold, defAttr,                                          withStyle)+import           Text.Printf            (printf)  import           GottaGoFast @@ -48,8 +49,7 @@ drawResults :: State -> Widget () drawResults s =   withAttr resultAttrName . str $-  (show . round $ wpm s) ++-  " words per minute • " ++ (show . round $ accuracy s * 100) ++ "% accuracy"+  printf "%.f words per minute • %.f%% accuracy" (wpm s) (accuracy s * 100)  draw :: State -> [Widget ()] draw s@@ -60,14 +60,15 @@  handleChar :: Char -> State -> EventM () (Next State) handleChar c s-  | isSpace c && isComplete (applyWhitespace s) = do+  | not $ hasStarted s = do     now <- liftIO getCurrentTime-    continue $ stopClock now s-  | isSpace c = continue $ applyWhitespace s-  | hasStarted s = continue $ applyChar c s-  | otherwise = do+    continue $ startClock now s'+  | isComplete s' = do     now <- liftIO getCurrentTime-    continue . applyChar c $ startClock now s+    continue $ stopClock now s'+  | otherwise = continue s'+  where+    s' = applyChar c s  handleEvent :: State -> BrickEvent () e -> EventM () (Next State) handleEvent s (VtyEvent (EvKey key [MCtrl])) =@@ -89,13 +90,14 @@   | hasEnded s =     case key of       KEnter -> halt s-      KEsc   -> halt s+      KEsc   -> halt $ s {loop = True}       _      -> continue s   | otherwise =     case key of       KChar c -> handleChar c s       KEnter  -> handleChar '\n' s       KBS     -> continue $ applyBackspace s+      KEsc    -> halt $ s {loop = True}       _       -> continue s handleEvent s _ = continue s @@ -116,12 +118,12 @@           ]     } -run :: Maybe Word8 -> Maybe Word8 -> String -> IO ()+run :: Word8 -> Word8 -> String -> IO Bool run fgEmptyCode fgErrorCode t = do-  _ <- defaultMain (app emptyAttr errorAttr resultAttr) $ initialState t-  return ()+  s <- defaultMain (app emptyAttr errorAttr resultAttr) $ initialState t+  return $ loop s   where-    emptyAttr = fg . ISOColor $ fromMaybe 8 fgEmptyCode-    errorAttr = flip withStyle bold . fg . ISOColor $ fromMaybe 1 fgErrorCode+    emptyAttr = fg . ISOColor $ fgEmptyCode+    errorAttr = flip withStyle bold . fg . ISOColor $ fgErrorCode     -- abusing the fgErrorCode to use as a highlight colour for the results here-    resultAttr = fg . ISOColor $ fromMaybe 1 fgErrorCode+    resultAttr = fg . ISOColor $ fgErrorCode
+ wordWeights.txt view
@@ -0,0 +1,9948 @@+you	1222421+I	1052546+to	823661+the	770161+a	563578+and	480214+that	413389+it	388320+of	332038+me	312326+what	285826+is	282222+in	266544+this	249860+know	241548+I'm	230304+for	216535+no	212463+have	210523+my	210429+don't	206663+just	196810+not	195058+do	194183+be	191823+on	191646+your	188060+was	184170+we	181863+it's	176919+with	169586+so	169088+but	159109+all	158281+well	155201+are	152650+he	150009+oh	148780+about	142750+right	137218+you're	135738+get	126849+here	124368+out	121867+going	121435+like	121194+yeah	121148+if	120553+her	116265+she	110122+can	107652+up	103826+want	102822+think	102403+that's	102146+now	100909+go	100905+him	96536+at	93433+how	87908+got	86085+there	85662+one	84057+did	79053+why	78554+see	75968+come	72807+good	72798+they	69192+really	68311+as	67977+would	67718+look	67262+when	65117+time	64891+will	64811+okay	63509+back	63115+can't	62602+mean	61504+tell	61352+I'll	61169+from	59972+hey	58699+were	58127+he's	57551+could	57285+didn't	56732+yes	55828+his	55502+been	55235+or	55062+something	54736+who	53799+because	53566+some	53265+had	52561+then	52197+say	50213+ok	49968+take	49868+an	49832+way	49794+us	49492+little	47885+make	46154+need	46040+gonna	45124+never	44728+we're	43491+too	43360+love	42994+she's	42795+I've	42160+sure	40757+them	40366+more	40239+over	40001+our	39896+sorry	39854+where	39330+what's	39305+let	38858+thing	38121+am	37814+maybe	37653+down	37644+man	37355+has	37145+uh	36435+very	36140+by	35500+there's	35242+should	34829+anything	34635+said	34568+much	34270+any	34203+life	34192+even	33895+off	33887+please	33628+doing	32831+thank	31728+give	31073+only	30599+thought	30211+help	29825+two	29788+talk	28834+people	28517+god	28502+still	28308+wait	27920+into	27354+find	26757+nothing	26592+again	26472+things	26305+let's	26132+doesn't	25926+call	25880+told	25594+great	25435+before	25329+better	25282+ever	25127+night	24900+than	24815+away	24543+first	24509+believe	24210+other	23936+feel	23850+everything	23714+work	23683+you've	23483+fine	22993+home	22901+after	22182+last	21965+these	21929+day	21860+keep	21842+does	21731+put	21617+around	21591+stop	21341+they're	21309+I'd	21221+guy	21126+long	21086+isn't	20796+always	20581+listen	20142+wanted	20074+Mr.	20053+guys	19953+huh	19871+those	19849+big	19520+lot	19421+happened	19282+thanks	19233+won't	19208+trying	19173+kind	19031+wrong	19025+through	18903+talking	18875+made	18872+new	18860+being	18666+guess	18473+hi	18285+care	18042+bad	17636+mom	17514+remember	17266+getting	17199+we'll	17077+together	17074+dad	17003+leave	16978+mother	16855+place	16796+understand	16724+wouldn't	16615+actually	16585+hear	16523+baby	16514+nice	16275+father	16233+else	16214+stay	16167+done	16010+wasn't	16007+their	15907+course	15866+might	15774+mind	15364+every	15350+enough	15322+try	15235+hell	15191+came	15142+someone	15035+you'll	14958+own	14849+family	14765+whole	14623+another	14541+house	14458+Jack	14324+yourself	14291+idea	14203+ask	14194+best	14094+must	14089+coming	14082+old	14041+looking	13843+woman	13734+hello	13655+which	13652+years	13526+room	13467+money	13456+left	13428+knew	13357+tonight	13305+real	13161+son	13131+hope	13093+name	13044+same	13024+went	12892+um	12883+hmm	12819+happy	12788+pretty	12746+saw	12707+girl	12641+sir	12557+show	12392+friend	12245+already	12233+saying	12204+may	12199+next	12147+three	12088+job	12047+problem	11931+minute	11903+found	11875+world	11754+thinking	11721+haven't	11699+heard	11692+honey	11659+matter	11578+myself	11559+couldn't	11550+exactly	11502+having	11481+ah	11347+probably	11332+happen	11273+we've	11200+hurt	11145+boy	11050+both	11035+while	11006+dead	11002+gotta	11000+alone	10813+since	10757+excuse	10747+start	10704+kill	10676+hard	10608+you'd	10577+today	10561+car	10485+ready	10461+until	10432+without	10421+whatever	10363+wants	10269+hold	10254+wanna	10250+yet	10225+seen	10192+deal	10143+took	10083+once	9931+gone	9877+called	9871+morning	9823+supposed	9818+friends	9814+head	9794+stuff	9709+most	9699+used	9623+worry	9620+second	9605+part	9518+live	9507+truth	9470+school	9443+face	9441+forget	9322+true	9296+business	9295+each	9277+cause	9277+soon	9261+knows	9217+few	9164+telling	9129+wife	9125+who's	9109+use	9096+chance	9081+run	9076+move	9073+anyone	9050+person	8997+bye	8969+somebody	8923+Dr.	8917+heart	8824+such	8813+miss	8806+married	8798+point	8707+later	8636+making	8623+meet	8608+anyway	8517+many	8504+phone	8424+reason	8395+damn	8367+lost	8348+looks	8337+bring	8320+case	8287+turn	8264+wish	8262+tomorrow	8254+kids	8247+trust	8187+check	8185+change	8176+end	8171+late	8164+anymore	8160+five	8137+least	8119+town	8099+aren't	8065+ha	8033+working	8016+year	8013+makes	8001+taking	7996+means	7980+brother	7952+play	7883+hate	7839+ago	7836+says	7821+beautiful	7813+gave	7759+fact	7654+crazy	7650+party	7633+sit	7625+open	7598+afraid	7587+between	7585+important	7582+rest	7417+fun	7404+kid	7380+word	7355+watch	7310+glad	7277+everyone	7214+days	7213+sister	7188+minutes	7185+everybody	7163+bit	7158+couple	7150+whoa	7081+either	7075+Mrs.	7064+feeling	7058+daughter	7057+wow	7036+gets	7023+asked	7009+under	6999+break	6941+promise	6926+door	6907+set	6878+close	6877+hand	6872+easy	6848+question	6841+doctor	6841+tried	6830+far	6728+walk	6619+needs	6555+trouble	6510+mine	6503+though	6502+times	6475+different	6464+killed	6390+hospital	6378+anybody	6376+Sam	6354+alright	6348+wedding	6334+shut	6294+able	6289+die	6280+perfect	6276+police	6260+stand	6257+comes	6256+hit	6248+story	6231+ya	6212+mm	6192+waiting	6132+dinner	6099+against	6064+funny	6054+husband	6038+almost	6037+stupid	6020+pay	6016+answer	6016+four	6014+office	5955+cool	5954+eyes	5950+news	5936+child	5913+shouldn't	5874+half	5819+side	5813+yours	5805+moment	5770+sleep	5747+read	5743+where's	5711+started	5707+young	5680+men	5678+sounds	5665+sonny	5635+lucky	5631+pick	5610+sometimes	5596+'em	5590+bed	5589+also	5583+date	5581+line	5564+plan	5557+hours	5503+lose	5459+fire	5452+free	5433+hands	5428+serious	5390+Leo	5390+behind	5388+inside	5379+high	5377+ahead	5364+week	5356+wonderful	5341+fight	5326+past	5315+cut	5305+quite	5304+number	5289+he'll	5262+sick	5256+it'll	5217+game	5212+eat	5202+nobody	5195+goes	5194+death	5165+along	5147+save	5144+seems	5138+finally	5118+lives	5095+worried	5066+upset	5064+Theresa	5056+Carly	5055+Ethan	5033+met	5032+book	5027+brought	5010+seem	5001+sort	5000+safe	4999+living	4999+children	4944+weren't	4896+leaving	4889+front	4868+shot	4866+loved	4851+asking	4851+running	4842+clear	4836+figure	4785+hot	4777+felt	4748+six	4737+parents	4725+drink	4706+absolutely	4704+how's	4652+daddy	4641+sweet	4628+alive	4628+Paul	4616+sense	4597+meant	4596+happens	4589+David	4589+special	4573+bet	4548+blood	4542+ain't	4541+kidding	4539+lie	4536+full	4533+meeting	4532+dear	4516+coffee	4499+seeing	4495+sound	4488+fault	4484+water	4469+ten	4448+women	4441+John	4413+welcome	4373+buy	4345+months	4333+hour	4325+speak	4322+lady	4301+Jen	4301+thinks	4298+Christmas	4284+body	4271+order	4270+outside	4260+hang	4243+possible	4228+worse	4218+company	4209+mistake	4185+ooh	4184+handle	4181+spend	4175+totally	4157+giving	4143+control	4134+here's	4130+marriage	4129+realize	4114+power	4094+president	4086+unless	4078+sex	4049+girls	4048+send	4045+needed	4043+taken	3997+died	3996+scared	3991+picture	3984+talked	3975+Jake	3962+Al	3958+ass	3947+hundred	3942+changed	3929+completely	3919+explain	3913+playing	3899+certainly	3895+sign	3890+boys	3888+relationship	3880+Michael	3878+loves	3876+hair	3839+lying	3837+choice	3828+anywhere	3821+secret	3810+future	3798+weird	3797+luck	3792+she'll	3780+Max	3773+Luis	3773+turned	3770+known	3757+touch	3755+kiss	3750+Crane	3744+questions	3741+obviously	3741+wonder	3735+pain	3720+calling	3714+somewhere	3707+throw	3697+straight	3695+Grace	3693+cold	3690+white	3665+fast	3661+Natalie	3660+words	3647+food	3632+none	3615+drive	3607+feelings	3603+they'll	3593+worked	3577+marry	3564+light	3554+test	3547+drop	3546+cannot	3537+Frank	3525+sent	3524+city	3515+dream	3471+protect	3465+twenty	3463+class	3458+Lucy	3450+surprise	3439+its	3439+sweetheart	3434+forever	3432+poor	3431+looked	3431+mad	3407+except	3406+gun	3396+y'know	3395+dance	3394+takes	3386+appreciate	3379+especially	3376+situation	3359+besides	3355+weeks	3350+pull	3340+himself	3331+hasn't	3318+act	3307+worth	3303+Sheridan	3299+amazing	3294+top	3283+given	3283+expect	3277+Ben	3262+rather	3241+Julian	3240+involved	3240+swear	3239+piece	3239+busy	3229+law	3225+decided	3224+black	3217+Joey	3216+happening	3210+movie	3209+we'd	3205+catch	3194+Antonio	3188+country	3187+less	3173+perhaps	3165+step	3161+fall	3157+watching	3152+kept	3152+darling	3146+dog	3141+Ms.	3131+win	3126+air	3126+honor	3106+personal	3103+moving	3102+till	3091+admit	3091+problems	3090+murder	3089+strong	3088+he'd	3087+evil	3078+definitely	3068+feels	3067+information	3063+honest	3063+eye	3063+broke	3044+missed	3043+longer	3043+dollars	3042+tired	3029+Jason	3026+George	3013+evening	2998+human	2986+starting	2984+Ross	2981+red	2976+entire	2976+trip	2975+Brooke	2969+club	2963+Niles	2956+suppose	2952+calm	2948+imagine	2946+Todd	2943+fair	2941+caught	2933+blame	2923+street	2920+sitting	2920+favor	2920+apartment	2920+court	2919+terrible	2914+clean	2914+Tony	2913+learn	2912+Alison	2910+Rick	2909+works	2903+Rose	2890+Frasier	2887+relax	2877+York	2873+million	2873+charity	2865+accident	2860+wake	2857+prove	2852+Danny	2848+smart	2847+message	2846+missing	2845+forgot	2845+small	2843+interested	2838+table	2835+nbsp	2824+become	2816+Craig	2810+mouth	2807+pregnant	2805+middle	2802+Billy	2797+ring	2786+careful	2785+shall	2779+dude	2775+team	2773+ride	2768+figured	2766+wear	2765+shoot	2759+stick	2753+Ray	2752+follow	2752+Bo	2751+angry	2747+instead	2744+buddy	2743+write	2741+stopped	2719+early	2719+Angel	2701+Nick	2699+ran	2692+war	2690+standing	2690+forgive	2690+jail	2684+wearing	2678+Miguel	2678+ladies	2670+kinda	2662+lunch	2660+Cristian	2659+eight	2655+Greenlee	2654+gotten	2640+hoping	2639+Phoebe	2638+thousand	2633+ridge	2633+music	2631+Luke	2614+paper	2607+tough	2606+tape	2605+Emily	2595+state	2592+count	2589+college	2589+boyfriend	2589+proud	2586+agree	2584+birthday	2580+bill	2572+seven	2569+they've	2566+Timmy	2565+history	2564+share	2563+offer	2563+hurry	2559+ow	2557+feet	2555+wondering	2549+simple	2549+decision	2548+building	2546+ones	2539+finish	2535+voice	2530+herself	2530+Chris	2529+would've	2523+list	2518+Kay	2517+mess	2516+deserve	2516+evidence	2514+cute	2504+Jerry	2503+dress	2501+Richard	2499+interesting	2497+Jesus	2487+James	2478+hotel	2463+enjoy	2463+Ryan	2461+Lindsay	2461+quiet	2454+concerned	2452+road	2448+Eve	2445+staying	2443+short	2440+beat	2440+sweetie	2439+mention	2434+clothes	2434+finished	2423+fell	2419+neither	2417+mmm	2414+fix	2414+Victor	2412+respect	2410+spent	2406+prison	2401+attention	2397+holding	2394+calls	2389+near	2386+surprised	2381+bar	2376+Beth	2375+pass	2374+keeping	2371+gift	2371+hadn't	2369+putting	2366+dark	2361+self	2358+owe	2354+using	2345+Nora	2345+ice	2345+helping	2342+bitch	2341+normal	2339+aunt	2339+lawyer	2338+apart	2336+certain	2333+plans	2327+Jax	2326+girlfriend	2325+floor	2325+whether	2316+everything's	2316+present	2313+earth	2312+private	2311+Jessica	2310+box	2304+Dawson	2303+cover	2298+judge	2294+upstairs	2293+Alexis	2287+Shawn	2281+sake	2281+mommy	2281+possibly	2280+worst	2276+station	2276+acting	2276+accept	2271+blow	2268+strange	2266+saved	2266+Ivy	2266+conversation	2266+plane	2259+mama	2257+yesterday	2254+lied	2251+quick	2249+lately	2249+stuck	2240+lovely	2239+security	2237+report	2236+Barbara	2235+difference	2227+rid	2226+tv	2225+Adam	2219+store	2217+she'd	2209+bag	2209+Mike	2205+bought	2201+ball	2200+single	2195+Kevin	2192+doubt	2191+listening	2186+major	2181+walking	2180+cops	2180+blue	2180+deep	2167+dangerous	2162+Buffy	2162+park	2160+sleeping	2154+Chloe	2154+Rafe	2149+shh	2142+record	2140+lord	2139+Erica	2139+moved	2127+join	2126+key	2125+captain	2117+card	2113+crime	2110+gentlemen	2096+willing	2089+window	2084+return	2081+walked	2075+guilty	2072+Brenda	2072+likes	2070+fighting	2066+difficult	2065+soul	2063+joke	2062+service	2056+magic	2053+favorite	2052+uncle	2050+promised	2047+public	2045+bother	2042+island	2041+Jim	2039+seriously	2036+cell	2036+lead	2033+knowing	2032+broken	2026+advice	2024+somehow	2023+paid	2017+Blair	2017+losing	2013+push	2010+helped	2010+killing	2006+usually	2005+earlier	2005+boss	2003+Laura	2001+beginning	2001+liked	1995+innocent	1989+doc	1989+rules	1988+Elizabeth	1988+Sabrina	1985+summer	1984+ex	1979+cop	1976+learned	1971+thirty	1956+risk	1954+letting	1954+Phillip	1950+speaking	1945+officer	1945+ridiculous	1943+support	1942+afternoon	1941+Eric	1940+born	1936+dreams	1935+apologize	1932+seat	1930+nervous	1930+across	1928+song	1925+Olivia	1923+charge	1923+patient	1919+Cassie	1919+boat	1915+how'd	1913+brain	1911+hide	1910+detective	1910+Aaron	1908+Kendall	1907+general	1907+Tom	1906+planning	1906+nine	1906+huge	1904+breakfast	1901+horrible	1900+age	1899+awful	1893+pleasure	1889+driving	1889+hanging	1888+picked	1887+system	1885+sell	1885+quit	1885+apparently	1885+dying	1883+notice	1872+Josh	1868+congratulations	1868+chief	1867+faith	1865+Simon	1859+gay	1859+ho	1857+one's	1856+month	1856+visit	1855+Hal	1852+could've	1852+c'mon	1851+aw	1845+Edmund	1844+Brady	1841+letter	1839+decide	1837+American	1835+double	1834+Troy	1833+sad	1832+press	1832+forward	1827+fool	1825+showed	1823+smell	1822+seemed	1816+Mary	1815+spell	1813+Courtney	1812+memory	1811+Mark	1809+Alan	1805+pictures	1804+Paris	1804+slow	1794+Joe	1794+Tim	1788+seconds	1788+hungry	1786+board	1786+position	1784+hearing	1784+Roz	1782+kitchen	1778+ma'am	1777+Bob	1776+force	1775+fly	1774+during	1773+space	1767+should've	1767+realized	1767+experience	1767+kick	1761+others	1758+grab	1757+mother's	1754+Sharon	1750+discuss	1749+third	1747+cat	1742+fifty	1737+responsible	1735+Jennifer	1732+Philip	1731+miles	1731+fat	1730+reading	1729+idiot	1729+yep	1728+rock	1728+rich	1725+suddenly	1723+agent	1721+bunch	1720+destroy	1717+bucks	1717+track	1714+shoes	1713+scene	1712+peace	1711+arms	1707+demon	1703+Diane	1700+Bridget	1697+Brad	1694+low	1690+Livvie	1689+consider	1689+papers	1688+medical	1687+incredible	1687+witch	1684+er	1683+drunk	1682+attorney	1682+Charlie	1681+tells	1675+knock	1674+Karen	1673+ways	1672+eh	1671+belle	1671+cash	1670+gives	1660+department	1660+nose	1658+Skye	1655+turns	1653+keeps	1651+beer	1651+jealous	1643+drug	1639+Molly	1638+sooner	1637+cares	1635+plenty	1634+extra	1634+tea	1628+won	1627+attack	1627+ground	1626+whose	1624+outta	1621+Kyle	1618+weekend	1616+matters	1614+wrote	1613+type	1612+father's	1611+Alex	1609+gosh	1602+opportunity	1601+king	1600+impossible	1600+books	1600+machine	1599+waste	1596+th	1596+pretend	1593+named	1591+danger	1585+wall	1581+Liz	1581+Ian	1580+Henry	1580+jump	1576+eating	1576+proof	1573+complete	1572+slept	1570+career	1567+arrest	1567+star	1566+Phyllis	1561+Mac	1561+breathe	1561+perfectly	1559+warm	1557+pulled	1557+Maria	1553+twice	1551+easier	1547+killer	1544+goin'	1543+dating	1543+suit	1542+romantic	1542+drugs	1537+comfortable	1534+Isaac	1532+powers	1531+finds	1530+checked	1530+fit	1527+divorce	1526+begin	1526+ourselves	1525+closer	1523+ruin	1521+although	1520+smile	1516+laugh	1515+fish	1515+Abigail	1515+treat	1513+god's	1512+fear	1512+Anna	1509+what'd	1508+Simone	1508+Amber	1505+guy's	1504+otherwise	1499+excited	1499+mail	1497+hiding	1496+cost	1496+green	1494+stole	1493+Pacey	1492+noticed	1492+Liza	1491+fired	1490+Daphne	1490+Whitney	1489+excellent	1486+lived	1485+bringing	1483+pop	1481+piper	1481+bottom	1480+note	1479+sudden	1477+church	1474+bathroom	1474+flight	1473+Chad	1473+la	1472+honestly	1472+sing	1469+Katie	1469+foot	1468+games	1467+glass	1466+Mitch	1464+remind	1460+bank	1460+Rory	1459+charges	1459+witness	1457+finding	1456+places	1455+tree	1453+dare	1453+hardly	1449+that'll	1446+interest	1443+steal	1442+princess	1441+silly	1439+contact	1436+teach	1434+shop	1432+plus	1431+colonel	1429+fresh	1427+trial	1426+invited	1423+roll	1422+radio	1422+art	1418+reach	1415+heh	1415+dirty	1415+choose	1414+emergency	1413+dropped	1413+butt	1413+credit	1412+obvious	1410+cry	1410+locked	1409+Larry	1408+loving	1407+positive	1404+nuts	1404+agreed	1403+Prue	1402+price	1402+goodbye	1402+condition	1400+guard	1398+grow	1396+cake	1395+mood	1393+dad's	1392+Bianca	1390+total	1389+crap	1389+crying	1385+Paige	1383+belong	1382+lay	1381+partner	1380+trick	1379+pressure	1379+ohh	1378+arm	1376+dressed	1375+cup	1375+lies	1373+bus	1373+taste	1372+neck	1371+south	1369+something's	1369+nurse	1369+raise	1366+land	1366+cross	1366+lots	1365+mister	1363+carry	1363+group	1360+whoever	1358+Eddie	1358+drinking	1357+they'd	1356+breaking	1355+file	1352+lock	1349+computer	1349+yo	1347+Rebecca	1347+wine	1346+closed	1346+writing	1345+spot	1344+paying	1341+study	1340+assume	1340+asleep	1339+man's	1337+turning	1336+legal	1335+justice	1335+Viki	1334+Chandler	1331+bedroom	1331+shower	1330+Nikolas	1328+camera	1328+fill	1325+reasons	1323+forty	1323+bigger	1322+nope	1321+keys	1321+Starr	1319+breath	1319+doctors	1316+pants	1313+freak	1311+level	1308+French	1308+movies	1307+gee	1307+Monica	1306+action	1306+area	1305+folks	1303+Steve	1302+cream	1301+ugh	1300+continue	1298+focus	1294+wild	1293+truly	1293+Jill	1292+desk	1292+convince	1292+client	1290+threw	1286+Taylor	1286+band	1284+hurts	1282+Charles	1280+spending	1279+Neil	1274+field	1274+allow	1274+grand	1273+answers	1273+shirt	1272+chair	1271+Christ	1270+allowed	1270+rough	1269+doin	1269+sees	1268+government	1267+Harry	1263+ought	1262+empty	1261+round	1260+lights	1260+insane	1260+hall	1259+hat	1257+bastard	1257+wind	1251+shows	1251+aware	1251+dealing	1250+pack	1249+meaning	1248+flowers	1247+tight	1246+hurting	1245+ship	1244+subject	1242+guest	1242+mom's	1241+chicken	1240+pal	1237+match	1237+Elaine	1237+arrested	1237+sun	1236+Rachel	1235+Salem	1233+confused	1233+surgery	1232+expecting	1232+deacon	1232+Colleen	1232+unfortunately	1229+goddamn	1229+lab	1227+passed	1226+bottle	1225+beyond	1225+whenever	1224+pool	1224+opinion	1223+naked	1221+held	1221+common	1221+starts	1218+jerk	1218+secrets	1217+falling	1217+played	1216+necessary	1215+barely	1215+dancing	1214+health	1213+tests	1211+copy	1211+Keri	1210+video	1209+cousin	1209+planned	1208+Vanessa	1207+dry	1207+ahem	1206+twelve	1204+simply	1202+Tess	1201+Scott	1199+skin	1198+often	1195+English	1194+fifteen	1193+spirit	1192+speech	1192+names	1191+issue	1191+orders	1190+nah	1190+final	1189+Michelle	1188+America	1187+St.	1186+results	1185+code	1185+Ned	1184+Bonnie	1184+believed	1181+complicated	1180+umm	1178+research	1177+nowhere	1177+escape	1177+biggest	1177+restaurant	1176+page	1176+grateful	1174+usual	1173+burn	1173+Chicago	1171+Austin	1171+address	1166+within	1165+someplace	1165+screw	1165+everywhere	1165+train	1164+film	1164+regret	1163+goodness	1163+mistakes	1162+heaven	1160+details	1158+responsibility	1157+suspect	1156+corner	1154+hero	1153+dumb	1153+terrific	1152+Peter	1151+mission	1151+further	1150+Amy	1150+gas	1149+whoo	1148+hole	1148+memories	1147+o'clock	1146+Brian	1146+truck	1144+following	1144+ended	1144+nobody's	1142+Margo	1140+teeth	1138+ruined	1137+Hank	1137+split	1135+Reva	1135+bear	1135+airport	1135+bite	1132+smoke	1130+Stenbeck	1128+older	1128+liar	1128+horse	1126+Gwen	1124+showing	1123+van	1122+project	1121+cards	1121+desperate	1118+themselves	1117+search	1117+pathetic	1115+damage	1115+spoke	1114+quickly	1114+scare	1111+Marah	1111+beach	1108+Mia	1105+brown	1105+afford	1103+vote	1102+settle	1102+gold	1101+re	1100+mentioned	1100+ed	1099+due	1098+passion	1095+stayed	1094+rule	1093+Friday	1092+checking	1092+tie	1091+hired	1091+upon	1090+rush	1089+Tad	1087+heads	1087+concern	1087+blew	1087+natural	1086+Alcazar	1086+Kramer	1085+champagne	1085+connection	1083+tickets	1082+Kate	1082+finger	1081+happiness	1080+form	1079+saving	1078+kissing	1078+Martin	1077+hated	1077+personally	1076+suggest	1075+prepared	1073+build	1073+leg	1072+onto	1071+leaves	1071+downstairs	1071+ticket	1070+it'd	1070+taught	1069+loose	1069+holy	1068+staff	1067+sea	1067+Asa	1067+planet	1066+duty	1063+convinced	1063+throwing	1060+defense	1060+Harvey	1059+kissed	1054+legs	1052+Dave	1052+according	1052+loud	1051+practice	1049+Andy	1047+Jess	1046+Saturday	1044+Colin	1044+bright	1044+Amanda	1044+Fraser	1043+babies	1043+army	1043+where'd	1042+warning	1042+miracle	1042+carrying	1041+flying	1039+Caleb	1039+blind	1039+queen	1038+ugly	1037+shopping	1037+hates	1036+someone's	1035+Seth	1035+monster	1034+sight	1033+vampire	1032+Rosanna	1031+bride	1031+coat	1030+account	1030+states	1029+clearly	1028+celebrate	1028+Nicole	1026+brilliant	1026+wanting	1024+Allison	1023+add	1023+moon	1022+Forrester	1022+lips	1021+custody	1020+center	1020+screwed	1019+buying	1019+size	1017+toast	1016+thoughts	1016+Isabella	1015+student	1012+stories	1011+however	1011+professional	1010+stars	1008+reality	1008+Jimmy	1008+birth	1008+Lexie	1007+attitude	1007+advantage	1007+grandfather	1006+Sami	1005+sold	1004+opened	1001+Lily	1001+grandma	1001+beg	1000+Edward	998+changes	998+Diego	997+Cole	997+someday	996+grade	996+cheese	996+roof	995+Kenny	995+Bobby	995+pizza	994+brothers	994+signed	993+bird	993+ahh	993+marrying	992+powerful	991+grown	991+grandmother	990+fake	990+opening	988+Sally	987+Stephanie	986+expected	986+eventually	985+must've	984+ideas	984+exciting	984+covered	984+Parker	983+de	983+familiar	981+bomb	981+'bout	980+television	979+harmony	978+color	978+heavy	977+schedule	976+records	976+dollar	976+capable	976+master	975+numbers	974+Toby	973+practically	973+including	973+correct	973+clue	973+forgotten	972+immediately	971+appointment	971+social	968+nature	968+deserves	965+west	961+Blake	961+teacher	960+threat	959+Frankie	959+bloody	957+lonely	956+Kelly	955+ordered	954+shame	953+Brittany	953+local	952+jacket	952+hook	952+destroyed	952+scary	951+loser	951+investigation	951+above	951+Jamal	950+invite	950+shooting	948+merry	948+port	947+precious	946+lesson	944+Roy	943+criminal	943+growing	941+caused	940+victim	939+professor	938+followed	937+funeral	936+nothing's	934+dean	934+considering	934+burning	934+couch	932+strength	930+harder	930+loss	929+view	928+Gia	928+beauty	926+sisters	925+everybody's	924+several	923+pushed	922+Nicholas	921+written	920+somebody's	920+shock	920+pushing	918+heat	917+chocolate	917+greatest	916+Holden	915+miserable	914+Corinthos	914+nightmare	913+energy	912+brings	912+Zander	911+character	911+became	911+famous	910+enemy	910+crash	910+chances	910+sending	909+recognize	909+healthy	907+boring	907+feed	906+engaged	906+Sarah	905+percent	904+headed	904+Brandon	904+lines	903+treated	902+purpose	901+north	901+knife	901+rights	900+drag	900+San	899+fan	899+badly	899+speed	898+Santa	898+hire	898+curious	898+paint	897+pardon	896+Jackson	896+built	896+behavior	896+closet	895+candy	895+Helena	893+warn	892+gorgeous	892+post	891+milk	891+survive	888+forced	887+daria	887+victoria	884+operation	884+suck	883+offered	882+hm	882+ends	882+dump	882+rent	881+marshall	881+remembered	880+lieutenant	880+trade	879+thanksgiving	879+rain	879+revenge	877+physical	877+available	877+program	876+prefer	876+baby's	875+spare	873+pray	873+disappeared	873+aside	873+statement	872+sometime	871+animal	871+sugar	870+Ricky	870+meat	870+fantastic	870+breathing	870+laughing	869+itself	869+tip	868+stood	868+market	868+Raul	866+affair	865+Stephen	862+ours	862+depends	862+cook	862+babe	862+main	861+woods	860+protecting	860+jury	859+Harley	859+national	857+brave	856+storm	855+large	854+prince	853+Jack's	853+interview	853+Daniel	852+roger	851+football	851+fingers	851+murdered	850+Stan	849+sexy	849+Julia	849+explanation	847+da	847+process	846+picking	846+based	846+style	845+stone	845+pieces	845+blah	845+assistant	845+stronger	844+block	844+aah	844+Newman	843+pie	842+handsome	842+unbelievable	841+anytime	841+nearly	840+Maureen	840+shake	839+everyone's	839+Oakdale	838+cars	838+wherever	837+serve	837+pulling	836+points	836+medicine	835+facts	833+waited	832+Pete	832+lousy	832+circumstances	832+stage	831+Lucas	831+disappointed	831+weak	830+trusted	830+license	830+nothin	829+community	829+trey	828+Jan	828+trash	827+understanding	826+slip	826+cab	826+Abby	826+sounded	824+awake	824+friendship	823+stomach	821+weapon	820+threatened	820+Don	820+mystery	818+Sean	817+official	816+Lee	816+dick	816+regular	813+Donna	813+river	812+Malcolm	812+Vegas	811+valley	811+understood	811+contract	811+bud	811+sexual	810+race	810+basically	810+switch	809+lake	809+frankly	809+issues	808+cheap	808+lifetime	807+deny	807+painting	806+ear	806+clock	806+Baldwin	806+weight	805+garbage	805+why'd	803+tear	803+ears	803+dig	803+bullet	803+selling	802+setting	801+indeed	800+gus	800+changing	799+singing	798+tiny	797+particular	797+draw	797+decent	797+Susan	796+super	796+spring	796+santos	796+avoid	796+messed	795+united	794+filled	794+touched	792+score	792+people's	792+disappear	791+stranger	790+exact	790+pills	789+kicked	789+harm	789+recently	788+ma	788+snow	786+fortune	786+strike	785+pretending	784+raised	783+annie	783+slayer	782+monkey	782+insurance	782+fancy	782+Sydney	781+drove	781+cared	781+belongs	781+nights	780+shape	779+dogs	779+Lorelai	778+Jackie	778+base	777+Maggie	776+lift	776+Lewis	776+stock	775+Sonny's	775+fashion	775+freedom	774+timing	773+Johnny	773+guarantee	773+chest	773+bridge	773+woke	772+Tabitha	772+source	772+patients	772+theory	770+lisa	770+camp	770+original	769+juice	769+burned	769+access	769+watched	768+heading	767+selfish	766+oil	766+drinks	766+wise	765+Morgan	765+Ashley	765+failed	764+period	763+doll	763+committed	763+elevator	762+freeze	761+noise	760+exist	760+science	759+pair	759+edge	759+wasting	758+sat	757+player	757+ceremony	757+cartman	757+pig	756+uncomfortable	755+Ted	755+peg	755+guns	755+vacation	754+staring	754+files	753+bike	753+weather	752+name's	752+mostly	752+stress	751+Kristina	751+sucks	750+permission	750+arrived	750+thrown	749+possibility	749+faster	749+example	749+borrow	749+Casey	748+release	747+ate	747+notes	746+joy	746+hoo	746+library	745+junior	745+property	744+negative	744+fabulous	744+event	743+doors	743+screaming	742+vision	741+Nancy	741+member	741+bone	741+battle	741+Xander	738+Giles	738+safety	737+term	736+devil	736+what're	735+meal	735+fellow	734+asshole	734+apology	734+anger	734+honeymoon	733+wet	732+bail	732+parking	731+non	730+hung	730+protection	727+manager	727+fixed	727+families	727+dawn	727+sports	726+Chinese	726+campaign	726+map	725+wash	724+stolen	724+sensitive	724+stealing	723+photo	722+chose	722+Russell	721+lets	721+comfort	721+worrying	720+whom	720+pocket	717+Mateo	717+bleeding	717+students	716+shoulder	716+ignore	716+fourth	716+neighborhood	715+FBI	715+talent	714+Spaulding	714+Carmen	714+tied	713+garage	713+dies	710+demons	710+travel	709+Diana	709+success	708+dumped	708+witches	707+training	707+rude	707+crack	707+model	706+bothering	706+radar	705+grew	704+willow	703+remain	703+soft	702+meantime	701+gimme	701+connected	700+chase	700+kinds	699+cast	699+cancer	699+Abe	699+sky	698+likely	698+Laurence	698+fate	698+buried	698+hug	697+brother's	697+driver	696+concentrate	696+throat	695+prom	695+messages	695+east	695+unit	694+intend	694+Hayward	694+Dan	694+crew	694+ashamed	694+somethin	693+midnight	692+manage	692+guilt	692+weapons	691+terms	691+interrupt	691+guts	690+tongue	689+distance	689+conference	689+treatment	688+shoe	688+Kane	688+basement	688+Alexandra	688+sentence	687+purse	687+Hilda	686+glasses	686+cabin	686+universe	685+towards	685+repeat	685+mirror	685+wound	684+Travers	684+Matthew	684+tall	683+reaction	683+odd	683+engagement	683+therapy	682+letters	682+emotional	682+runs	681+magazine	681+jeez	681+decisions	681+soup	680+daughter's	680+thrilled	679+Buchanan	679+society	677+managed	677+Dixie	677+sue	676+stake	676+rex	676+chef	676+moves	675+awesome	675+genius	674+extremely	674+entirely	674+tory	673+nasty	673+moments	673+expensive	673+counting	673+shots	672+kidnapped	672+square	671+Seattle	671+son's	670+London	670+cleaning	670+shift	669+plate	669+Zack	668+impressed	668+smells	667+trapped	666+male	666+tour	664+Aidan	664+knocked	663+charming	662+attractive	662+argue	662+Sunday	661+puts	661+whip	660+language	660+heck	660+embarrassed	660+settled	659+package	659+laid	659+animals	659+hitting	658+disease	658+bust	658+stairs	657+Lizzie	657+alarm	657+pure	656+nail	656+nerve	655+incredibly	655+hill	655+walks	654+lane	654+dirt	654+bond	654+stamp	653+sister's	653+becoming	652+terribly	651+friendly	651+easily	651+damned	651+jobs	650+suffering	649+disgusting	649+Washington	647+stopping	647+deliver	647+riding	646+helps	646+federal	646+disaster	646+bars	646+DNA	645+crossed	645+rate	644+create	644+trap	643+claim	643+Christine	643+California	643+talks	642+eggs	642+effect	642+chick	642+turkey	641+threatening	641+spoken	641+snake	641+introduce	641+rescue	640+confession	640+embarrassing	639+bags	639+lover	638+impression	638+gate	638+Kim	637+fantasy	637+year's	636+reputation	636+balls	636+attacked	636+among	635+knowledge	634+presents	633+inn	633+Europe	633+chat	632+suffer	631+Bryant	631+argument	631+talkin	630+crowd	630+Montgomery	628+homework	628+fought	628+coincidence	628+cancel	627+accepted	627+rip	626+pride	626+solve	625+hopefully	625+Walter	624+pounds	624+pine	624+mate	624+illegal	624+generous	624+Tommy	623+streets	623+Matt	623+director	623+glen	622+con	622+separate	621+outfit	621+maid	621+bath	621+punch	620+Phil	620+mayor	620+Helen	619+freaked	619+begging	619+recall	618+enjoying	618+bug	618+woman's	617+prepare	617+parts	616+wheel	615+signal	615+Nikki	615+direction	615+defend	615+signs	614+painful	614+Caroline	614+yourselves	613+walls	613+rat	613+Maris	613+amount	613+that'd	612+suspicious	612+hearts	612+flat	612+cooking	612+button	612+warned	611+sixty	611+pity	611+parties	611+crisis	611+Rae	610+coach	610+Abbott	610+row	609+baseball	609+yelling	608+leads	608+awhile	608+pen	607+confidence	607+offering	606+falls	606+carter	606+image	605+farm	605+pleased	604+panic	604+Monday	604+hers	604+gettin	604+smith	603+role	603+refuse	603+determined	603+Jane	602+hell's	602+grandpa	602+progress	601+Mexico	601+testify	600+passing	600+military	600+choices	600+artist	600+William	599+uhh	599+gym	599+cruel	599+wings	598+traffic	598+pink	598+bodies	598+mental	597+gentleman	597+coma	597+poison	596+cutting	596+Proteus	595+guests	595+girl's	595+expert	595+bull	595+benefit	595+bell	595+faces	594+cases	594+Mimi	592+ghost	592+led	591+jumped	591+Audrey	591+toilet	590+secretary	590+sneak	589+mix	589+Marty	589+Greta	589+firm	589+Halloween	588+Barry	588+agreement	588+privacy	587+dates	587+anniversary	587+smoking	586+reminds	586+pot	586+created	586+Wesley	585+twins	585+swing	585+successful	585+season	585+scream	585+considered	585+solid	584+options	584+flash	584+commitment	584+senior	583+ill	583+else's	583+crush	583+ambulance	583+wallet	582+Thomas	582+Logan	582+discovered	582+officially	581+gang	581+til	580+rise	580+reached	580+eleven	580+option	579+laundry	579+former	579+assure	579+stays	578+skip	578+hunt	578+fail	578+accused	578+wide	577+Robert	577+challenge	577+Snyder	576+popular	576+learning	576+discussion	576+clinic	576+plant	575+exchange	575+betrayed	575+bro	574+sticking	573+university	572+target	572+members	572+lower	572+bored	572+mansion	571+soda	570+silver	570+sheriff	570+suite	569+handled	569+busted	569+senator	568+Harold	568+load	567+happier	567+younger	566+studying	566+romance	566+procedure	566+ocean	566+section	565+Fred	565+winter	564+sec	563+commit	563+bones	563+assignment	563+suicide	562+spread	562+Quinn	562+minds	562+fishing	562+swim	561+ending	561+bat	561+yell	560+llanview	559+league	559+chasing	559+seats	558+proper	558+holiday	558+command	558+believes	558+humor	557+hopes	557+fifth	557+winning	556+solution	556+leader	556+yellow	555+Theresa's	555+sharp	555+sale	554+Randy	554+lawyers	554+giant	554+nor	553+material	553+latest	553+ash	553+highly	552+escaped	552+audience	552+winner	551+parent	551+burns	551+tricks	550+insist	550+dropping	550+cheer	550+medication	549+higher	549+flesh	549+district	549+wood	548+routine	548+Zelda	547+cookies	547+century	547+shared	546+sandwich	546+psycho	546+handed	546+false	546+beating	546+appear	546+adult	546+warrant	545+spike	545+garden	545+family's	545+awfully	545+odds	544+article	544+treating	543+thin	543+suggesting	543+Palmer	543+fever	543+female	543+sweat	542+silent	542+specific	541+clever	541+sweater	540+request	540+prize	540+mall	540+tries	539+mile	539+manning	539+fully	539+estate	539+diamond	539+union	538+sharing	538+Jamie	537+assuming	537+judgment	536+goodnight	536+divorced	536+quality	534+despite	534+Colby	534+surely	533+steps	533+jet	533+confess	533+Bart	533+mountain	532+math	532+listened	532+comin	532+answered	532+vulnerable	531+Boston	531+bless	531+dreaming	530+rooms	529+Claire	529+chip	529+zero	528+potential	528+pissed	528+Nate	528+kills	528+grant	528+wolf	527+tears	527+knees	527+chill	527+Carly's	527+blonde	527+brains	526+agency	526+Harvard	525+degree	525+unusual	524+wife's	523+joint	523+rob	522+packed	522+Mel	522+dreamed	522+cure	522+covering	522+newspaper	521+lookin	521+coast	521+grave	520+egg	519+direct	519+cheating	519+breaks	519+quarter	518+orange	518+mixed	518+locker	518+husband's	518+gifts	518+brand	518+awkward	518+toy	517+Thursday	517+rare	517+policy	517+pilar	517+kid's	517+joking	517+competition	517+classes	517+assumed	517+reasonable	516+dozen	516+curse	516+Quartermaine	515+millions	515+dessert	515+rolling	514+detail	514+alien	514+served	513+delicious	513+closing	513+vampires	512+released	512+Mackenzie	512+ancient	512+wore	511+value	510+tail	510+site	510+secure	510+salad	510+murderer	510+Margaret	510+hits	510+toward	509+spit	509+screen	509+pilot	509+penny	509+offense	509+dust	509+conscience	509+Carl	509+bread	509+answering	509+admitted	509+lame	508+invitation	508+hidden	508+grief	508+smiling	507+path	507+homer	507+destiny	507+del	507+stands	506+bowl	506+pregnancy	505+Laurie	505+Hollywood	505+co	505+prisoner	504+delivery	504+Jenny	503+guards	503+desire	503+virus	502+shrink	502+influence	502+freezing	502+concert	501+wreck	500+partners	500+Massimo	500+chain	500+birds	500+walker	499+life's	499+wire	498+technically	498+presence	498+blown	498+anxious	498+cave	497+version	496+mickey	495+holidays	495+cleared	495+wishes	494+survived	494+caring	494+candles	494+bound	494+related	493+Gabrielle	493+charm	493+apple	493+yup	492+Texas	492+pulse	492+jumping	492+jokes	491+frame	491+boom	491+vice	490+performance	490+occasion	490+silence	489+opera	489+opal	489+nonsense	489+Julie	489+frightened	489+downtown	489+Americans	489+Joshua	488+internet	488+Valerie	487+slipped	487+Lucinda	487+holly	487+duck	487+dimera	487+blowing	487+world's	486+session	486+relationships	486+kidnapping	486+England	486+actual	486+spin	484+classic	484+civil	484+tool	483+Roxy	483+packing	483+education	483+blaming	483+wrap	482+obsessed	482+fruit	482+torture	481+personality	481+location	481+loan	481+effort	481+daddy's	481+commander	481+trees	480+there'll	480+rocks	480+owner	480+fairy	480+banks	480+network	479+per	478+other's	478+necessarily	478+Louis	478+county	478+contest	478+chuck	478+seventy	477+print	477+motel	477+fallen	477+directly	477+underwear	476+grams	476+exhausted	476+believing	476+Thorne	475+particularly	475+freaking	475+carefully	475+trace	474+touching	474+messing	474+Hughes	474+committee	474+smooth	473+recovery	473+intention	473+enter	473+consequences	473+belt	473+standard	472+sacrifice	472+marina	472+courage	472+butter	472+officers	471+enjoyed	471+ad	471+lack	470+buck	470+attracted	470+appears	470+Spencer	469+bay	469+yard	468+returned	468+remove	468+nut	468+carried	468+today's	467+testimony	467+intense	467+granted	467+Alice	467+violence	466+Peggy	466+heal	466+defending	466+attempt	466+unfair	465+relieved	465+political	465+loyal	465+approach	465+slowly	464+plays	464+normally	464+buzz	464+alcohol	464+actor	464+surprises	463+psychiatrist	463+pre	463+plain	463+attic	463+who'd	462+uniform	462+terrified	462+sons	462+pet	462+Kristen	462+cleaned	462+Zach	461+threaten	461+teaching	461+mum	461+motion	461+fella	461+enemies	461+desert	461+collection	461+Roxanne	460+incident	460+failure	460+satisfied	459+imagination	459+hooked	459+headache	459+forgetting	459+counselor	459+Andie	459+acted	459+opposite	458+highest	458+gross	458+golden	458+equipment	458+badge	458+tennis	457+Italian	457+visiting	456+Tricia	456+studio	456+naturally	456+frozen	456+commissioner	456+sakes	455+Lorelei	455+labor	455+glory	455+appropriate	455+Africa	455+trunk	454+armed	454+twisted	453+thousands	453+received	453+dunno	453+costume	453+temporary	452+sixteen	452+impressive	452+zone	451+kitty	451+kicking	451+junk	451+hon	451+grabbed	451+France	451+unlike	450+understands	450+mercy	450+describe	450+Wayne	449+priest	449+Cordelia	449+clients	449+cable	449+owns	448+affect	448+witnesses	447+starving	447+Robbie	447+instincts	447+happily	447+discussing	447+deserved	447+strangers	446+leading	446+intelligence	446+host	446+authority	446+surveillance	445+cow	445+commercial	445+admire	445+Williams	444+Tuesday	444+shadow	444+questioning	444+fund	444+dragged	444+barn	444+object	443+Doug	443+deeply	443+amp	443+wrapped	442+wasted	442+Vega	442+tense	442+sport	442+route	442+reports	442+Reese	442+plastic	442+hoped	442+fellas	442+election	442+roommate	441+pierce	441+mortal	441+fascinating	441+chosen	441+stops	440+shown	440+arranged	440+Arnold	440+abandoned	440+sides	439+delivered	439+china	439+becomes	439+arrangements	439+agenda	439+Linda	438+hunting	438+began	438+theater	437+series	437+literally	436+propose	435+Howard	435+honesty	435+basketball	435+underneath	434+forces	434+soldier	433+services	433+sauce	433+review	433+promises	433+Oz	433+lecture	433+Greg	433+eighty	433+brandy	433+bills	433+Bauer	433+windows	432+torn	432+shocked	432+relief	432+Nathan	432+Jones	432+horses	432+golf	432+Florida	432+explained	432+counter	432+Niki	431+Lauren	431+design	431+circle	431+victims	430+transfer	430+Stanley	430+response	430+channel	430+backup	430+identity	429+differently	429+campus	429+spy	428+ninety	428+interests	428+guide	428+Emma	428+Elliot	428+deck	428+biological	428+Vince	427+SD	427+pheebs	427+minor	427+ease	427+creep	427+Will's	426+waitress	426+skills	426+Bobbie	426+telephone	425+photos	425+Keith	425+Catalina	425+ripped	424+raising	424+scratch	423+rings	423+prints	423+flower	423+wave	422+thee	422+arguing	422+royal	421+laws	421+figures	421+Ephram	421+Ellison	421+asks	421+writer	420+reception	420+pin	420+oops	420+diner	420+annoying	420+agents	420+taggert	419+goal	419+council	419+mass	418+ability	418+sergeant	417+Julian's	417+international	417+id	417+Gina	417+gig	417+Davidson	417+blast	417+basic	417+wing	416+tradition	416+towel	416+Steven	416+Jenkins	416+earned	416+clown	416+rub	415+president's	415+habit	415+customers	415+creature	415+counts	415+Bermuda	415+actions	415+snap	414+Roman	414+react	414+prime	414+paranoid	414+pace	414+wha	413+Romeo	413+handling	413+eaten	413+dahlia	413+therapist	412+comment	412+charged	412+tax	411+sink	411+reporter	411+nurses	411+beats	411+priority	410+Johnson	410+interrupting	410+gain	410+fed	410+Bennett	410+warehouse	409+virgin	409+shy	409+pattern	409+loyalty	409+inspector	409+events	409+candle	409+pleasant	408+media	408+excuses	408+duke	408+castle	408+threats	407+Samantha	407+permanent	407+guessing	407+financial	407+demand	407+Darla	407+basket	407+assault	407+Ali	407+tend	406+praying	406+motive	406+los	405+unconscious	404+trained	404+Stuart	404+Ralph	404+museum	404+Betty	404+alley	404+tracks	403+swimming	403+range	403+nap	403+mysterious	403+unhappy	402+tone	402+switched	402+Rappaport	402+Nina	402+liberty	402+bang	402+award	402+Sookie	401+neighbor	401+loaded	401+gut	401+Cooper	401+childhood	401+causing	401+swore	400+sample	400+piss	400+hundreds	400+balance	400+background	400+toss	399+mob	399+misery	399+central	399+boots	399+Valentine's	398+thief	398+squeeze	398+potter	398+lobby	398+hah	398+goa'uld	398+geez	398+exercise	398+ego	398+drama	398+Al's	398+patience	397+noble	397+Katherine	397+Isabel	397+indian	397+forth	397+facing	397+engine	397+booked	397+boo	397+un	396+songs	396+Sandburg	396+poker	396+eighteen	396+d'you	396+cookie	396+bury	396+perform	395+Hayley	395+everyday	395+digging	395+Davis	395+creepy	395+compared	395+wondered	394+trail	394+saint	394+rotten	394+liver	394+hmmm	394+drawn	394+device	394+whore	393+ta	393+magical	393+Bruce	393+village	392+march	392+journey	392+fits	392+discussed	392+zombie	391+supply	391+moral	391+helpful	391+attached	391+Timmy's	390+slut	390+searching	390+flew	390+depressed	390+aliens	390+aisle	390+underground	389+pro	389+drew	389+daughters	389+cris	389+amen	389+vows	388+proposal	388+pit	388+neighbors	388+darn	388+clay	388+cents	388+arrange	388+annulment	388+uses	387+useless	387+squad	387+represent	387+product	387+joined	387+afterwards	387+adventure	387+resist	386+protected	386+net	386+Marlena	386+fourteen	386+celebrating	386+Benny	386+piano	385+inch	385+flag	385+debt	385+darkness	385+violent	384+tag	384+sand	384+gum	384+dammit	384+teal'c	383+strip	383+Norman	383+hip	383+celebration	383+below	383+reminded	382+palace	382+claims	382+tonight's	381+replace	381+phones	381+paperwork	381+mighty	381+Lloyd	381+emotions	381+Andrew	381+typical	380+stubborn	380+stable	380+Sheridan's	380+pound	380+pillow	380+papa	380+mature	380+lap	380+designed	380+current	380+Canada	380+bum	380+tension	379+tank	379+suffered	379+stroke	379+steady	379+provide	379+overnight	379+meanwhile	379+chips	379+beef	379+wins	378+suits	378+carol	378+boxes	378+salt	377+el	377+Cassadine	377+express	376+collect	376+boy's	376+ba	376+tragedy	375+therefore	375+spoil	375+Libby	375+realm	374+profile	374+degrees	374+wipe	373+Wilson	373+surgeon	373+stretch	373+stepped	373+nephew	373+neat	373+limo	373+fox	373+confident	373+anti	373+victory	372+perspective	372+designer	371+climb	371+angels	371+title	370+suggested	370+punishment	370+finest	370+Ethan's	370+Stefan	369+Springfield	369+occurred	369+hint	369+furniture	369+blanket	369+twist	368+trigger	368+surrounded	368+surface	368+proceed	368+lip	368+jersey	368+fries	368+worries	367+refused	367+niece	367+handy	367+gloves	367+soap	366+signature	366+disappoint	366+crawl	366+convicted	366+zoo	365+result	365+pages	365+lit	365+flip	365+counsel	365+cheers	365+doubts	364+crimes	364+accusing	364+when's	363+shaking	363+remembering	363+phase	363+kit	363+hallway	363+halfway	363+bothered	363+useful	362+Sid	362+popcorn	362+makeup	362+madam	362+Louise	362+Jean	362+gather	362+cowboy	362+concerns	362+CIA	362+cameras	362+blackmail	362+Winnie	361+symptoms	361+rope	361+Patrick	361+ordinary	361+imagined	361+concept	361+cigarette	361+barb	361+supportive	360+memorial	360+Japanese	360+explosion	360+Coleman	360+Bundy	360+yay	359+woo	359+trauma	359+Russian	359+ouch	359+Leo's	359+furious	359+cheat	359+avoiding	359+whew	358+thick	358+oooh	358+boarding	358+approve	358+urgent	357+shhh	357+misunderstanding	357+minister	357+Ellen	357+drawer	357+sin	356+phony	356+joining	356+jam	356+interfere	356+governor	356+Eden	356+chapter	356+catching	356+bargain	356+warren	355+tragic	355+schools	355+respond	355+punish	355+penthouse	355+hop	355+angle	355+thou	354+sherry	354+remains	354+rach	354+ohhh	354+insult	354+doctor's	354+bugs	354+beside	354+begged	354+absolute	354+strictly	353+Stefano	353+socks	353+senses	353+British	353+ups	352+sneaking	352+Sheila	352+yah	351+worthy	351+Val	351+serving	351+reward	351+polite	351+checks	351+tale	350+physically	350+instructions	350+fooled	350+blows	350+tabby	349+internal	349+bitter	349+adorable	349+y'all	348+tested	348+suggestion	348+string	348+mouse	348+marks	348+jewelry	348+debate	348+com	348+alike	348+pitch	347+Lou	347+jacks	347+fax	347+distracted	347+shelter	346+lovers	346+lessons	346+hart	346+goose	346+foreign	346+escort	346+average	346+twin	345+testing	345+friend's	345+damnit	345+constable	345+circus	345+Berg	345+audition	345+tune	344+shoulders	344+mud	344+mask	344+helpless	344+feeding	344+explains	344+dated	344+sucked	343+robbery	343+objection	343+kirk	343+Kennedy	343+Collins	343+Christina	343+behave	343+valuable	342+Simpson	342+shadows	342+Marcy	342+Gary	342+creative	342+courtroom	342+confusing	342+beast	342+tub	341+talented	341+struck	341+smarter	341+mistaken	341+Italy	341+customer	341+bizarre	341+scaring	340+punk	340+holds	340+focused	340+Angeles	340+alert	340+activity	340+vecchio	339+sticks	339+singer	339+reverend	339+highway	339+Francisco	339+foolish	339+compliment	339+blessed	339+bastards	339+attend	339+scheme	338+Joanna	338+Marissa	337+Canadian	337+aid	337+worker	336+wheelchair	336+protective	336+poetry	336+gentle	336+script	335+reverse	335+picnic	335+knee	335+intended	335+construction	335+cage	335+wives	334+Wednesday	334+voices	334+toes	334+stink	334+scares	334+pour	334+effects	334+cheated	334+tower	333+time's	333+slide	333+ruining	333+recent	333+jewish	333+Jesse	333+filling	333+exit	333+cruise	333+cottage	333+corporate	333+cats	333+upside	332+supplies	332+proves	332+parked	332+Jo	332+instance	332+grounds	332+German	332+diary	332+complaining	332+basis	332+wounded	331+thing's	331+politics	331+Hawaii	331+confessed	331+wicked	330+pipe	330+merely	330+massage	330+data	330+colors	330+chop	330+budget	330+brief	330+Tina	329+spill	329+prayer	329+costs	329+chicks	329+betray	329+begins	329+arrangement	329+waiter	328+sucker	328+scam	328+rats	328+Leslie	328+fraud	328+flu	328+brush	328+anyone's	328+adopted	328+tables	327+sympathy	327+pill	327+pee	327+lean	327+filthy	327+cliff	327+burger	327+web	326+seventeen	326+landed	326+expression	326+entrance	326+employee	326+drawing	326+cap	326+bunny	326+bracelet	326+thirteen	325+scout	325+principal	325+pays	325+Jen's	325+fairly	325+facility	325+Dru	325+deeper	325+arrive	325+unique	324+tracking	324+spite	324+shed	324+recommend	324+oughta	324+nanny	324+naive	324+menu	324+grades	324+diet	324+corn	324+authorities	324+Walsh	323+separated	323+roses	323+patch	323+grey	323+dime	323+devastated	323+description	323+tap	322+subtle	322+include	322+Harris	322+garrison	322+citizen	322+bullets	322+beans	322+Ric	321+pile	321+metal	321+las	321+Kelso	321+executive	321+confirm	321+capital	321+adults	321+Traci	320+toe	320+strings	320+parade	320+harbor	320+charity's	320+bow	320+borrowed	320+booth	320+toys	319+straighten	319+steak	319+status	319+remote	319+premonition	319+poem	319+planted	319+honored	319+youth	318+specifically	318+meetings	318+Lopez	318+exam	318+daily	318+convenient	318+traveling	317+matches	317+laying	317+insisted	317+crystal	317+apply	317+units	316+technology	316+steel	316+muscle	316+Joel	316+dish	316+aitoro	316+sis	315+sales	315+Marie	315+legend	315+kindly	315+grandson	315+donor	315+wheels	314+temper	314+teenager	314+strategy	314+richard's	314+proven	314+mothers	314+monitor	314+iron	314+houses	314+eternity	314+denial	314+Dana	314+couples	314+backwards	314+tent	313+swell	313+noon	313+happiest	313+gotcha	313+episode	313+drives	313+bacon	313+thinkin	312+spirits	312+potion	312+holes	312+fence	312+dial	312+affairs	312+acts	312+whatsoever	311+ward	311+rehearsal	311+proved	311+overheard	311+nuclear	311+lemme	311+leather	311+hostage	311+hammer	311+faced	311+discover	311+constant	311+Catherine	311+bench	311+tryin	310+taxi	310+shove	310+sets	310+Reggie	310+moron	310+limits	310+Jeff	310+impress	310+gray	310+entitled	310+connect	310+pussy	309+needle	309+Megan	309+limit	309+lad	309+intelligent	309+instant	309+forms	309+disagree	309+tiger	308+stinks	308+Rianna	308+recover	308+Paul's	308+Louie	308+losers	308+groom	308+gesture	308+developed	308+constantly	308+blocks	308+bartender	308+tunnel	307+suspects	307+sealed	307+removed	307+paradise	307+legally	307+illness	307+hears	307+dresses	307+aye	307+vehicle	306+thy	306+teachers	306+sheet	306+receive	306+psychic	306+night's	306+Melissa	306+denied	306+teenage	305+Sierra	305+rabbit	305+puppy	305+Patty	305+knocking	305+judging	305+bible	305+behalf	305+accidentally	305+waking	304+ton	304+superior	304+slack	304+seek	304+rumor	304+Natalie's	304+manners	304+homeless	304+hollow	304+hills	304+Gordon	304+desperately	304+critical	304+coward	304+Winslow	303+theme	303+tapes	303+sheets	303+referring	303+personnel	303+Perkins	303+ol	303+Maxie	303+item	303+Genoa	303+gear	303+du	303+majesty	302+forest	302+fans	302+exposed	302+cried	302+tons	301+spells	301+producer	301+launch	301+jay	301+instinct	301+extreme	301+belief	301+quote	300+motorcycle	300+convincing	300+appeal	300+advance	300+greater	299+fashioned	299+empire	299+aids	299+accomplished	299+ye	298+Tammy	298+Noah	298+mommy's	298+grip	298+bump	298+Wallace	297+upsetting	297+soldiers	297+scheduled	297+production	297+needing	297+Maddie	297+invisible	297+forgiveness	297+feds	297+complex	297+compare	297+cloud	297+champion	297+bothers	297+blank	297+treasure	296+tooth	296+territory	296+sacred	296+Mon	296+Jessica's	296+inviting	296+inner	296+earn	296+compromise	296+cocktail	296+tramp	295+temperature	295+signing	295+messenger	295+landing	295+jabot	295+intimate	295+dignity	295+dealt	295+souls	294+root	294+Nicky	294+informed	294+gods	294+Felicia	294+entertainment	294+dressing	294+cigarettes	294+blessing	294+billion	294+Alistair	294+upper	293+Marge	293+manner	293+lightning	293+leak	293+heaven's	293+fond	293+Corky	293+Atlantic	293+alternative	293+seduce	292+players	292+operate	292+modern	292+liquor	292+June	292+Janine	292+fingerprints	292+enchantment	292+butters	292+stuffed	291+Stavros	291+Rome	291+Murphy	291+filed	291+emotionally	291+division	291+conditions	291+Cameron	291+uhm	290+transplant	290+tips	290+Shayne	290+powder	290+passes	290+oxygen	290+nicely	290+Macy	290+lunatic	290+hid	290+drill	290+designs	290+complain	290+announcement	290+visitors	289+unfortunate	289+slap	289+pumpkin	289+prayers	289+plug	289+organization	289+opens	289+oath	289+O'Neill	289+mutual	289+hockey	289+graduate	289+confirmed	289+broad	289+yacht	288+spa	288+remembers	288+horn	288+fried	288+extraordinary	288+bait	288+appearance	288+Angela	288+abuse	288+Warton	287+sworn	287+stare	287+Sal	287+safely	287+reunion	287+plot	287+Nigel	287+burst	287+aha	287+might've	286+Frederick	286+experiment	286+experienced	286+dive	286+commission	286+chaos	286+cells	286+aboard	286+returning	285+lesbian	285+independent	285+expose	285+environment	285+buddies	285+trusting	284+spider	284+smaller	284+mountains	284+Mandy	284+Jessie	284+booze	284+tattoo	283+sweep	283+sore	283+scudder	283+Reynolds	283+properly	283+parole	283+Manhattan	283+effective	283+ditch	283+decides	283+canceled	283+bulldog	283+bra	283+Antonio's	283+speaks	282+Spanish	282+rubber	282+reaching	282+glow	282+foundation	282+women's	281+wears	281+thirsty	281+Stewart	281+skull	281+Sidney	281+scotch	281+ringing	281+dorm	281+dining	281+Carla	281+bend	281+unexpected	280+systems	280+sob	280+pat	280+pancakes	280+Michael's	280+harsh	280+flattered	280+existence	280+ahhh	280+troubles	279+proposed	279+fights	279+favourite	279+eats	279+driven	279+computers	279+chin	279+bravo	279+seal	278+rage	278+Luke's	278+causes	278+bubble	278+border	278+undercover	277+spoiled	277+Sloane	277+shine	277+rug	277+identify	277+destroying	277+deputy	277+deliberately	277+conspiracy	277+clothing	277+thoughtful	276+similar	276+sandwiches	276+plates	276+nails	276+miracles	276+investment	276+fridge	276+drank	276+contrary	276+beloved	276+Alonzo	276+allergic	276+washed	275+stalking	275+solved	275+sack	275+misses	275+hope's	275+forgiven	275+erica's	275+earl	275+cuz	275+bent	275+approval	275+practical	274+organized	274+Norma	274+MacIver	274+jungle	274+involve	274+industry	274+fuel	274+dragging	274+dancer	274+cotton	274+cooked	274+Weston	273+Renee	273+possession	273+pointing	273+foul	273+editor	273+dull	273+Clark	273+beneath	273+ages	273+SI	272+peanut	272+horror	272+heels	272+grass	272+faking	272+deaf	272+Billie	272+stunt	271+portrait	271+painted	271+July	271+jealousy	271+hopeless	271+fears	271+cuts	271+conclusion	271+volunteer	270+sword	270+scenario	270+satellite	270+Rosie	270+Riley	270+necklace	270+men's	270+Evans	270+crashed	270+Christopher	270+chapel	270+accuse	270+teddy	269+restraining	269+naughty	269+Jason's	269+humans	269+homicide	269+helicopter	269+formal	269+Fitzgerald	269+firing	269+shortly	268+safer	268+missy	268+diamonds	268+devoted	268+auction	268+videotape	267+tore	267+stores	267+reservations	267+pops	267+Joseph	267+ew	267+Arthur	267+appetite	267+anybody's	267+wounds	266+vanquish	266+symbol	266+prevent	266+patrol	266+Jordan	266+ironic	266+flow	266+fathers	266+excitement	266+anyhow	266+tearing	265+sends	265+sam's	265+rape	265+lo	265+laughed	265+function	265+core	265+charmed	265+carpet	265+bowling	265+belly	265+whatever's	264+sub	264+shark	264+Scotty	264+Miller	264+Miami	264+Lucy's	264+Jefferson	264+dealer	264+cooperate	264+bachelor	264+Anne	264+accomplish	264+wakes	263+struggle	263+spotted	263+sorts	263+Rico	263+reservation	263+fort	263+coke	263+ashes	263+yards	262+votes	262+tastes	262+supposedly	262+Marcus	262+loft	262+intentions	262+integrity	262+wished	261+Wendy	261+towels	261+suspected	261+slightly	261+qualified	261+profit	261+log	261+Lenny	261+Java	261+investigating	261+inappropriate	261+immediate	261+ginger	261+companies	261+backed	261+sunset	260+pan	260+pa	260+owned	260+nation	260+lipstick	260+lawn	260+compassion	260+cafeteria	260+belonged	260+affected	260+scarf	259+precisely	259+obsession	259+management	259+loses	259+lighten	259+Jake's	259+infection	259+granddaughter	259+explode	259+chemistry	259+balcony	259+this'll	258+storage	258+spying	258+publicity	258+exists	258+employees	258+depend	258+Cynthia	258+cue	258+cracked	258+conscious	258+aww	258+Anya	258+ally	258+ace	258+accounts	258+absurd	258+vicious	257+tools	257+strongly	257+rap	257+potato	257+invented	257+hood	257+forbid	257+directions	257+defendant	257+bare	257+announce	257+Alcazar's	257+screwing	256+samples	256+salesman	256+rounds	256+robbed	256+leap	256+lakeview	256+Ken	256+insanity	256+injury	256+genetic	256+freaks	256+fighter	256+document	256+burden	256+why's	255+swallow	255+slave	255+reveal	255+religious	255+possibilities	255+martini	255+kidnap	255+gown	255+entering	255+Donny	255+chairs	255+wishing	254+statue	254+stalker	254+setup	254+serial	254+sandy	254+punished	254+Mikey	254+Gilmore	254+dramatic	254+dismissed	254+criminals	254+carver	254+blade	254+seventh	253+regrets	253+raped	253+quarters	253+produce	253+pony	253+Oliver	253+lamp	253+dentist	253+anyways	253+anonymous	253+added	253+tech	252+semester	252+risks	252+regarding	252+owes	252+magazines	252+machines	252+lungs	252+explaining	252+delicate	252+Delia	252+child's	252+tricked	251+oldest	251+Liv	251+eager	251+doomed	251+coffin	251+click	251+cafe	251+buttons	251+bureau	251+adoption	251+Wes	250+Tyler	250+traditional	250+surrender	250+stones	250+stab	250+sickness	250+scum	250+Oswald	250+loop	250+independence	250+generation	250+floating	250+envelope	250+entered	250+combination	250+chamber	250+casino	250+worn	249+vault	249+sunshine	249+sorel	249+pretended	249+potatoes	249+plea	249+photograph	249+petty	249+payback	249+misunderstood	249+kiddo	249+healing	249+Franklin	249+Derek	249+cascade	249+capeside	249+Buster	249+application	249+stabbed	248+remarkable	248+random	248+guitar	248+frog	248+cabinet	248+brat	248+wrestling	247+Willie	247+sixth	247+scale	247+privilege	247+pencil	247+passionate	247+nerves	247+lawsuit	247+kidney	247+disturbed	247+crossing	247+cozy	247+avatar	247+associate	247+tire	246+shirts	246+Sara	246+required	246+posted	246+oven	246+ordering	246+mill	246+journal	246+gallery	246+delay	246+clubs	246+risky	245+purple	245+nest	245+monsters	245+honorable	245+grounded	245+gene	245+favour	245+electric	245+Doyle	245+culture	245+closest	245+Brenda's	245+breast	245+breakdown	245+attempted	245+Tony's	244+placed	244+Martha	244+India	244+Dallas	244+conflict	244+bald	244+Anthony	244+actress	244+abandon	244+wisdom	243+steam	243+scar	243+pole	243+duh	243+collar	243+CD	243+worthless	242+warlock	242+sucking	242+standards	242+resources	242+photographs	242+introduced	242+injured	242+graduation	242+enormous	242+Dixon	242+disturbing	242+disturb	242+distract	242+deals	242+conclusions	242+baker	242+vodka	241+situations	241+require	241+Ramsey	241+muffin	241+mid	241+measure	241+le	241+Jeffrey	241+dishes	241+crawling	241+congress	241+children's	241+briefcase	241+Albert	241+wiped	240+whistle	240+sits	240+roast	240+rented	240+pigs	240+penis	240+massive	240+link	240+Greek	240+flirting	240+existed	240+deposit	240+damaged	240+bottles	240+Vanessa's	239+unknown	239+types	239+topic	239+robin	239+riot	239+overreacting	239+minimum	239+logical	239+impact	239+hostile	239+embarrass	239+casual	239+beacon	239+amusing	239+altar	239+values	238+ultimate	238+skinny	238+recognized	238+maintain	238+goods	238+covers	238+Claus	238+battery	238+survival	237+Spellman	237+skirt	237+shave	237+prisoners	237+porch	237+med	237+ghosts	237+favors	237+drops	237+dizzy	237+chili	237+breasts	237+Benjamin	237+begun	237+beaten	237+advise	237+transferred	236+strikes	236+rehab	236+raw	236+photographer	236+peaceful	236+leery	236+kraft	236+Houston	236+hooker	236+heavens	236+fortunately	236+fooling	236+expectations	236+draft	236+citizens	236+cigar	236+active	236+weakness	235+Vincent	235+ski	235+ships	235+ranch	235+practicing	235+musical	235+movement	235+Lynne	235+individual	235+homes	235+executed	235+examine	235+documents	235+cranes	235+column	235+bribe	235+beers	235+task	234+species	234+sail	234+rum	234+resort	234+rash	234+prescription	234+operating	234+Munson	234+Mars	234+hush	234+fuzzy	234+fragile	234+forensics	234+expense	234+drugged	234+differences	234+cows	234+conduct	234+comic	234+bingo	234+bells	234+Bebe	234+avenue	234+attacking	234+assigned	234+visitor	233+suitcase	233+sources	233+sorta	233+scan	233+rod	233+payment	233+op	233+motor	233+mini	233+manticore	233+inspired	233+insecure	233+imagining	233+hardest	233+gamble	233+Donald	233+clerk	233+yea	232+wrist	232+what'll	232+tube	232+starters	232+silk	232+pump	232+pale	232+nicer	232+haul	232+guardian	232+flies	232+dodge	232+demands	232+boot	232+arts	232+African	232+Truman	231+thumb	231+there'd	231+limited	231+lighter	231+Karl	231+how're	231+elders	231+Connie	231+connections	231+shooter	230+quietly	230+pulls	230+lion	230+Janet	230+idiots	230+factor	230+erase	230+denying	230+Cox	230+attacks	230+ankle	230+amnesia	230+accepting	230+Ruby	229+ooo	229+hunter	229+heartbeat	229+gal	229+fry	229+Devane	229+Cummings	229+confront	229+backing	229+Ann	229+register	228+phrase	228+operations	228+minus	228+meets	228+legitimate	228+hurricane	228+fixing	228+communication	228+Cindy	228+bucket	228+boats	228+auto	228+arrogant	228+Vicki	227+tuna	227+supper	227+studies	227+slightest	227+sins	227+sayin	227+recipe	227+pier	227+paternity	227+mason	227+lamb	227+kisses	227+humiliating	227+genuine	227+catholic	227+Webber	226+snack	226+rational	226+pointed	226+passport	226+minded	226+Latin	226+Jeremy	226+guessed	226+Grace's	226+display	226+dip	226+Brooke's	226+advanced	226+weddings	225+unh	225+tumor	225+teams	225+reported	225+marco	225+Ida	225+humiliated	225+hee	225+destruction	225+copies	225+closely	225+Carlos	225+bid	225+banana	225+august	225+aspirin	225+academy	225+wig	224+Turk	224+throughout	224+spray	224+picks	224+occur	224+logic	224+knight	224+Grissom	224+fields	224+eyed	224+equal	224+drowning	224+contacts	224+Shakespeare	223+ritual	223+perfume	223+Mitzi	223+Madison	223+Kelly's	223+hiring	223+hating	223+ham	223+generally	223+fusion	223+error	223+elected	223+docks	223+creatures	223+Becky	223+visions	222+thanking	222+thankful	222+sock	222+replaced	222+reed	222+Noel	222+nineteen	222+nick's	222+fork	222+comedy	222+analysis	222+Yale	221+throws	221+teenagers	221+studied	221+stressed	221+slice	221+shore	221+rolls	221+requires	221+plead	221+palm	221+ladder	221+kicks	221+jr	221+Irish	221+ford	221+detectives	221+assured	221+Alison's	221+widow	220+tomorrow's	220+tissue	220+tellin	220+shallow	220+responsibilities	220+repay	220+rejected	220+permanently	220+howdy	220+hack	220+girlfriends	220+deadly	220+comforting	220+ceiling	220+bonus	220+Anderson	220+verdict	219+maintenance	219+jar	219+insensitive	219+heather	219+factory	219+aim	219+triple	218+spilled	218+Ruth	218+respected	218+recovered	218+messy	218+interrupted	218+Halliwell	218+entry	218+car's	218+blond	218+bleed	218+benefits	218+wardrobe	217+Tenney	217+takin	217+significant	217+objective	217+murders	217+foster	217+doo	217+ding	217+Clyde	217+chart	217+backs	217+airplane	217+workers	216+waves	216+underestimate	216+ties	216+soccer	216+registered	216+multiple	216+Miranda	216+justify	216+harmless	216+frustrated	216+fold	216+Enzo	216+Dante	216+convention	216+communicate	216+bugging	216+attraction	216+arson	216+whack	215+Wade	215+tits	215+salary	215+rumors	215+residence	215+party's	215+obligation	215+medium	215+liking	215+Laura's	215+development	215+develop	215+dearest	215+David's	215+Danny's	215+congratulate	215+April	215+alliance	215+vengeance	214+Switzerland	214+severe	214+rack	214+puzzle	214+puerto	214+guidance	214+fires	214+dickie	214+courtesy	214+caller	214+bounce	214+blamed	214+wizard	213+tops	213+Terrance	213+sh	213+repair	213+quiz	213+prep	213+now's	213+involves	213+headquarters	213+curiosity	213+codes	213+circles	213+bears	213+barbecue	213+troops	212+Susie	212+Sunnydale	212+spinning	212+scores	212+pursue	212+psychotic	212+Mexican	212+groups	212+Denver	212+cough	212+claimed	212+Brooklyn	212+accusations	212+shares	211+rushing	211+resent	211+money's	211+laughs	211+gathered	211+freshman	211+envy	211+drown	211+Cristian's	211+chemical	211+branch	211+Bartlet	211+asses	211+Virginia	210+sofa	210+scientist	210+poster	210+Murdock	210+models	210+McKinnon	210+islands	210+highness	210+drain	210+dock	210+cha	210+apologies	210+welfare	209+victor's	209+theirs	209+stat	209+stall	209+spots	209+somewhat	209+solo	209+Ryan's	209+realizes	209+psych	209+mmmm	209+Lois	209+jazz	209+hawk	209+fools	209+finishing	209+Connor	209+beard	209+album	209+wee	208+understandable	208+unable	208+treats	208+theatre	208+succeed	208+stir	208+Sammy	208+relaxed	208+makin	208+inches	208+gratitude	208+faithful	208+Dennis	208+bin	208+accent	208+zip	207+witter	207+wandering	207+shell	207+Shane	207+regardless	207+racing	207+que	207+Maurice	207+locate	207+inevitable	207+griffin	207+Gretel	207+Ellie	207+deed	207+Debbie	207+crushed	207+controlling	207+western	206+taxes	206+Tara	206+smelled	206+sheep	206+settlement	206+rocky	206+robe	206+retired	206+poet	206+opposed	206+marked	206+Hannibal	206+Greenlee's	206+gossip	206+gambling	206+determine	206+Cuba	206+cosmetics	206+cent	206+accidents	206+tricky	205+surprising	205+stiff	205+sincere	205+shield	205+rushed	205+rice	205+resume	205+reporting	205+refrigerator	205+reference	205+preparing	205+nightmares	205+mijo	205+ignoring	205+hunch	205+fog	205+fireworks	205+drowned	205+crown	205+cooperation	205+brass	205+accurate	205+whispering	204+Stevens	204+Stella	204+sophisticated	204+Ron	204+religion	204+luggage	204+lemon	204+investigate	204+hike	204+explore	204+emotion	204+dragon	204+creek	204+crashing	204+contacted	204+complications	204+cherry	204+CEO	204+Bruno	204+acid	204+shining	203+Russia	203+rolled	203+righteous	203+reconsider	203+Jonathan	203+inspiration	203+goody	203+geek	203+frightening	203+festival	203+ethics	203+creeps	203+courthouse	203+camping	203+assistance	203+affection	203+vow	202+Smythe	202+protest	202+lodge	202+haircut	202+forcing	202+eternal	202+essay	202+chairman	202+Batman	202+baked	202+apologized	202+vibe	201+stud	201+stargate	201+sailor	201+respects	201+receipt	201+operator	201+mami	201+Lindsey	201+Kathy	201+includes	201+hats	201+goat	201+exclusive	201+destructive	201+define	201+defeat	201+cheek	201+adore	201+adopt	201+warrior	200+voted	200+tracked	200+Sloan	200+signals	200+shorts	200+Rory's	200+reminding	200+relative	200+pond	200+ninth	200+Lester	200+Harper	200+floors	200+dough	200+creations	200+continues	200+cancelled	200+Cabot	200+barrel	200+Adam's	200+tuck	199+snuck	199+slight	199+reporters	199+rear	199+pressing	199+Pacific	199+novel	199+newspapers	199+magnificent	199+madame	199+Lincoln	199+lick	199+lazy	199+goddess	199+glorious	199+fiancee	199+candidate	199+brick	199+Boyd	199+bits	199+Australia	199+activities	199+visitation	198+teen	198+scholarship	198+sane	198+previous	198+Michigan	198+kingdom	198+kindness	198+Ivy's	198+im	198+flames	198+sunny	197+shoulda	197+Robinson	197+rescued	197+mattress	197+Maria's	197+lounge	197+lobster	197+lifted	197+label	197+importantly	197+glove	197+enterprises	197+driver's	197+disappointment	197+condo	197+cemetery	197+beings	197+admitting	197+yelled	196+waving	196+spoon	196+screech	196+satisfaction	196+requested	196+reads	196+plants	196+nun	196+navy	196+nailed	196+Hannah	196+Elvis	196+elephant	196+described	196+dedicated	196+Christian	196+certificate	196+centuries	196+annual	196+worm	195+tick	195+resting	195+primary	195+polish	195+monkeys	195+marvelous	195+fuss	195+funds	195+defensive	195+Cortlandt	195+compete	195+chased	195+bush	195+balloon	195+Alexander	195+sailing	194+provided	194+pockets	194+Lilith	194+luckily	194+Lila	194+Hattie	194+filing	194+depression	194+conversations	194+consideration	194+consciousness	194+worlds	193+Joyce	193+innocence	193+indicate	193+grandmother's	193+Gail	193+freaky	193+forehead	193+Foley	193+bam	193+appeared	193+aggressive	193+trailer	192+summers	192+slam	192+Seinfeld	192+retirement	192+quitting	192+pry	192+porn	192+person's	192+narrow	192+levels	192+Kay's	192+inform	192+fee	192+Eugene	192+encourage	192+dug	192+delighted	192+daylight	192+danced	192+currently	192+confidential	192+chew	192+Billy's	192+Ben's	192+aunts	192+washing	191+warden	191+Vic	191+tossed	191+temple	191+spectra	191+Rick's	191+permit	191+mistress	191+marrow	191+lined	191+implying	191+hatred	191+grill	191+formula	191+Esther	191+en	191+efforts	191+corpse	191+clues	191+Wally	190+sober	190+relatives	190+promotion	190+peel	190+offended	190+morgue	190+larger	190+Jude	190+infected	190+humanity	190+eww	190+Emily's	190+electricity	190+electrical	190+distraction	190+chopper	190+cart	190+broadcast	190+wired	189+violation	189+ve	189+suspended	189+sting	189+promising	189+harassment	189+glue	189+gathering	189+deer	189+d'angelo	189+cursed	189+controlled	189+content	189+combat	189+calendar	189+brutal	189+bing	189+Bette	189+assets	189+warlocks	188+wagon	188+Vietnam	188+unpleasant	188+tan	188+Stacy	188+Shirley	188+robot	188+Roberts	188+proving	188+priorities	188+pepper	188+observation	188+mustn't	188+lease	188+killers	188+grows	188+flame	188+domestic	188+divine	188+disappearance	188+depressing	188+thrill	187+terminal	187+sitter	187+ribs	187+offers	187+naw	187+Morris	187+Judy	187+flush	187+exception	187+earrings	187+deadline	187+corporal	187+collapsed	187+update	186+snapped	186+smack	186+Orleans	186+offices	186+melt	186+madness	186+Indians	186+figuring	186+eagle	186+delusional	186+coulda	186+burnt	186+actors	186+trips	185+tender	185+sperm	185+specialist	185+scientific	185+satan	185+realise	185+pork	185+popped	185+planes	185+Kev	185+interrogation	185+institution	185+included	185+gates	185+esteem	185+Dorothy	185+communications	185+choosing	185+choir	185+undo	184+pres	184+prayed	184+plague	184+manipulate	184+lifestyle	184+lance	184+insulting	184+honour	184+detention	184+delightful	184+daisy	184+coffeehouse	184+chess	184+betrayal	184+apologizing	184+adjust	184+wrecked	183+wont	183+whipped	183+rides	183+reminder	183+psychological	183+principle	183+monsieur	183+injuries	183+fame	183+faint	183+confusion	183+clouds	183+Christ's	183+bon	183+bake	183+Teri	182+sang	182+nearest	182+Korea	182+industries	182+illusion	182+Gorman	182+execution	182+distress	182+definition	182+cutter	182+creating	182+correctly	182+complaint	182+chickens	182+Charlotte	182+Caitlin	182+blocked	182+trophy	181+tortured	181+structure	181+rot	181+risking	181+pointless	181+pearl	181+Nixon	181+Lancelot	181+household	181+heir	181+handing	181+eighth	181+dumping	181+cups	181+Chloe's	181+alibi	181+absence	181+vital	180+towers	180+Tokyo	180+thus	180+struggling	180+shiny	180+risked	180+refer	180+mummy	180+mint	180+keeper	180+Joey's	180+involvement	180+hose	180+hobby	180+fortunate	180+Fleischman	180+fitting	180+curtain	180+counseling	180+coats	180+addition	180+wit	179+Winston	179+transport	179+technical	179+Shelly	179+rode	179+puppet	179+prior	179+opportunities	179+modeling	179+memo	179+liquid	179+irresponsible	179+humiliation	179+hiya	179+freakin	179+fez	179+felony	179+Evelyn	179+Detroit	179+choke	179+blackmailing	179+appreciated	179+Willard	178+tabloid	178+suspicion	178+recovering	178+rally	178+psychology	178+pledge	178+panicked	178+nursery	178+louder	178+jeans	178+investigator	178+identified	178+homecoming	178+Helena's	178+height	178+graduated	178+frustrating	178+fabric	178+dot	178+distant	178+cock	178+buys	178+busting	178+buff	178+wax	177+sleeve	177+se	177+pudding	177+products	177+philosophy	177+Juliet	177+japan	177+irony	177+hospitals	177+dope	177+declare	177+autopsy	177+workin	176+torch	176+substitute	176+scandal	176+prick	176+limb	176+leaf	176+laser	176+lady's	176+hysterical	176+growth	176+goddamnit	176+fetch	176+dimension	176+day's	176+crowded	176+cousins	176+clip	176+climbing	176+bonding	176+bee	176+Barnes	176+approved	176+yeh	175+woah	175+veronica	175+ultimately	175+trusts	175+terror	175+roller	175+returns	175+negotiate	175+millennium	175+mi	175+marsh	175+majority	175+lethal	175+length	175+iced	175+fantasies	175+element	175+deeds	175+Clarke	175+cigars	175+Bradley	175+bore	175+babysitter	175+sponge	174+sleepy	174+Rita	174+questioned	174+peek	174+outrageous	174+medal	174+Kiriakis	174+insulted	174+hu	174+grudge	174+established	174+driveway	174+deserted	174+definite	174+capture	174+beep	174+Adams	174+wires	173+weed	173+suggestions	173+searched	173+owed	173+originally	173+nickname	173+mo	173+lighting	173+lend	173+films	173+drunken	173+demanding	173+Costanza	173+conviction	173+characters	173+Carlo	173+bumped	173+Alaska	173+weigh	172+weasel	172+valentine	172+touches	172+tempted	172+supreme	172+shout	172+rocket	172+resolve	172+relate	172+poisoned	172+pip	172+Phoebe's	172+Pete's	172+occasionally	172+Molly's	172+meals	172+maker	172+invitations	172+intruder	172+haunted	172+Harrison	172+fur	172+footage	172+depending	172+bonds	172+bogus	172+Berlin	172+Barton	172+autograph	172+Arizona	172+apples	172+affects	172+tolerate	171+stepping	171+spontaneous	171+southern	171+sleeps	171+probation	171+presentation	171+performed	171+Manny	171+identical	171+herb	171+fist	171+cycle	171+cooler	171+banner	171+associates	171+Aaron's	171+yankee	170+streak	170+spectacular	170+sector	170+muscles	170+lasted	170+Isaac's	170+increase	170+hostages	170+heroin	170+havin	170+hardware	170+habits	170+fisher	170+encouraging	170+cult	170+consult	170+burgers	170+Bristow	170+boyfriends	170+bailed	170+baggage	170+association	170+wealthy	169+watches	169+versus	169+troubled	169+torturing	169+teasing	169+sweetest	169+stations	169+sip	169+Shawn's	169+rag	169+qualities	169+postpone	169+pad	169+overwhelmed	169+maniac	169+Malkovich	169+impulse	169+hut	169+follows	169+duchess	169+classy	169+charging	169+celebrity	169+Barbara's	169+angel's	169+amazed	169+slater	168+scenes	168+rising	168+revealed	168+representing	168+policeman	168+offensive	168+mug	168+hypocrite	168+humiliate	168+hideous	168+hairy	168+Gunn	168+finals	168+experiences	168+d'ya	168+courts	168+costumes	168+Chilton	168+Carrie	168+captured	168+bolt	168+bluffing	168+betting	168+bein	168+bedtime	168+ay	168+alpha	168+alcoholic	168+waters	167+visual	167+vegetable	167+Vaughn	167+tray	167+Thompson	167+suspicions	167+sticky	167+spreading	167+splendid	167+smiles	167+shrimp	167+shouting	167+roots	167+ransom	167+pressed	167+nooo	167+Liza's	167+jew	167+intent	167+grieving	167+gladly	167+Georgia	167+fling	167+eliminate	167+disorder	167+Courtney's	167+cocaine	167+chancellor	167+cereal	167+arrives	167+aaah	167+yum	166+Tracy	166+technique	166+subway	166+strain	166+statements	166+sonofabitch	166+servant	166+roads	166+resident	166+republican	166+paralyzed	166+orb	166+lotta	166+locks	166+Lawrence	166+guaranteed	166+European	166+dummy	166+discipline	166+despise	166+dental	166+corporation	166+Clint	166+cherish	166+carries	166+briefing	166+bluff	166+batteries	166+atmosphere	166+assholes	166+whatta	165+tux	165+Trent	165+sounding	165+servants	165+rifle	165+presume	165+mamie	165+Kevin's	165+Heidi	165+handwriting	165+goals	165+gin	165+gale	165+fainted	165+elements	165+dried	165+cape	165+allright	165+allowing	165+acknowledge	165+whiskey	164+whacked	164+toxic	164+skating	164+shepherd	164+reliable	164+quicker	164+penalty	164+panel	164+overwhelming	164+nearby	164+Mitchell	164+lining	164+importance	164+ike	164+harassing	164+global	164+Fran	164+fatal	164+endless	164+elsewhere	164+dolls	164+convict	164+butler	164+bold	164+ballet	164+whatcha	163+unlikely	163+spiritual	163+shutting	163+separation	163+rusty	163+recording	163+positively	163+overcome	163+mount	163+Michel	163+method	163+manual	163+helmet	163+goddam	163+failing	163+essence	163+dose	163+diagnosis	163+cured	163+claiming	163+bully	163+airline	163+ahold	163+yearbook	162+various	162+triangle	162+tempting	162+shelf	162+Shawna	162+rig	162+pursuit	162+prosecution	162+pouring	162+possessed	162+partnership	162+november	162+Miguel's	162+Lorenzo	162+Lindsay'	162+humble	162+greedy	162+countries	162+wonders	161+tsk	161+thorough	161+spine	161+shotgun	161+reckless	161+Rath	161+railroad	161+psychiatric	161+na	161+meaningless	161+latte	161+Kong	161+jammed	161+ignored	161+fiance	161+exposure	161+exhibit	161+evidently	161+duties	161+contempt	161+compromised	161+capacity	161+cans	161+weekends	160+urge	160+thunder	160+theft	160+Sykes	160+suing	160+shipment	160+scissors	160+responding	160+refuses	160+proposition	160+porter	160+noises	160+matching	160+marine	160+Mack	160+Lulu	160+located	160+leon	160+legacy	160+ink	160+hormones	160+HIV	160+hail	160+grandchildren	160+godfather	160+gently	160+establish	160+eastern	160+darryl	160+crane's	160+contracts	160+compound	160+Buffy's	160+worldwide	159+smashed	159+sexually	159+sentimental	159+senor	159+scored	159+patient's	159+nicest	159+marketing	159+manipulated	159+jaw	159+intern	159+handcuffs	159+Freddy	159+framed	159+errands	159+entertaining	159+discovery	159+crib	159+carriage	159+barge	159+awards	159+attending	159+ambassador	159+videos	158+Thelma	158+tab	158+spends	158+slipping	158+seated	158+rubbing	158+rely	158+reject	158+recommendation	158+reckon	158+ratings	158+Pam	158+McManus	158+Klinger	158+headaches	158+Gil	158+float	158+embrace	158+corners	158+whining	157+wa	157+turner	157+sweating	157+sole	157+skipped	157+rolf	157+restore	157+receiving	157+population	157+pep	157+olive	157+mountie	157+motives	157+mama's	157+listens	157+Korean	157+jeep	157+Hudson	157+heroes	157+heart's	157+Cristobel	157+controls	157+cleaner	157+cheerleader	157+Balsom	157+au	157+wooden	156+unnecessary	156+stunning	156+slim	156+shipping	156+scent	156+santa's	156+quest	156+Quartermaine	156+praise	156+pose	156+Montega	156+luxury	156+loosen	156+Kyle's	156+Keri's	156+Janice	156+info	156+hum	156+hottest	156+haunt	156+Hastings	156+gracious	156+git	156+forgiving	156+fleet	156+errand	156+emperor	156+Doris	156+cakes	156+blames	156+Beverly	156+abortion	156+worship	155+theories	155+strict	155+sketch	155+shifts	155+Sebastian	155+plotting	155+physician	155+perimeter	155+passage	155+pals	155+Mick	155+mere	155+meg	155+mattered	155+Lonigan	155+longest	155+jews	155+interference	155+Hong	155+Hamilton	155+grease	155+Gavin	155+eyewitness	155+enthusiasm	155+encounter	155+diapers	155+Craig's	155+artists	155+Alec	155+strongest	154+shaken	154+serves	154+punched	154+projects	154+portal	154+outer	154+nazi	154+Monte	154+jewels	154+Hal's	154+concrete	154+Columbia	154+colleagues	154+catches	154+carrot	154+bearing	154+backyard	154+academic	154+winds	153+whisper	153+volume	153+terrorists	153+Serena	153+September	153+sabotage	153+pope	153+pea	153+organs	153+needy	153+mock	153+mentor	153+measures	153+Marvin	153+listed	153+lex	153+Kenyon	153+January	153+Illinois	153+Forman	153+cuff	153+civilization	153+Caribbean	153+breeze	153+articles	153+Adler	153+yummy	152+writes	152+woof	152+who'll	152+Viki's	152+valid	152+skipper	152+sands	152+rarely	152+rabbi	152+prank	152+performing	152+obnoxious	152+mates	152+Jasper	152+improve	152+hereby	152+gabby	152+faked	152+Electra	152+cheeks	152+cellar	152+Broadway	152+whitelighter	151+void	151+trucks	151+tomato	151+substance	151+strangle	151+sour	151+skill	151+senate	151+purchase	151+native	151+muffins	151+maximum	151+interfering	151+hoh	151+Gina's	151+fiction	151+exotic	151+demonic	151+colored	151+clearing	151+civilian	151+Calvin	151+Burke	151+buildings	151+brooks	151+boutique	151+Barrington	151+winters	150+trading	150+terrace	150+Suzanne	150+speaker	150+smoked	150+skiing	150+seed	150+righty	150+relations	150+quack	150+published	150+preliminary	150+Petey	150+pact	150+outstanding	150+opinions	150+Nevada	150+knot	150+ketchup	150+items	150+examined	150+disappearing	150+Cordy	150+coin	150+circuit	150+Barrett	150+assist	150+administration	150+Walt	149+violet	149+uptight	149+Travis	149+ticking	149+terrifying	149+tease	149+Tabitha's	149+Syd	149+swamp	149+secretly	149+rejection	149+reflection	149+realizing	149+rays	149+Pennsylvania	149+partly	149+October	149+mentally	149+Marone	149+jurisdiction	149+Frasier's	149+doubted	149+deception	149+crucial	149+congressman	149+cheesy	149+chambers	149+bitches	149+arrival	149+visited	148+toto	148+supporting	148+stalling	148+shook	148+scouts	148+scoop	148+ribbon	148+reserve	148+raid	148+notion	148+Milo	148+Melanie	148+income	148+immune	148+hay	148+grandma's	148+expects	148+edition	148+Easter	148+destined	148+constitution	148+classroom	148+boobs	148+bets	148+bathing	148+appreciation	148+appointed	148+accomplice	148+Whitney's	147+wander	147+shoved	147+sewer	147+seeking	147+scroll	147+retire	147+peach	147+paintings	147+nude	147+lasts	147+fugitive	147+freezer	147+et	147+discount	147+cranky	147+crank	147+clowns	147+clearance	147+buffalo	147+bodyguard	147+anxiety	147+accountant	147+Abby's	147+whoops	146+volunteered	146+terrorist	146+tales	146+talents	146+stinking	146+snakes	146+sessions	146+salmon	146+resolved	146+remotely	146+protocol	146+nickel	146+nana	146+Livvie's	146+garlic	146+foreman	146+decency	146+cord	146+beds	146+beam	146+asa's	146+areas	146+altogether	146+uniforms	145+tremendous	145+summit	145+squash	145+restaurants	145+rank	145+profession	145+popping	145+Philadelphia	145+peanuts	145+outa	145+observe	145+myrtle	145+lung	145+largest	145+hangs	145+feelin	145+experts	145+enforcement	145+encouraged	145+economy	145+Duncan	145+dudes	145+donation	145+disguise	145+diane's	145+curb	145+continued	145+competitive	145+businessman	145+bites	145+balloons	145+antique	145+advertising	145+ads	145+toothbrush	144+Rupert	144+Roxie	144+retreat	144+represents	144+realistic	144+profits	144+predict	144+panties	144+Nora's	144+lust	144+lid	144+Leonard	144+landlord	144+Kent	144+hourglass	144+hesitate	144+Frank's	144+focusing	144+equally	144+consolation	144+champ	144+boyfriend's	144+babbling	144+Angie	144+aged	144+Virgil	143+Troy's	143+tipped	143+stranded	143+smartest	143+sg	143+Sabrina's	143+Richie	143+rhythm	143+replacement	143+repeating	143+puke	143+psst	143+Perry	143+paycheck	143+overreacted	143+mechanic	143+macho	143+ling	143+leadership	143+Lawson	143+Kendall's	143+juvenile	143+John's	143+images	143+grocery	143+Geller	143+freshen	143+Dwight	143+Drucilla	143+Drake	143+disposal	143+cuffs	143+consent	143+cartoon	143+caffeine	143+broom	143+biology	143+arguments	143+agrees	143+Abigail's	143+vanished	142+unfinished	142+tobacco	142+tin	142+tasty	142+syndrome	142+stack	142+sells	142+ripping	142+pinch	142+Phoenix	142+missiles	142+isolated	142+flattering	142+expenses	142+dinners	142+cos	142+colleague	142+ciao	142+buh	142+Belthazor	142+Belle's	142+attorneys	142+Amber's	142+woulda	141+whereabouts	141+wars	141+waitin	141+visits	141+truce	141+tripped	141+tee	141+tasted	141+Stu	141+steer	141+ruling	141+Rogers	141+rd	141+poisoning	141+pirate	141+nursing	141+Maxine	141+manipulative	141+Mallory	141+Lillian	141+immature	141+husbands	141+heel	141+granddad	141+delivering	141+deaths	141+condoms	141+butts	141+automatically	141+anchor	141+addict	141+Trish	140+trashed	140+tournament	140+throne	140+Teresa	140+slick	140+sausage	140+raining	140+prices	140+pasta	140+Paloma	140+needles	140+leaning	140+leaders	140+judges	140+ideal	140+detector	140+coolest	140+casting	140+bean	140+battles	140+batch	140+approximately	140+appointments	140+almighty	140+achieve	140+vegetables	139+trapper	139+swinging	139+sum	139+spark	139+ruled	139+revolution	139+principles	139+perfection	139+pains	139+Mozart	139+momma	139+mole	139+meow	139+Lynn	139+Luther	139+jelly	139+interviews	139+initiative	139+Hitler	139+hairs	139+Gretchen	139+getaway	139+Germany	139+Freddie	139+employment	139+den	139+cracking	139+counted	139+compliments	139+Carlton	139+behold	139+Allen	139+verge	138+tougher	138+timer	138+tapped	138+taped	138+surf	138+superman	138+stakes	138+specialty	138+snooping	138+shoots	138+semi	138+rendezvous	138+pentagon	138+passenger	138+leverage	138+jeopardize	138+janitor	138+grandparents	138+forbidden	138+fink	138+examination	138+communist	138+clueless	138+Clarence	138+cities	138+cattle	138+bidding	138+arriving	138+adding	138+ungrateful	137+unacceptable	137+tutor	137+soviet	137+shorter	137+shaped	137+serum	137+scuse	137+savings	137+Richards	137+pub	137+pajamas	137+mouths	137+mojo	137+modest	137+methods	137+lure	137+jackass	137+irrational	137+galaxy	137+doom	137+depth	137+cries	137+classified	137+Chet	137+Camille	137+bombs	137+beautifully	137+Asian	137+arresting	137+approaching	137+vessel	136+variety	136+traitor	136+sympathetic	136+smug	136+smash	136+rental	136+prostitute	136+premonitions	136+physics	136+monk	136+mild	136+jumps	136+inventory	136+ing	136+improved	136+Hyde	136+horny	136+Hammond	136+grandfather's	136+doe	136+developing	136+darlin	136+committing	136+Caleb's	136+banging	136+asap	136+amendment	136+worms	135+violated	135+vent	135+traumatic	135+traced	135+tow	135+te	135+Swiss	135+sweaty	135+shaft	135+recommended	135+rainbow	135+overboard	135+literature	135+insight	135+healed	135+haven	135+grasp	135+fluid	135+experiencing	135+era	135+crappy	135+crab	135+Connecticut	135+chunk	135+Chandler's	135+awww	135+applied	135+witnessed	134+traveled	134+stain	134+shack	134+Samuel	134+reacted	134+pronounce	134+presented	134+poured	134+pervert	134+occupied	134+moms	134+marriages	134+Marilyn	134+kings	134+jabez	134+invested	134+handful	134+gob	134+gag	134+flipped	134+flick	134+fireplace	134+expertise	134+embarrassment	134+Ellis	134+drum	134+disappears	134+concussion	134+bruises	134+brakes	134+anything's	134+week's	133+twisting	133+tide	133+swept	133+summon	133+splitting	133+sneaky	133+sloppy	133+settling	133+scientists	133+reschedule	133+regard	133+purposes	133+Ohio	133+notch	133+mustard	133+moose	133+Mike's	133+les	133+improvement	133+hooray	133+grabbing	133+Georgie	133+extend	133+exquisite	133+disrespect	133+complaints	133+Colin's	133+armor	133+amateur	133+wheat	132+voting	132+Thornhart	132+sustained	132+stripper	132+straw	132+slapped	132+Simon's	132+shipped	132+shattered	132+ruthless	132+Rosa	132+Reva's	132+refill	132+recorded	132+payroll	132+numb	132+mourning	132+marijuana	132+manly	132+Jerry's	132+iris	132+involving	132+hunk	132+graham	132+fountain	132+fellows	132+es	132+entertain	132+Edna	132+earthquake	132+drift	132+dreadful	132+doorstep	132+confirmation	132+chops	132+Bridget's	132+Baxter	132+appreciates	132+announced	132+vague	131+tires	131+Terry	131+stressful	131+stem	131+stashed	131+stash	131+sensed	131+preoccupied	131+predictable	131+noticing	131+madly	131+Jon	131+halls	131+gunshot	131+February	131+embassy	131+dozens	131+dork	131+dinner's	131+December	131+confuse	131+cleaners	131+charade	131+chalk	131+cappuccino	131+breed	131+bouquet	131+Bailey	131+amulet	131+addiction	131+who've	130+warming	130+villa	130+unlock	130+transition	130+satisfy	130+sacrificed	130+relaxing	130+lone	130+input	130+Hampshire	130+girlfriend's	130+fudge	130+elaborate	130+concerning	130+completed	130+channels	130+category	130+cal	130+blocking	130+blend	130+blankets	130+America's	130+addicted	130+yuck	129+voters	129+professionals	129+positions	129+Monica's	129+mode	129+jolly	129+initial	129+hunger	129+hamburger	129+greeting	129+greet	129+gravy	129+gram	129+finance	129+Edgar	129+dreamt	129+dice	129+declared	129+collecting	129+Cleveland	129+caution	129+Cadillac	129+Brady's	129+bicycle	129+backpack	129+agreeing	129+writers	128+whale	128+tribe	128+taller	128+supervisor	128+starling	128+sacrifices	128+radiation	128+queens	128+poo	128+Pitt	128+phew	128+outcome	128+ounce	128+monty	128+missile	128+meter	128+likewise	128+irrelevant	128+gran	128+felon	128+feature	128+favorites	128+farther	128+fade	128+experiments	128+erased	128+easiest	128+disk	128+disco	128+convenience	128+conceived	128+compassionate	128+Colorado	128+challenged	128+cane	128+Blair's	128+backstage	128+agony	128+adores	128+Vivian	127+veins	127+tweek	127+thieves	127+surgical	127+sunrise	127+strangely	127+Stetson	127+Ronald	127+recital	127+proposing	127+productive	127+meaningful	127+marching	127+kitten	127+immunity	127+hassle	127+goddamned	127+frighten	127+directors	127+dearly	127+comments	127+closure	127+cease	127+Carlotta	127+Campbell	127+bomber	127+ambition	127+Wisconsin	126+wage	126+unstable	126+sweetness	126+stinky	126+salvage	126+richer	126+refusing	126+raging	126+pumping	126+pressuring	126+pookie	126+petition	126+nations	126+mortals	126+Monique	126+Maya	126+lowlife	126+Lena	126+jus	126+juicy	126+Joan	126+Ireland	126+intimidated	126+intentionally	126+inspire	126+forgave	126+fart	126+Eric's	126+devotion	126+despicable	126+deciding	126+dash	126+comfy	126+breach	126+bo's	126+Beecher	126+bark	126+alternate	126+aaaah	126+twilight	125+Theo	125+switching	125+swallowed	125+stove	125+slot	125+screamed	125+Scotland	125+scars	125+Russians	125+relevant	125+pounding	125+poof	125+pipes	125+persons	125+pawn	125+Milan	125+losses	125+legit	125+Justin	125+Jacques	125+invest	125+generations	125+farewell	125+experimental	125+difficulty	125+curtains	125+civilized	125+championship	125+caviar	125+carnival	125+canyon	125+boost	125+blues	125+bliss	125+Barbie	125+token	124+tends	124+temporarily	124+superstition	124+supernatural	124+sunk	124+stream	124+stocks	124+spinner	124+sadness	124+Roswell	124+reduced	124+recorder	124+rang	124+psyched	124+presidential	124+owners	124+objects	124+Nelson	124+motivated	124+microwave	124+lands	124+Karen's	124+Indiana	124+hallelujah	124+gap	124+fraternity	124+Francesca	124+Finn	124+engines	124+dutch	124+dryer	124+Douglas	124+cocoa	124+chewing	124+brake	124+bounty	124+ax	124+additional	124+acceptable	124+unbelievably	123+survivor	123+smiled	123+smelling	123+sized	123+simpler	123+sentenced	123+respectable	123+remarks	123+registration	123+premises	123+passengers	123+organ	123+oo	123+occasional	123+Marian	123+Khasinau	123+indication	123+Horton	123+gutter	123+grabs	123+goo	123+fulfill	123+flashlight	123+Ellenor	123+courses	123+chains	123+boxing	123+blooded	123+blink	123+blessings	123+beware	123+Beth's	123+bands	123+advised	123+Willy	122+water's	122+Warrick	122+von	122+uhhh	122+turf	122+swings	122+software	122+slips	122+shovel	122+shocking	122+resistance	122+puff	122+privately	122+Olivia's	122+mirrors	122+Marianne	122+Marcel	122+lyrics	122+locking	122+karma	122+instrument	122+historical	122+heartless	122+fras	122+echo	122+decades	122+comparison	122+childish	122+Cassie's	122+cardiac	122+brace	122+blunt	122+Betsy	122+Benton	122+Agnes	122+admission	122+vanilla	121+utterly	121+Tuscany	121+ticked	121+tequila	121+suspension	121+stunned	121+Statesville	121+Spain	121+sadly	121+resolution	121+reserved	121+purely	121+opponent	121+noted	121+mankind	121+lowest	121+kiddin	121+jerks	121+hitch	121+flirt	121+fare	121+extension	121+establishment	121+Erin	121+equals	121+dismiss	121+delayed	121+decade	121+christening	121+casket	121+c'mere	121+broker	121+breakup	121+Brad's	121+biting	121+Atlanta	121+antibiotics	121+accusation	121+abducted	121+witchcraft	120+whoever's	120+traded	120+titan	120+thread	120+spelling	120+so's	120+smelly	120+sharks	120+school's	120+Sandi	120+runnin	120+remaining	120+punching	120+protein	120+printed	120+paramedics	120+newest	120+murdering	120+mine's	120+masks	120+marathon	120+Li	120+Lawndale	120+laptop	120+intact	120+ins	120+initials	120+heights	120+grampa	120+Elton	120+diaper	120+democracy	120+deceased	120+Darrin	120+Colleen's	120+choking	120+charms	120+careless	120+bushes	120+buns	120+bummed	120+accounting	120+travels	119+Taylor's	119+shred	119+saves	119+saddle	119+rethink	119+regards	119+references	119+razor	119+precinct	119+pistol	119+persuade	119+patterns	119+meds	119+McIntyre	119+manipulating	119+llanfair	119+leash	119+Kenny's	119+Kansas	119+housing	119+hearted	119+guarantees	119+folk	119+flown	119+feast	119+ey	119+extent	119+educated	119+disgrace	119+determination	119+deposition	119+coverage	119+corridor	119+Caesar	119+burial	119+bronze	119+bookstore	119+boil	119+Bella	119+Barney	119+abilities	119+werewolf	118+vitals	118+veil	118+trespassing	118+teaches	118+sidewalk	118+Shaw	118+sensible	118+punishing	118+Pierre	118+overtime	118+optimistic	118+occasions	118+obsessing	118+oak	118+notify	118+mornin	118+jeopardy	118+Jaffa	118+injection	118+hilarious	118+Hayes	118+Gannon	118+distinct	118+directed	118+desires	118+dee	118+dame	118+curve	118+confide	118+cone	118+challenging	118+cautious	118+Cathy	118+alter	118+yada	117+wilderness	117+where're	117+vindictive	117+vial	117+venture	117+Valenti	117+tomb	117+teeny	117+subjects	117+stroll	117+sittin	117+scrub	117+Rudy	117+rebuild	117+Rachel's	117+posters	117+parallel	117+ordeal	117+orbit	117+O'Brien	117+nuns	117+northern	117+Max's	117+Jennifer's	117+intimacy	117+inheritance	117+feather	117+farmer	117+fails	117+exploded	117+donate	117+distracting	117+digger	117+despair	117+democratic	117+defended	117+crackers	117+commercials	117+Bryant's	117+ammunition	117+wildwind	116+virtue	116+thoroughly	116+tails	116+spicy	116+sketches	116+Silva	116+sights	116+sheer	116+shaving	116+seize	116+scarecrow	116+refreshing	116+prosecute	116+possess	116+platter	116+Phillip's	116+napkin	116+misplaced	116+merchandise	116+membership	116+loony	116+Leanna	116+jinx	116+herr	116+heroic	116+Frankenstein	116+fag	116+facial	116+efficient	116+devil's	116+corps	116+clan	116+bummer	116+boundaries	116+attract	116+arrow	116+ambitious	116+abbey	116+waits	115+virtually	115+syrup	115+solitary	115+shuttle	115+resignation	115+resemblance	115+reacting	115+pursuing	115+premature	115+pod	115+mortgage	115+Memphis	115+McPhee	115+Liz's	115+Lavery	115+journalist	115+honors	115+Harvey's	115+gravity	115+genes	115+flashes	115+erm	115+contribution	115+company's	115+client's	115+cheque	115+charts	115+cargo	115+awright	115+acquainted	115+wrapping	114+vest	114+untie	114+salute	114+ruins	114+resign	114+realised	114+priceless	114+pike	114+partying	114+myth	114+moonlight	114+Lonnie	114+lightly	114+lifting	114+keen	114+Kasnoff	114+insisting	114+glowing	114+generator	114+Frances	114+flowing	114+explosives	114+employer	114+cutie	114+confronted	114+clause	114+cinnamon	114+buts	114+breakthrough	114+blouse	114+ballistic	114+assassin	114+antidote	114+analyze	114+allowance	114+adjourned	114+Webster	113+vet	113+unto	113+understatement	113+tucked	113+touchy	113+toll	113+subconscious	113+sparky	113+sequence	113+screws	113+sarge	113+roommates	113+reaches	113+Rambaldi	113+programs	113+pm	113+pitcher	113+ping	113+offend	113+nerd	113+Madeline	113+knives	113+kin	113+jasmine	113+irresistible	113+inherited	113+incapable	113+hostility	113+goddammit	113+fuse	113+funky	113+frat	113+equation	113+digital	113+curfew	113+craft	113+chow	113+centered	113+blackmailed	113+allows	113+alleged	113+wealth	112+watcher	112+walkin	112+turtle	112+transmission	112+text	112+starve	112+sleigh	112+sarcastic	112+recess	112+rebound	112+rebel	112+Raymond	112+procedures	112+pirates	112+pinned	112+parlor	112+Owen	112+outfits	112+livin	112+Kirby	112+issued	112+institute	112+industrial	112+hoops	112+heartache	112+head's	112+haired	112+Gloria	112+fundraiser	112+dynamite	112+doorman	112+documentary	112+discreet	112+diLucca	112+detect	112+cracks	112+cracker	112+considerate	112+climbed	112+chilly	112+catering	112+Bessie	112+author	112+apophis	112+Abraham	112+Zoey	111+vacuum	111+urine	111+tunnels	111+Todd's	111+tanks	111+strung	111+stitches	111+sordid	111+sark	111+referred	111+protector	111+portion	111+Porsche	111+phoned	111+pets	111+paths	111+moss	111+Matthews	111+mat	111+lengths	111+kindergarten	111+hostess	111+flaw	111+flavor	111+diving	111+discharge	111+Dewey	111+Deveraux	111+consumed	111+confidentiality	111+Claude	111+cannon	111+bourbon	111+blizzard	111+Bernie	111+automatic	111+amongst	111+yankees	110+woody	110+Viktor	110+victim's	110+urban	110+tactics	110+straightened	110+spooky	110+specials	110+spaghetti	110+soil	110+Sherman	110+prettier	110+powerless	110+por	110+poems	110+playin	110+playground	110+Parker's	110+paranoia	110+Oscar	110+NSA	110+mutant	110+Moore	110+mainly	110+Mac's	110+lions	110+knox	110+joe's	110+jacqueline	110+instantly	110+hopeful	110+havoc	110+francis	110+exaggerating	110+evaluation	110+engage	110+eavesdropping	110+doughnuts	110+diversion	110+delight	110+deepest	110+dang	110+cutest	110+condom	110+companion	110+comb	110+bela	110+behaving	110+avoided	110+aspen	110+anyplace	110+agh	110+accessory	110+zap	109+workout	109+whereas	109+translate	109+titanic	109+stuffing	109+stoned	109+speeding	109+slime	109+royalty	109+polls	109+plaza	109+personalities	109+payments	109+musician	109+maze	109+marital	109+magician	109+lurking	109+lottery	109+leonardo	109+journalism	109+interior	109+imaginary	109+hog	109+hatch	109+guinea	109+greetings	109+game's	109+fairwinds	109+ethical	109+equipped	109+environmental	109+elegant	109+elbow	109+customs	109+cuban	109+credibility	109+credentials	109+consistent	109+collapse	109+cloth	109+claws	109+cinderella	109+chopped	109+challenges	109+bridal	109+boards	109+bedside	109+babysitting	109+authorized	109+assumption	109+ant	109+alvarez	109+youngest	108+witty	108+vast	108+unforgivable	108+underworld	108+tempt	108+tabs	108+succeeded	108+splash	108+sophomore	108+shade	108+selfless	108+secrecy	108+santiago	108+runway	108+restless	108+programming	108+professionally	108+okey	108+nolan	108+movin	108+metaphor	108+messes	108+meltdown	108+lecter	108+jeanne	108+incoming	108+hence	108+glenn	108+gasoline	108+gained	108+funding	108+episodes	108+diefenbaker	108+curl	108+contain	108+comedian	108+collected	108+coconut	108+cam	108+buckle	108+assembly	108+ancestors	108+admired	108+adjustment	108+acceptance	108+weekly	107+warmth	107+venice	107+umbrella	107+tropical	107+thumbs	107+throats	107+slippery	107+seduced	107+ridge's	107+reform	107+rebecca's	107+ranger	107+queer	107+poll	107+parenting	107+onion	107+noses	107+mobile	107+luckiest	107+hartford	107+graveyard	107+gifted	107+francine	107+footsteps	107+dimeras	107+dale	107+cynical	107+corleone	107+cement	107+bulls	107+bloom	107+assassination	107+wedded	106+watson	106+voyage	106+volunteers	106+verbal	106+unpredictable	106+tuned	106+triumph	106+trevor	106+stoop	106+stamps	106+slides	106+sinking	106+show's	106+rio	106+rigged	106+regulations	106+region	106+promoted	106+plumbing	106+pimp	106+nell	106+masters	106+lingerie	106+layer	106+katie's	106+jules	106+hankey	106+greed	106+fluffy	106+flood	106+everwood	106+essential	106+elope	106+dresser	106+departure	106+dat	106+dances	106+custom	106+creation	106+coup	106+chauffeur	106+bulletin	106+bugged	106+brian	106+bouncing	106+bimbo	106+website	105+veal	105+tubes	105+temptation	105+supported	105+strangest	105+sorel's	105+slammed	105+selection	105+sarcasm	105+sanity	105+sandra	105+rib	105+primitive	105+platform	105+pending	105+partial	105+packages	105+orderly	105+obsessive	105+ni	105+newbie	105+nevertheless	105+NBC	105+murderers	105+motto	105+Moscow	105+meteor	105+inconvenience	105+hottie	105+Gotham	105+glimpse	105+Gillian	105+froze	105+fiber	105+Ferris	105+faggot	105+execute	105+etc	105+ensure	105+drivers	105+dispute	105+damages	105+crop	105+courageous	105+consulate	105+closes	105+Carolina	105+bosses	105+bees	105+amends	105+wuss	104+Wolfram	104+wacky	104+unemployed	104+traces	104+town's	104+testifying	104+tendency	104+syringe	104+symphony	104+stew	104+startled	104+sorrow	104+sleazy	104+shaky	104+screams	104+runner	104+rsquo	104+riddle	104+remark	104+rangers	104+poop	104+poke	104+pickup	104+phone's	104+Philip's	104+nutty	104+Nobel	104+mentioning	104+mend	104+menace	104+mayor's	104+Lorraine	104+Kip	104+Iowa	104+inspiring	104+impulsive	104+housekeeper	104+harvest	104+Germans	104+formed	104+foam	104+fingernails	104+economic	104+divide	104+conditioning	104+Clarice	104+chronic	104+bass	104+baking	104+Alfred	104+whine	103+utter	103+thug	103+submit	103+strap	103+starved	103+sniffing	103+sedative	103+rose's	103+reversed	103+rated	103+publishing	103+programmed	103+picket	103+paged	103+online	103+nowadays	103+newman's	103+mines	103+margo's	103+jumbo	103+joni	103+iv	103+invasion	103+hound	103+homosexual	103+homo	103+hips	103+gilbert	103+forgets	103+flipping	103+flea	103+flatter	103+enters	103+dwell	103+dumpster	103+ducks	103+devlin	103+dent	103+consultant	103+clayton	103+choo	103+bikini	103+beale	103+banking	103+assignments	103+apartments	103+ants	103+affecting	103+advisor	103+vile	102+unreasonable	102+tossing	102+thanked	102+stereo	102+steals	102+souvenir	102+screening	102+scratched	102+rep	102+psychopath	102+proportion	102+peyton	102+outs	102+operative	102+obstruction	102+obey	102+neutral	102+maxwell	102+lump	102+lockdown	102+lily's	102+insists	102+ian's	102+harass	102+gloat	102+flights	102+filth	102+extended	102+electronic	102+edgy	102+donkey	102+diseases	102+didn't	102+Curtis	102+coroner	102+confessing	102+cologne	102+cedar	102+CA	102+bruise	102+betraying	102+bailing	102+attempting	102+appealing	102+adebisi	102+wrath	101+wandered	101+waist	101+vain	101+traps	101+transportation	101+trainer	101+sushi	101+stepfather	101+rye	101+publicly	101+presidents	101+poking	101+obligated	101+Monroe	101+Medina	101+marshal	101+Lexie's	101+lemonade	101+instructed	101+hooks	101+heavenly	101+hash	101+halt	101+grim	101+engineer	101+employed	101+doggie	101+diplomatic	101+dilemma	101+crazed	101+contagious	101+coaster	101+cheering	101+carved	101+carpenter	101+butch	101+bundle	101+bubbles	101+blanks	101+approached	101+appearances	101+wrench	100+vomit	100+thingy	100+stadium	100+speeches	100+smashing	100+savior	100+rogue	100+robbing	100+reflect	100+raft	100+qualify	100+pumped	100+pillows	100+piggy	100+peep	100+pageant	100+packs	100+neo	100+neglected	100+montana	100+marcie	100+madonna	100+m'kay	100+loneliness	100+liberal	100+jaye	100+intrude	100+indicates	100+helluva	100+hawkeye	100+gregory	100+gardener	100+freely	100+forresters	100+fatass	100+err	100+eleanor	100+drooling	100+continuing	100+cassandra	100+betcha	100+apollo	100+alan's	100+addressed	100+acquired	100+vase	99+tiffany	99+supermarket	99+squat	99+spitting	99+spice	99+spaces	99+slaves	99+showers	99+sanchez	99+rhyme	99+relieve	99+receipts	99+radical	99+racket	99+purchased	99+preserve	99+portland	99+pictured	99+pause	99+overdue	99+officials	99+nod	99+motivation	99+morgendorffer	99+lucky's	99+lacking	99+kidnapper	99+introduction	99+insect	99+hunters	99+horns	99+feminine	99+eyeballs	99+dumps	99+disc	99+disappointing	99+difficulties	99+crock	99+convertible	99+context	99+claw	99+clamp	99+canned	99+cambias	99+bishop	99+bathtub	99+avanya	99+artery	99+andre	99+weep	98+warmer	98+vendetta	98+tenth	98+suspense	98+summoned	98+stuff's	98+spiders	98+sings	98+reiber	98+reader	98+raving	98+pushy	98+produced	98+poverty	98+postponed	98+poppy	98+ohhhh	98+noooo	98+mold	98+mice	98+laughter	98+johnnie	98+incompetent	98+hugging	98+horizon	98+grove	98+groceries	98+frequency	98+fastest	98+drip	98+dinosaur	98+differ	98+delta	98+daphne's	98+copper	98+communicating	98+clare	98+chi	98+carrier	98+brody	98+body's	98+beliefs	98+bats	98+bases	98+auntie	98+adios	98+wraps	97+wiser	97+willingly	97+weirdest	97+waltz	97+vu	97+voila	97+timmih	97+thinner	97+swelling	97+swat	97+steroids	97+slate	97+sentinel	97+sensitivity	97+scrape	97+rookie	97+rehearse	97+quarterback	97+prophecy	97+pi	97+organic	97+mercedes	97+matched	97+ledge	97+justified	97+insults	97+increased	97+immortal	97+heavily	97+hateful	97+handles	97+francie	97+feared	97+einstein	97+doorway	97+decorations	97+Cyril	97+colour	97+chatting	97+buyer	97+buckaroo	97+bedrooms	97+Beckett	97+batting	97+askin	97+ammo	97+admiral	97+wrestle	96+wolves	96+velvet	96+tutoring	96+subpoena	96+stein	96+span	96+scratching	96+requests	96+privileges	96+pager	96+mart	96+Marlo	96+manor	96+madman	96+knicks	96+Klaus	96+kel	96+intriguing	96+idiotic	96+hotels	96+Hans	96+grape	96+granger	96+goofy	96+flexible	96+enlighten	96+dum	96+door's	96+donuts	96+Dixie's	96+demonstrate	96+dairy	96+corrupt	96+combined	96+Claudia	96+brunch	96+bridesmaid	96+barking	96+architect	96+applause	96+alongside	96+ale	96+acquaintance	96+yuh	95+wretched	95+Tanya	95+tango	95+superficial	95+sufficient	95+sued	95+soak	95+smoothly	95+sensing	95+restraint	95+quo	95+POW	95+posing	95+pleading	95+Pittsburgh	95+Peru	95+payoff	95+participate	95+panda	95+organize	95+Oprah	95+Nemo	95+morals	95+Lola	95+loans	95+loaf	95+lists	95+laboratory	95+Kimble	95+jumpy	95+intervention	95+ignorant	95+herbal	95+hangin	95+germs	95+generosity	95+fu	95+freed	95+flashing	95+doughnut	95+country's	95+convent	95+clumsy	95+chocolates	95+captive	95+Burt	95+Bianca's	95+behaved	95+Bambi	95+babes	95+apologise	95+angelus	95+vanity	94+trials	94+Sweeney	94+stumbled	94+Stevie	94+skate	94+shampoo	94+republicans	94+represented	94+Regina	94+recognition	94+preview	94+poisonous	94+perjury	94+parental	94+onboard	94+mugged	94+minding	94+maestro	94+linen	94+learns	94+knots	94+jimbo	94+interviewing	94+inmates	94+ingredients	94+humour	94+gypsy	94+grind	94+greasy	94+goons	94+Gabriel	94+frost	94+estimate	94+elementary	94+Edmund's	94+drastic	94+dolly	94+di	94+database	94+Danielle	94+Damon	94+crow	94+coop	94+comparing	94+cocky	94+clearer	94+cartoons	94+bruised	94+brag	94+bind	94+axe	94+asset	94+Armstrong	94+apparent	94+Ann's	94+worthwhile	93+whoop	93+wedding's	93+warner	93+volcano	93+vanquishing	93+towns	93+Terri	93+tabloids	93+survivors	93+Stenbeck's	93+sprung	93+spotlight	93+smokes	93+shops	93+sentencing	93+sentences	93+Scully	93+Schwartz	93+Roosevelt	93+rivers	93+revealing	93+reduce	93+ram	93+racist	93+provoke	93+preacher	93+piper's	93+pining	93+peak	93+password	93+overly	93+oui	93+ops	93+mop	93+mayo	93+Louisiana	93+locket	93+leland	93+king's	93+jab	93+imply	93+impatient	93+hovering	93+hotter	93+holland	93+gemini	93+gaines	93+fest	93+endure	93+dots	93+doren	93+dim	93+diagnosed	93+debts	93+cultures	93+crawled	93+contained	93+condemned	93+cody	93+chained	93+brit	93+breaths	93+booty	93+arctic	93+ambrosia	93+adds	93+weirdo	92+warmed	92+wand	92+vs	92+vienna	92+utah	92+troubling	92+tok'ra	92+stripped	92+strapped	92+spies	92+soaked	92+skipping	92+sharon's	92+scrambled	92+rattle	92+profound	92+perez	92+peoples	92+oy	92+musta	92+moses	92+mona	92+mocking	92+mnh	92+misunderstand	92+merit	92+mayday	92+loading	92+linked	92+limousine	92+kacl	92+jody	92+investors	92+interviewed	92+hustle	92+forensic	92+foods	92+espresso	92+enthusiastic	92+ee	92+duct	92+drawers	92+devastating	92+democrats	92+cosmo	92+conquer	92+concentration	92+comeback	92+clarify	92+chores	92+cheerleaders	92+cheaper	92+charter	92+charlie's	92+chantal	92+callin	92+butcher	92+bricks	92+bozo	92+blushing	92+bert	92+barging	92+asia	92+abused	92+yoga	91+wrecking	91+wits	91+wentworth	91+waffles	91+virginity	91+vibes	91+uninvited	91+unfaithful	91+underwater	91+tribute	91+teller	91+su	91+strangled	91+state's	91+sissy	91+scheming	91+ropes	91+responded	91+residents	91+rescuing	91+reel	91+redhead	91+rave	91+priests	91+postcard	91+peterman	91+overseas	91+orientation	91+onions	91+ongoing	91+O'Reily	91+newly	91+Neil's	91+morphine	91+lotion	91+Lindley	91+limitations	91+lilly	91+lesser	91+lent	91+lectures	91+lads	91+kidneys	91+judgement	91+jog	91+jingle	91+jets	91+Jed	91+itch	91+intellectual	91+installed	91+infant	91+indefinitely	91+hazard	91+grenade	91+glamorous	91+genetically	91+Freud	91+fireman	91+Fiona	91+faculty	91+engineering	91+doh	91+discretion	91+delusions	91+declaration	91+crate	91+competent	91+commonwealth	91+catalog	91+breaker	91+blondie	91+bakery	91+attempts	91+asylum	91+argh	91+applying	91+ahhhh	91+yesterday's	90+Williamson	90+wedge	90+warriors	90+wager	90+unfit	90+Ty	90+tuxedo	90+tripping	90+treatments	90+torment	90+Tobias	90+superhero	90+stirring	90+spinal	90+sorority	90+sneakers	90+server	90+seminar	90+scenery	90+republic	90+repairs	90+rabble	90+pneumonia	90+perks	90+peaches	90+owl	90+override	90+ooooh	90+moo	90+Mindy	90+mija	90+McGarry	90+manslaughter	90+mailed	90+love's	90+lime	90+lettuce	90+kinky	90+intimidate	90+instructor	90+guarded	90+grieve	90+grad	90+gorilla	90+globe	90+frustration	90+extensive	90+exploring	90+exercises	90+eve's	90+downs	90+doorbell	90+devices	90+deb	90+deal's	90+dam	90+cultural	90+CTU	90+credits	90+commerce	90+Chinatown	90+chemicals	90+Cassidy	90+Baltimore	90+authentic	90+arraignment	90+annulled	90+Anita	90+Angelo	90+altered	90+allergies	90+wanta	89+verify	89+vegetarian	89+tunes	89+tourist	89+tighter	89+telegram	89+suitable	89+stalk	89+springs	89+specimen	89+spared	89+solving	89+shoo	89+satisfying	89+Saddam	89+Rosario	89+requesting	89+Reid	89+Randall	89+publisher	89+pharmacy	89+pH	89+pens	89+overprotective	89+obstacles	89+notified	89+negro	89+nasedo	89+judged	89+Josephine	89+Jill's	89+Jerome	89+identification	89+grandchild	89+genuinely	89+founded	89+flushed	89+fluids	89+floss	89+escaping	89+dove	89+ditched	89+demon's	89+decorated	89+crunch	89+criticism	89+cramp	89+corny	89+contribute	89+connecting	89+bunk	89+bombing	89+bitten	89+billions	89+bankrupt	89+yikes	88+wrists	88+winners	88+ultrasound	88+ultimatum	88+thirst	88+suckers	88+spelled	88+sniff	88+shakes	88+scope	88+salsa	88+Rudolph	88+Ross's	88+room's	88+retrieve	88+releasing	88+reassuring	88+pumps	88+properties	88+predicted	88+pigeon	88+neurotic	88+negotiating	88+needn't	88+multi	88+monitors	88+millionaire	88+microphone	88+Merle	88+mechanical	88+Martinez	88+Marta	88+Lydecker	88+limp	88+incriminating	88+hiking	88+hatchet	88+gracias	88+Gordie	88+Gerald	88+fills	88+feeds	88+Egypt	88+doubting	88+Donnell	88+dedication	88+decaf	88+Dawson's	88+Crawford	88+competing	88+Chauncey	88+cellular	88+carbon	88+butterfly	88+bumper	88+biopsy	88+Alabama	88+whiz	87+voluntarily	87+visible	87+ventilator	87+VA	87+unpack	87+unload	87+universal	87+tomatoes	87+toad	87+Thatcher	87+targets	87+taco	87+suggests	87+strawberry	87+spooked	87+snitch	87+showtime	87+Schillinger	87+sap	87+reassure	87+providing	87+prey	87+pressure's	87+Prague	87+persuasive	87+pancake	87+Olds	87+mystical	87+mysteries	87+MRI	87+moment's	87+mixing	87+mayhem	87+matrimony	87+Mary's	87+marines	87+mails	87+magnet	87+Lucien	87+lighthouse	87+liability	87+KGB	87+jock	87+headline	87+groovy	87+gangster	87+Frankie's	87+factors	87+explosive	87+explanations	87+dispatch	87+detailed	87+curly	87+cupid	87+condolences	87+comrade	87+Cassadines	87+bulb	87+Brittany's	87+bragging	87+awaits	87+assaulted	87+Ashton	87+ambush	87+aircraft	87+adolescent	87+adjusted	87+abort	87+yank	86+Wyatt	86+whit	86+verse	86+vaguely	86+undermine	86+tying	86+trim	86+swamped	86+sunlight	86+stitch	86+Stan's	86+stabbing	86+sphere	86+slippers	86+slash	86+Skye's	86+sincerely	86+Simmons	86+sigh	86+setback	86+secondly	86+rotting	86+rev	86+retail	86+prospect	86+proceedings	86+preparation	86+precaution	86+pox	86+Phillips	86+pearls	86+pcpd	86+parks	86+nonetheless	86+melting	86+materials	86+marler	86+mar	86+liaison	86+lair	86+Irene	86+hots	86+hooking	86+headlines	86+haha	86+hag	86+grapes	86+genie	86+Ganz	86+fury	86+felicity	86+fangs	86+expelled	86+encouragement	86+earring	86+dreidel	86+draws	86+dory	86+Dorian	86+donut	86+dog's	86+dis	86+dictate	86+dependent	86+decorating	86+Daryl	86+cope	86+coordinates	86+cola	86+cocktails	86+bumps	86+blueberry	86+blackout	86+believable	86+backfired	86+backfire	86+apron	86+anticipated	86+amigo	86+adjusting	86+activated	86+Zoe	85+Willoughby	85+vous	85+vouch	85+voodoo	85+vitamins	85+vista	85+vintage	85+urn	85+uncertain	85+ummm	85+tourists	85+tattoos	85+surrounding	85+stern	85+sponsor	85+slimy	85+singles	85+sibling	85+shhhh	85+Shelley	85+restored	85+representative	85+renting	85+reign	85+publish	85+planets	85+pickle	85+peculiar	85+parasite	85+Paddington	85+noo	85+Nellie	85+marries	85+mailbox	85+magically	85+Lowell	85+lovebirds	85+listeners	85+Kurt	85+knocks	85+Kane's	85+intel	85+informant	85+hicks	85+grain	85+fearless	85+exits	85+elf	85+drazen	85+distractions	85+disconnected	85+dinosaurs	85+designing	85+dashwood	85+crooked	85+crook	85+conveniently	85+contents	85+colon	85+barber	85+argued	85+ziggy	84+wink	84+warped	84+underestimated	84+testified	84+tacky	84+substantial	84+Steve's	84+steering	84+staged	84+stability	84+shoving	84+shaved	84+seizure	84+Roland	84+reset	84+repeatedly	84+radius	84+pushes	84+pitching	84+pairs	84+painter	84+opener	84+Oklahoma	84+notebook	84+mornings	84+moody	84+Mississippi	84+Matthew's	84+mash	84+Maine	84+ja	84+investigations	84+invent	84+indulge	84+horribly	84+hallucinating	84+festive	84+feathers	84+eyebrows	84+expand	84+enjoys	84+dictionary	84+dialogue	84+desperation	84+dealers	84+darkest	84+daph	84+critic	84+cowboys	84+consulting	84+Ceasar	84+Cartman's	84+canal	84+boragora	84+belts	84+bananas	84+bagel	84+authorization	84+auditions	84+associated	84+ape	84+Annette	84+Amy's	84+agitated	84+adventures	84+withdraw	83+wishful	83+wimp	83+violin	83+Vern	83+vehicles	83+vanish	83+unbearable	83+tonic	83+Tom's	83+Timothy	83+tackle	83+suffice	83+suction	83+sporting	83+slaying	83+Singapore	83+safest	83+Rosanna's	83+rocking	83+relive	83+rates	83+puttin	83+puppies	83+prettiest	83+polo	83+oval	83+oatmeal	83+noisy	83+newlyweds	83+nauseous	83+moi	83+misguided	83+mildly	83+midst	83+McMillan	83+maps	83+liable	83+Kristina's	83+judgmental	83+Jennings	83+introducing	83+indy	83+individuals	83+hunted	83+hen	83+givin	83+frequent	83+fisherman	83+fascinated	83+elephants	83+dislike	83+diploma	83+Desmond	83+deluded	83+decorate	83+Daniels	83+crummy	83+contractions	83+carve	83+careers	83+Brock	83+bottled	83+bonded	83+birdie	83+bash	83+Bahamas	83+whites	82+unavailable	82+twenties	82+trustworthy	82+translation	82+traditions	82+Sy	82+surviving	82+surgeons	82+stupidity	82+snoop	82+skies	82+Shannon	82+secured	82+salvation	82+Ritchie	82+remorse	82+Rafe's	82+ra	82+Quincy	82+Princeton	82+preferably	82+pies	82+photography	82+outsider	82+operational	82+nuh	82+northwest	82+nausea	82+napkins	82+mule	82+mourn	82+melted	82+mechanism	82+mashed	82+maiden	82+mafia	82+Lyman	82+Lydia	82+Katrina	82+Julia's	82+Josie	82+Janie	82+inherit	82+holdings	82+hel	82+Greece	82+greatness	82+golly	82+girlie	82+excused	82+edges	82+Dylan	82+dumbo	82+drifting	82+delirious	82+damaging	82+cubicle	82+Cristobal	82+crawley	82+compelled	82+comm	82+colleges	82+Cole's	82+chooses	82+checkup	82+Chad's	82+certified	82+candidates	82+buffet	82+boredom	82+Bob's	82+bandages	82+Baldwin's	82+bah	82+automobile	82+athletic	82+alarms	82+absorbed	82+absent	82+yessir	81+windshield	81+who're	81+whaddya	81+Welsh	81+vitamin	81+viper	81+transparent	81+surprisingly	81+sunglasses	81+starring	81+Stanford	81+spears	81+slit	81+sided	81+serenity	81+schemes	81+roar	81+relatively	81+Reade	81+quarry	81+prosecutor	81+prognosis	81+probe	81+potentially	81+poodle	81+pitiful	81+persistent	81+perception	81+percentage	81+peas	81+oww	81+nosy	81+neighbourhood	81+nagging	81+morons	81+molecular	81+meters	81+masterpiece	81+martinis	81+limbo	81+liars	81+karate	81+Jax's	81+irritating	81+inclined	81+hump	81+hoynes	81+Holtz	81+holler	81+hazel	81+haw	81+gauge	81+functions	81+Florence	81+fiasco	81+fallout	81+Ernie	81+Elisa	81+educational	81+eatin	81+dumbass	81+Dracula	81+donated	81+Dickson	81+destination	81+dense	81+Cubans	81+crimson	81+continent	81+concentrating	81+commanding	81+colorful	81+clam	81+cider	81+brochure	81+behaviour	81+barto	81+bargaining	81+awe	81+artistic	81+arena	81+Wolfe	80+wiggle	80+welcoming	80+weighing	80+villain	80+vein	80+vanquished	80+striking	80+stains	80+sooo	80+snacks	80+smear	80+sire	80+Simone's	80+secondary	80+roughly	80+rituals	80+resentment	80+psychologist	80+preferred	80+pint	80+pension	80+penguin	80+passive	80+panther	80+overhear	80+origin	80+orchestra	80+negotiations	80+mounted	80+morality	80+leopard	80+Landingham	80+labs	80+kisser	80+Jackson's	80+jackpot	80+icy	80+Hoover	80+hoot	80+Holling	80+hippie	80+Hanson	80+handshake	80+grilled	80+Gardiner	80+functioning	80+formality	80+elevators	80+Edward's	80+drums	80+depths	80+confirms	80+civilians	80+Carson	80+bypass	80+briefly	80+breeding	80+boxer	80+boathouse	80+binding	80+audio	80+acres	80+accidental	80+Westbridge	79+wacko	79+Vermont	79+ulterior	79+transferring	79+tis	79+thugs	79+thighs	79+tangled	79+Suzie	79+stirred	79+Stefano's	79+sought	79+softball	79+snag	79+smallest	79+sling	79+sleaze	79+shells	79+Sheldon	79+seeds	79+rumour	79+ripe	79+remarried	79+reluctant	79+regularly	79+puddle	79+promote	79+precise	79+popularity	79+pins	79+perceptive	79+Otis	79+oral	79+Murray	79+miraculous	79+memorable	79+maternal	79+Lucinda's	79+Lucille	79+lookout	79+longing	79+lockup	79+locals	79+lizard	79+librarian	79+Lazarus	79+knights	79+junkie	79+Juan	79+Job's	79+inspection	79+impressions	79+immoral	79+hypothetically	79+Hodges	79+Herman	79+guarding	79+gourmet	79+Gabe	79+fighters	79+fees	79+features	79+faxed	79+extortion	79+expressed	79+essentially	79+downright	79+Doolittle	79+digest	79+der	79+Denise	79+crosses	79+cranberry	79+covert	79+costa	79+Columbus	79+city's	79+chorus	79+casualties	79+bygones	79+buzzing	79+burying	79+bugger	79+bikes	79+Bernard	79+attended	79+Allah	79+all's	79+wells	78+Welch	78+weary	78+visa	78+viewing	78+viewers	78+uptown	78+Tucker	78+tu	78+transmitter	78+trains	78+tickle	78+tart	78+taping	78+takeout	78+sweeping	78+stepmother	78+stating	78+stale	78+settles	78+seating	78+seaborn	78+Ripley	78+resigned	78+rating	78+Prue's	78+pros	78+porno	78+plumber	78+pissing	78+pilots	78+pepperoni	78+ownership	78+occurs	78+Nicole's	78+newborn	78+nada	78+merger	78+mandatory	78+Malcolm's	78+ludicrous	78+Lebowski	78+Jan's	78+Jacob	78+injected	78+Holden's	78+Henry's	78+heating	78+Gunther	78+geeks	78+forged	78+faults	78+expressing	78+Eddie's	78+drue	78+dire	78+dief	78+Desi	78+deceiving	78+centre	78+celebrities	78+caterer	78+carrots	78+calmed	78+businesses	78+budge	78+bridges	78+Ashley's	78+applications	78+ankles	78+wo	77+vending	77+typing	77+tribbiani	77+there're	77+swift	77+Steele	77+squared	77+speculation	77+snowing	77+shades	77+sexist	77+Scudder's	77+scattered	77+sanctuary	77+saints	77+rewrite	77+regretted	77+regain	77+raises	77+processing	77+picky	77+orphan	77+nipples	77+nam	77+mural	77+misjudged	77