Advertisement
Guest User

hangman

a guest
Feb 6th, 2016
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 63.00 KB | None | 0 0
  1. #include <iostream>
  2. #include <cctype>
  3. #include <string>
  4. #include <cstdlib>
  5. #include <ctime>
  6. #include <locale>
  7.  
  8. using namespace std;
  9.  
  10. void draw(int tries) {
  11.     switch (tries) {
  12.     case 0:
  13.         cout << "_______\n |   \\|\n O    |\n/|\\   |\n/ \\   |\n______|______\n";
  14.         break;
  15.     case 1:
  16.         cout << "_______\n |   \\|\n O    |\n/|\\   |\n/     |\n______|______\n";
  17.         break;
  18.     case 2:
  19.         cout << "_______\n |   \\|\n O    |\n/|\\   |\n      |\n______|______\n";
  20.         break;
  21.     case 3:
  22.         cout << "_______\n |   \\|\n O    |\n/|    |\n      |\n______|______\n";
  23.         break;
  24.     case 4:
  25.         cout << "_______\n |   \\|\n O    |\n |    |\n      |\n______|______\n";
  26.         break;
  27.     case 5:
  28.         cout << "_______\n |   \\|\n O    |\n      |\n      |\n______|______\n";
  29.         break;
  30.     case 6:
  31.         cout << "_______\n |   \\|\n      |\n      |\n      |\n______|______\n";
  32.         break;
  33.     case 7:
  34.         cout << "_______\n     \\|\n      |\n      |\n      |\n______|______\n";
  35.         break;
  36.     case 8:
  37.         cout << "_______\n      |\n      |\n      |\n      |\n______|______\n";
  38.         break;
  39.     case 9:
  40.         cout << "\n      |\n      |\n      |\n      |\n______|______\n";
  41.         break;
  42.     case 10:
  43.         cout << "\n_____________\n";
  44.     }
  45. }
  46. int game(int wordno) {
  47.     string words[] = {
  48.         "American",
  49.         "Brown",
  50.         "Christian",
  51.         "Congress",
  52.         "Doctor",
  53.         "England",
  54.         "English",
  55.         "Europe",
  56.         "French",
  57.         "God",
  58.         "I",
  59.         "John",
  60.         "Mister",
  61.         "Mr",
  62.         "Mrs",
  63.         "a",
  64.         "abilities",
  65.         "ability",
  66.         "ability's",
  67.         "able",
  68.         "about",
  69.         "above",
  70.         "absence",
  71.         "absolute",
  72.         "absolutely",
  73.         "abuse",
  74.         "academic",
  75.         "accept",
  76.         "acceptable",
  77.         "accepted",
  78.         "accepting",
  79.         "accepts",
  80.         "access",
  81.         "accessible",
  82.         "accident",
  83.         "accidental",
  84.         "accidentally",
  85.         "accord",
  86.         "accorded",
  87.         "according",
  88.         "accordingly",
  89.         "accords",
  90.         "account",
  91.         "account's",
  92.         "accounts",
  93.         "accuracy",
  94.         "accurate",
  95.         "achieve",
  96.         "achieved",
  97.         "achieves",
  98.         "achieving",
  99.         "acquire",
  100.         "acquired",
  101.         "acquires",
  102.         "acquiring",
  103.         "across",
  104.         "act",
  105.         "act's",
  106.         "acted",
  107.         "acting",
  108.         "action",
  109.         "action's",
  110.         "actions",
  111.         "active",
  112.         "activities",
  113.         "activity",
  114.         "activity's",
  115.         "acts",
  116.         "actual",
  117.         "actually",
  118.         "add",
  119.         "added",
  120.         "adding",
  121.         "addition",
  122.         "additional",
  123.         "address",
  124.         "address's",
  125.         "addressed",
  126.         "addresses",
  127.         "addressing",
  128.         "adds",
  129.         "adequate",
  130.         "adjust",
  131.         "administration",
  132.         "admit",
  133.         "admits",
  134.         "admitted",
  135.         "admittedly",
  136.         "admitting",
  137.         "adopt",
  138.         "adopted",
  139.         "adopting",
  140.         "adopts",
  141.         "advance",
  142.         "advanced",
  143.         "advances",
  144.         "advancing",
  145.         "advantage",
  146.         "advantage's",
  147.         "advantages",
  148.         "advertise",
  149.         "advertised",
  150.         "advertises",
  151.         "advertising",
  152.         "advice",
  153.         "advise",
  154.         "advised",
  155.         "advises",
  156.         "advising",
  157.         "affair",
  158.         "affair's",
  159.         "affairs",
  160.         "affect",
  161.         "affect's",
  162.         "affected",
  163.         "affecting",
  164.         "affects",
  165.         "afford",
  166.         "afraid",
  167.         "after",
  168.         "afternoon",
  169.         "afterward",
  170.         "afterwards",
  171.         "again",
  172.         "against",
  173.         "age",
  174.         "age's",
  175.         "agency",
  176.         "ages",
  177.         "ago",
  178.         "agree",
  179.         "agreed",
  180.         "agreeing",
  181.         "agreement",
  182.         "agrees",
  183.         "ahead",
  184.         "aid",
  185.         "aim",
  186.         "aimed",
  187.         "aiming",
  188.         "aims",
  189.         "air",
  190.         "alarm",
  191.         "album",
  192.         "algorithm",
  193.         "algorithm's",
  194.         "algorithms",
  195.         "alias",
  196.         "alive",
  197.         "all",
  198.         "allow",
  199.         "allowed",
  200.         "allowing",
  201.         "allows",
  202.         "almost",
  203.         "alone",
  204.         "along",
  205.         "already",
  206.         "also",
  207.         "alter",
  208.         "altered",
  209.         "altering",
  210.         "alternate",
  211.         "alternative",
  212.         "alternative's",
  213.         "alternatively",
  214.         "alternatives",
  215.         "alters",
  216.         "although",
  217.         "altogether",
  218.         "always",
  219.         "am",
  220.         "ambiguous",
  221.         "among",
  222.         "amount",
  223.         "amount's",
  224.         "amounts",
  225.         "amuse",
  226.         "amused",
  227.         "amuses",
  228.         "amusing",
  229.         "an",
  230.         "analog",
  231.         "analogue",
  232.         "analysis",
  233.         "ancient",
  234.         "and",
  235.         "angle",
  236.         "angry",
  237.         "animal",
  238.         "announce",
  239.         "announcement",
  240.         "annoy",
  241.         "annoyed",
  242.         "annoying",
  243.         "annoys",
  244.         "annual",
  245.         "anonymous",
  246.         "another",
  247.         "answer",
  248.         "answer's",
  249.         "answered",
  250.         "answering",
  251.         "answers",
  252.         "any",
  253.         "anybody",
  254.         "anyone",
  255.         "anyplace",
  256.         "anything",
  257.         "anyway",
  258.         "anywhere",
  259.         "apart",
  260.         "apologies",
  261.         "apologize",
  262.         "apology",
  263.         "apology's",
  264.         "apparent",
  265.         "apparently",
  266.         "appeal",
  267.         "appear",
  268.         "appearance",
  269.         "appeared",
  270.         "appearing",
  271.         "appears",
  272.         "apple",
  273.         "application",
  274.         "application's",
  275.         "applications",
  276.         "applied",
  277.         "applies",
  278.         "apply",
  279.         "applying",
  280.         "appreciate",
  281.         "appreciated",
  282.         "appreciates",
  283.         "appreciating",
  284.         "approach",
  285.         "appropriate",
  286.         "approval",
  287.         "approve",
  288.         "approved",
  289.         "approves",
  290.         "approving",
  291.         "arbitrary",
  292.         "are",
  293.         "area",
  294.         "area's",
  295.         "areas",
  296.         "aren't",
  297.         "argue",
  298.         "argued",
  299.         "argues",
  300.         "arguing",
  301.         "argument",
  302.         "argument's",
  303.         "arguments",
  304.         "arise",
  305.         "arises",
  306.         "arithmetic",
  307.         "arm",
  308.         "army",
  309.         "around",
  310.         "arrange",
  311.         "arranged",
  312.         "arrangement",
  313.         "arrangement's",
  314.         "arrangements",
  315.         "arranges",
  316.         "arranging",
  317.         "arrive",
  318.         "arrived",
  319.         "arrives",
  320.         "arriving",
  321.         "art",
  322.         "article",
  323.         "article's",
  324.         "articles",
  325.         "artificial",
  326.         "artist",
  327.         "as",
  328.         "aside",
  329.         "ask",
  330.         "asked",
  331.         "asking",
  332.         "asks",
  333.         "asleep",
  334.         "aspect",
  335.         "aspect's",
  336.         "aspects",
  337.         "assembler",
  338.         "assembly",
  339.         "assistant",
  340.         "associate",
  341.         "associated",
  342.         "associates",
  343.         "associating",
  344.         "association",
  345.         "assume",
  346.         "assumed",
  347.         "assumes",
  348.         "assuming",
  349.         "assumption",
  350.         "assure",
  351.         "assured",
  352.         "assures",
  353.         "assuring",
  354.         "at",
  355.         "ate",
  356.         "atmosphere",
  357.         "attach",
  358.         "attached",
  359.         "attaches",
  360.         "attaching",
  361.         "attack",
  362.         "attempt",
  363.         "attempt's",
  364.         "attempted",
  365.         "attempting",
  366.         "attempts",
  367.         "attend",
  368.         "attended",
  369.         "attending",
  370.         "attends",
  371.         "attention",
  372.         "attitude",
  373.         "attract",
  374.         "attractive",
  375.         "audience",
  376.         "author",
  377.         "author's",
  378.         "authorities",
  379.         "authority",
  380.         "authority's",
  381.         "authors",
  382.         "automatic",
  383.         "automatically",
  384.         "automobile",
  385.         "autumn",
  386.         "autumn's",
  387.         "available",
  388.         "average",
  389.         "avoid",
  390.         "avoided",
  391.         "avoiding",
  392.         "avoids",
  393.         "awake",
  394.         "award",
  395.         "aware",
  396.         "away",
  397.         "awful",
  398.         "awkward",
  399.         "back",
  400.         "backed",
  401.         "background",
  402.         "backing",
  403.         "backs",
  404.         "backwards",
  405.         "bad",
  406.         "badly",
  407.         "balance",
  408.         "ball",
  409.         "ban",
  410.         "band",
  411.         "bank",
  412.         "bar",
  413.         "bar's",
  414.         "bars",
  415.         "base",
  416.         "based",
  417.         "bases",
  418.         "basic",
  419.         "basically",
  420.         "basing",
  421.         "basis",
  422.         "battery",
  423.         "be",
  424.         "bear",
  425.         "bear's",
  426.         "bearing",
  427.         "bears",
  428.         "beautiful",
  429.         "became",
  430.         "because",
  431.         "become",
  432.         "becomes",
  433.         "becoming",
  434.         "bed",
  435.         "been",
  436.         "before",
  437.         "beforehand",
  438.         "began",
  439.         "begin",
  440.         "beginning",
  441.         "begins",
  442.         "begun",
  443.         "behalf",
  444.         "behave",
  445.         "behavior",
  446.         "behind",
  447.         "being",
  448.         "believe",
  449.         "believed",
  450.         "believes",
  451.         "believing",
  452.         "belong",
  453.         "belongs",
  454.         "below",
  455.         "benefit",
  456.         "benefit's",
  457.         "benefits",
  458.         "besides",
  459.         "best",
  460.         "bet",
  461.         "bets",
  462.         "better",
  463.         "betting",
  464.         "between",
  465.         "beyond",
  466.         "bid",
  467.         "bidding",
  468.         "bids",
  469.         "big",
  470.         "bigger",
  471.         "biggest",
  472.         "bill",
  473.         "binary",
  474.         "bind",
  475.         "binding",
  476.         "binds",
  477.         "biology",
  478.         "bit",
  479.         "bit's",
  480.         "bite",
  481.         "bites",
  482.         "biting",
  483.         "bits",
  484.         "bitten",
  485.         "bizarre",
  486.         "black",
  487.         "blame",
  488.         "blank",
  489.         "block",
  490.         "blow",
  491.         "blue",
  492.         "board",
  493.         "board's",
  494.         "boards",
  495.         "boat",
  496.         "bodies",
  497.         "body",
  498.         "body's",
  499.         "book",
  500.         "book's",
  501.         "books",
  502.         "boot",
  503.         "bore",
  504.         "borne",
  505.         "borrow",
  506.         "borrowed",
  507.         "borrowing",
  508.         "borrows",
  509.         "both",
  510.         "bother",
  511.         "bothered",
  512.         "bothering",
  513.         "bothers",
  514.         "bottle",
  515.         "bottom",
  516.         "bought",
  517.         "bound",
  518.         "box",
  519.         "box's",
  520.         "boxes",
  521.         "boy",
  522.         "bracket",
  523.         "bracket's",
  524.         "brackets",
  525.         "branch",
  526.         "branch's",
  527.         "branches",
  528.         "brand",
  529.         "breach",
  530.         "break",
  531.         "break's",
  532.         "breaking",
  533.         "breaks",
  534.         "bridge",
  535.         "brief",
  536.         "briefly",
  537.         "bright",
  538.         "bring",
  539.         "bringing",
  540.         "brings",
  541.         "broadcast",
  542.         "broadcasting",
  543.         "broadcasts",
  544.         "broke",
  545.         "broken",
  546.         "brother",
  547.         "brought",
  548.         "brown",
  549.         "bucket",
  550.         "budget",
  551.         "buffer",
  552.         "bug",
  553.         "bug's",
  554.         "bugs",
  555.         "build",
  556.         "building",
  557.         "building's",
  558.         "buildings",
  559.         "builds",
  560.         "built",
  561.         "bulk",
  562.         "bulletin",
  563.         "buried",
  564.         "buries",
  565.         "bury",
  566.         "burying",
  567.         "bus",
  568.         "business",
  569.         "busy",
  570.         "but",
  571.         "button",
  572.         "buy",
  573.         "buying",
  574.         "buys",
  575.         "by",
  576.         "byte",
  577.         "byte's",
  578.         "bytes",
  579.         "calculate",
  580.         "calculation",
  581.         "calculation's",
  582.         "calculations",
  583.         "call",
  584.         "call's",
  585.         "called",
  586.         "calling",
  587.         "calls",
  588.         "came",
  589.         "campaign",
  590.         "can",
  591.         "can't",
  592.         "candidate",
  593.         "cannot",
  594.         "capable",
  595.         "capacity",
  596.         "capital",
  597.         "captain",
  598.         "car",
  599.         "card",
  600.         "card's",
  601.         "cardboard",
  602.         "cards",
  603.         "care",
  604.         "care's",
  605.         "careful",
  606.         "carefully",
  607.         "cares",
  608.         "carried",
  609.         "carries",
  610.         "carry",
  611.         "carry's",
  612.         "carrying",
  613.         "case",
  614.         "case's",
  615.         "cases",
  616.         "cassette",
  617.         "cat",
  618.         "catalog",
  619.         "catch",
  620.         "catches",
  621.         "catching",
  622.         "categories",
  623.         "category",
  624.         "category's",
  625.         "caught",
  626.         "cause",
  627.         "cause's",
  628.         "caused",
  629.         "causes",
  630.         "causing",
  631.         "cease",
  632.         "cell",
  633.         "cent",
  634.         "center",
  635.         "central",
  636.         "century",
  637.         "certain",
  638.         "certainly",
  639.         "chain",
  640.         "chair",
  641.         "chairman",
  642.         "chance",
  643.         "chance's",
  644.         "chances",
  645.         "change",
  646.         "change's",
  647.         "changed",
  648.         "changes",
  649.         "changing",
  650.         "channel",
  651.         "channel's",
  652.         "channels",
  653.         "chaos",
  654.         "chapter",
  655.         "char",
  656.         "char's",
  657.         "character",
  658.         "character's",
  659.         "characters",
  660.         "charge",
  661.         "charge's",
  662.         "charged",
  663.         "charges",
  664.         "charging",
  665.         "chars",
  666.         "cheap",
  667.         "cheaper",
  668.         "cheapest",
  669.         "check",
  670.         "check's",
  671.         "checked",
  672.         "checking",
  673.         "checks",
  674.         "chemical",
  675.         "child",
  676.         "child's",
  677.         "children",
  678.         "chip",
  679.         "chip's",
  680.         "chips",
  681.         "choice",
  682.         "choose",
  683.         "chooses",
  684.         "choosing",
  685.         "chose",
  686.         "chosen",
  687.         "church",
  688.         "circle",
  689.         "circuit",
  690.         "circulation",
  691.         "circumstance",
  692.         "circumstance's",
  693.         "circumstances",
  694.         "citizen",
  695.         "city",
  696.         "claim",
  697.         "claim's",
  698.         "claimed",
  699.         "claiming",
  700.         "claims",
  701.         "clarify",
  702.         "class",
  703.         "class's",
  704.         "classes",
  705.         "clean",
  706.         "clear",
  707.         "cleared",
  708.         "clearer",
  709.         "clearest",
  710.         "clearing",
  711.         "clearly",
  712.         "clears",
  713.         "clever",
  714.         "clock",
  715.         "close",
  716.         "closed",
  717.         "closely",
  718.         "closer",
  719.         "closes",
  720.         "closest",
  721.         "closing",
  722.         "club",
  723.         "clue",
  724.         "code",
  725.         "code's",
  726.         "coded",
  727.         "codes",
  728.         "coding",
  729.         "coffee",
  730.         "cold",
  731.         "collapse",
  732.         "collect",
  733.         "collected",
  734.         "collecting",
  735.         "collection",
  736.         "collects",
  737.         "college",
  738.         "college's",
  739.         "colleges",
  740.         "color",
  741.         "color's",
  742.         "colors",
  743.         "column",
  744.         "combination",
  745.         "combination's",
  746.         "combinations",
  747.         "combine",
  748.         "combined",
  749.         "combines",
  750.         "combining",
  751.         "come",
  752.         "comes",
  753.         "coming",
  754.         "command",
  755.         "command's",
  756.         "commands",
  757.         "comment",
  758.         "comment's",
  759.         "commented",
  760.         "commenting",
  761.         "comments",
  762.         "commercial",
  763.         "commission",
  764.         "commitment",
  765.         "committee",
  766.         "common",
  767.         "commonly",
  768.         "communicate",
  769.         "communication",
  770.         "communication's",
  771.         "communications",
  772.         "community",
  773.         "company",
  774.         "comparable",
  775.         "comparatively",
  776.         "compare",
  777.         "compared",
  778.         "compares",
  779.         "comparing",
  780.         "comparison",
  781.         "compatibility",
  782.         "compatible",
  783.         "competition",
  784.         "compiler",
  785.         "complain",
  786.         "complained",
  787.         "complaining",
  788.         "complains",
  789.         "complaint",
  790.         "complaint's",
  791.         "complaints",
  792.         "complete",
  793.         "completed",
  794.         "completely",
  795.         "completes",
  796.         "completing",
  797.         "complex",
  798.         "complexity",
  799.         "complicate",
  800.         "complicated",
  801.         "complicates",
  802.         "complicating",
  803.         "component",
  804.         "component's",
  805.         "components",
  806.         "compose",
  807.         "composed",
  808.         "composes",
  809.         "composing",
  810.         "composition",
  811.         "comprehensive",
  812.         "compromise",
  813.         "compulsory",
  814.         "compute",
  815.         "computed",
  816.         "computer",
  817.         "computer's",
  818.         "computers",
  819.         "computes",
  820.         "computing",
  821.         "concept",
  822.         "concern",
  823.         "concern's",
  824.         "concerned",
  825.         "concerning",
  826.         "concerns",
  827.         "conclusion",
  828.         "concrete",
  829.         "condition",
  830.         "condition's",
  831.         "conditions",
  832.         "conference",
  833.         "confident",
  834.         "confirm",
  835.         "confirmed",
  836.         "confirming",
  837.         "confirms",
  838.         "confuse",
  839.         "confused",
  840.         "confuses",
  841.         "confusing",
  842.         "confusion",
  843.         "connect",
  844.         "connected",
  845.         "connecting",
  846.         "connection",
  847.         "connection's",
  848.         "connections",
  849.         "connects",
  850.         "consequence",
  851.         "consequence's",
  852.         "consequences",
  853.         "consequently",
  854.         "consider",
  855.         "considerable",
  856.         "considerably",
  857.         "consideration",
  858.         "considered",
  859.         "considering",
  860.         "considers",
  861.         "consist",
  862.         "consistency",
  863.         "consistent",
  864.         "consists",
  865.         "constant",
  866.         "constraint",
  867.         "constraint's",
  868.         "constraints",
  869.         "construct",
  870.         "consumption",
  871.         "contact",
  872.         "contain",
  873.         "contained",
  874.         "containing",
  875.         "contains",
  876.         "content",
  877.         "content's",
  878.         "contents",
  879.         "context",
  880.         "continually",
  881.         "continuation",
  882.         "continue",
  883.         "continued",
  884.         "continues",
  885.         "continuing",
  886.         "continuous",
  887.         "continuously",
  888.         "contract",
  889.         "contrary",
  890.         "contrast",
  891.         "contribute",
  892.         "contribution",
  893.         "contribution's",
  894.         "contributions",
  895.         "control",
  896.         "control's",
  897.         "controlled",
  898.         "controlling",
  899.         "controls",
  900.         "convenient",
  901.         "convention",
  902.         "convention's",
  903.         "conventional",
  904.         "conventions",
  905.         "conversation",
  906.         "convert",
  907.         "convince",
  908.         "convinced",
  909.         "convinces",
  910.         "convincing",
  911.         "cope",
  912.         "copied",
  913.         "copies",
  914.         "copy",
  915.         "copy's",
  916.         "copying",
  917.         "core",
  918.         "corner",
  919.         "corner's",
  920.         "corners",
  921.         "correct",
  922.         "corrected",
  923.         "correcting",
  924.         "correction",
  925.         "correctly",
  926.         "corrects",
  927.         "corrupt",
  928.         "corrupted",
  929.         "corrupting",
  930.         "corrupts",
  931.         "cost",
  932.         "cost's",
  933.         "costing",
  934.         "costs",
  935.         "could",
  936.         "couldn't",
  937.         "council",
  938.         "count",
  939.         "count's",
  940.         "counted",
  941.         "counter",
  942.         "counting",
  943.         "country",
  944.         "counts",
  945.         "county",
  946.         "couple",
  947.         "course",
  948.         "course's",
  949.         "courses",
  950.         "court",
  951.         "cover",
  952.         "cover's",
  953.         "covered",
  954.         "covering",
  955.         "covers",
  956.         "crash",
  957.         "crash's",
  958.         "crashed",
  959.         "crashes",
  960.         "crashing",
  961.         "crazy",
  962.         "create",
  963.         "created",
  964.         "creates",
  965.         "creating",
  966.         "creation",
  967.         "creature",
  968.         "credit",
  969.         "crisis",
  970.         "crisp",
  971.         "crisp's",
  972.         "crisps",
  973.         "critical",
  974.         "criticism",
  975.         "cross",
  976.         "cry",
  977.         "cs",
  978.         "culture",
  979.         "cum",
  980.         "cumming",
  981.         "cums",
  982.         "cup",
  983.         "cure",
  984.         "curious",
  985.         "current",
  986.         "currently",
  987.         "cursor",
  988.         "customer",
  989.         "cut",
  990.         "cuts",
  991.         "cutting",
  992.         "cycle",
  993.         "cycle's",
  994.         "cycles",
  995.         "daily",
  996.         "damage",
  997.         "damaged",
  998.         "damages",
  999.         "damaging",
  1000.         "danger",
  1001.         "dangerous",
  1002.         "dare",
  1003.         "dark",
  1004.         "data",
  1005.         "database",
  1006.         "date",
  1007.         "date's",
  1008.         "dated",
  1009.         "dates",
  1010.         "dating",
  1011.         "datum",
  1012.         "datum's",
  1013.         "day",
  1014.         "day's",
  1015.         "days",
  1016.         "dead",
  1017.         "dead's",
  1018.         "deal",
  1019.         "deal's",
  1020.         "dealing",
  1021.         "deals",
  1022.         "dealt",
  1023.         "dear",
  1024.         "death",
  1025.         "debate",
  1026.         "decade",
  1027.         "decent",
  1028.         "decide",
  1029.         "decided",
  1030.         "decides",
  1031.         "deciding",
  1032.         "decision",
  1033.         "decision's",
  1034.         "decisions",
  1035.         "declare",
  1036.         "declared",
  1037.         "declares",
  1038.         "declaring",
  1039.         "decrease",
  1040.         "dedicate",
  1041.         "dedicated",
  1042.         "dedicates",
  1043.         "dedicating",
  1044.         "deduce",
  1045.         "deem",
  1046.         "deemed",
  1047.         "deeming",
  1048.         "deems",
  1049.         "deep",
  1050.         "deeply",
  1051.         "default",
  1052.         "defense",
  1053.         "define",
  1054.         "defined",
  1055.         "defines",
  1056.         "defining",
  1057.         "definite",
  1058.         "definitely",
  1059.         "definition",
  1060.         "definition's",
  1061.         "definitions",
  1062.         "definitive",
  1063.         "degree",
  1064.         "degree's",
  1065.         "degrees",
  1066.         "delay",
  1067.         "delete",
  1068.         "deleted",
  1069.         "deletes",
  1070.         "deleting",
  1071.         "deliberate",
  1072.         "deliberately",
  1073.         "deliver",
  1074.         "delivered",
  1075.         "delivering",
  1076.         "delivers",
  1077.         "delivery",
  1078.         "demand",
  1079.         "demand's",
  1080.         "demands",
  1081.         "democratic",
  1082.         "demonstrate",
  1083.         "demonstration",
  1084.         "department",
  1085.         "depend",
  1086.         "depended",
  1087.         "depending",
  1088.         "depends",
  1089.         "depth",
  1090.         "derive",
  1091.         "derived",
  1092.         "derives",
  1093.         "deriving",
  1094.         "describe",
  1095.         "described",
  1096.         "describes",
  1097.         "describing",
  1098.         "description",
  1099.         "description's",
  1100.         "descriptions",
  1101.         "design",
  1102.         "designed",
  1103.         "designing",
  1104.         "designs",
  1105.         "desirable",
  1106.         "desire",
  1107.         "desired",
  1108.         "desires",
  1109.         "desiring",
  1110.         "desk",
  1111.         "desperate",
  1112.         "despite",
  1113.         "destroy",
  1114.         "destroyed",
  1115.         "destroying",
  1116.         "destroys",
  1117.         "detail",
  1118.         "detail's",
  1119.         "detailed",
  1120.         "detailing",
  1121.         "details",
  1122.         "detect",
  1123.         "detected",
  1124.         "detecting",
  1125.         "detects",
  1126.         "determine",
  1127.         "determined",
  1128.         "determines",
  1129.         "determining",
  1130.         "develop",
  1131.         "developed",
  1132.         "developing",
  1133.         "development",
  1134.         "develops",
  1135.         "device",
  1136.         "device's",
  1137.         "devices",
  1138.         "devote",
  1139.         "devoted",
  1140.         "devotes",
  1141.         "devoting",
  1142.         "dictionary",
  1143.         "did",
  1144.         "didn't",
  1145.         "die",
  1146.         "died",
  1147.         "dies",
  1148.         "differ",
  1149.         "difference",
  1150.         "difference's",
  1151.         "differences",
  1152.         "different",
  1153.         "differently",
  1154.         "difficult",
  1155.         "difficulties",
  1156.         "difficulty",
  1157.         "difficulty's",
  1158.         "digit",
  1159.         "digit's",
  1160.         "digital",
  1161.         "digits",
  1162.         "dinner",
  1163.         "direct",
  1164.         "directed",
  1165.         "directing",
  1166.         "direction",
  1167.         "direction's",
  1168.         "directions",
  1169.         "directly",
  1170.         "director",
  1171.         "directory",
  1172.         "directs",
  1173.         "dirty",
  1174.         "disadvantage",
  1175.         "disagree",
  1176.         "disappear",
  1177.         "disappeared",
  1178.         "disappearing",
  1179.         "disappears",
  1180.         "disaster",
  1181.         "disc",
  1182.         "disc's",
  1183.         "discipline",
  1184.         "discount",
  1185.         "discourage",
  1186.         "discouraged",
  1187.         "discourages",
  1188.         "discouraging",
  1189.         "discover",
  1190.         "discovered",
  1191.         "discovering",
  1192.         "discovers",
  1193.         "discs",
  1194.         "discuss",
  1195.         "discussed",
  1196.         "discusses",
  1197.         "discussing",
  1198.         "discussion",
  1199.         "discussion's",
  1200.         "discussions",
  1201.         "disk",
  1202.         "dislike",
  1203.         "display",
  1204.         "displayed",
  1205.         "displaying",
  1206.         "displays",
  1207.         "distance",
  1208.         "distant",
  1209.         "distinct",
  1210.         "distinction",
  1211.         "distinctly",
  1212.         "distinguish",
  1213.         "distribute",
  1214.         "distributed",
  1215.         "distributes",
  1216.         "distributing",
  1217.         "distribution",
  1218.         "district",
  1219.         "disturb",
  1220.         "disturbed",
  1221.         "disturbing",
  1222.         "disturbs",
  1223.         "ditto",
  1224.         "divide",
  1225.         "divided",
  1226.         "divides",
  1227.         "dividing",
  1228.         "division",
  1229.         "do",
  1230.         "document",
  1231.         "document's",
  1232.         "documentation",
  1233.         "documented",
  1234.         "documenting",
  1235.         "documents",
  1236.         "doe",
  1237.         "doe's",
  1238.         "does",
  1239.         "doesn't",
  1240.         "dog",
  1241.         "doing",
  1242.         "dollar",
  1243.         "domain",
  1244.         "don't",
  1245.         "done",
  1246.         "door",
  1247.         "door's",
  1248.         "doors",
  1249.         "double",
  1250.         "doubt",
  1251.         "doubtful",
  1252.         "down",
  1253.         "dozen",
  1254.         "dozen's",
  1255.         "dozens",
  1256.         "drastic",
  1257.         "draw",
  1258.         "draw's",
  1259.         "drawing",
  1260.         "drawn",
  1261.         "draws",
  1262.         "dream",
  1263.         "drew",
  1264.         "drink",
  1265.         "drive",
  1266.         "drive's",
  1267.         "driven",
  1268.         "driver",
  1269.         "driver's",
  1270.         "drivers",
  1271.         "drives",
  1272.         "driving",
  1273.         "drop",
  1274.         "dropped",
  1275.         "dropping",
  1276.         "drops",
  1277.         "drove",
  1278.         "dry",
  1279.         "dubious",
  1280.         "due",
  1281.         "dumb",
  1282.         "dump",
  1283.         "during",
  1284.         "duty",
  1285.         "dying",
  1286.         "each",
  1287.         "earlier",
  1288.         "earliest",
  1289.         "early",
  1290.         "earth",
  1291.         "ease",
  1292.         "easier",
  1293.         "easiest",
  1294.         "easily",
  1295.         "east",
  1296.         "easy",
  1297.         "eat",
  1298.         "eaten",
  1299.         "eating",
  1300.         "eats",
  1301.         "economic",
  1302.         "economy",
  1303.         "edge",
  1304.         "edit",
  1305.         "edited",
  1306.         "editing",
  1307.         "edition",
  1308.         "editor",
  1309.         "editor's",
  1310.         "editors",
  1311.         "edits",
  1312.         "education",
  1313.         "educational",
  1314.         "effect",
  1315.         "effect's",
  1316.         "effective",
  1317.         "effectively",
  1318.         "effects",
  1319.         "efficient",
  1320.         "effort",
  1321.         "effort's",
  1322.         "efforts",
  1323.         "eight",
  1324.         "either",
  1325.         "elect",
  1326.         "elected",
  1327.         "electing",
  1328.         "election",
  1329.         "electric",
  1330.         "electronic",
  1331.         "electronics",
  1332.         "elects",
  1333.         "element",
  1334.         "element's",
  1335.         "elements",
  1336.         "elevator",
  1337.         "else",
  1338.         "elsewhere",
  1339.         "embarrass",
  1340.         "embarrassed",
  1341.         "embarrasses",
  1342.         "embarrassing",
  1343.         "emergency",
  1344.         "emphasis",
  1345.         "employee",
  1346.         "empty",
  1347.         "enable",
  1348.         "enables",
  1349.         "encounter",
  1350.         "encountered",
  1351.         "encountering",
  1352.         "encounters",
  1353.         "encourage",
  1354.         "encouraged",
  1355.         "encourages",
  1356.         "encouraging",
  1357.         "end",
  1358.         "end's",
  1359.         "ended",
  1360.         "ending",
  1361.         "ends",
  1362.         "enemy",
  1363.         "engineer",
  1364.         "engineer's",
  1365.         "engineered",
  1366.         "engineering",
  1367.         "engineers",
  1368.         "enjoy",
  1369.         "enormous",
  1370.         "enough",
  1371.         "ensure",
  1372.         "ensured",
  1373.         "ensures",
  1374.         "ensuring",
  1375.         "enter",
  1376.         "entered",
  1377.         "entering",
  1378.         "enters",
  1379.         "entire",
  1380.         "entirely",
  1381.         "entitle",
  1382.         "entitled",
  1383.         "entitles",
  1384.         "entitling",
  1385.         "entity",
  1386.         "entrance",
  1387.         "entries",
  1388.         "entry",
  1389.         "entry's",
  1390.         "environment",
  1391.         "equal",
  1392.         "equally",
  1393.         "equipment",
  1394.         "equivalent",
  1395.         "eraser",
  1396.         "err",
  1397.         "error",
  1398.         "error's",
  1399.         "errors",
  1400.         "escape",
  1401.         "especially",
  1402.         "essential",
  1403.         "essentially",
  1404.         "establish",
  1405.         "established",
  1406.         "establishes",
  1407.         "establishing",
  1408.         "establishment",
  1409.         "estimate",
  1410.         "even",
  1411.         "evened",
  1412.         "evening",
  1413.         "evening's",
  1414.         "evenings",
  1415.         "evens",
  1416.         "event",
  1417.         "event's",
  1418.         "events",
  1419.         "eventually",
  1420.         "ever",
  1421.         "every",
  1422.         "everybody",
  1423.         "everyone",
  1424.         "everything",
  1425.         "everywhere",
  1426.         "evidence",
  1427.         "exact",
  1428.         "exactly",
  1429.         "examine",
  1430.         "examined",
  1431.         "examines",
  1432.         "examining",
  1433.         "example",
  1434.         "example's",
  1435.         "examples",
  1436.         "excellent",
  1437.         "except",
  1438.         "exception",
  1439.         "exception's",
  1440.         "exceptions",
  1441.         "excess",
  1442.         "excessive",
  1443.         "exchange",
  1444.         "exclude",
  1445.         "excluded",
  1446.         "excludes",
  1447.         "excluding",
  1448.         "exclusive",
  1449.         "excuse",
  1450.         "execute",
  1451.         "executed",
  1452.         "executes",
  1453.         "executing",
  1454.         "exercise",
  1455.         "exist",
  1456.         "existed",
  1457.         "existence",
  1458.         "existing",
  1459.         "exists",
  1460.         "expand",
  1461.         "expanded",
  1462.         "expanding",
  1463.         "expands",
  1464.         "expansion",
  1465.         "expect",
  1466.         "expected",
  1467.         "expecting",
  1468.         "expects",
  1469.         "expense",
  1470.         "expensive",
  1471.         "experience",
  1472.         "experience's",
  1473.         "experienced",
  1474.         "experiences",
  1475.         "experiencing",
  1476.         "experiment",
  1477.         "experiment's",
  1478.         "experimental",
  1479.         "experiments",
  1480.         "expert",
  1481.         "expert's",
  1482.         "experts",
  1483.         "explain",
  1484.         "explained",
  1485.         "explaining",
  1486.         "explains",
  1487.         "explanation",
  1488.         "explicit",
  1489.         "express",
  1490.         "expressed",
  1491.         "expresses",
  1492.         "expressing",
  1493.         "expression",
  1494.         "extend",
  1495.         "extended",
  1496.         "extending",
  1497.         "extends",
  1498.         "extension",
  1499.         "extensive",
  1500.         "extent",
  1501.         "external",
  1502.         "extra",
  1503.         "extract",
  1504.         "extreme",
  1505.         "extremely",
  1506.         "eye",
  1507.         "eye's",
  1508.         "eyes",
  1509.         "face",
  1510.         "facilities",
  1511.         "facility",
  1512.         "facility's",
  1513.         "fact",
  1514.         "fact's",
  1515.         "factor",
  1516.         "factor's",
  1517.         "factors",
  1518.         "facts",
  1519.         "fail",
  1520.         "fail's",
  1521.         "failed",
  1522.         "failing",
  1523.         "fails",
  1524.         "failure",
  1525.         "fair",
  1526.         "fairly",
  1527.         "faith",
  1528.         "fall",
  1529.         "fall's",
  1530.         "fallen",
  1531.         "falling",
  1532.         "falls",
  1533.         "false",
  1534.         "familiar",
  1535.         "family",
  1536.         "famous",
  1537.         "fan",
  1538.         "fancy",
  1539.         "far",
  1540.         "farm",
  1541.         "farther",
  1542.         "farthest",
  1543.         "fashion",
  1544.         "fast",
  1545.         "faster",
  1546.         "fastest",
  1547.         "fatal",
  1548.         "fate",
  1549.         "father",
  1550.         "fault",
  1551.         "fault's",
  1552.         "faults",
  1553.         "favor",
  1554.         "favorite",
  1555.         "fear",
  1556.         "feasible",
  1557.         "feature",
  1558.         "feature's",
  1559.         "features",
  1560.         "fed",
  1561.         "federal",
  1562.         "feed",
  1563.         "feedback",
  1564.         "feeding",
  1565.         "feeds",
  1566.         "feel",
  1567.         "feel's",
  1568.         "feeling",
  1569.         "feels",
  1570.         "feet",
  1571.         "fell",
  1572.         "felt",
  1573.         "few",
  1574.         "fewer",
  1575.         "fewest",
  1576.         "field",
  1577.         "field's",
  1578.         "fields",
  1579.         "fight",
  1580.         "figure",
  1581.         "figure's",
  1582.         "figures",
  1583.         "file",
  1584.         "file's",
  1585.         "filed",
  1586.         "files",
  1587.         "filing",
  1588.         "fill",
  1589.         "filled",
  1590.         "filling",
  1591.         "fills",
  1592.         "film",
  1593.         "final",
  1594.         "finally",
  1595.         "financial",
  1596.         "find",
  1597.         "find's",
  1598.         "finding",
  1599.         "finds",
  1600.         "fine",
  1601.         "finger",
  1602.         "finger's",
  1603.         "fingers",
  1604.         "finish",
  1605.         "finished",
  1606.         "finishes",
  1607.         "finishing",
  1608.         "finite",
  1609.         "fire",
  1610.         "firm",
  1611.         "firmly",
  1612.         "first",
  1613.         "firstly",
  1614.         "fiscal",
  1615.         "fish",
  1616.         "fish's",
  1617.         "fishes",
  1618.         "fit",
  1619.         "fit's",
  1620.         "fits",
  1621.         "fitted",
  1622.         "fitting",
  1623.         "five",
  1624.         "fix",
  1625.         "fixed",
  1626.         "fixes",
  1627.         "fixing",
  1628.         "flag",
  1629.         "flash",
  1630.         "flashed",
  1631.         "flashes",
  1632.         "flashing",
  1633.         "flat",
  1634.         "flavor",
  1635.         "flew",
  1636.         "flexible",
  1637.         "flied",
  1638.         "flies",
  1639.         "flight",
  1640.         "float",
  1641.         "floated",
  1642.         "floating",
  1643.         "floats",
  1644.         "floor",
  1645.         "flow",
  1646.         "flown",
  1647.         "fly",
  1648.         "fly's",
  1649.         "flying",
  1650.         "folk",
  1651.         "folk's",
  1652.         "folks",
  1653.         "follow",
  1654.         "followed",
  1655.         "following",
  1656.         "follows",
  1657.         "food",
  1658.         "foot",
  1659.         "foot's",
  1660.         "for",
  1661.         "force",
  1662.         "force's",
  1663.         "forced",
  1664.         "forces",
  1665.         "forcing",
  1666.         "foreign",
  1667.         "forever",
  1668.         "forget",
  1669.         "forgets",
  1670.         "forgetting",
  1671.         "forgot",
  1672.         "forgotten",
  1673.         "form",
  1674.         "form's",
  1675.         "formal",
  1676.         "format",
  1677.         "formed",
  1678.         "former",
  1679.         "forming",
  1680.         "forms",
  1681.         "forth",
  1682.         "forthcoming",
  1683.         "fortunately",
  1684.         "fortune",
  1685.         "forward",
  1686.         "found",
  1687.         "four",
  1688.         "fourth",
  1689.         "fraction",
  1690.         "frame",
  1691.         "free",
  1692.         "freedom",
  1693.         "freely",
  1694.         "french",
  1695.         "frequent",
  1696.         "frequently",
  1697.         "fresh",
  1698.         "friend",
  1699.         "friend's",
  1700.         "friendly",
  1701.         "friends",
  1702.         "fries",
  1703.         "from",
  1704.         "front",
  1705.         "fry",
  1706.         "fry's",
  1707.         "full",
  1708.         "fully",
  1709.         "fun",
  1710.         "function",
  1711.         "function's",
  1712.         "functions",
  1713.         "fund",
  1714.         "fund's",
  1715.         "fundamental",
  1716.         "fundamentally",
  1717.         "funds",
  1718.         "funny",
  1719.         "further",
  1720.         "furthest",
  1721.         "future",
  1722.         "gain",
  1723.         "gained",
  1724.         "gaining",
  1725.         "gains",
  1726.         "game",
  1727.         "game's",
  1728.         "games",
  1729.         "gap",
  1730.         "garbage",
  1731.         "garden",
  1732.         "gas",
  1733.         "gasoline",
  1734.         "gather",
  1735.         "gave",
  1736.         "general",
  1737.         "generally",
  1738.         "generate",
  1739.         "generated",
  1740.         "generates",
  1741.         "generating",
  1742.         "generation",
  1743.         "genuine",
  1744.         "get",
  1745.         "gets",
  1746.         "getting",
  1747.         "girl",
  1748.         "give",
  1749.         "given",
  1750.         "gives",
  1751.         "giving",
  1752.         "glad",
  1753.         "glass",
  1754.         "global",
  1755.         "go",
  1756.         "go's",
  1757.         "goes",
  1758.         "going",
  1759.         "gone",
  1760.         "good",
  1761.         "goods",
  1762.         "got",
  1763.         "gotten",
  1764.         "government",
  1765.         "governor",
  1766.         "gradually",
  1767.         "graduate",
  1768.         "grand",
  1769.         "grand's",
  1770.         "grands",
  1771.         "grant",
  1772.         "granted",
  1773.         "granting",
  1774.         "grants",
  1775.         "graph",
  1776.         "graphic",
  1777.         "graphic's",
  1778.         "graphics",
  1779.         "grateful",
  1780.         "grave",
  1781.         "gray",
  1782.         "great",
  1783.         "greater",
  1784.         "greatest",
  1785.         "greatly",
  1786.         "green",
  1787.         "grew",
  1788.         "grind",
  1789.         "grinding",
  1790.         "grinds",
  1791.         "gross",
  1792.         "gross's",
  1793.         "grosses",
  1794.         "ground",
  1795.         "ground's",
  1796.         "grounds",
  1797.         "group",
  1798.         "group's",
  1799.         "groups",
  1800.         "grow",
  1801.         "growing",
  1802.         "grown",
  1803.         "grows",
  1804.         "growth",
  1805.         "guarantee",
  1806.         "guaranteed",
  1807.         "guaranteeing",
  1808.         "guarantees",
  1809.         "guard",
  1810.         "guess",
  1811.         "guessed",
  1812.         "guesses",
  1813.         "guessing",
  1814.         "guide",
  1815.         "gun",
  1816.         "guy",
  1817.         "habit",
  1818.         "habit's",
  1819.         "habits",
  1820.         "hack",
  1821.         "had",
  1822.         "hair",
  1823.         "half",
  1824.         "hall",
  1825.         "hand",
  1826.         "hand's",
  1827.         "handed",
  1828.         "handing",
  1829.         "handle",
  1830.         "handled",
  1831.         "handles",
  1832.         "handling",
  1833.         "hands",
  1834.         "handy",
  1835.         "hang",
  1836.         "hanged",
  1837.         "hanging",
  1838.         "hangs",
  1839.         "happen",
  1840.         "happened",
  1841.         "happening",
  1842.         "happens",
  1843.         "happily",
  1844.         "happy",
  1845.         "hard",
  1846.         "harder",
  1847.         "hardest",
  1848.         "hardly",
  1849.         "hardware",
  1850.         "harm",
  1851.         "harmful",
  1852.         "harmless",
  1853.         "has",
  1854.         "hat",
  1855.         "hate",
  1856.         "have",
  1857.         "haven't",
  1858.         "having",
  1859.         "he",
  1860.         "he's",
  1861.         "head",
  1862.         "head's",
  1863.         "headed",
  1864.         "header",
  1865.         "heading",
  1866.         "heads",
  1867.         "health",
  1868.         "healthy",
  1869.         "hear",
  1870.         "heard",
  1871.         "hearing",
  1872.         "hears",
  1873.         "heart",
  1874.         "heat",
  1875.         "heavily",
  1876.         "heavy",
  1877.         "held",
  1878.         "hell",
  1879.         "hello",
  1880.         "help",
  1881.         "helped",
  1882.         "helpful",
  1883.         "helping",
  1884.         "helps",
  1885.         "hence",
  1886.         "her",
  1887.         "here",
  1888.         "hereby",
  1889.         "herself",
  1890.         "hes",
  1891.         "hid",
  1892.         "hidden",
  1893.         "hide",
  1894.         "hides",
  1895.         "hiding",
  1896.         "high",
  1897.         "higher",
  1898.         "highest",
  1899.         "highly",
  1900.         "hill",
  1901.         "him",
  1902.         "himself",
  1903.         "hint",
  1904.         "hint's",
  1905.         "hints",
  1906.         "his",
  1907.         "historical",
  1908.         "history",
  1909.         "hit",
  1910.         "hit's",
  1911.         "hits",
  1912.         "hitting",
  1913.         "hold",
  1914.         "hold's",
  1915.         "holding",
  1916.         "holds",
  1917.         "hole",
  1918.         "hole's",
  1919.         "holes",
  1920.         "holiday",
  1921.         "holiday's",
  1922.         "holidays",
  1923.         "home",
  1924.         "honest",
  1925.         "hope",
  1926.         "hoped",
  1927.         "hopefully",
  1928.         "hopes",
  1929.         "hoping",
  1930.         "horrible",
  1931.         "horse",
  1932.         "horse's",
  1933.         "horses",
  1934.         "hospital",
  1935.         "host",
  1936.         "hot",
  1937.         "hotel",
  1938.         "hour",
  1939.         "hour's",
  1940.         "hours",
  1941.         "house",
  1942.         "how",
  1943.         "however",
  1944.         "huge",
  1945.         "human",
  1946.         "hundred",
  1947.         "hundred's",
  1948.         "hundreds",
  1949.         "hung",
  1950.         "hunt",
  1951.         "hurry",
  1952.         "husband",
  1953.         "ice",
  1954.         "idea",
  1955.         "idea's",
  1956.         "ideal",
  1957.         "ideas",
  1958.         "identical",
  1959.         "identify",
  1960.         "identity",
  1961.         "if",
  1962.         "ignore",
  1963.         "ignored",
  1964.         "ignores",
  1965.         "ignoring",
  1966.         "ill",
  1967.         "illegal",
  1968.         "image",
  1969.         "image's",
  1970.         "images",
  1971.         "imagination",
  1972.         "imagine",
  1973.         "immediate",
  1974.         "immediately",
  1975.         "impact",
  1976.         "implement",
  1977.         "implemented",
  1978.         "implementing",
  1979.         "implements",
  1980.         "implication",
  1981.         "implication's",
  1982.         "implications",
  1983.         "implied",
  1984.         "implies",
  1985.         "imply",
  1986.         "implying",
  1987.         "importance",
  1988.         "important",
  1989.         "importantly",
  1990.         "impose",
  1991.         "imposed",
  1992.         "imposes",
  1993.         "imposing",
  1994.         "impossible",
  1995.         "impression",
  1996.         "improve",
  1997.         "improved",
  1998.         "improvement",
  1999.         "improvement's",
  2000.         "improvements",
  2001.         "improves",
  2002.         "improving",
  2003.         "in",
  2004.         "inability",
  2005.         "inadequate",
  2006.         "inch",
  2007.         "inch's",
  2008.         "inches",
  2009.         "incident",
  2010.         "incidentally",
  2011.         "incline",
  2012.         "inclined",
  2013.         "inclines",
  2014.         "inclining",
  2015.         "include",
  2016.         "included",
  2017.         "includes",
  2018.         "including",
  2019.         "income",
  2020.         "incompatible",
  2021.         "incomplete",
  2022.         "inconsistent",
  2023.         "inconvenience",
  2024.         "incorrect",
  2025.         "increase",
  2026.         "increase's",
  2027.         "increased",
  2028.         "increases",
  2029.         "increasing",
  2030.         "indeed",
  2031.         "independent",
  2032.         "independently",
  2033.         "index",
  2034.         "indicate",
  2035.         "indicates",
  2036.         "indication",
  2037.         "individual",
  2038.         "individual's",
  2039.         "individually",
  2040.         "individuals",
  2041.         "industrial",
  2042.         "industry",
  2043.         "inevitably",
  2044.         "inferior",
  2045.         "infinite",
  2046.         "influence",
  2047.         "info",
  2048.         "inform",
  2049.         "information",
  2050.         "informed",
  2051.         "informing",
  2052.         "informs",
  2053.         "initial",
  2054.         "initial's",
  2055.         "initially",
  2056.         "initials",
  2057.         "inner",
  2058.         "innocent",
  2059.         "input",
  2060.         "inputs",
  2061.         "inputted",
  2062.         "inputting",
  2063.         "insert",
  2064.         "inserted",
  2065.         "inserting",
  2066.         "inserts",
  2067.         "inside",
  2068.         "insist",
  2069.         "insisted",
  2070.         "insisting",
  2071.         "insists",
  2072.         "install",
  2073.         "installed",
  2074.         "installing",
  2075.         "installs",
  2076.         "instance",
  2077.         "instant",
  2078.         "instantly",
  2079.         "instead",
  2080.         "institution",
  2081.         "institution's",
  2082.         "institutions",
  2083.         "instruction",
  2084.         "instruction's",
  2085.         "instructions",
  2086.         "insurance",
  2087.         "integer",
  2088.         "integer's",
  2089.         "integers",
  2090.         "integral",
  2091.         "intelligence",
  2092.         "intelligent",
  2093.         "intend",
  2094.         "intended",
  2095.         "intending",
  2096.         "intends",
  2097.         "intention",
  2098.         "interact",
  2099.         "interest",
  2100.         "interest's",
  2101.         "interested",
  2102.         "interesting",
  2103.         "interests",
  2104.         "interface",
  2105.         "internal",
  2106.         "international",
  2107.         "interpret",
  2108.         "interpretation",
  2109.         "interpreted",
  2110.         "interpreting",
  2111.         "interprets",
  2112.         "interval",
  2113.         "interval's",
  2114.         "intervals",
  2115.         "intervention",
  2116.         "into",
  2117.         "introduce",
  2118.         "introduced",
  2119.         "introduces",
  2120.         "introducing",
  2121.         "introduction",
  2122.         "invalid",
  2123.         "invariably",
  2124.         "invent",
  2125.         "invented",
  2126.         "inventing",
  2127.         "invents",
  2128.         "investigate",
  2129.         "invisible",
  2130.         "invitation",
  2131.         "invite",
  2132.         "invited",
  2133.         "invites",
  2134.         "inviting",
  2135.         "involve",
  2136.         "involved",
  2137.         "involves",
  2138.         "involving",
  2139.         "irrelevant",
  2140.         "irritate",
  2141.         "irritated",
  2142.         "irritates",
  2143.         "irritating",
  2144.         "is",
  2145.         "isn't",
  2146.         "isolate",
  2147.         "isolated",
  2148.         "isolates",
  2149.         "isolating",
  2150.         "issue",
  2151.         "issue's",
  2152.         "issued",
  2153.         "issues",
  2154.         "issuing",
  2155.         "it",
  2156.         "it's",
  2157.         "item",
  2158.         "item's",
  2159.         "items",
  2160.         "its",
  2161.         "itself",
  2162.         "job",
  2163.         "job's",
  2164.         "jobs",
  2165.         "join",
  2166.         "joined",
  2167.         "joining",
  2168.         "joins",
  2169.         "joint",
  2170.         "joke",
  2171.         "joy",
  2172.         "judge",
  2173.         "judgment",
  2174.         "jump",
  2175.         "jump's",
  2176.         "jumps",
  2177.         "junk",
  2178.         "just",
  2179.         "justification",
  2180.         "justified",
  2181.         "justifies",
  2182.         "justify",
  2183.         "justifying",
  2184.         "keen",
  2185.         "keep",
  2186.         "keep's",
  2187.         "keeping",
  2188.         "keeps",
  2189.         "kept",
  2190.         "key",
  2191.         "key's",
  2192.         "keyboard",
  2193.         "keys",
  2194.         "kid",
  2195.         "kill",
  2196.         "killed",
  2197.         "killing",
  2198.         "kills",
  2199.         "kind",
  2200.         "kind's",
  2201.         "kindly",
  2202.         "kinds",
  2203.         "king",
  2204.         "knew",
  2205.         "knock",
  2206.         "knocked",
  2207.         "knocking",
  2208.         "knocks",
  2209.         "know",
  2210.         "knowing",
  2211.         "knowledge",
  2212.         "known",
  2213.         "knows",
  2214.         "label",
  2215.         "label's",
  2216.         "labeled",
  2217.         "labeling",
  2218.         "labels",
  2219.         "labor",
  2220.         "laboratory",
  2221.         "lack",
  2222.         "lacked",
  2223.         "lacking",
  2224.         "lacks",
  2225.         "ladies",
  2226.         "lady",
  2227.         "lady's",
  2228.         "lain",
  2229.         "land",
  2230.         "landed",
  2231.         "landing",
  2232.         "lands",
  2233.         "language",
  2234.         "language's",
  2235.         "languages",
  2236.         "large",
  2237.         "largely",
  2238.         "larger",
  2239.         "largest",
  2240.         "last",
  2241.         "last's",
  2242.         "lasts",
  2243.         "late",
  2244.         "later",
  2245.         "latest",
  2246.         "latter",
  2247.         "law",
  2248.         "law's",
  2249.         "laws",
  2250.         "lay",
  2251.         "layout",
  2252.         "lazy",
  2253.         "leach",
  2254.         "lead",
  2255.         "lead's",
  2256.         "leaded",
  2257.         "leader",
  2258.         "leading",
  2259.         "leads",
  2260.         "leaf",
  2261.         "leaf's",
  2262.         "learn",
  2263.         "learned",
  2264.         "learning",
  2265.         "learns",
  2266.         "least",
  2267.         "leave",
  2268.         "leave's",
  2269.         "leaved",
  2270.         "leaves",
  2271.         "leaving",
  2272.         "lecture",
  2273.         "lecture's",
  2274.         "lectures",
  2275.         "led",
  2276.         "left",
  2277.         "leg",
  2278.         "leg's",
  2279.         "legal",
  2280.         "legally",
  2281.         "legs",
  2282.         "lend",
  2283.         "length",
  2284.         "less",
  2285.         "less's",
  2286.         "lesser",
  2287.         "lesson",
  2288.         "lesson's",
  2289.         "lessons",
  2290.         "let",
  2291.         "let's",
  2292.         "lets",
  2293.         "letter",
  2294.         "letter's",
  2295.         "letters",
  2296.         "letting",
  2297.         "level",
  2298.         "level's",
  2299.         "levels",
  2300.         "liable",
  2301.         "libraries",
  2302.         "library",
  2303.         "library's",
  2304.         "lie",
  2305.         "lie's",
  2306.         "lied",
  2307.         "lies",
  2308.         "life",
  2309.         "life's",
  2310.         "lifetime",
  2311.         "lift",
  2312.         "light",
  2313.         "light's",
  2314.         "lights",
  2315.         "like",
  2316.         "like's",
  2317.         "liked",
  2318.         "likely",
  2319.         "likes",
  2320.         "likewise",
  2321.         "liking",
  2322.         "limit",
  2323.         "limit's",
  2324.         "limited",
  2325.         "limiting",
  2326.         "limits",
  2327.         "line",
  2328.         "line's",
  2329.         "linear",
  2330.         "lines",
  2331.         "link",
  2332.         "link's",
  2333.         "linked",
  2334.         "linking",
  2335.         "links",
  2336.         "list",
  2337.         "list's",
  2338.         "listed",
  2339.         "listen",
  2340.         "listing",
  2341.         "lists",
  2342.         "literally",
  2343.         "literature",
  2344.         "little",
  2345.         "live",
  2346.         "lived",
  2347.         "lives",
  2348.         "living",
  2349.         "load",
  2350.         "loaded",
  2351.         "loading",
  2352.         "loads",
  2353.         "loan",
  2354.         "local",
  2355.         "location",
  2356.         "location's",
  2357.         "locations",
  2358.         "lock",
  2359.         "locked",
  2360.         "locking",
  2361.         "locks",
  2362.         "log",
  2363.         "log's",
  2364.         "logged",
  2365.         "logging",
  2366.         "logic",
  2367.         "logical",
  2368.         "logs",
  2369.         "long",
  2370.         "longer",
  2371.         "longest",
  2372.         "look",
  2373.         "look's",
  2374.         "looked",
  2375.         "looking",
  2376.         "looks",
  2377.         "loop",
  2378.         "loose",
  2379.         "lorries",
  2380.         "lorry",
  2381.         "lorry's",
  2382.         "lose",
  2383.         "loses",
  2384.         "losing",
  2385.         "loss",
  2386.         "lost",
  2387.         "lot",
  2388.         "lot's",
  2389.         "lots",
  2390.         "loudly",
  2391.         "love",
  2392.         "low",
  2393.         "lower",
  2394.         "lowest",
  2395.         "luck",
  2396.         "lucky",
  2397.         "lunch",
  2398.         "lying",
  2399.         "machine",
  2400.         "machine's",
  2401.         "machines",
  2402.         "mad",
  2403.         "made",
  2404.         "magic",
  2405.         "magnetic",
  2406.         "magnitude",
  2407.         "mail",
  2408.         "main",
  2409.         "mainly",
  2410.         "maintain",
  2411.         "maintained",
  2412.         "maintaining",
  2413.         "maintains",
  2414.         "major",
  2415.         "majority",
  2416.         "make",
  2417.         "make's",
  2418.         "makes",
  2419.         "making",
  2420.         "man",
  2421.         "man's",
  2422.         "manage",
  2423.         "managed",
  2424.         "manager",
  2425.         "manages",
  2426.         "managing",
  2427.         "manipulation",
  2428.         "manner",
  2429.         "manual",
  2430.         "manual's",
  2431.         "manuals",
  2432.         "many",
  2433.         "map",
  2434.         "march",
  2435.         "mark",
  2436.         "mark's",
  2437.         "marked",
  2438.         "market",
  2439.         "marking",
  2440.         "marks",
  2441.         "marriage",
  2442.         "marry",
  2443.         "mass",
  2444.         "massive",
  2445.         "master",
  2446.         "match",
  2447.         "match's",
  2448.         "matches",
  2449.         "material",
  2450.         "material's",
  2451.         "materials",
  2452.         "mathematical",
  2453.         "mathematics",
  2454.         "matter",
  2455.         "matter's",
  2456.         "matters",
  2457.         "maximum",
  2458.         "may",
  2459.         "maybe",
  2460.         "me",
  2461.         "mean",
  2462.         "mean's",
  2463.         "meaning",
  2464.         "meaning's",
  2465.         "meaningful",
  2466.         "meaningless",
  2467.         "meanings",
  2468.         "means",
  2469.         "meant",
  2470.         "measure",
  2471.         "measure's",
  2472.         "measured",
  2473.         "measures",
  2474.         "measuring",
  2475.         "mechanic",
  2476.         "mechanic's",
  2477.         "mechanics",
  2478.         "mechanism",
  2479.         "media",
  2480.         "medical",
  2481.         "medium",
  2482.         "medium's",
  2483.         "mediums",
  2484.         "meet",
  2485.         "meet's",
  2486.         "meeting",
  2487.         "meeting's",
  2488.         "meetings",
  2489.         "meets",
  2490.         "member",
  2491.         "member's",
  2492.         "members",
  2493.         "membership",
  2494.         "memory",
  2495.         "men",
  2496.         "mention",
  2497.         "mention's",
  2498.         "mentioned",
  2499.         "mentioning",
  2500.         "mentions",
  2501.         "mere",
  2502.         "merely",
  2503.         "merit",
  2504.         "merit's",
  2505.         "merits",
  2506.         "mess",
  2507.         "message",
  2508.         "message's",
  2509.         "messages",
  2510.         "messy",
  2511.         "met",
  2512.         "metal",
  2513.         "method",
  2514.         "method's",
  2515.         "methods",
  2516.         "middle",
  2517.         "midnight",
  2518.         "might",
  2519.         "mile",
  2520.         "mile's",
  2521.         "miles",
  2522.         "military",
  2523.         "military's",
  2524.         "million",
  2525.         "million's",
  2526.         "millions",
  2527.         "mind",
  2528.         "mind's",
  2529.         "minded",
  2530.         "minding",
  2531.         "minds",
  2532.         "mine",
  2533.         "minimal",
  2534.         "minimum",
  2535.         "minor",
  2536.         "minority",
  2537.         "minute",
  2538.         "minute's",
  2539.         "minutes",
  2540.         "mislead",
  2541.         "misleading",
  2542.         "misleads",
  2543.         "misled",
  2544.         "miss",
  2545.         "missed",
  2546.         "misses",
  2547.         "missing",
  2548.         "mistake",
  2549.         "mistake's",
  2550.         "mistaken",
  2551.         "mistakes",
  2552.         "mistaking",
  2553.         "mistook",
  2554.         "misunderstand",
  2555.         "misunderstanding",
  2556.         "misunderstands",
  2557.         "misunderstood",
  2558.         "misuse",
  2559.         "mix",
  2560.         "mixed",
  2561.         "mixes",
  2562.         "mixing",
  2563.         "mod",
  2564.         "mode",
  2565.         "model",
  2566.         "model's",
  2567.         "models",
  2568.         "modern",
  2569.         "modified",
  2570.         "modifies",
  2571.         "modify",
  2572.         "modifying",
  2573.         "moment",
  2574.         "money",
  2575.         "monitor",
  2576.         "month",
  2577.         "month's",
  2578.         "months",
  2579.         "moral",
  2580.         "more",
  2581.         "morning",
  2582.         "morning's",
  2583.         "mornings",
  2584.         "most",
  2585.         "mostly",
  2586.         "mother",
  2587.         "motion",
  2588.         "mouth",
  2589.         "move",
  2590.         "move's",
  2591.         "moved",
  2592.         "movement",
  2593.         "movement's",
  2594.         "movements",
  2595.         "moves",
  2596.         "movie",
  2597.         "moving",
  2598.         "much",
  2599.         "multiple",
  2600.         "music",
  2601.         "must",
  2602.         "my",
  2603.         "myself",
  2604.         "mysterious",
  2605.         "naive",
  2606.         "name",
  2607.         "name's",
  2608.         "named",
  2609.         "namely",
  2610.         "names",
  2611.         "naming",
  2612.         "nasty",
  2613.         "nation",
  2614.         "national",
  2615.         "natural",
  2616.         "naturally",
  2617.         "nature",
  2618.         "naughty",
  2619.         "near",
  2620.         "nearby",
  2621.         "nearer",
  2622.         "nearest",
  2623.         "nearly",
  2624.         "necessarily",
  2625.         "necessary",
  2626.         "necessity",
  2627.         "neck",
  2628.         "need",
  2629.         "need's",
  2630.         "needed",
  2631.         "needing",
  2632.         "needs",
  2633.         "negative",
  2634.         "neither",
  2635.         "nervous",
  2636.         "net",
  2637.         "network",
  2638.         "network's",
  2639.         "networks",
  2640.         "never",
  2641.         "nevertheless",
  2642.         "new",
  2643.         "news",
  2644.         "next",
  2645.         "nice",
  2646.         "nicer",
  2647.         "nicest",
  2648.         "night",
  2649.         "nine",
  2650.         "no",
  2651.         "nobody",
  2652.         "noise",
  2653.         "noisy",
  2654.         "none",
  2655.         "nonsense",
  2656.         "nor",
  2657.         "normal",
  2658.         "normally",
  2659.         "north",
  2660.         "not",
  2661.         "note",
  2662.         "note's",
  2663.         "noted",
  2664.         "notes",
  2665.         "nothing",
  2666.         "notice",
  2667.         "notice's",
  2668.         "noticed",
  2669.         "notices",
  2670.         "noticing",
  2671.         "notify",
  2672.         "noting",
  2673.         "novel",
  2674.         "now",
  2675.         "nowadays",
  2676.         "nowhere",
  2677.         "numb",
  2678.         "number",
  2679.         "number's",
  2680.         "numbers",
  2681.         "numbest",
  2682.         "numerical",
  2683.         "numerous",
  2684.         "obey",
  2685.         "object",
  2686.         "object's",
  2687.         "objected",
  2688.         "objecting",
  2689.         "objection",
  2690.         "objection's",
  2691.         "objections",
  2692.         "objects",
  2693.         "obscure",
  2694.         "observation",
  2695.         "observe",
  2696.         "observed",
  2697.         "observes",
  2698.         "observing",
  2699.         "obtain",
  2700.         "obtained",
  2701.         "obtaining",
  2702.         "obtains",
  2703.         "obvious",
  2704.         "obviously",
  2705.         "occasion",
  2706.         "occasion's",
  2707.         "occasional",
  2708.         "occasionally",
  2709.         "occasions",
  2710.         "occupied",
  2711.         "occupies",
  2712.         "occupy",
  2713.         "occupying",
  2714.         "occur",
  2715.         "occurred",
  2716.         "occurring",
  2717.         "occurs",
  2718.         "odd",
  2719.         "odds",
  2720.         "of",
  2721.         "off",
  2722.         "offer",
  2723.         "offer's",
  2724.         "offered",
  2725.         "offering",
  2726.         "offers",
  2727.         "office",
  2728.         "office's",
  2729.         "officer",
  2730.         "offices",
  2731.         "official",
  2732.         "often",
  2733.         "oh",
  2734.         "oil",
  2735.         "old",
  2736.         "older",
  2737.         "oldest",
  2738.         "omit",
  2739.         "omits",
  2740.         "omitted",
  2741.         "omitting",
  2742.         "on",
  2743.         "once",
  2744.         "one",
  2745.         "one's",
  2746.         "ones",
  2747.         "only",
  2748.         "onto",
  2749.         "open",
  2750.         "open's",
  2751.         "opened",
  2752.         "opening",
  2753.         "opens",
  2754.         "operate",
  2755.         "operated",
  2756.         "operates",
  2757.         "operating",
  2758.         "operation",
  2759.         "operation's",
  2760.         "operations",
  2761.         "operator",
  2762.         "operator's",
  2763.         "operators",
  2764.         "opinion",
  2765.         "opinion's",
  2766.         "opinions",
  2767.         "opportunities",
  2768.         "opportunity",
  2769.         "opportunity's",
  2770.         "oppose",
  2771.         "opposed",
  2772.         "opposes",
  2773.         "opposing",
  2774.         "opposite",
  2775.         "opposition",
  2776.         "option",
  2777.         "option's",
  2778.         "optional",
  2779.         "options",
  2780.         "or",
  2781.         "order",
  2782.         "order's",
  2783.         "ordered",
  2784.         "ordering",
  2785.         "orders",
  2786.         "ordinary",
  2787.         "organization",
  2788.         "organize",
  2789.         "organized",
  2790.         "organizes",
  2791.         "organizing",
  2792.         "origin",
  2793.         "original",
  2794.         "originally",
  2795.         "other",
  2796.         "others",
  2797.         "otherwise",
  2798.         "ought",
  2799.         "our",
  2800.         "ours",
  2801.         "ourselves",
  2802.         "out",
  2803.         "outer",
  2804.         "output",
  2805.         "outside",
  2806.         "over",
  2807.         "overall",
  2808.         "owe",
  2809.         "owed",
  2810.         "owes",
  2811.         "owing",
  2812.         "own",
  2813.         "owner",
  2814.         "owner's",
  2815.         "owners",
  2816.         "pack",
  2817.         "package",
  2818.         "package's",
  2819.         "packages",
  2820.         "packet",
  2821.         "page",
  2822.         "page's",
  2823.         "pages",
  2824.         "paid",
  2825.         "pain",
  2826.         "painful",
  2827.         "pair",
  2828.         "pair's",
  2829.         "pairs",
  2830.         "paper",
  2831.         "paper's",
  2832.         "papers",
  2833.         "paragraph",
  2834.         "parallel",
  2835.         "parent",
  2836.         "park",
  2837.         "part",
  2838.         "part's",
  2839.         "partial",
  2840.         "partially",
  2841.         "particular",
  2842.         "particularly",
  2843.         "parties",
  2844.         "partly",
  2845.         "parts",
  2846.         "party",
  2847.         "party's",
  2848.         "pass",
  2849.         "passed",
  2850.         "passes",
  2851.         "passing",
  2852.         "past",
  2853.         "patch",
  2854.         "path",
  2855.         "patient",
  2856.         "pattern",
  2857.         "pattern's",
  2858.         "patterns",
  2859.         "pause",
  2860.         "pay",
  2861.         "payed",
  2862.         "paying",
  2863.         "pays",
  2864.         "peace",
  2865.         "peak",
  2866.         "peculiar",
  2867.         "pen",
  2868.         "people",
  2869.         "per",
  2870.         "perfect",
  2871.         "perfectly",
  2872.         "perform",
  2873.         "performance",
  2874.         "performed",
  2875.         "performing",
  2876.         "performs",
  2877.         "perhaps",
  2878.         "period",
  2879.         "permanent",
  2880.         "permanently",
  2881.         "permission",
  2882.         "permit",
  2883.         "permits",
  2884.         "permitted",
  2885.         "permitting",
  2886.         "person",
  2887.         "person's",
  2888.         "personal",
  2889.         "personally",
  2890.         "persons",
  2891.         "persuade",
  2892.         "persuaded",
  2893.         "persuades",
  2894.         "persuading",
  2895.         "petrol",
  2896.         "phase",
  2897.         "phenomenon",
  2898.         "philosophy",
  2899.         "phone",
  2900.         "phrase",
  2901.         "phrase's",
  2902.         "phrases",
  2903.         "physical",
  2904.         "pi",
  2905.         "pick",
  2906.         "picked",
  2907.         "picking",
  2908.         "picks",
  2909.         "picture",
  2910.         "picture's",
  2911.         "pictures",
  2912.         "piece",
  2913.         "piece's",
  2914.         "pieces",
  2915.         "pile",
  2916.         "pint",
  2917.         "pipe",
  2918.         "place",
  2919.         "place's",
  2920.         "placed",
  2921.         "places",
  2922.         "placing",
  2923.         "plain",
  2924.         "plan",
  2925.         "plan's",
  2926.         "plane",
  2927.         "planet",
  2928.         "planned",
  2929.         "planning",
  2930.         "plans",
  2931.         "plant",
  2932.         "plastic",
  2933.         "play",
  2934.         "played",
  2935.         "playing",
  2936.         "plays",
  2937.         "plea",
  2938.         "pleasant",
  2939.         "please",
  2940.         "pleased",
  2941.         "pleases",
  2942.         "pleasing",
  2943.         "plenty",
  2944.         "plot",
  2945.         "plot's",
  2946.         "plots",
  2947.         "plug",
  2948.         "plus",
  2949.         "pocket",
  2950.         "poem",
  2951.         "poet",
  2952.         "point",
  2953.         "point's",
  2954.         "pointed",
  2955.         "pointing",
  2956.         "pointless",
  2957.         "points",
  2958.         "police",
  2959.         "police's",
  2960.         "policies",
  2961.         "policy",
  2962.         "policy's",
  2963.         "political",
  2964.         "poll",
  2965.         "pool",
  2966.         "poor",
  2967.         "pop",
  2968.         "popular",
  2969.         "population",
  2970.         "port",
  2971.         "position",
  2972.         "position's",
  2973.         "positions",
  2974.         "positive",
  2975.         "possibilities",
  2976.         "possibility",
  2977.         "possibility's",
  2978.         "possible",
  2979.         "possibly",
  2980.         "post",
  2981.         "posted",
  2982.         "posting",
  2983.         "postmaster",
  2984.         "posts",
  2985.         "potential",
  2986.         "potentially",
  2987.         "pound",
  2988.         "pound's",
  2989.         "pounds",
  2990.         "power",
  2991.         "power's",
  2992.         "powerful",
  2993.         "powers",
  2994.         "practical",
  2995.         "practically",
  2996.         "practice",
  2997.         "precise",
  2998.         "precisely",
  2999.         "prefer",
  3000.         "preferable",
  3001.         "preferably",
  3002.         "preference",
  3003.         "preferred",
  3004.         "preferring",
  3005.         "prefers",
  3006.         "preparation",
  3007.         "prepare",
  3008.         "prepared",
  3009.         "prepares",
  3010.         "preparing",
  3011.         "presence",
  3012.         "present",
  3013.         "present's",
  3014.         "presented",
  3015.         "presenting",
  3016.         "presents",
  3017.         "preserve",
  3018.         "president",
  3019.         "press",
  3020.         "pressed",
  3021.         "presses",
  3022.         "pressing",
  3023.         "pressure",
  3024.         "presumably",
  3025.         "presume",
  3026.         "pretty",
  3027.         "prevent",
  3028.         "prevented",
  3029.         "preventing",
  3030.         "prevents",
  3031.         "previous",
  3032.         "previously",
  3033.         "price",
  3034.         "price's",
  3035.         "prices",
  3036.         "primary",
  3037.         "prime",
  3038.         "primitive",
  3039.         "principle",
  3040.         "principle's",
  3041.         "principles",
  3042.         "print",
  3043.         "printed",
  3044.         "printer",
  3045.         "printer's",
  3046.         "printers",
  3047.         "printing",
  3048.         "printout",
  3049.         "prints",
  3050.         "prior",
  3051.         "private",
  3052.         "probably",
  3053.         "problem",
  3054.         "problem's",
  3055.         "problems",
  3056.         "procedure",
  3057.         "process",
  3058.         "process's",
  3059.         "processed",
  3060.         "processes",
  3061.         "processing",
  3062.         "processor",
  3063.         "processor's",
  3064.         "processors",
  3065.         "produce",
  3066.         "produced",
  3067.         "produces",
  3068.         "producing",
  3069.         "product",
  3070.         "product's",
  3071.         "production",
  3072.         "products",
  3073.         "professional",
  3074.         "program",
  3075.         "program's",
  3076.         "programmed",
  3077.         "programmer",
  3078.         "programmer's",
  3079.         "programmers",
  3080.         "programming",
  3081.         "programs",
  3082.         "progress",
  3083.         "project",
  3084.         "project's",
  3085.         "projects",
  3086.         "promise",
  3087.         "promised",
  3088.         "promises",
  3089.         "promising",
  3090.         "prompt",
  3091.         "promptly",
  3092.         "prone",
  3093.         "proof",
  3094.         "proper",
  3095.         "properly",
  3096.         "properties",
  3097.         "property",
  3098.         "property's",
  3099.         "proportion",
  3100.         "proposal",
  3101.         "propose",
  3102.         "proposed",
  3103.         "proposes",
  3104.         "proposing",
  3105.         "prospect",
  3106.         "protect",
  3107.         "protected",
  3108.         "protecting",
  3109.         "protection",
  3110.         "protects",
  3111.         "protest",
  3112.         "prove",
  3113.         "proved",
  3114.         "proves",
  3115.         "provide",
  3116.         "provided",
  3117.         "provides",
  3118.         "providing",
  3119.         "proving",
  3120.         "public",
  3121.         "publication",
  3122.         "publicity",
  3123.         "publicly",
  3124.         "publish",
  3125.         "published",
  3126.         "publishes",
  3127.         "publishing",
  3128.         "pull",
  3129.         "pulled",
  3130.         "pulling",
  3131.         "pulls",
  3132.         "punctuation",
  3133.         "puncture",
  3134.         "purchase",
  3135.         "pure",
  3136.         "purely",
  3137.         "purpose",
  3138.         "purpose's",
  3139.         "purposes",
  3140.         "push",
  3141.         "pushed",
  3142.         "pushes",
  3143.         "pushing",
  3144.         "put",
  3145.         "put's",
  3146.         "puts",
  3147.         "putt",
  3148.         "putted",
  3149.         "putting",
  3150.         "putts",
  3151.         "qualified",
  3152.         "qualifies",
  3153.         "qualify",
  3154.         "qualifying",
  3155.         "quality",
  3156.         "quantities",
  3157.         "quantity",
  3158.         "quantity's",
  3159.         "quarter",
  3160.         "question",
  3161.         "question's",
  3162.         "questions",
  3163.         "queue",
  3164.         "quick",
  3165.         "quicker",
  3166.         "quickest",
  3167.         "quickly",
  3168.         "quiet",
  3169.         "quietly",
  3170.         "quit",
  3171.         "quite",
  3172.         "quits",
  3173.         "quitting",
  3174.         "quote",
  3175.         "quote's",
  3176.         "quoted",
  3177.         "quotes",
  3178.         "quoting",
  3179.         "race",
  3180.         "radio",
  3181.         "rain",
  3182.         "raise",
  3183.         "raised",
  3184.         "raises",
  3185.         "raising",
  3186.         "ran",
  3187.         "random",
  3188.         "randomly",
  3189.         "range",
  3190.         "rapid",
  3191.         "rapidly",
  3192.         "rare",
  3193.         "rarely",
  3194.         "rate",
  3195.         "rate's",
  3196.         "rates",
  3197.         "rather",
  3198.         "raw",
  3199.         "re",
  3200.         "reach",
  3201.         "reach's",
  3202.         "reached",
  3203.         "reaches",
  3204.         "reaching",
  3205.         "react",
  3206.         "reaction",
  3207.         "read",
  3208.         "read's",
  3209.         "readable",
  3210.         "reader",
  3211.         "reader's",
  3212.         "readers",
  3213.         "readily",
  3214.         "reading",
  3215.         "reads",
  3216.         "ready",
  3217.         "real",
  3218.         "reality",
  3219.         "realize",
  3220.         "realized",
  3221.         "realizes",
  3222.         "realizing",
  3223.         "really",
  3224.         "reason",
  3225.         "reason's",
  3226.         "reasonable",
  3227.         "reasonably",
  3228.         "reasons",
  3229.         "recall",
  3230.         "receive",
  3231.         "received",
  3232.         "receives",
  3233.         "receiving",
  3234.         "recent",
  3235.         "recently",
  3236.         "reception",
  3237.         "recognition",
  3238.         "recognize",
  3239.         "recognized",
  3240.         "recognizes",
  3241.         "recognizing",
  3242.         "recommend",
  3243.         "recommendation",
  3244.         "recommended",
  3245.         "recommending",
  3246.         "recommends",
  3247.         "record",
  3248.         "record's",
  3249.         "recorded",
  3250.         "recording",
  3251.         "records",
  3252.         "recover",
  3253.         "recovered",
  3254.         "recovering",
  3255.         "recovers",
  3256.         "red",
  3257.         "reduce",
  3258.         "reduced",
  3259.         "reduces",
  3260.         "reducing",
  3261.         "reduction",
  3262.         "redundant",
  3263.         "refer",
  3264.         "reference",
  3265.         "reference's",
  3266.         "references",
  3267.         "referred",
  3268.         "referring",
  3269.         "refers",
  3270.         "reflect",
  3271.         "reflected",
  3272.         "reflecting",
  3273.         "reflection",
  3274.         "reflects",
  3275.         "refuse",
  3276.         "refused",
  3277.         "refuses",
  3278.         "refusing",
  3279.         "regard",
  3280.         "regarded",
  3281.         "regarding",
  3282.         "regardless",
  3283.         "regards",
  3284.         "region",
  3285.         "register",
  3286.         "registered",
  3287.         "registering",
  3288.         "registers",
  3289.         "regret",
  3290.         "regular",
  3291.         "regularly",
  3292.         "regulation",
  3293.         "regulation's",
  3294.         "regulations",
  3295.         "reject",
  3296.         "rejected",
  3297.         "rejecting",
  3298.         "rejects",
  3299.         "relate",
  3300.         "related",
  3301.         "relates",
  3302.         "relating",
  3303.         "relation",
  3304.         "relationship",
  3305.         "relative",
  3306.         "relatively",
  3307.         "release",
  3308.         "release's",
  3309.         "released",
  3310.         "releases",
  3311.         "releasing",
  3312.         "relevance",
  3313.         "relevant",
  3314.         "reliable",
  3315.         "religion",
  3316.         "religious",
  3317.         "religious's",
  3318.         "reluctant",
  3319.         "rely",
  3320.         "remain",
  3321.         "remained",
  3322.         "remaining",
  3323.         "remains",
  3324.         "remark",
  3325.         "remark's",
  3326.         "remarks",
  3327.         "remember",
  3328.         "remembered",
  3329.         "remembering",
  3330.         "remembers",
  3331.         "remind",
  3332.         "reminded",
  3333.         "reminding",
  3334.         "reminds",
  3335.         "remote",
  3336.         "remotely",
  3337.         "removal",
  3338.         "remove",
  3339.         "removed",
  3340.         "removes",
  3341.         "removing",
  3342.         "repair",
  3343.         "repeat",
  3344.         "repeated",
  3345.         "repeatedly",
  3346.         "repeating",
  3347.         "repeats",
  3348.         "replace",
  3349.         "replaced",
  3350.         "replacement",
  3351.         "replaces",
  3352.         "replacing",
  3353.         "replied",
  3354.         "replies",
  3355.         "reply",
  3356.         "reply's",
  3357.         "replying",
  3358.         "report",
  3359.         "report's",
  3360.         "reported",
  3361.         "reporting",
  3362.         "reports",
  3363.         "represent",
  3364.         "representation",
  3365.         "representative",
  3366.         "represented",
  3367.         "representing",
  3368.         "represents",
  3369.         "reproduce",
  3370.         "request",
  3371.         "request's",
  3372.         "requested",
  3373.         "requesting",
  3374.         "requests",
  3375.         "require",
  3376.         "required",
  3377.         "requirement",
  3378.         "requirement's",
  3379.         "requirements",
  3380.         "requires",
  3381.         "requiring",
  3382.         "research",
  3383.         "reserve",
  3384.         "reserved",
  3385.         "reserves",
  3386.         "reserving",
  3387.         "resident",
  3388.         "resolution",
  3389.         "resort",
  3390.         "resource",
  3391.         "resource's",
  3392.         "resources",
  3393.         "respect",
  3394.         "respect's",
  3395.         "respectively",
  3396.         "respects",
  3397.         "respond",
  3398.         "response",
  3399.         "response's",
  3400.         "responses",
  3401.         "responsibility",
  3402.         "responsible",
  3403.         "rest",
  3404.         "restart",
  3405.         "restore",
  3406.         "restored",
  3407.         "restores",
  3408.         "restoring",
  3409.         "restrict",
  3410.         "restricted",
  3411.         "restricting",
  3412.         "restricts",
  3413.         "result",
  3414.         "result's",
  3415.         "resulted",
  3416.         "resulting",
  3417.         "results",
  3418.         "retain",
  3419.         "return",
  3420.         "return's",
  3421.         "returned",
  3422.         "returning",
  3423.         "returns",
  3424.         "reveal",
  3425.         "revealed",
  3426.         "revealing",
  3427.         "reveals",
  3428.         "reverse",
  3429.         "review",
  3430.         "rewrite",
  3431.         "rid",
  3432.         "ridding",
  3433.         "ride",
  3434.         "ridiculous",
  3435.         "rids",
  3436.         "right",
  3437.         "right's",
  3438.         "rights",
  3439.         "ring",
  3440.         "rise",
  3441.         "risk",
  3442.         "river",
  3443.         "road",
  3444.         "role",
  3445.         "roll",
  3446.         "room",
  3447.         "room's",
  3448.         "rooms",
  3449.         "root",
  3450.         "rough",
  3451.         "roughly",
  3452.         "round",
  3453.         "route",
  3454.         "routine",
  3455.         "row",
  3456.         "rubber",
  3457.         "rubbish",
  3458.         "rule",
  3459.         "rule's",
  3460.         "rules",
  3461.         "rumor",
  3462.         "run",
  3463.         "run's",
  3464.         "running",
  3465.         "runs",
  3466.         "rush",
  3467.         "sad",
  3468.         "sadly",
  3469.         "safe",
  3470.         "safely",
  3471.         "safer",
  3472.         "safest",
  3473.         "safety",
  3474.         "said",
  3475.         "saint",
  3476.         "sake",
  3477.         "sale",
  3478.         "sale's",
  3479.         "sales",
  3480.         "same",
  3481.         "sample",
  3482.         "sat",
  3483.         "satisfied",
  3484.         "satisfies",
  3485.         "satisfy",
  3486.         "satisfying",
  3487.         "save",
  3488.         "saved",
  3489.         "saves",
  3490.         "saving",
  3491.         "saw",
  3492.         "say",
  3493.         "saying",
  3494.         "says",
  3495.         "scale",
  3496.         "scan",
  3497.         "scene",
  3498.         "scheme",
  3499.         "school",
  3500.         "school's",
  3501.         "schools",
  3502.         "science",
  3503.         "science's",
  3504.         "sciences",
  3505.         "scientific",
  3506.         "score",
  3507.         "score's",
  3508.         "scores",
  3509.         "scrap",
  3510.         "scratch",
  3511.         "screen",
  3512.         "screen's",
  3513.         "screens",
  3514.         "script",
  3515.         "search",
  3516.         "searched",
  3517.         "searches",
  3518.         "searching",
  3519.         "season",
  3520.         "second",
  3521.         "second's",
  3522.         "secondary",
  3523.         "secondly",
  3524.         "seconds",
  3525.         "secret",
  3526.         "secretary",
  3527.         "section",
  3528.         "section's",
  3529.         "sections",
  3530.         "secure",
  3531.         "security",
  3532.         "see",
  3533.         "see's",
  3534.         "seeing",
  3535.         "seek",
  3536.         "seeking",
  3537.         "seeks",
  3538.         "seem",
  3539.         "seemed",
  3540.         "seeming",
  3541.         "seems",
  3542.         "seen",
  3543.         "sees",
  3544.         "select",
  3545.         "selected",
  3546.         "selecting",
  3547.         "selection",
  3548.         "selects",
  3549.         "self",
  3550.         "sell",
  3551.         "selling",
  3552.         "sells",
  3553.         "seminar",
  3554.         "send",
  3555.         "sending",
  3556.         "sends",
  3557.         "senior",
  3558.         "sense",
  3559.         "sensible",
  3560.         "sensibly",
  3561.         "sensitive",
  3562.         "sent",
  3563.         "sentence",
  3564.         "sentence's",
  3565.         "sentences",
  3566.         "separate",
  3567.         "separately",
  3568.         "sequence",
  3569.         "sequence's",
  3570.         "sequences",
  3571.         "serial",
  3572.         "series",
  3573.         "serious",
  3574.         "seriously",
  3575.         "serve",
  3576.         "serve's",
  3577.         "served",
  3578.         "server",
  3579.         "serves",
  3580.         "service",
  3581.         "service's",
  3582.         "services",
  3583.         "serving",
  3584.         "session",
  3585.         "session's",
  3586.         "sessions",
  3587.         "set",
  3588.         "set's",
  3589.         "sets",
  3590.         "setting",
  3591.         "settle",
  3592.         "settled",
  3593.         "settles",
  3594.         "settling",
  3595.         "seven",
  3596.         "several",
  3597.         "severe",
  3598.         "severely",
  3599.         "sex",
  3600.         "shall",
  3601.         "shame",
  3602.         "shape",
  3603.         "share",
  3604.         "share's",
  3605.         "shared",
  3606.         "shares",
  3607.         "sharing",
  3608.         "sharp",
  3609.         "she",
  3610.         "sheet",
  3611.         "shelf",
  3612.         "shell",
  3613.         "shift",
  3614.         "ship",
  3615.         "shoot",
  3616.         "shop",
  3617.         "shopped",
  3618.         "shopping",
  3619.         "shops",
  3620.         "short",
  3621.         "shortage",
  3622.         "shorter",
  3623.         "shortest",
  3624.         "shortly",
  3625.         "should",
  3626.         "show",
  3627.         "show's",
  3628.         "showed",
  3629.         "showing",
  3630.         "shown",
  3631.         "shows",
  3632.         "shut",
  3633.         "shuts",
  3634.         "shutting",
  3635.         "side",
  3636.         "side's",
  3637.         "sides",
  3638.         "sight",
  3639.         "sign",
  3640.         "sign's",
  3641.         "signal",
  3642.         "signal's",
  3643.         "signals",
  3644.         "signed",
  3645.         "significance",
  3646.         "significant",
  3647.         "significantly",
  3648.         "signing",
  3649.         "signs",
  3650.         "silly",
  3651.         "similar",
  3652.         "similarly",
  3653.         "simple",
  3654.         "simpler",
  3655.         "simplest",
  3656.         "simply",
  3657.         "simultaneous",
  3658.         "simultaneously",
  3659.         "since",
  3660.         "sincerely",
  3661.         "single",
  3662.         "sit",
  3663.         "site",
  3664.         "site's",
  3665.         "sites",
  3666.         "sits",
  3667.         "sitting",
  3668.         "situation",
  3669.         "situation's",
  3670.         "situations",
  3671.         "six",
  3672.         "size",
  3673.         "size's",
  3674.         "sizes",
  3675.         "skill",
  3676.         "skill's",
  3677.         "skills",
  3678.         "sleep",
  3679.         "slight",
  3680.         "slightly",
  3681.         "slip",
  3682.         "slow",
  3683.         "slower",
  3684.         "slowest",
  3685.         "slowly",
  3686.         "small",
  3687.         "smaller",
  3688.         "smallest",
  3689.         "smile",
  3690.         "smooth",
  3691.         "so",
  3692.         "social",
  3693.         "society",
  3694.         "soft",
  3695.         "software",
  3696.         "sold",
  3697.         "solely",
  3698.         "solid",
  3699.         "solution",
  3700.         "solution's",
  3701.         "solutions",
  3702.         "solve",
  3703.         "solved",
  3704.         "solves",
  3705.         "solving",
  3706.         "some",
  3707.         "somebody",
  3708.         "somehow",
  3709.         "someone",
  3710.         "someplace",
  3711.         "something",
  3712.         "sometime",
  3713.         "sometimes",
  3714.         "somewhat",
  3715.         "somewhere",
  3716.         "son",
  3717.         "soon",
  3718.         "sooner",
  3719.         "soonest",
  3720.         "sophisticate",
  3721.         "sophisticated",
  3722.         "sophisticates",
  3723.         "sophisticating",
  3724.         "sorry",
  3725.         "sort",
  3726.         "sort's",
  3727.         "sorted",
  3728.         "sorting",
  3729.         "sorts",
  3730.         "sought",
  3731.         "sound",
  3732.         "sound's",
  3733.         "sounded",
  3734.         "sounding",
  3735.         "sounds",
  3736.         "source",
  3737.         "source's",
  3738.         "sources",
  3739.         "south",
  3740.         "southern",
  3741.         "space",
  3742.         "space's",
  3743.         "spaces",
  3744.         "spare",
  3745.         "speak",
  3746.         "speaker",
  3747.         "speaker's",
  3748.         "speakers",
  3749.         "speaking",
  3750.         "speaks",
  3751.         "special",
  3752.         "specially",
  3753.         "specific",
  3754.         "specifically",
  3755.         "specified",
  3756.         "specifies",
  3757.         "specify",
  3758.         "specifying",
  3759.         "speech",
  3760.         "speed",
  3761.         "spell",
  3762.         "spelled",
  3763.         "spelling",
  3764.         "spells",
  3765.         "spend",
  3766.         "spending",
  3767.         "spends",
  3768.         "spent",
  3769.         "spirit",
  3770.         "spite",
  3771.         "split",
  3772.         "splits",
  3773.         "splitting",
  3774.         "spoke",
  3775.         "spoken",
  3776.         "spot",
  3777.         "spots",
  3778.         "spotted",
  3779.         "spotting",
  3780.         "spread",
  3781.         "spreading",
  3782.         "spreads",
  3783.         "spring",
  3784.         "square",
  3785.         "stable",
  3786.         "staff",
  3787.         "stage",
  3788.         "stage's",
  3789.         "stages",
  3790.         "stand",
  3791.         "stand's",
  3792.         "standard",
  3793.         "standard's",
  3794.         "standards",
  3795.         "standing",
  3796.         "stands",
  3797.         "start",
  3798.         "start's",
  3799.         "started",
  3800.         "starting",
  3801.         "starts",
  3802.         "state",
  3803.         "state's",
  3804.         "stated",
  3805.         "statement",
  3806.         "statement's",
  3807.         "statements",
  3808.         "states",
  3809.         "stating",
  3810.         "station",
  3811.         "station's",
  3812.         "stations",
  3813.         "statistic",
  3814.         "statistic's",
  3815.         "statistical",
  3816.         "statistics",
  3817.         "status",
  3818.         "stay",
  3819.         "stayed",
  3820.         "staying",
  3821.         "stays",
  3822.         "steal",
  3823.         "step",
  3824.         "stick",
  3825.         "sticking",
  3826.         "sticks",
  3827.         "still",
  3828.         "stock",
  3829.         "stone",
  3830.         "stone's",
  3831.         "stones",
  3832.         "stood",
  3833.         "stop",
  3834.         "stop's",
  3835.         "stopped",
  3836.         "stopping",
  3837.         "stops",
  3838.         "storage",
  3839.         "store",
  3840.         "stored",
  3841.         "stores",
  3842.         "storing",
  3843.         "story",
  3844.         "straight",
  3845.         "straightforward",
  3846.         "strange",
  3847.         "strategy",
  3848.         "stream",
  3849.         "street",
  3850.         "strength",
  3851.         "strict",
  3852.         "strictly",
  3853.         "strike",
  3854.         "strike's",
  3855.         "strikes",
  3856.         "striking",
  3857.         "string",
  3858.         "string's",
  3859.         "strings",
  3860.         "strong",
  3861.         "strongly",
  3862.         "struck",
  3863.         "structure",
  3864.         "structure's",
  3865.         "structures",
  3866.         "stuck",
  3867.         "student",
  3868.         "student's",
  3869.         "students",
  3870.         "studied",
  3871.         "studies",
  3872.         "study",
  3873.         "study's",
  3874.         "studying",
  3875.         "stuff",
  3876.         "stupid",
  3877.         "style",
  3878.         "subject",
  3879.         "subject's",
  3880.         "subjects",
  3881.         "submit",
  3882.         "submits",
  3883.         "submitted",
  3884.         "submitting",
  3885.         "subsequent",
  3886.         "subset",
  3887.         "substantial",
  3888.         "substitute",
  3889.         "subtle",
  3890.         "succeed",
  3891.         "success",
  3892.         "successful",
  3893.         "successfully",
  3894.         "such",
  3895.         "sudden",
  3896.         "suddenly",
  3897.         "suffer",
  3898.         "suffered",
  3899.         "suffering",
  3900.         "suffers",
  3901.         "suffice",
  3902.         "sufficient",
  3903.         "sufficiently",
  3904.         "sugar",
  3905.         "suggest",
  3906.         "suggested",
  3907.         "suggesting",
  3908.         "suggestion",
  3909.         "suggestion's",
  3910.         "suggestions",
  3911.         "suggests",
  3912.         "suit",
  3913.         "suitable",
  3914.         "suitably",
  3915.         "suited",
  3916.         "suiting",
  3917.         "suits",
  3918.         "sum",
  3919.         "summary",
  3920.         "summer",
  3921.         "sun",
  3922.         "superior",
  3923.         "supervisor",
  3924.         "supplied",
  3925.         "supplies",
  3926.         "supply",
  3927.         "supply's",
  3928.         "supplying",
  3929.         "support",
  3930.         "supported",
  3931.         "supporting",
  3932.         "supports",
  3933.         "suppose",
  3934.         "supposed",
  3935.         "supposedly",
  3936.         "supposes",
  3937.         "supposing",
  3938.         "sure",
  3939.         "surely",
  3940.         "surface",
  3941.         "surprise",
  3942.         "surprised",
  3943.         "surprises",
  3944.         "surprising",
  3945.         "survey",
  3946.         "survive",
  3947.         "survived",
  3948.         "survives",
  3949.         "surviving",
  3950.         "suspect",
  3951.         "suspected",
  3952.         "suspecting",
  3953.         "suspects",
  3954.         "suspend",
  3955.         "suspended",
  3956.         "suspending",
  3957.         "suspends",
  3958.         "suspicion",
  3959.         "switch",
  3960.         "switch's",
  3961.         "switched",
  3962.         "switches",
  3963.         "switching",
  3964.         "symbol",
  3965.         "symbol's",
  3966.         "symbols",
  3967.         "syntax",
  3968.         "system",
  3969.         "system's",
  3970.         "systems",
  3971.         "table",
  3972.         "table's",
  3973.         "tables",
  3974.         "take",
  3975.         "take's",
  3976.         "taken",
  3977.         "takes",
  3978.         "taking",
  3979.         "talk",
  3980.         "talk's",
  3981.         "talked",
  3982.         "talking",
  3983.         "talks",
  3984.         "tank",
  3985.         "tank's",
  3986.         "tanks",
  3987.         "tape",
  3988.         "tape's",
  3989.         "tapes",
  3990.         "target",
  3991.         "task",
  3992.         "task's",
  3993.         "tasks",
  3994.         "taste",
  3995.         "taught",
  3996.         "tax",
  3997.         "tea",
  3998.         "teach",
  3999.         "teacher",
  4000.         "teaches",
  4001.         "teaching",
  4002.         "team",
  4003.         "technical",
  4004.         "technique",
  4005.         "technique's",
  4006.         "techniques",
  4007.         "technology",
  4008.         "tedious",
  4009.         "teeth",
  4010.         "telephone",
  4011.         "television",
  4012.         "tell",
  4013.         "telling",
  4014.         "tells",
  4015.         "temperature",
  4016.         "temporarily",
  4017.         "temporary",
  4018.         "ten",
  4019.         "tend",
  4020.         "tendency",
  4021.         "tends",
  4022.         "term",
  4023.         "term's",
  4024.         "terminal",
  4025.         "terminal's",
  4026.         "terminals",
  4027.         "terminology",
  4028.         "terms",
  4029.         "terribly",
  4030.         "test",
  4031.         "test's",
  4032.         "tested",
  4033.         "testing",
  4034.         "tests",
  4035.         "text",
  4036.         "than",
  4037.         "thank",
  4038.         "thanks",
  4039.         "that",
  4040.         "that's",
  4041.         "the",
  4042.         "their",
  4043.         "them",
  4044.         "themselves",
  4045.         "then",
  4046.         "theoretical",
  4047.         "theory",
  4048.         "there",
  4049.         "there's",
  4050.         "thereby",
  4051.         "therefore",
  4052.         "these",
  4053.         "they",
  4054.         "they're",
  4055.         "thin",
  4056.         "thing",
  4057.         "thing's",
  4058.         "things",
  4059.         "think",
  4060.         "thinking",
  4061.         "thinks",
  4062.         "third",
  4063.         "this",
  4064.         "thoroughly",
  4065.         "those",
  4066.         "though",
  4067.         "thought",
  4068.         "thought's",
  4069.         "thoughts",
  4070.         "thousand",
  4071.         "thousand's",
  4072.         "thousands",
  4073.         "threat",
  4074.         "three",
  4075.         "threw",
  4076.         "through",
  4077.         "throughout",
  4078.         "throw",
  4079.         "throwing",
  4080.         "thrown",
  4081.         "throws",
  4082.         "thus",
  4083.         "ticket",
  4084.         "ticket's",
  4085.         "tickets",
  4086.         "tie",
  4087.         "tie's",
  4088.         "tied",
  4089.         "ties",
  4090.         "tight",
  4091.         "till",
  4092.         "time",
  4093.         "time's",
  4094.         "timed",
  4095.         "times",
  4096.         "timing",
  4097.         "tin",
  4098.         "title",
  4099.         "title's",
  4100.         "titles",
  4101.         "to",
  4102.         "today",
  4103.         "together",
  4104.         "token",
  4105.         "told",
  4106.         "tomorrow",
  4107.         "tonight",
  4108.         "too",
  4109.         "took",
  4110.         "tooth",
  4111.         "tooth's",
  4112.         "top",
  4113.         "topic",
  4114.         "topic's",
  4115.         "topics",
  4116.         "total",
  4117.         "totally",
  4118.         "touch",
  4119.         "touched",
  4120.         "touches",
  4121.         "touching",
  4122.         "toward",
  4123.         "towards",
  4124.         "town",
  4125.         "trace",
  4126.         "track",
  4127.         "track's",
  4128.         "tracks",
  4129.         "traditional",
  4130.         "traffic",
  4131.         "train",
  4132.         "trained",
  4133.         "training",
  4134.         "trains",
  4135.         "transfer",
  4136.         "transferred",
  4137.         "transferring",
  4138.         "transfers",
  4139.         "translate",
  4140.         "translated",
  4141.         "translates",
  4142.         "translating",
  4143.         "translation",
  4144.         "transport",
  4145.         "trap",
  4146.         "trapped",
  4147.         "trapping",
  4148.         "traps",
  4149.         "trash",
  4150.         "travel",
  4151.         "treat",
  4152.         "treated",
  4153.         "treating",
  4154.         "treatment",
  4155.         "treats",
  4156.         "tree",
  4157.         "tree's",
  4158.         "trees",
  4159.         "trial",
  4160.         "trick",
  4161.         "tried",
  4162.         "tries",
  4163.         "trip",
  4164.         "trivial",
  4165.         "trouble",
  4166.         "truck",
  4167.         "truck's",
  4168.         "trucks",
  4169.         "true",
  4170.         "truly",
  4171.         "trunk",
  4172.         "trust",
  4173.         "trusted",
  4174.         "trusting",
  4175.         "trusts",
  4176.         "truth",
  4177.         "try",
  4178.         "try's",
  4179.         "trying",
  4180.         "tune",
  4181.         "turn",
  4182.         "turn's",
  4183.         "turned",
  4184.         "turning",
  4185.         "turns",
  4186.         "twelve",
  4187.         "twenty",
  4188.         "twice",
  4189.         "two",
  4190.         "tying",
  4191.         "type",
  4192.         "type's",
  4193.         "typed",
  4194.         "types",
  4195.         "typical",
  4196.         "typing",
  4197.         "ugly",
  4198.         "ultimate",
  4199.         "ultimately",
  4200.         "unable",
  4201.         "unacceptable",
  4202.         "unaware",
  4203.         "uncertain",
  4204.         "unclear",
  4205.         "under",
  4206.         "undergraduate",
  4207.         "undergraduate's",
  4208.         "undergraduates",
  4209.         "underneath",
  4210.         "understand",
  4211.         "understanding",
  4212.         "understands",
  4213.         "understood",
  4214.         "unfortunate",
  4215.         "unfortunately",
  4216.         "unhappy",
  4217.         "uniform",
  4218.         "unique",
  4219.         "unit",
  4220.         "unit's",
  4221.         "unite",
  4222.         "units",
  4223.         "universal",
  4224.         "universities",
  4225.         "university",
  4226.         "university's",
  4227.         "unknown",
  4228.         "unless",
  4229.         "unlike",
  4230.         "unlikely",
  4231.         "unlimited",
  4232.         "unnecessarily",
  4233.         "unnecessary",
  4234.         "unpleasant",
  4235.         "unreasonable",
  4236.         "unsuitable",
  4237.         "until",
  4238.         "unusual",
  4239.         "unwanted",
  4240.         "up",
  4241.         "update",
  4242.         "updated",
  4243.         "updates",
  4244.         "updating",
  4245.         "upon",
  4246.         "upper",
  4247.         "upset",
  4248.         "upsets",
  4249.         "upsetting",
  4250.         "upwards",
  4251.         "us",
  4252.         "usage",
  4253.         "use",
  4254.         "use's",
  4255.         "used",
  4256.         "useful",
  4257.         "useless",
  4258.         "user",
  4259.         "user's",
  4260.         "users",
  4261.         "uses",
  4262.         "using",
  4263.         "usual",
  4264.         "usually",
  4265.         "utility",
  4266.         "utterly",
  4267.         "vacation",
  4268.         "vacation's",
  4269.         "vacations",
  4270.         "vague",
  4271.         "vaguely",
  4272.         "valid",
  4273.         "validity",
  4274.         "valuable",
  4275.         "value",
  4276.         "value's",
  4277.         "values",
  4278.         "van",
  4279.         "vans",
  4280.         "variable",
  4281.         "variable's",
  4282.         "variables",
  4283.         "variation",
  4284.         "varied",
  4285.         "varies",
  4286.         "variety",
  4287.         "various",
  4288.         "vary",
  4289.         "varying",
  4290.         "vast",
  4291.         "vastly",
  4292.         "vector",
  4293.         "version",
  4294.         "version's",
  4295.         "versions",
  4296.         "very",
  4297.         "via",
  4298.         "vice",
  4299.         "video",
  4300.         "view",
  4301.         "view's",
  4302.         "views",
  4303.         "virtually",
  4304.         "virtue",
  4305.         "visible",
  4306.         "vision",
  4307.         "visit",
  4308.         "vital",
  4309.         "voice",
  4310.         "volume",
  4311.         "vote",
  4312.         "vote's",
  4313.         "votes",
  4314.         "wait",
  4315.         "waited",
  4316.         "waiting",
  4317.         "waits",
  4318.         "walk",
  4319.         "walked",
  4320.         "walking",
  4321.         "walks",
  4322.         "wall",
  4323.         "wall's",
  4324.         "walls",
  4325.         "want",
  4326.         "want's",
  4327.         "wanted",
  4328.         "wanting",
  4329.         "wants",
  4330.         "war",
  4331.         "warm",
  4332.         "warn",
  4333.         "warned",
  4334.         "warning",
  4335.         "warns",
  4336.         "was",
  4337.         "wash",
  4338.         "wasn't",
  4339.         "waste",
  4340.         "wasted",
  4341.         "wastes",
  4342.         "wasting",
  4343.         "watch",
  4344.         "watched",
  4345.         "watches",
  4346.         "watching",
  4347.         "water",
  4348.         "way",
  4349.         "way's",
  4350.         "ways",
  4351.         "we",
  4352.         "weapon",
  4353.         "wear",
  4354.         "wearing",
  4355.         "wears",
  4356.         "weather",
  4357.         "week",
  4358.         "week's",
  4359.         "weekend",
  4360.         "weeks",
  4361.         "weight",
  4362.         "weird",
  4363.         "welcome",
  4364.         "welcomed",
  4365.         "welcomes",
  4366.         "welcoming",
  4367.         "well",
  4368.         "went",
  4369.         "were",
  4370.         "west",
  4371.         "western",
  4372.         "what",
  4373.         "whatever",
  4374.         "whatsoever",
  4375.         "wheel",
  4376.         "wheel's",
  4377.         "wheels",
  4378.         "when",
  4379.         "whenever",
  4380.         "where",
  4381.         "whereas",
  4382.         "whereby",
  4383.         "wherever",
  4384.         "whether",
  4385.         "which",
  4386.         "while",
  4387.         "whilst",
  4388.         "white",
  4389.         "who",
  4390.         "whoever",
  4391.         "whole",
  4392.         "whom",
  4393.         "whose",
  4394.         "why",
  4395.         "wide",
  4396.         "widely",
  4397.         "wider",
  4398.         "widespread",
  4399.         "widest",
  4400.         "wife",
  4401.         "wild",
  4402.         "will",
  4403.         "willed",
  4404.         "willing",
  4405.         "wills",
  4406.         "win",
  4407.         "wind",
  4408.         "window",
  4409.         "window's",
  4410.         "windows",
  4411.         "wine",
  4412.         "winning",
  4413.         "wins",
  4414.         "winter",
  4415.         "wire",
  4416.         "wise",
  4417.         "wish",
  4418.         "wish's",
  4419.         "wished",
  4420.         "wishes",
  4421.         "wishing",
  4422.         "with",
  4423.         "withdraw",
  4424.         "within",
  4425.         "without",
  4426.         "woman",
  4427.         "woman's",
  4428.         "women",
  4429.         "won",
  4430.         "won's",
  4431.         "won't",
  4432.         "wonder",
  4433.         "wondered",
  4434.         "wonderful",
  4435.         "wondering",
  4436.         "wonders",
  4437.         "wooden",
  4438.         "word",
  4439.         "word's",
  4440.         "worded",
  4441.         "wording",
  4442.         "words",
  4443.         "wore",
  4444.         "work",
  4445.         "work's",
  4446.         "worked",
  4447.         "worker",
  4448.         "worker's",
  4449.         "workers",
  4450.         "working",
  4451.         "works",
  4452.         "world",
  4453.         "worn",
  4454.         "worried",
  4455.         "worries",
  4456.         "worry",
  4457.         "worrying",
  4458.         "worse",
  4459.         "worst",
  4460.         "worth",
  4461.         "worthwhile",
  4462.         "worthy",
  4463.         "would",
  4464.         "wouldn't",
  4465.         "write",
  4466.         "writer",
  4467.         "writes",
  4468.         "writing",
  4469.         "written",
  4470.         "wrong",
  4471.         "wrote",
  4472.         "year",
  4473.         "year's",
  4474.         "years",
  4475.         "yellow",
  4476.         "yes",
  4477.         "yesterday",
  4478.         "yet",
  4479.         "you",
  4480.         "you're",
  4481.         "young",
  4482.         "young's",
  4483.         "your",
  4484.         "yours",
  4485.         "yourself",
  4486.         "zero" };
  4487.     string hangmanword = words[wordno];
  4488.     string gameword;
  4489.     string dump;
  4490.     string playerguess;
  4491.     bool won = false;
  4492.     bool letterthere = false;
  4493.     int tries = 10;
  4494.     for (int i = 0; i < hangmanword.length(); i++) {
  4495.         hangmanword[i] = toupper(hangmanword[i]);
  4496.         if (hangmanword[i] == '\'') { gameword += "' "; }
  4497.         else { gameword += "_ "; }
  4498.     }
  4499.     while (tries > 0 && won == false) {
  4500.         system("cls");
  4501.         cout << "Tries left: " << tries << "\n\n" << gameword << "\n\n" << dump << endl;
  4502.         draw(tries);
  4503.         cout << "\nEnter your guess: ";
  4504.         cin >> playerguess;
  4505.         playerguess[0] = toupper(playerguess[0]);
  4506.         letterthere = false;
  4507.         for (int j = 0; j < hangmanword.length(); j++) {
  4508.             if (playerguess[0] == hangmanword[j]) {
  4509.                 gameword[(j*2)] = playerguess[0];
  4510.                 letterthere = true;
  4511.             }
  4512.         }
  4513.         if (letterthere == false) {
  4514.             tries--;
  4515.             dump += playerguess;
  4516.         }
  4517.         won = true;
  4518.         for (int k = 0; k < (2*hangmanword.length()); k++) {
  4519.             if (gameword[k] == '_') {
  4520.                 won = false;
  4521.             }
  4522.         }
  4523.     }
  4524.     system("cls");
  4525.     if (tries == 0) { cout << "Tries left: " << tries << "\n\n" << gameword << "\n\n" << dump << endl; draw(0); cout << "\n\nYou lost, the word was " << hangmanword << endl; return 0; }
  4526.     else if (won == true) { cout << "Tries left: " << tries << "\n\n" << gameword << "\n\n" << dump << endl; draw(tries); cout << "\n\nYou won\n"; return 0; }
  4527. }
  4528. int main() {
  4529.  
  4530.     cout << "Welcome to Hangman by MAtch335!\n";
  4531.     system("pause");
  4532.     char goagain;
  4533.     srand(time(NULL));
  4534.     int n0 = rand() % 4439;
  4535.     game(n0);
  4536.     cout << "Go again? (y/N): ";
  4537.     cin >> goagain;
  4538.     if (goagain == 'y' || goagain == 'Y') { main(); }
  4539.     return 0;
  4540. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement